@charset "UTF-8";
/************************************
	reset
************************************/
a, area, button, input:not([type=range]), label, select, summary, textarea {
  touch-action: manipulation;
}

/************************************
	base
************************************/
html,
body {
  height: 100%;
  width: 100%;
}

html {
  box-sizing: border-box;
  font-size: calc(100vw / 10);
}
@media screen and (min-width: 769px) {
  html {
    font-size: calc(100vw / 19.2);
    overflow-x: hidden;
  }
}
@media screen and (min-width: 1921px) {
  html {
    font-size: 20px;
  }
}

*, ::after, ::before {
  box-sizing: inherit;
}

body {
  background: #E8E9EE;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.32rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 0.2rem;
    letter-spacing: 0.075em;
  }
}
@media screen and (min-width: 1921px) {
  body {
    font-size: 20px;
  }
}
body a {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: none;
  color: #333;
  outline: none;
  text-decoration: none;
}
body ul li {
  list-style: none;
}
body ul li a {
  display: block;
}
body ul.note li {
  padding-left: 1em;
  text-indent: -1em;
}
body ul.note li::before {
  content: "※";
}
body img {
  height: auto;
  width: 100%;
  border: none;
  image-rendering: -webkit-optimize-contrast;
  margin: auto;
  outline: none;
}
body img.base-size {
  height: auto;
  width: auto;
}
body button {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  cursor: pointer;
  outline: none;
}
body aside {
  background: #DBDBDB;
}
body .btn a {
  display: block;
}

/************************************
    hack
************************************/
.ua-ie main,
.ua-ie aside,
.ua-ie article,
.ua-ie section {
  display: block;
}

/************************************
	header
************************************/
#header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}
#header .header-box:nth-of-type(1) {
  padding: 4vw;
}
@media screen and (max-width: 768px) {
  #header .header-box:nth-of-type(1) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: calc((440 / 1080) * 100%);
  }
}
@media screen and (min-width: 769px) {
  #header .header-box:nth-of-type(1) {
    padding: 0 2vw;
    width: calc((320 / 1920) * 100%);
  }
}
@media screen and (min-width: 1921px) {
  #header .header-box:nth-of-type(1) {
    padding: 0 36px;
  }
}
@media screen and (max-width: 768px) {
  #header .header-box:nth-of-type(2) {
    width: calc((640 / 1080) * 100%);
  }
}
@media screen and (min-width: 769px) {
  #header .header-box:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc((1600 / 1920) * 100%);
  }
}
#header .header-btn {
  cursor: pointer;
  display: none;
  height: 5vw;
  position: relative;
  width: 7vw;
}
#header .header-btn .icon {
  background: #FFF;
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#header .header-btn::before, #header .header-btn::after {
  background: #FFF;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 1921px) {
  #header .header-logo {
    max-width: 240px;
  }
}
#header .header-logo a {
  display: block;
}
#header .header-navi {
  font-size: 0.24rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #header .header-navi {
    background: #003EAD;
    left: 0;
    position: absolute;
    top: calc(100% - 10.5vw);
  }
}
@media screen and (min-width: 769px) {
  #header .header-navi {
    font-size: 0.18rem;
    width: calc((700 / 1600) * 100%);
  }
}
@media screen and (min-width: 1921px) {
  #header .header-navi {
    font-size: 18px;
  }
}
#header .header-navi ul {
  display: flex;
  flex-wrap: wrap;
}
#header .header-navi ul li {
  position: relative;
  text-align: center;
  width: 25%;
}
@media screen and (min-width: 769px) {
  #header .header-navi ul li {
    padding: 0;
  }
}
#header .header-navi ul li a {
  padding: 4vw 2vw;
}
@media screen and (min-width: 769px) {
  #header .header-navi ul li a {
    padding: 2vw 0;
  }
}
@media screen and (min-width: 1921px) {
  #header .header-navi ul li a {
    padding: 36px 0;
  }
}
#header .header-navi ul li::after {
  background: #FED100;
  top: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #header .header-navi ul li:not(:last-child) {
    border-right: 2px solid #002b98;
  }
}
#header .header-navi ul li:not(.current):hover a {
  color: #FED100;
}
#header .header-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 0.24rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #header .header-menu {
    padding-right: 4vw;
  }
}
@media screen and (min-width: 769px) {
  #header .header-menu {
    font-size: 0.18rem;
    width: calc((600 / 1600) * 100%);
  }
}
@media screen and (min-width: 1921px) {
  #header .header-menu {
    font-size: 18px;
  }
}
#header .header-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: calc((380 / 600) * 100%);
}
#header .header-menu ul li:nth-child(1) {
  margin-right: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 768px) {
  #header .header-menu ul li:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 6em;
  }
}
@media screen and (max-width: 768px) {
  #header .header-menu ul li:nth-child(2) {
    min-width: 5em;
  }
}
#header .header-menu ul li a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.5s ease;
}
@media screen and (min-width: 769px) {
  #header .header-menu ul li a {
    color: #FFF;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  #header .header-menu ul li a:hover {
    color: #FED100;
  }
}
#header .header-menu ul.member-only {
  display: none;
}
#header .header-menu .btn {
  width: calc((210 / 600) * 100%);
}
#header .header-menu .btn a {
  border: 1px solid #FFF;
  border-radius: 0.5em;
  color: #FFF;
  padding: 2.6666666667vw 1vw;
  text-align: center;
  transition: color 0.5s ease;
}
@media screen and (min-width: 769px) {
  #header .header-menu .btn a {
    background: #0050C2;
    border: none;
    border-radius: 0;
    padding: 2vw 0.6666666667vw;
  }
}
@media screen and (min-width: 1921px) {
  #header .header-menu .btn a {
    padding: 36px 12px;
  }
}
@media screen and (min-width: 769px) {
  #header .header-menu .btn a:hover {
    color: #FED100;
  }
}
#header.portal-header-legal {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  #header.portal-header-legal .header-navi {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #header.portal-header-legal .header-navi {
    visibility: hidden;
  }
}
#header.portal-header-legal .header-menu ul {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #header.portal-header-legal .header-menu ul li:nth-child(1) {
    border-right: 1px solid white;
  }
}
@media screen and (max-width: 768px) {
  #header.portal-header-global {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #header.portal-header-global .header-navi {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #header.portal-header-global .header-navi ul li {
    visibility: hidden;
  }
}

@media screen and (max-width: 768px) {
  .member #header {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .member #header .header-navi {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .member #header .header-navi {
    visibility: hidden;
  }
}
@media screen and (max-width: 768px) {
  .member #header .header-menu {
    padding-right: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .member #header .header-menu {
    font-size: 0.18rem;
    width: calc((330 / 1600) * 100%);
  }
}
@media screen and (min-width: 1921px) {
  .member #header .header-menu {
    font-size: 18px;
  }
}
.member #header .header-menu ul {
  display: none;
  text-align: right;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .member #header .header-menu ul {
    text-align: center;
  }
}
.member #header .header-menu ul.member-only {
  display: block;
}
.member #header .header-menu .btn {
  display: none;
}

/************************************
	footer
************************************/
#footer {
  background: #004098;
}
#footer .footer-common {
  display: flex;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  padding: 4vw;
}
@media screen and (min-width: 769px) {
  #footer .footer-common {
    align-items: center;
    padding: 1vw 2vw;
  }
}
@media screen and (min-width: 1921px) {
  #footer .footer-common {
    padding: 18px 36px;
  }
}
#footer .footer-menu {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #footer .footer-menu {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 769px) {
  #footer .footer-menu {
    margin-right: auto;
    width: calc((840 / 1840) * 100%);
  }
}
#footer .footer-menu ul {
  letter-spacing: -0.4em;
}
@media screen and (max-width: 768px) {
  #footer .footer-menu ul {
    text-align: center;
  }
}
#footer .footer-menu ul li {
  display: inline-block;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #footer .footer-menu ul li {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 769px) {
  #footer .footer-menu ul li {
    letter-spacing: 0.075em;
  }
}
#footer .footer-menu ul li:not(:last-child) {
  margin-right: 4vw;
}
@media screen and (max-width: 768px) {
  #footer .footer-menu ul li:not(:last-child) {
    margin-left: 4vw;
  }
}
@media screen and (min-width: 769px) {
  #footer .footer-menu ul li:not(:last-child) {
    margin-right: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  #footer .footer-menu ul li:not(:last-child) {
    margin-right: 18px;
  }
}
#footer .footer-menu ul li a {
  color: #FFF;
  font-size: 0.3rem;
}
@media screen and (min-width: 769px) {
  #footer .footer-menu ul li a {
    font-size: 0.16rem;
  }
}
@media screen and (min-width: 1921px) {
  #footer .footer-menu ul li a {
    font-size: 16px;
  }
}
#footer .footer-menu ul li a .ic::before {
  color: #FED100;
  margin-right: 0;
}
#footer .footer-menu ul li a .menu-label {
  vertical-align: middle;
}
#footer .footer-text {
  font-size: 0.24rem;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 769px) {
  #footer .footer-text {
    font-size: 0.16rem;
    margin-left: auto;
    text-align: right;
    width: auto;
  }
}
@media screen and (min-width: 1921px) {
  #footer .footer-text {
    font-size: 16px;
  }
}
#footer .footer-legal {
  color: #FFF;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  #footer .footer-legal {
    margin-bottom: 0.5em;
  }
}
#footer .footer-legal a {
  color: #FED100;
  text-decoration: underline;
  transition: color 0.25s ease;
}
#footer .footer-legal a:hover {
  color: #FFF;
  text-decoration: none;
}
#footer .footer-copyright {
  color: #FFF;
  font-size: 0.24rem;
}
@media screen and (min-width: 769px) {
  #footer .footer-copyright {
    font-size: 0.12rem;
  }
}
@media screen and (min-width: 1921px) {
  #footer .footer-copyright {
    font-size: 12px;
  }
}

/************************************
	content
************************************/
body #wrapper {
  line-height: 1.6;
}
body #wrapper main {
  min-height: 35vh;
}
@media screen and (min-width: 769px) {
  body #wrapper main {
    min-height: 85vh;
  }
}
body:not(.index):not(.product):not(.page-404) #wrapper, body.news.index #wrapper, body.news.article #wrapper {
  padding-top: 6vw;
}
@media screen and (min-width: 769px) {
  body:not(.index):not(.product):not(.page-404) #wrapper, body.news.index #wrapper, body.news.article #wrapper {
    padding-top: calc((85 / 1280) * 100vw);
  }
}
@media screen and (min-width: 1921px) {
  body:not(.index):not(.product):not(.page-404) #wrapper, body.news.index #wrapper, body.news.article #wrapper {
    padding-top: 126px;
  }
}
@media screen and (min-width: 769px) {
  body.index[data-page=index] #wrapper, body.page-404 #wrapper {
    padding-top: calc((55 / 1280) * 100vw);
  }
}
@media screen and (min-width: 1921px) {
  body.index[data-page=index] #wrapper, body.page-404 #wrapper {
    padding-top: 90px;
  }
}
body.member #wrapper main {
  min-height: 92vw;
}
@media screen and (min-width: 769px) {
  body.member #wrapper main {
    min-height: 84.3vh;
  }
}

.conts-box {
  margin-bottom: 8vw;
  padding: 0 4vw;
}
@media screen and (min-width: 769px) {
  .conts-box {
    margin-bottom: 4vw;
    padding: 0 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .conts-box {
    margin-bottom: 72px;
    padding: 0 36px;
  }
}
.conts-box#langSelect {
  margin-bottom: 0;
  padding: 4vw;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .conts-box#langSelect {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .conts-box#langSelect {
    padding: 36px;
  }
}

.col-box {
  display: flex;
  flex-wrap: wrap;
}

/************************************
	module
************************************/
.ttl-h2 {
  color: #004098;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .ttl-h2 {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .ttl-h2 {
    font-size: 70px;
    margin-bottom: 36px;
  }
}
.ttl-h2 small {
  display: block;
  font-size: 0.32rem;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .ttl-h2 small {
    font-size: 0.2rem;
  }
}
@media screen and (min-width: 1921px) {
  .ttl-h2 small {
    font-size: 20px;
  }
}
.ttl-h2.db {
  letter-spacing: normal;
}
.ttl-h2.fs-s {
  font-size: 0.62rem;
}
@media screen and (min-width: 1921px) {
  .ttl-h2.fs-s {
    font-size: 62px;
  }
}
.ttl-h2.fs-ss {
  font-size: 0.46rem;
}
@media screen and (min-width: 1921px) {
  .ttl-h2.fs-ss {
    font-size: 46px;
  }
}

.text-box p:not(:last-child) {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .text-box p:not(:last-child) {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .text-box p:not(:last-child) {
    margin-bottom: 36px;
  }
}
.text-box.text-box-c {
  text-align: center;
}
.text-box.text-box-c .text-box-c-inner {
  display: inline-block;
  text-align: left;
}

.panel-list:not(.swiper-wrapper) {
  display: flex;
  flex-wrap: wrap;
}
.panel-list .panel {
  background: #FFF;
  position: relative;
}
.panel-list .panel:not(.swiper-slide) {
  margin-bottom: 4vw;
  width: calc(96% / 2);
}
@media screen and (min-width: 769px) {
  .panel-list .panel:not(.swiper-slide) {
    margin-bottom: 2vw;
    width: calc(92% / 5);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .panel-list .panel:not(.swiper-slide) {
    margin-bottom: 2vw;
    width: calc(94% / 4);
  }
}
@media screen and (min-width: 1921px) {
  .panel-list .panel:not(.swiper-slide) {
    margin-bottom: 36px;
  }
}
.panel-list .panel a {
  height: 100%;
}
@media screen and (min-width: 769px) {
  .panel-list .panel a:hover .thumb img {
    transform: scale(1.1);
  }
}
.panel-list .panel .thumb {
  line-height: 0;
  overflow: hidden;
}
.panel-list .panel .thumb img {
  transition: transform 0.25s ease;
  vertical-align: bottom;
}
.panel-list .panel .detail {
  padding: 0 2vw 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .panel-list .panel .detail {
    padding: 0 1vw 1.3333333333vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list .panel .detail {
    padding: 0 18px 24px;
  }
}
.panel-list .panel .detail .info-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2vw;
  padding-top: 2vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .panel-list .panel .detail .info-box {
    margin-bottom: 1vw;
    padding-top: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list .panel .detail .info-box {
    margin-bottom: 18px;
    padding-top: 18px;
  }
}
.panel-list.News .panel .cat {
  border-radius: 5em;
  color: #FFF;
  font-size: 0.26rem;
  letter-spacing: normal;
  line-height: 1;
  padding: 1vw 0.6666666667vw 1.3333333333vw;
  text-align: center;
  width: 9em;
}
@media screen and (min-width: 769px) {
  .panel-list.News .panel .cat {
    font-size: 0.16rem;
    padding: 0.3333333333vw 0.3333333333vw 0.4vw;
    margin-right: 50%;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.News .panel .cat {
    font-size: 16px;
    padding: 6px 6px 7.2px;
  }
}
.panel-list.News .panel .cat:not(:last-child) {
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) {
  .panel-list.News .panel .cat:not(:last-child) {
    margin-bottom: 0.25vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.News .panel .cat:not(:last-child) {
    margin-bottom: 4.5px;
  }
}
.panel-list.News .panel .cat[class*=game] {
  background: #00B4FF;
}
.panel-list.News .panel .cat[class*=event] {
  background: #E90101;
}
.panel-list.News .panel .cat[class*=campaign] {
  background: #FF7F09;
}
.panel-list.News .panel .cat[class*=goods] {
  background: #00CC6E;
}
.panel-list.News .panel .cat[class*=media] {
  background: #8D1AC3;
}
.panel-list.News .panel .cat[class*=live] {
  background: #C500FF;
}
.panel-list.News .panel .cat[class*=sale] {
  background: #FF6699;
}
.panel-list.News .panel .cat[class*=apparel] {
  background: #333;
}
.panel-list.News .panel .cat[class*=other] {
  background: #333;
}
.panel-list.News .panel a {
  position: relative;
  z-index: 2;
}
.panel-list.News .panel.link-type::after {
  bottom: 2vw;
  color: #004098;
  font-size: 0.8em;
  position: absolute;
  right: 4vw;
  text-decoration: underline;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .panel-list.News .panel.link-type::after {
    bottom: 0.5vw;
    right: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.News .panel.link-type::after {
    bottom: 9px;
    right: 18px;
  }
}
.panel-list.News .panel.link-type.outbound::after {
  content: "外部リンク";
}
@media screen and (min-width: 769px) {
  .panel-list.News .panel .detail .info-box {
    padding-top: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.News .panel .detail .info-box {
    padding-top: 18px;
  }
}
.panel-list.News .panel .detail .info-box::before {
  background: #004098;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 7em;
}
@media screen and (max-width: 768px) {
  .panel-list.News .panel .detail .info-box .series {
    font-size: 0.8em;
  }
}
.panel-list.News .panel .detail .info-box .date {
  font-size: 0.26rem;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 768px) {
  .panel-list.News .panel .detail .info-box .date {
    top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .panel-list.News .panel .detail .info-box .date {
    font-size: 0.16rem;
    top: 1.3333333333vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.News .panel .detail .info-box .date {
    font-size: 20px;
    top: 24px;
  }
}
.panel-list.News .panel .detail .ttl {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .panel-list.News .panel .detail .ttl {
    margin-bottom: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.News .panel .detail .ttl {
    margin-bottom: 18px;
  }
}
.panel-list.News .panel .detail .text {
  font-size: 0.36rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .panel-list.News .panel .detail .text {
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) {
  .panel-list.News .panel .detail .text {
    font-size: 0.2rem;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.News .panel .detail .text {
    font-size: 20px;
  }
}
.panel-list.News .panel.pickup .panel-inner::after {
  background: url(../images/common/pickup_icon.svg) center no-repeat;
  background-size: contain;
  bottom: -0.2vw;
  content: "";
  display: block;
  height: 4.5vw;
  position: absolute;
  right: -0.2vw;
  width: 4.5vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .panel-list.News .panel.pickup .panel-inner::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .panel-list.News .panel.pickup .detail .info-box .date {
    margin-left: auto;
    position: relative;
    right: auto;
    top: auto;
  }
}
.panel-list.Game .panel .detail {
  padding: 2vw 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .panel-list.Game .panel .detail {
    padding: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.Game .panel .detail {
    padding: 18px;
  }
}
.panel-list.Game .panel .detail .info-box {
  margin-bottom: 1vw;
  padding-top: 0;
}
@media screen and (min-width: 769px) {
  .panel-list.Game .panel .detail .info-box {
    margin-bottom: 0.5vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.Game .panel .detail .info-box {
    margin-bottom: 9px;
  }
}
.panel-list.Game .panel .detail .info-box .title {
  margin-bottom: 0.5em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .panel-list.Game .panel .detail .info-box .title {
    font-size: 0.36rem;
    line-height: 1.2;
  }
}
.panel-list.Game .panel .detail .info-box .date {
  font-size: 0.3rem;
  margin-bottom: 0.5em;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .panel-list.Game .panel .detail .info-box .date {
    font-size: 0.18rem;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.Game .panel .detail .info-box .date {
    font-size: 18px;
  }
}
.panel-list.Sale .panel .detail .info-box {
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) {
  .panel-list.Sale .panel .detail .info-box {
    margin-bottom: 0.5vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.Sale .panel .detail .info-box {
    margin-bottom: 9px;
  }
}
.panel-list.Sale .panel .detail .info-box .date {
  color: #004098;
  font-weight: 700;
  text-align: left;
}
.panel-list.Sale .panel .text {
  margin-bottom: 0;
  position: relative;
}
.panel-list.Series .panel .detail .info-box {
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) {
  .panel-list.Series .panel .detail .info-box {
    margin-bottom: 0.5vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.Series .panel .detail .info-box {
    margin-bottom: 9px;
  }
}
.panel-list.Series .panel .detail .info-box .date {
  color: #004098;
  font-weight: 700;
  text-align: left;
}
.panel-list.Series .panel .detail .info-box .cat {
  color: #004098;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.panel-list.Series .panel .text {
  margin-bottom: 0;
  position: relative;
}
.panel-list.Pickup .panel .detail .info-box {
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) {
  .panel-list.Pickup .panel .detail .info-box {
    margin-bottom: 0.5vw;
  }
}
@media screen and (min-width: 1921px) {
  .panel-list.Pickup .panel .detail .info-box {
    margin-bottom: 9px;
  }
}
.panel-list.Pickup .panel .detail .info-box .date {
  color: #004098;
  font-weight: 700;
  text-align: left;
}
.panel-list.Pickup .panel .detail .info-box .cat {
  color: #004098;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.panel-list.Pickup .panel .text {
  margin-bottom: 0;
  position: relative;
}

.pf-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.pf-list .pf {
  color: #FFF;
  background: #333;
  border-radius: 5em;
  font-size: 0.2rem;
  letter-spacing: normal;
  line-height: 1;
  margin-bottom: 1vw;
  padding: 0.35em 0.5em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .pf-list .pf {
    font-size: 0.14rem;
    margin-bottom: 0.3333333333vw;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1921px) {
  .pf-list .pf {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.pf-list .pf.ps5, .pf-list .pf.ps4, .pf-list .pf.ps3, .pf-list .pf.ps2, .pf-list .pf.psvita, .pf-list .pf.psp {
  background: #0068BF;
}
.pf-list .pf.xboxx, .pf-list .pf.xboxsx, .pf-list .pf.xbox, .pf-list .pf.xbox360 {
  background: #107C10;
}
.pf-list .pf.switch, .pf-list .pf.threeds {
  background: #E60012;
}
.pf-list .pf.wiiu, .pf-list .pf.wii, .pf-list .pf.steam, .pf-list .pf.windows, .pf-list .pf.apple, .pf-list .pf.ios, .pf-list .pf.apple, .pf-list .pf.android {
  background: #333;
}
.pf-list.col-3 .pf {
  margin-right: 1%;
  margin-left: 1%;
  width: 31%;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .pf-list.col-3 .pf {
    width: 48%;
  }
}
.pf-list.col-4 .pf {
  margin-right: 1%;
  margin-left: 1%;
  width: 31%;
}
@media screen and (min-width: 769px) {
  .pf-list.col-4 .pf {
    width: 23%;
  }
}

.site-navi {
  padding: 2vw 4vw 8vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .site-navi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1vw 2vw 4vw;
  }
}
@media screen and (min-width: 1921px) {
  .site-navi {
    padding: 18px 36px 72px;
  }
}
@media screen and (min-width: 769px) {
  .site-navi-box {
    margin-right: 3vw;
    margin-left: 3vw;
  }
}
@media screen and (min-width: 1921px) {
  .site-navi-box {
    margin-right: 54px;
    margin-left: 54px;
  }
}
@media screen and (max-width: 768px) {
  .site-navi-inner .site-navi-ttl {
    border-top: 1px solid #BABABA;
    margin-top: -1px;
    position: relative;
  }
}
.site-navi-inner:first-child .site-navi-ttl:first-child {
  border-top: none;
}
@media screen and (min-width: 769px) {
  .site-navi-inner:not(:last-child) {
    margin-bottom: 3vw;
  }
}
@media screen and (min-width: 1921px) {
  .site-navi-inner:not(:last-child) {
    margin-bottom: 54px;
  }
}
.site-navi-ttl {
  color: #004098;
  font-size: 0.38rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .site-navi-ttl {
    border-bottom: 1px solid #BABABA;
    cursor: pointer;
    padding: 2.6666666667vw 2vw;
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  .site-navi-ttl {
    font-size: 0.2rem;
    margin-bottom: 0.6666666667vw;
    pointer-events: none;
  }
}
@media screen and (min-width: 1921px) {
  .site-navi-ttl {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .site-navi-ttl::after {
    color: #8A8A8A;
    content: "\e145";
    display: inline-block;
    font-family: "Material Icons";
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    right: 2vw;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .site-navi-list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .site-navi-list li {
    position: relative;
    width: 48%;
  }
}
@media screen and (min-width: 769px) {
  .site-navi-list li:not(:last-child) {
    margin-bottom: 0.6666666667vw;
  }
}
@media screen and (min-width: 1921px) {
  .site-navi-list li:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .site-navi-list li::after {
    content: "\e5cc";
    display: block;
    font-family: "Material Icons";
    font-size: 1.5em;
    line-height: 1;
    position: absolute;
    right: 1.3333333333vw;
    top: 50%;
    transform: translateY(-50%);
  }
}
.site-navi-list li a {
  color: #333;
  font-size: 0.26rem;
}
@media screen and (max-width: 768px) {
  .site-navi-list li a {
    padding: 2.6666666667vw 4vw;
  }
}
@media screen and (min-width: 769px) {
  .site-navi-list li a {
    font-size: 0.18rem;
  }
}
@media screen and (min-width: 1921px) {
  .site-navi-list li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .site-navi .toggle-box {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .site-navi .toggle-box {
    display: block !important;
  }
}

.select-box {
  position: relative;
  text-align: center;
  width: 100%;
}
.select-box .label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 100%;
}
.select-box .label::after {
  content: "\e5cf";
  display: inline-block;
  font-family: "Material Icons";
  font-size: 1.5em;
  left: 0;
  line-height: 1;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: calc(100% - 1em);
  transition: opacity 0.25s ease;
}
.select-box .select-list {
  display: none;
  left: 0;
  margin: auto;
  max-width: 92%;
  position: absolute;
  right: 0;
  top: calc(100% + 1.25em);
  width: 92%;
}
@media screen and (min-width: 769px) {
  .select-box .select-list {
    max-width: calc((1280 / 1840) * 100%);
    width: 100%;
  }
}
.select-box .select-list.upper {
  bottom: 100%;
  top: auto;
}
.select-box .select-list.upper ul::after {
  border-color: #FFF transparent transparent transparent;
  left: 50%;
  top: 100%;
}
.select-box .select-list ul {
  background: #FFF;
  border-radius: 0.5em;
  padding: 2em 2em 1.25em;
  position: relative;
}
.select-box .select-list ul li {
  background: #E8E9EE;
  border-radius: 5em;
  cursor: pointer;
  display: inline-block;
  margin: 0 0.25em 0.75em;
  transition: background 0.5s ease, color 0.5s ease;
}
.select-box .select-list ul li a {
  padding: 0.5em 3.5vw;
}
@media screen and (min-width: 769px) {
  .select-box .select-list ul li a {
    padding: 0.5em 1.5em;
  }
}
@media screen and (min-width: 769px) {
  .select-box .select-list ul li:hover {
    background: #004098;
    color: #FFF;
  }
}
.select-box .select-list ul li:hover[data-cat*=game] {
  background: #00B4FF;
}
.select-box .select-list ul li:hover[data-cat*=event] {
  background: #E90101;
}
.select-box .select-list ul li:hover[data-cat*=camp] {
  background: #FF7F09;
}
.select-box .select-list ul li:hover[data-cat*=goods] {
  background: #00CC6E;
}
.select-box .select-list ul li:hover[data-cat*=media] {
  background: #8D1AC3;
}
.select-box .select-list ul li:hover[data-cat*=live] {
  background: #C500FF;
}
.select-box .select-list ul li:hover[data-cat*=sale] {
  background: #FF6699;
}
.select-box .select-list ul li:hover[data-cat*=apparel] {
  background: #333;
}
.select-box .select-list ul li:hover[data-cat*=other] {
  background: #333;
}
@media screen and (min-width: 769px) {
  .select-box .select-list ul li:hover a {
    color: #FFF;
  }
}
.select-box#langSelect {
  letter-spacing: normal;
  padding: 8vw 4vw 2vw;
}
@media screen and (min-width: 769px) {
  .select-box#langSelect {
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
    padding: 1vw 4vw 2vw;
    width: calc((1080 / 1840) * 100%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .select-box#langSelect {
    width: calc((884 / 1024) * 100%);
  }
}
@media screen and (min-width: 1921px) {
  .select-box#langSelect {
    padding: 18px 72px 36px;
  }
}
.select-box#langSelect .label {
  width: auto;
}
.select-box#langSelect .label::before {
  content: "\e894";
  display: inline-block;
  font-family: "Material Icons";
  font-size: 1.5em;
  margin-right: 0.25em;
  position: relative;
  vertical-align: middle;
}
.select-box#langSelect .label::after {
  bottom: auto;
  content: "\e5d7";
  left: auto;
  margin: 0 0 0 0.25em;
  opacity: 1;
  position: relative;
  right: auto;
  vertical-align: middle;
}
.select-box#langSelect .select-list {
  bottom: 100%;
  top: auto;
}
@media screen and (min-width: 769px) {
  .select-box#langSelect .select-list {
    max-width: 100%;
    width: 92%;
  }
}
.select-box#langSelect .select-list ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.3rem;
}
@media screen and (max-width: 768px) {
  .select-box#langSelect .select-list ul {
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  .select-box#langSelect .select-list ul {
    font-size: 0.18rem;
  }
}
@media screen and (min-width: 1921px) {
  .select-box#langSelect .select-list ul {
    font-size: 18px;
  }
}
.select-box#langSelect .select-list ul li {
  display: block;
  margin: 0 0.25em 0.75em;
}
@media screen and (min-width: 769px) {
  .select-box#langSelect .select-list ul li {
    width: 31%;
  }
}
@media screen and (min-width: 769px) {
  .select-box#langSelect .select-list ul li:not(:nth-child(3n)) {
    margin-right: 2%;
  }
}
.select-box#langSelect .select-list ul::after {
  border: solid;
  border-width: 0.75em 0.75em 0.75em 0.75em;
  border-color: #FFF transparent transparent transparent;
  content: "";
  height: 0;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
}

.sort-box {
  margin-bottom: 8vw;
  padding: 0 4vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .sort-box {
    margin-bottom: 4vw;
    padding: 0;
  }
}
@media screen and (min-width: 1921px) {
  .sort-box {
    margin-bottom: 72px;
  }
}
.sort-box .sort-list {
  background: #FFF;
  border-radius: 5em;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list {
    margin-left: auto;
    margin-right: auto;
    width: calc((1760 / 1840) * 100%);
  }
}
.sort-box .sort-list .sort-item {
  cursor: pointer;
  text-align: center;
  width: 32%;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item {
    width: 25%;
  }
}
.sort-box .sort-list .sort-item .label {
  transition: color 0.5s ease;
}
@media screen and (max-width: 768px) {
  .sort-box .sort-list .sort-item .label {
    font-size: 0.85em;
  }
}
.sort-box .sort-list .sort-item .label::after {
  transition: border-color 0.5s ease;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item:hover .label {
    color: #004098;
  }
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item:hover .label::after {
    color: #004098;
  }
}
.sort-box .sort-list .sort-item:not(.search):not(.clear) .label {
  padding: 4vw 2vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item:not(.search):not(.clear) .label {
    padding: 1.3333333333vw 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .sort-box .sort-list .sort-item:not(.search):not(.clear) .label {
    padding: 24px 18px;
  }
}
.sort-box .sort-list .sort-item:not(.search):not(.clear) .label::before {
  background: rgba(232, 233, 238, 0.8);
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
}
.sort-box .sort-list .sort-item:not(.search):not(.clear) .label a {
  padding: 4vw 2vw;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item:not(.search):not(.clear) .label a {
    padding: 1.3333333333vw 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .sort-box .sort-list .sort-item:not(.search):not(.clear) .label a {
    padding: 24px 18px;
  }
}
.sort-box .sort-list .sort-item:not(.search):not(.clear).series {
  width: 35%;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item:not(.search):not(.clear).series {
    width: 25%;
  }
}
.sort-box .sort-list .sort-item:not(.search):not(.clear).category {
  width: 29%;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item:not(.search):not(.clear).category {
    width: 25%;
  }
}
.sort-box .sort-list .sort-item.clear {
  transition: color 0.5s ease;
  width: 20%;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.clear {
    width: 25%;
  }
}
.sort-box .sort-list .sort-item.clear .label {
  position: relative;
}
.sort-box .sort-list .sort-item.clear .label::before {
  background: rgba(232, 233, 238, 0.8);
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
}
.sort-box .sort-list .sort-item.clear a {
  padding: 4vw 2vw;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.clear a {
    padding: 1.3333333333vw 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .sort-box .sort-list .sort-item.clear a {
    padding: 24px 18px;
  }
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.clear:hover {
    color: #004098;
  }
}
.sort-box .sort-list .sort-item.search {
  padding: 0 2vw;
  width: 16%;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search {
    padding: 0 1vw;
    position: relative;
    width: 25%;
  }
}
@media screen and (min-width: 1921px) {
  .sort-box .sort-list .sort-item.search {
    padding: 0 18px;
  }
}
.sort-box .sort-list .sort-item.search .label {
  padding: 2.6666666667vw 0;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search .label {
    display: none;
    padding: 0;
  }
}
.sort-box .sort-list .sort-item.search .label::before {
  color: #AAA;
  font-size: 2.5em;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search .label::before {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search .label::after {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search .select-list {
    background: transparent;
    border-radius: 0;
    display: block;
    position: relative;
    left: auto;
    margin: auto;
    max-width: 100%;
    max-width: initial;
    padding: 0;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }
}
.sort-box .sort-list .sort-item.search .select-list ul {
  display: block;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search .select-list ul {
    background: transparent;
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search .select-list ul::after {
    display: none;
  }
}
.sort-box .sort-list .sort-item.search .select-list ul li {
  background: transparent;
  display: block;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search .select-list ul li {
    border-radius: 0;
    cursor: default;
    margin: 0;
    padding: 0.5em;
  }
}
.sort-box .sort-list .sort-item.search .select-list ul li input[type=text] {
  -webkit-appearance: none;
  background: #E8E9EE;
  border: 1px solid #D7D7D7;
  border-radius: 2.5em;
  padding: 2vw 4vw;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search .select-list ul li input[type=text] {
    border-radius: 0.5em;
    padding: 0.5vw 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .sort-box .sort-list .sort-item.search .select-list ul li input[type=text] {
    padding: 9px 18px;
  }
}
.sort-box .sort-list .sort-item.search .select-list ul li input[type=text]::-webkit-search-decoration, .sort-box .sort-list .sort-item.search .select-list ul li input[type=text]::-webkit-search-cancel-button {
  display: none;
}
.sort-box .sort-list .sort-item.search .select-list ul li .search-btn-ic {
  background: none;
  border: none;
  color: #AAA;
  cursor: pointer;
  outline: none;
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  z-index: 9;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search .select-list ul li .search-btn-ic {
    right: 0.75vw;
  }
}
.sort-box .sort-btn {
  background: #FFF;
  border-radius: 100%;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: none;
  height: 8vw;
  margin-left: auto;
  position: absolute;
  right: 4vw;
  text-align: center;
  top: 4vw;
  width: 8vw;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .sort-box .sort-btn {
    height: 4.2vw;
    right: 0;
    top: 0;
    width: 4.2vw;
  }
}
@media screen and (min-width: 1921px) {
  .sort-box .sort-btn {
    height: 92px;
    width: 92px;
  }
}
.sort-box .sort-btn .label::before {
  color: #AAA;
  font-size: 2.5em;
  left: 50%;
  line-height: 1;
  margin-right: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.sort-box .sort-btn .label::after {
  display: none;
}

.message-box {
  background: #FFF;
  border-radius: 1.5em;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.message-box .message:not(:last-child) {
  margin-bottom: 2.6666666667vw;
}
@media screen and (max-width: 768px) {
  .message-box .message:not(:last-child) {
    border-bottom: 1px dashed #DBDBDB;
    padding-bottom: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .message-box .message:not(:last-child) {
    margin-bottom: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .message-box .message:not(:last-child) {
    margin-bottom: 18px;
  }
}
.message-box .message-link {
  position: relative;
}
.message-box .message-link .text {
  width: calc(100% - 9.5em);
}
@media screen and (min-width: 769px) {
  .message-box .message-link .text {
    width: calc(100% - 12em);
  }
}
.message-box .message-link a::after {
  color: #004098;
  content: "\e409";
  display: block;
  font-family: "Material Icons";
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.message-box .message-content-btn {
  cursor: pointer;
  position: relative;
}
.message-box .message-content-btn .text {
  width: calc(100% - 9.5em);
}
@media screen and (min-width: 769px) {
  .message-box .message-content-btn .text {
    width: calc(100% - 12em);
  }
}
.message-box .message-content-btn::after {
  color: #004098;
  content: "\e145";
  display: block;
  font-family: "Material Icons";
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.message-box .message-content-box {
  display: none;
  padding: 2vw 4vw;
}
@media screen and (min-width: 769px) {
  .message-box .message-content-box {
    padding: 18px 36px;
  }
}
.message-box a {
  display: block;
  padding: 0;
}
.message-box a.link-text {
  display: inline-block;
}
.message-box .text-box {
  letter-spacing: -0.4em;
}
.message-box .text-box .label {
  background: #004098;
  border-radius: 5em;
  color: #FFF;
  display: inline-block;
  font-size: 0.75em;
  letter-spacing: normal;
  line-height: 1;
  margin-bottom: 0;
  margin-right: 0.5em;
  padding: 1vw 1vw 1.3333333333vw;
  text-align: center;
  vertical-align: top;
  width: 9.5em;
}
@media screen and (min-width: 769px) {
  .message-box .text-box .label {
    border-radius: 0.5em;
    font-size: 1em;
    padding: 0.6666666667vw 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .message-box .text-box .label {
    padding: 12px 18px;
  }
}
.message-box .text-box .text {
  display: inline-block;
  letter-spacing: normal;
}
@media screen and (min-width: 769px) {
  .message-box .text-box .text {
    vertical-align: middle;
  }
}
.message-box .text-box .text.link-text {
  display: inline;
}

.link-btn {
  margin-right: auto;
  margin-left: auto;
  width: calc((720 / 1000) * 100%);
}
@media screen and (min-width: 769px) {
  .link-btn {
    min-width: 360px;
    width: calc((360 / 1840) * 100%);
  }
}
.link-btn .btn {
  background: linear-gradient(to right, #2caadf 0%, #297aed 100%);
  border-radius: 5em;
}
.link-btn .btn a {
  color: #FFF;
  font-size: 0.32rem;
  line-height: 1;
  padding: 4.8vw 2vw;
  text-align: center;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 769px) {
  .link-btn .btn a {
    font-size: 0.2rem;
    padding: 1.6666666667vw 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .link-btn .btn a {
    font-size: 20px;
    padding: 30px 18px;
  }
}
@media screen and (min-width: 769px) {
  .link-btn .btn a:hover {
    opacity: 0.8;
  }
}
.link-btn .btn.color-red {
  background: linear-gradient(to right, #ed5729 0%, #df2c2c 100%);
}
.link-btn .btn.color-dark {
  background: linear-gradient(to right, #919191 0%, #676767 100%);
}
.link-btn .btn.border-only-red {
  background: none;
  border: 2px solid #FF3300;
}
.link-btn .btn.border-only-red a {
  color: #FF3300;
}
.link-btn .btn.square {
  background: transparent;
  border: 2px solid #004098;
  border-radius: 0;
}
.link-btn .btn.square a {
  color: #004098;
}
.link-btn.col-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.link-btn.col-2 .btn {
  width: 48%;
}
.link-btn.col-2 .btn a {
  width: 100%;
}

.link-text {
  background: linear-gradient(transparent 96.5%, #004098 0%);
  color: #004098;
  display: inline;
  position: relative;
  transition: background 0.2s ease;
}
.link-text:hover {
  background: transparent;
}

.bnr-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bnr-list .bnr {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .bnr-list .bnr {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .bnr-list .bnr {
    width: 24%;
  }
}
.bnr-list .bnr a {
  transition: opacity 0.5s ease;
}
.bnr-list .bnr a:hover {
  opacity: 0.8;
}

.sns-list {
  background: #FFF;
  border-radius: 1.5em;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .sns-list {
    align-items: center;
  }
}
.sns-list li.ttl {
  border-bottom: 1px solid #d2d3d8;
  color: #004098;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2.6666666667vw 4vw;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .sns-list li.ttl {
    border-bottom: none;
    font-size: 0.44rem;
    padding: 1.3333333333vw 2vw;
    text-align: center;
    width: 24%;
  }
}
@media screen and (min-width: 1921px) {
  .sns-list li.ttl {
    font-size: 44px;
    padding: 24px 36px;
  }
}
.sns-list li.ttl small {
  margin-left: 2vw;
  font-size: 0.24rem;
  vertical-align: middle;
}
@media screen and (min-width: 769px) {
  .sns-list li.ttl small {
    display: block;
    font-size: 0.18rem;
    margin-left: 0;
  }
}
@media screen and (min-width: 1921px) {
  .sns-list li.ttl small {
    font-size: 18px;
  }
}
.sns-list li.sns {
  text-align: center;
  width: calc(100% / 3);
}
@media screen and (max-width: 768px) {
  .sns-list li.sns {
    border-right: 1px solid #d2d3d8;
    border-bottom: 1px solid #d2d3d8;
  }
}
@media screen and (min-width: 769px) {
  .sns-list li.sns {
    border-left: 1px solid #d2d3d8;
    width: calc(76% / 6);
  }
}
.sns-list li.sns a {
  line-height: 1;
  padding: 2.6666666667vw 0;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 769px) {
  .sns-list li.sns a {
    padding: 1.3333333333vw 0;
  }
}
@media screen and (min-width: 1921px) {
  .sns-list li.sns a {
    padding: 24px 0;
  }
}
@media screen and (min-width: 769px) {
  .sns-list li.sns a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .sns-list li.sns-YouTube {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .sns-list li.sns-Instagram {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .sns-list li.sns-LINE {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .sns-list li.sns-OTHER {
    border-right: none;
    border-bottom: none;
  }
}
.sns-list li figure img {
  margin-bottom: 1vw;
  padding: 0 8vw;
}
@media screen and (min-width: 769px) {
  .sns-list li figure img {
    margin-bottom: 0.5vw;
    padding: 0 0.6666666667vw;
    width: 50%;
  }
}
@media screen and (min-width: 1921px) {
  .sns-list li figure img {
    margin-bottom: 9px;
    padding: 0 12px;
  }
}
.sns-list li figure figcaption span {
  display: none;
}
@media screen and (min-width: 769px) {
  .sns-list li figure figcaption span {
    display: inline;
  }
}

.iframe-player {
  background: #000;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.iframe-player .player {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
.iframe-player .yt-link {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  .iframe-player .yt-link {
    display: none;
  }
}
.iframe-player::after {
  -webkit-animation: youtubeLoading 1.1s infinite linear;
  animation: youtubeLoading 1.1s infinite linear;
  content: "";
  border-top: 4px solid rgba(255, 255, 255, 0.8);
  border-right: 4px solid rgba(255, 255, 255, 0);
  border-bottom: 4px solid rgba(255, 255, 255, 0.8);
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 100%;
  box-sizing: border-box;
  display: block;
  height: 12vw;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  width: 12vw;
}
@media screen and (min-width: 769px) {
  .iframe-player::after {
    height: 4vw;
    width: 4vw;
  }
}

.error-msg {
  border: 1px solid #F00;
  margin-bottom: 4vw;
  padding: 4vw;
}
@media screen and (min-width: 769px) {
  .error-msg {
    margin-bottom: 2vw;
    padding: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .error-msg {
    margin-bottom: 36px;
    padding: 36px;
  }
}

.form-box {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .form-box {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .form-box {
    margin-bottom: 36px;
  }
}
.form-box-inner {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .form-box-inner {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .form-box-inner {
    margin-bottom: 36px;
  }
}
.form-box .form-ttl {
  color: #004098;
  font-size: 0.44rem;
  font-weight: 700;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .form-box .form-ttl {
    font-size: 0.36rem;
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 1921px) {
  .form-box .form-ttl {
    font-size: 36px;
    margin-bottom: 24px;
  }
}
.form-box .form-ttl::before {
  background: #004098;
  height: 1.2em;
  content: "";
  display: inline-block;
  margin-right: 0.4em;
  position: relative;
  top: -0.1em;
  vertical-align: middle;
  width: 3px;
}
@media screen and (min-width: 769px) {
  .form-box .form-ttl::before {
    width: 5px;
  }
}
.form-box .form-table {
  width: 100%;
}
.form-box .form-table th {
  border-bottom: 1px solid #D7D7D7;
  color: #004098;
  overflow: hidden;
  padding: 2em 0;
  position: relative;
  text-align: left;
  vertical-align: top;
  width: 40%;
}
.form-box .form-table th.mandatory::before {
  background: #e90101;
  border-radius: 0.2em;
  color: #FFF;
  content: "必須";
  display: inline-block;
  float: right;
  font-size: 0.8em;
  padding: 0.2em 0.5em;
}
.form-box .form-table td {
  border-bottom: 1px solid #D7D7D7;
  padding: 2em 0 2em 2em;
  vertical-align: middle;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .form-box .form-table.responsive-table th {
    border-bottom: none;
    display: block;
    padding: 1em 1em 0.5em;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .form-box .form-table.responsive-table th {
    padding: 2em 0;
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .form-box .form-table.responsive-table td {
    display: block;
    padding: 0.5em 1em 1em;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .form-box .form-table.responsive-table td {
    padding: 2em 0 2em 2em;
    width: 60%;
  }
}
.form-box .form-table.ezine th {
  padding: 1em 1em 1em 0;
  text-align: center;
  width: 64%;
}
@media screen and (min-width: 769px) {
  .form-box .form-table.ezine th {
    padding: 2em 0;
    text-align: left;
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  .form-box .form-table.ezine th .label {
    display: block;
  }
}
.form-box .form-table.ezine th img {
  margin-right: 1em;
  max-width: 268px;
  vertical-align: middle;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .form-box .form-table.ezine th img {
    width: 40%;
  }
}
.form-box .form-table.ezine td {
  padding: 1em 0;
  text-align: center;
  width: 32%;
}
@media screen and (min-width: 769px) {
  .form-box .form-table.ezine td {
    padding: 2em 2em 2em 0;
    width: 15%;
  }
}
.form-box .form-table.ezine-confirm td {
  padding: 2em;
  width: 100%;
}
.form-box .form-table.ezine-confirm td img {
  margin-right: 1em;
  max-width: 268px;
  vertical-align: middle;
  width: 40%;
}
.form-box .form-text {
  background: #E8E9EE;
  border: 1px solid #D7D7D7;
  border-radius: 0.5em;
  padding: 1em;
  width: 100%;
}
.form-box .form-text.size-l {
  width: 60%;
}
.form-box .form-text.size-l:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-text.size-m {
  width: 40%;
}
.form-box .form-text.size-m:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-text.size-s {
  width: 20%;
}
.form-box .form-text.size-s:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-select {
  background: #FFF;
  border: #D7D7D7 solid 1px;
  border-radius: 0.5em;
  display: inline-block;
  position: relative;
  width: 30%;
}
.form-box .form-select:not(:last-child) {
  margin-right: 0.25em;
}
.form-box .form-select.size-l {
  width: 60%;
}
.form-box .form-select.size-m {
  width: 40%;
}
.form-box .form-select.size-s {
  width: 20%;
}
.form-box .form-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  outline: none;
  padding: 0.75em 1em;
  position: relative;
  width: 100%;
  z-index: 2;
}
.form-box .form-select select::-ms-expand {
  display: none;
}
.form-box .form-select + label {
  margin-right: 0.5em;
}
.form-box .form-select::after {
  display: inline-block;
  font-family: "Material Icons";
  font-size: 1.5em;
  content: "\e5c5";
  position: absolute;
  right: 0.25em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.form-box .form-check {
  display: inline-block;
  height: 1.5em;
  position: relative;
  vertical-align: middle;
  width: 1.5em;
}
.form-box .form-check::before {
  background: #E8E9EE;
  border: 1px solid #D7D7D7;
  border-radius: 0.5em;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.form-box .form-check input[type=checkbox] {
  display: none;
}
.form-box .form-check input[type=checkbox]:checked + .check {
  border-bottom: 2px solid #004098;
  border-right: 2px solid #004098;
  content: "";
  display: block;
  height: calc(100% - 0.8em);
  left: 50%;
  margin-top: -0.1em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(40deg);
  width: calc(100% - 1em);
}
.form-box .form-radio {
  display: inline-block;
  padding-left: 2em;
  position: relative;
  vertical-align: middle;
}
.form-box .form-radio::before {
  background: #E8E9EE;
  border: 1px solid #D7D7D7;
  border-radius: 50%;
  content: "";
  display: block;
  height: 1.5em;
  left: 0;
  position: absolute;
  top: 0;
  width: 1.5em;
}
.form-box .form-radio input[type=radio] {
  display: none;
}
.form-box .form-radio input[type=radio]:checked + .radio {
  background: #004098;
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.7em;
  left: 0.4em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7em;
}
.form-box .form-radio-switch {
  height: 2em;
  position: relative;
}
@media screen and (min-width: 1401px) {
  .form-box .form-radio-switch {
    font-size: 15px;
  }
}
.form-box .form-radio-switch label {
  color: #FFF;
  cursor: pointer;
  font-weight: 700;
  height: 0.9em;
  line-height: 1;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  z-index: 2;
}
.form-box .form-radio-switch input[type=radio] {
  cursor: pointer;
  height: 100%;
  opacity: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.form-box .form-radio-switch input[type=radio]:checked {
  z-index: 1;
}
.form-box .form-radio-switch input[type=radio]:checked + label {
  cursor: default;
  opacity: 1;
  z-index: 1;
}
.form-box .form-radio-switch input[type=radio]:checked.form-radio-switch-on + label {
  left: 30%;
}
.form-box .form-radio-switch input[type=radio]:checked.form-radio-switch-on ~ .form-radio-switch-outside {
  background: linear-gradient(to right, #2caadf 0%, #297aed 100%);
}
.form-box .form-radio-switch input[type=radio]:checked.form-radio-switch-on ~ .form-radio-switch-outside .form-radio-switch-inside {
  left: 4%;
}
.form-box .form-radio-switch input[type=radio]:checked.form-radio-switch-off + label {
  right: 30%;
}
.form-box .form-radio-switch input[type=radio]:checked.form-radio-switch-off ~ .form-radio-switch-outside {
  background: linear-gradient(to right, #919191 0%, #676767 100%);
}
.form-box .form-radio-switch input[type=radio]:checked.form-radio-switch-off ~ .form-radio-switch-outside .form-radio-switch-inside {
  left: calc(96% - 1.5em);
}
.form-box .form-radio-switch-outside {
  border-radius: 2em;
  height: 100%;
  left: 0;
  overflow: hidden;
  padding: 0.25em;
  position: absolute;
  top: 0;
  transition: background 0.25s ease, left 0.25s ease;
  width: 100%;
}
.form-box .form-radio-switch-inside {
  background: #FFF;
  border-radius: 50%;
  height: 1.5em;
  position: absolute;
  top: 50%;
  transition: background 0.25s ease, left 0.25s ease;
  transform: translateY(-50%);
  width: 1.5em;
}
.form-box .button-wrap {
  margin-right: auto;
  margin-left: auto;
  width: 72%;
}
@media screen and (min-width: 769px) {
  .form-box .button-wrap {
    width: 48%;
  }
}
.form-box .button-wrap.multi-col {
  width: 48%;
}
.form-box .form-button {
  background: linear-gradient(to right, #2caadf 0%, #297aed 100%);
  border: none;
  border-radius: 5em;
  color: #FFF;
  cursor: pointer;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.32rem;
  line-height: 1;
  outline: none;
  padding: 4vw 2vw;
  text-align: center;
  transition: opacity 0.5s ease;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .form-box .form-button {
    font-size: 0.2rem;
    padding: 1.3333333333vw 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .form-box .form-button {
    font-size: 20px;
    padding: 24px 18px;
  }
}
@media screen and (min-width: 769px) {
  .form-box .form-button:hover {
    opacity: 0.8;
  }
}
.form-box .form-button.single {
  margin-right: auto;
  margin-left: auto;
}
.form-box .form-button.size-l {
  width: 68%;
}
.form-box .form-button.size-l:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-button.size-m {
  width: 48%;
}
.form-box .form-button.size-m:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-button.size-s {
  width: 28%;
}
.form-box .form-button.size-s:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-button.color-dark {
  background: linear-gradient(to right, #919191 0%, #676767 100%);
}
.form-box .form-button.color-red {
  background: linear-gradient(to right, #ed5729 0%, #df2c2c 100%);
}

.ac-box-share {
  display: none;
}

.ac-btn-share {
  cursor: pointer;
  position: relative;
}
.ac-btn-share::after {
  color: #BABABA;
  content: "▼";
  display: inline-block;
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  right: 2vw;
  top: 50%;
  transform: translateY(-50%);
}
.ac-btn-share.is-active::after {
  content: "▲";
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}

.to-top {
  position: relative;
  right: 4vw;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .to-top {
    right: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .to-top {
    right: 36px;
  }
}
.to-top p {
  background: #004098;
  border-radius: 0 0 0.5em 0.5em/0 0 0.5em 0.5em;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  padding: 2vw 4vw 2vw 2vw;
  text-align: center;
  transition: color 0.5s ease;
}
@media screen and (min-width: 769px) {
  .to-top p {
    padding: 0.5vw 1vw 0.5vw 0.5vw;
  }
}
@media screen and (min-width: 1921px) {
  .to-top p {
    padding: 9px 18px 9px 9px;
  }
}
.to-top p::before {
  content: "\e5c7";
  display: inline-block;
  font-family: "Material Icons";
  font-size: 2em;
  vertical-align: middle;
}
@media screen and (min-width: 769px) {
  .to-top p:hover {
    color: #FED100;
  }
}

/************************************
	Community
************************************/
.community .conts-box.fullSize {
  margin-bottom: 0;
  padding: 0;
}
.community .conts-box.fullSize .conts-box-inner {
  padding: 4vw 0;
}
@media screen and (min-width: 769px) {
  .community .conts-box.fullSize .conts-box-inner {
    padding: 4vw 0;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box.fullSize .conts-box-inner {
    padding: 72px 0;
  }
}
.community .conts-box.fullSize .conts-box-inner.service {
  padding: 12vw 0 4vw;
}
@media screen and (min-width: 769px) {
  .community .conts-box.fullSize .conts-box-inner.service {
    padding: 4vw 0;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box.fullSize .conts-box-inner.service {
    padding: 72px 0;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box.fullSize .conts-box-inner.service.service-2 {
    margin: -1em 0;
    padding: 0;
    position: relative;
    z-index: -1;
  }
}
.community .conts-box.fullSize .inner {
  padding: 0 4vw;
}
@media screen and (min-width: 769px) {
  .community .conts-box.fullSize .inner {
    padding: 0 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box.fullSize .inner {
    padding: 0 36px;
  }
}
.community .conts-box .ttl-h3 {
  color: #004098;
  font-size: 0.54rem;
  font-weight: 700;
  margin-bottom: 2vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .community .conts-box .ttl-h3 {
    font-size: 0.46rem;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box .ttl-h3 {
    font-size: 46px;
    margin-bottom: 36px;
  }
}
.community .conts-box .link-btn .btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.community .conts-box .link-btn.single {
  justify-content: center;
}
.community .conts-box .text-box {
  font-weight: 700;
}
.community .conts-box .text-box p .fc-r {
  color: #FF3300;
}
.community .conts-box#mycapcom {
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  .community .conts-box#mycapcom {
    padding: 0 4vw;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom {
    margin-top: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .conts-box-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .inner {
    margin-right: auto;
    margin-left: auto;
    width: calc((1280 / 1840) * 100%);
  }
}
.community .conts-box#mycapcom .ttl-h2 {
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  width: calc((900 / 1080) * 100%);
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .ttl-h2 {
    width: calc((800 / 1280) * 100%);
  }
}
@media screen and (max-width: 768px) {
  .community .conts-box#mycapcom .ttl-h2 img {
    left: -0.3em;
    position: relative;
  }
}
.community .conts-box#mycapcom .text-box {
  font-size: 0.44rem;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .text-box {
    font-size: 0.4rem;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .text-box {
    font-size: 40px;
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .link-btn {
    margin-right: auto;
    margin-left: auto;
    width: calc((800 / 1280) * 100%);
  }
}
.community .conts-box#mycapcom .link-btn .btn a {
  display: block;
  padding: 2.6666666667vw 2vw;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .link-btn .btn a {
    padding: 1.3333333333vw 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .link-btn .btn a {
    padding: 24px 18px;
  }
}
.community .conts-box#mycapcom .link-btn-login {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .link-btn-login {
    margin-right: auto;
    margin-left: auto;
    width: calc((800 / 1280) * 100%);
  }
}
.community .conts-box#mycapcom .link-btn-login .btn a {
  font-size: 0.38rem;
  padding: 5vw 2vw;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .link-btn-login .btn a {
    font-size: 0.28rem;
    padding: 2vw 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .link-btn-login .btn a {
    font-size: 28px;
    padding: 36px 18px;
  }
}
.community .conts-box#mycapcom .link-btn-login .terms-link {
  display: inline-block;
  right: 4vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .link-btn-login .terms-link {
    right: 4vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .link-btn-login .terms-link {
    right: 72px;
  }
}
.community .conts-box#mycapcom .link-btn-login .terms-link a {
  color: #FFF;
  font-size: 0.85em;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .community .conts-box#mycapcom .link-btn-login .terms-link a {
    padding: 1em 0;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .link-btn-login .terms-link a:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .link-btn.single {
    min-width: 300px;
    width: calc((300 / 1280) * 100%);
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box {
    margin-right: auto;
    margin-left: auto;
    width: calc((1120 / 1280) * 100%);
  }
}
.community .conts-box#mycapcom .border-box .link-btn-label {
  color: #FFF;
  line-height: 1.2;
  padding: 2.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box .link-btn-label {
    padding: 1vw 0.5 3vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .border-box .link-btn-label {
    padding: 18px 0.5 54px;
    right: 72px;
  }
}
.community .conts-box#mycapcom .border-box-cid {
  background: #FFF;
  margin-bottom: 4vw;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box-cid {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .border-box-cid {
    margin-bottom: 36px;
  }
}
.community .conts-box#mycapcom .border-box-cid .link-btn-label {
  background: #0050C2;
}
.community .conts-box#mycapcom .border-box-cid .note {
  font-size: 0.28rem;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box-cid .note {
    font-size: 0.18rem;
    margin-bottom: 1.3333333333vw;
    text-align: center;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .border-box-cid .note {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.community .conts-box#mycapcom .border-box-cid .cid-info {
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  border-left: 1px solid #CCC;
  padding: 2.6666666667vw 4vw 4vw;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box-cid .cid-info {
    padding: 1.3333333333vw 2vw 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .border-box-cid .cid-info {
    padding: 24px 36px 36px;
  }
}
.community .conts-box#mycapcom .border-box-cid .cid-logo {
  margin-right: auto;
  margin-bottom: -2vw;
  margin-left: auto;
  position: relative;
  width: 50%;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box-cid .cid-logo {
    margin-bottom: -0.5vw;
    width: 25%;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .border-box-cid .cid-logo {
    margin-bottom: -9px;
  }
}
.community .conts-box#mycapcom .border-box-cid .cid-about {
  margin-bottom: 2vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box-cid .cid-about {
    margin-bottom: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .border-box-cid .cid-about {
    margin-bottom: 18px;
  }
}
.community .conts-box#mycapcom .border-box-cid .cid-about a {
  color: #004098;
  display: inline-block;
  font-size: 0.28rem;
  padding: 0;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box-cid .cid-about a {
    font-size: 0.16rem;
    left: 0.5em;
    position: relative;
    top: -0.5em;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .border-box-cid .cid-about a {
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box-cid .cid-about a:hover {
    text-decoration: none;
  }
}
.community .conts-box#mycapcom .border-box-ca {
  width: 100%;
}
.community .conts-box#mycapcom .border-box-ca a {
  display: block;
  transition: opacity 0.25s ease;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box-ca a:hover {
    opacity: 0.8;
  }
}
.community .conts-box#mycapcom .border-box-ca .link-btn-label {
  border: 2px solid #FF3300;
  color: #FF3300;
  font-size: 0.27rem;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .border-box-ca .link-btn-label {
    font-size: 0.2rem;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .border-box-ca .link-btn-label {
    font-size: 20px;
  }
}
.community .conts-box#mycapcom .message-box {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .message-box {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .message-box {
    margin-bottom: 36px;
  }
}
.community .conts-box#mycapcom .message-box .text-box {
  font-size: 0.32rem;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .community .conts-box#mycapcom .message-box .text-box {
    font-size: 0.2rem;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#mycapcom .message-box .text-box {
    font-size: 20px;
  }
}
.community .conts-box#mycapcom .message-box .text-box .text {
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    width: calc((1600 / 1840) * 100%);
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#service .inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
  }
}
.community .conts-box#service .text-box {
  font-size: 0.32rem;
  margin-bottom: 6vw;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .community .conts-box#service .text-box {
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .text-box {
    font-size: 0.28rem;
    margin-bottom: 3vw;
    padding-left: 5.5em;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#service .text-box {
    font-size: 28px;
    margin-bottom: 54px;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .text-box p {
    padding-left: 1em;
  }
}
.community .conts-box#service .ttl-h3 {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .ttl-h3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.46rem;
    margin-bottom: 0.5vw;
    position: relative;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#service .ttl-h3 {
    font-size: 46px;
    margin-bottom: 9px;
  }
}
.community .conts-box#service .ttl-h3 .num {
  color: #FFF;
  display: inline-block;
  font-size: 0.64rem;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .community .conts-box#service .ttl-h3 .num {
    margin-bottom: 6vw;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .ttl-h3 .num {
    font-size: 0.56rem;
    left: -2em;
    position: absolute;
    top: 0.5em;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#service .ttl-h3 .num {
    font-size: 56px;
  }
}
.community .conts-box#service .ttl-h3 .num small {
  display: block;
  font-size: 0.22rem;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .ttl-h3 .num small {
    font-size: 0.18rem;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#service .ttl-h3 .num small {
    font-size: 18px;
  }
}
.community .conts-box#service .ttl-h3 .num::after {
  background: #004098;
  border-radius: 0.2em;
  content: "";
  display: block;
  left: 50%;
  height: 2.5em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 2.5em;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .ttl-h3 .num::after {
    height: 2em;
    width: 2em;
  }
}
.community .conts-box#service .ttl-h3 .text {
  display: block;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .ttl-h3 .text {
    padding-left: 0.5em;
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .img {
    width: calc((625 / 1600) * 100%);
  }
}
.community .conts-box#service .bnr-list {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .bnr-list {
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .bnr-list-item {
    width: 38%;
  }
}
@media screen and (max-width: 768px) {
  .community .conts-box#service .bnr-list-item:not(:last-child) {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .bnr-list-item:not(:last-child) {
    margin-right: 4%;
  }
}
.community .conts-box#service .service-2 {
  position: relative;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .service-2 .text-box {
    margin-bottom: 8vw;
    position: relative;
    top: 5vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#service .service-2 .text-box {
    margin-bottom: 144px;
    top: 90px;
  }
}
.community .conts-box#service .service-2 .img img {
  position: absolute;
  right: 18%;
  top: 0;
  width: 20%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .community .conts-box#service .service-2 .img img {
    display: none;
  }
}
.community .conts-box#service .service-2 .mailmagazine-list {
  padding-bottom: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .service-2 .mailmagazine-list {
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 2vw;
    width: 88%;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#service .service-2 .mailmagazine-list {
    padding-bottom: 36px;
  }
}
.community .conts-box#service .service-2 .mailmagazine-list-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4%;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .service-2 .mailmagazine-list-item {
    width: 49%;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .service-2 .mailmagazine-list-item:not(:nth-child(even)) {
    margin-right: 2%;
  }
}
.community .conts-box#service .service-2 .mailmagazine-list-item .thumb {
  width: 40%;
}
.community .conts-box#service .service-2 .mailmagazine-list-item .detail-box {
  padding: 2vw;
  width: 60%;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .service-2 .mailmagazine-list-item .detail-box {
    padding: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#service .service-2 .mailmagazine-list-item .detail-box {
    padding: 18px;
  }
}
.community .conts-box#service .service-2 .mailmagazine-list-item .detail-box .name {
  border-left: 4px solid #004098;
  color: #004098;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  padding-left: 0.5em;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .service-2 .mailmagazine-list-item .detail-box .name {
    font-size: 1.2em;
    margin-bottom: 1em;
  }
}
.community .conts-box#service .service-2 .mailmagazine-list-item .detail-box .text {
  font-weight: 700;
  padding: 0 0.5em;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .rellink {
    min-height: 48vh;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#service .rellink .inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px;
  }
}
.community .conts-box#service .rellink .ttl-h3 {
  display: block;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .rellink .ttl-h3 {
    margin-bottom: 2vw;
  }
}
.community .conts-box#service .rellink .bnr-list {
  justify-content: center;
  width: 100%;
}
.community .conts-box#service .rellink .bnr-list-item {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .rellink .bnr-list-item {
    width: 38%;
  }
}
@media screen and (max-width: 768px) {
  .community .conts-box#service .rellink .bnr-list-item:not(:last-child) {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .rellink .bnr-list-item:not(:last-child) {
    margin-right: 4%;
  }
}
.community .conts-box#service .rellink .bnr-list-item.size-s {
  width: 48%;
}
@media screen and (min-width: 769px) {
  .community .conts-box#service .rellink .bnr-list-item.size-s {
    width: 38%;
  }
}
@media screen and (max-width: 768px) {
  .community .conts-box#service .rellink .bnr-list-item.size-s:not(:last-child) {
    margin-right: 4%;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box .series .inner {
    margin-right: auto;
    margin-left: auto;
    width: calc((1500 / 1840) * 100%);
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box .series .ttl-h3 .text {
    text-align: center;
  }
}
.community .conts-box .series .panel-list {
  justify-content: space-between;
}
.community .conts-box .series .panel-list .panel {
  background: #E8E9EE;
  border: 2px solid #E8E9EE;
}
@media screen and (min-width: 769px) {
  .community .conts-box .series .panel-list .panel {
    width: 23%;
  }
}
.community .conts-box .series .panel-list .panel .info-box {
  margin-bottom: 0;
}
.community .conts-box .series .panel-list .panel .ttl {
  color: #004098;
  font-size: 0.28rem;
  font-weight: 700;
  margin-bottom: 2vw;
  margin-left: 0.5em;
  padding-left: 0.5em;
  text-indent: -0.5em;
}
@media screen and (min-width: 769px) {
  .community .conts-box .series .panel-list .panel .ttl {
    font-size: 0.2rem;
    margin-bottom: 0.5vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box .series .panel-list .panel .ttl {
    font-size: 20px;
    margin-bottom: 9px;
  }
}
.community .conts-box .series .panel-list .panel .ttl::before {
  background: #004098;
  height: 1.2em;
  content: "";
  left: -0.5em;
  display: inline-block;
  position: relative;
  top: 0.2em;
  vertical-align: top;
  width: 3px;
}
.community .conts-box .series .panel-list .panel .conts-list li {
  padding-left: 1em;
  text-indent: -1em;
}
.community .conts-box .series .panel-list .panel .conts-list li:not(:last-child) {
  margin-bottom: 0.2em;
}
.community .conts-box .series .panel-list .panel .conts-list li::before {
  content: "・";
}
.community .conts-box#account {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .community .conts-box#account .inner-box {
    padding: 4vw 0;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#account .inner-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    width: calc((1500 / 1840) * 100%);
  }
}
@media screen and (max-width: 768px) {
  .community .conts-box#account .inner {
    padding: 0 4vw;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#account .inner {
    padding: 0;
    width: 48%;
  }
}
.community .conts-box#account .inner h3 {
  color: #004098;
  font-size: 0.5rem;
  font-weight: 700;
  margin-bottom: 2vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .community .conts-box#account .inner h3 {
    font-size: 0.42rem;
    margin-bottom: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#account .inner h3 {
    font-size: 42px;
    margin-bottom: 18px;
  }
}
.community .conts-box#account .inner a {
  display: block;
  transition: opacity 0.5s ease-out;
}
@media screen and (min-width: 769px) {
  .community .conts-box#account .inner a:hover {
    opacity: 0.8;
  }
}
.community .conts-box#account .inner .col-box {
  justify-content: center;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) {
  .community .conts-box#account .inner .col-box {
    margin-bottom: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#account .inner .col-box {
    margin-bottom: 18px;
  }
}
.community .conts-box#account .inner .thumb:not(:last-child) {
  margin-right: 1em;
}
.community .conts-box#account .inner .thumb img {
  border: 1px solid #E8E9EE;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .community .conts-box#account .inner .text-box {
    width: calc((560 / 960) * 100%);
  }
}
.community .conts-box#account .inner .text-box p {
  font-size: 0.26rem;
}
@media screen and (min-width: 769px) {
  .community .conts-box#account .inner .text-box p {
    font-size: 0.2rem;
  }
}
@media screen and (min-width: 1921px) {
  .community .conts-box#account .inner .text-box p {
    font-size: 20px;
  }
}
.community .conts-box#account .inner .link-btn .btn a {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .community .conts-box#account .inner#capcomId {
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .community .conts-box#account .inner#capcomId {
    border-right: 1px solid #E8E9EE;
  }
}
.community .conts-box#account .inner#capcomId .thumb:nth-child(1) {
  width: calc((460 / 720) * 100%);
}
.community .conts-box#account .inner#capcomId .thumb:nth-child(2) {
  width: calc((182 / 720) * 100%);
}
@media screen and (min-width: 769px) {
  .community .conts-box#account .inner#capcomId .thumb:nth-child(2) {
    width: calc((162 / 720) * 100%);
  }
}
.community .conts-box#account .inner#capcomAccount .thumb {
  width: calc((182 / 720) * 100%);
}
@media screen and (min-width: 769px) {
  .community .conts-box#account .inner#capcomAccount .thumb {
    width: calc((162 / 720) * 100%);
  }
}
.community.login .conts-box#mycapcom {
  margin-top: 0;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .community.login .conts-box#mycapcom {
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .community.login .conts-box#mycapcom {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .community.login .conts-box#mycapcom {
    margin-bottom: 36px;
  }
}
.community.login .conts-box#mycapcom .ttl-h2 {
  line-height: 0;
  margin-right: auto;
  margin-left: auto;
  width: calc((700 / 1080) * 100%);
}
@media screen and (min-width: 769px) {
  .community.login .conts-box#mycapcom .ttl-h2 {
    width: calc((350 / 1280) * 100%);
  }
}
@media screen and (max-width: 768px) {
  .community.login .conts-box#mycapcom .ttl-h2 img {
    left: -0.2em;
    position: relative;
  }
}
.community.login .conts-box#userinfo .conts-box-inner {
  padding: 0 0 8vw;
}
@media screen and (min-width: 769px) {
  .community.login .conts-box#userinfo .conts-box-inner {
    padding: 0 0 4vw;
  }
}
@media screen and (min-width: 1921px) {
  .community.login .conts-box#userinfo .conts-box-inner {
    padding: 0 0 72px;
  }
}
@media screen and (min-width: 769px) {
  .community.login .conts-box#userinfo .inner {
    margin-right: auto;
    margin-left: auto;
    width: calc((1280 / 1840) * 100%);
  }
}
.community.login .conts-box#userinfo .user-name {
  color: #004098;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .community.login .conts-box#userinfo .user-name {
    font-size: 0.54rem;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .community.login .conts-box#userinfo .user-name {
    font-size: 54px;
    margin-bottom: 36px;
  }
}
.community.login .conts-box#userinfo .user-name small {
  color: #000;
  display: inline;
  font-size: 0.4rem;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .community.login .conts-box#userinfo .user-name small {
    font-size: 0.36rem;
  }
}
@media screen and (min-width: 1921px) {
  .community.login .conts-box#userinfo .user-name small {
    font-size: 36px;
  }
}
.community.login .conts-box#userinfo .text-box {
  font-size: 0.32rem;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .community.login .conts-box#userinfo .text-box {
    font-size: 0.28rem;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .community.login .conts-box#userinfo .text-box {
    font-size: 28px;
    margin-bottom: 36px;
  }
}
.community.login .conts-box#userinfo .link-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .community.login .conts-box#userinfo .link-btn {
    width: calc((800 / 1280) * 100%);
  }
}
.community.login .conts-box#userinfo .link-btn .btn {
  display: block;
  width: 48%;
}
.community.login .conts-box#news {
  margin-bottom: 0;
}
.community.login .conts-box#news .conts-box-inner {
  padding: 4vw 0;
}
@media screen and (min-width: 769px) {
  .community.login .conts-box#news .conts-box-inner {
    padding: 4vw 0;
  }
}
@media screen and (min-width: 1921px) {
  .community.login .conts-box#news .conts-box-inner {
    padding: 72px 0;
  }
}
@media screen and (max-width: 768px) {
  .community.login .conts-box#news .panel-list .panel:nth-of-type(odd) {
    margin-right: 4%;
  }
}
@media screen and (min-width: 769px) {
  .community.login .conts-box#news .panel-list .panel:not(:nth-of-type(5n)) {
    margin-right: 2%;
  }
}
.community.mypage .conts-box .conts-box-inner {
  padding: 4vw 6vw;
}
@media screen and (min-width: 769px) {
  .community.mypage .conts-box .conts-box-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 900px;
    padding: 2vw 3vw;
  }
}
@media screen and (min-width: 1921px) {
  .community.mypage .conts-box .conts-box-inner {
    padding: 36px 54px;
  }
}
.community.mypage .conts-box .form-box .form-table th img {
  margin-right: 2em;
}
.community.mypage .conts-box .form-box .form-table th .label {
  font-size: 1.2em;
}
@media screen and (min-width: 769px) {
  .community.mypage .conts-box .form-box .form-button {
    margin-right: auto;
    margin-left: auto;
    max-width: 360px;
  }
}
@media screen and (max-width: 768px) {
  .community.mypage .conts-box .form-box .table-club96 th, .community.mypage .conts-box .form-box .table-club96 td {
    border-bottom: none;
  }
}
.community.mypage .conts-box .form-box .table-club96 img {
  vertical-align: top;
}
.community.mypage .conts-box .form-box .table-club96-text .text-box {
  color: #e90101;
  display: inline-block;
  font-weight: 400;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .community.mypage .conts-box .form-box .table-club96-text .text-box {
    font-size: 0.85em;
    width: 50%;
  }
}
.community.mypage .conts-box .form-box .table-club96-text .text-box .note {
  color: #000;
}
.community.mypage .conts-box .form-box .table-club96-text .text-box .link-text {
  background: linear-gradient(transparent 96.5%, #e90101 0%);
  color: #e90101;
}
.community.mypage .conts-box#withdraw .conts-box-inner {
  padding: 0;
}
@media screen and (min-width: 769px) {
  .community.mypage .conts-box#withdraw .form-box .col-box {
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    width: calc((1200 / 1280) * 100%);
  }
}
.community.mypage .conts-box#withdraw .form-box .button-wrap {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .community.mypage .conts-box#withdraw .form-box .button-wrap {
    margin-right: 0;
    margin-left: 0;
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .community.mypage .conts-box#withdraw .form-box .button-wrap:not(:last-child) {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .community.mypage .conts-box#withdraw .form-box .form-button {
    max-width: auto;
    max-width: initial;
  }
}

/************************************
	Member
************************************/
.member {
  background: #FFF;
}
.member .conts-box .ttl-h2 {
  font-weight: 700;
  margin-bottom: 16vw;
}
@media screen and (min-width: 769px) {
  .member .conts-box .ttl-h2 {
    font-size: 0.56rem;
    margin-right: auto;
    margin-bottom: 8vw;
    margin-left: auto;
    width: calc((1000 / 1840) * 100%);
  }
}
@media screen and (min-width: 1921px) {
  .member .conts-box .ttl-h2 {
    margin-top: 54px;
  }
}
@media screen and (min-width: 1921px) {
  .member .conts-box .ttl-h2 {
    font-size: 56px;
    margin-bottom: 144px;
  }
}
@media screen and (max-width: 768px) {
  .member .conts-box .ttl-h2 img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 92%;
  }
}
@media screen and (min-width: 769px) {
  .member .conts-box .ttl-h2 img {
    margin-right: 0.5em;
    vertical-align: middle;
    width: calc((550 / 1000) * 100%);
  }
}
.member .conts-box .ttl-h2.mg-b-h {
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) {
  .member .conts-box .ttl-h2.mg-b-h {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1921px) {
  .member .conts-box .ttl-h2.mg-b-h {
    font-size: 56px;
    margin-bottom: 72px;
  }
}
.member .conts-box .ttl-h3 {
  color: #004098;
  font-size: 0.44rem;
  font-weight: 700;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .member .conts-box .ttl-h3 {
    font-size: 0.36rem;
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 1921px) {
  .member .conts-box .ttl-h3 {
    font-size: 36px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 769px) {
  .member .conts-box .conts-box-inner {
    margin-right: auto;
    margin-left: auto;
    width: calc((1000 / 1840) * 100%);
  }
}
.member .conts-box .flow-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 8vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  .member .conts-box .flow-list {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1921px) {
  .member .conts-box .flow-list {
    margin-bottom: 72px;
  }
}
.member .conts-box .flow-list .flow {
  text-align: center;
  width: 32%;
}
.member .conts-box .flow-list .flow .num {
  color: #FFF;
  display: inline-block;
  font-size: 0.64rem;
  line-height: 1.05;
  margin-bottom: 6vw;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .member .conts-box .flow-list .flow .num {
    font-size: 0.56rem;
    margin-bottom: 3vw;
  }
}
@media screen and (min-width: 1921px) {
  .member .conts-box .flow-list .flow .num {
    font-size: 56px;
    margin-bottom: 54px;
  }
}
.member .conts-box .flow-list .flow .num small {
  display: block;
  font-size: 0.22rem;
}
@media screen and (min-width: 769px) {
  .member .conts-box .flow-list .flow .num small {
    font-size: 0.18rem;
  }
}
@media screen and (min-width: 1921px) {
  .member .conts-box .flow-list .flow .num small {
    font-size: 18px;
  }
}
.member .conts-box .flow-list .flow .num::after {
  background: #E8E9EE;
  border-radius: 0.2em;
  content: "";
  display: block;
  left: 50%;
  height: 2em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 2em;
  z-index: -1;
}
.member .conts-box .flow-list .flow .text {
  color: #E8E9EE;
  display: block;
  font-weight: 700;
}
.member .conts-box .flow-list::after {
  background: #E8E9EE;
  content: "";
  display: block;
  left: 50%;
  height: 2px;
  position: absolute;
  top: 20%;
  transform: translate(-50%, -20%);
  width: 65%;
}
.member .conts-box .flow-list.withdraw .flow {
  width: 23%;
}
.member .conts-box .flow-list.withdraw .flow .num {
  margin-top: 6vw;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .member .conts-box .flow-list.withdraw .flow .num {
    margin-top: 3vw;
  }
}
@media screen and (min-width: 1921px) {
  .member .conts-box .flow-list.withdraw .flow .num {
    margin-top: 54px;
  }
}
.member .conts-box .flow-list.withdraw::after {
  top: 80%;
  transform: translate(-50%, -80%);
}
.member .conts-box .text-box {
  font-size: 0.28rem;
}
@media screen and (min-width: 769px) {
  .member .conts-box .text-box {
    font-size: 0.2rem;
  }
}
@media screen and (min-width: 1921px) {
  .member .conts-box .text-box {
    font-size: 20px;
  }
}
.member .conts-box .text-box .lead strong {
  font-size: 1.2em;
}
.member .conts-box .link-text {
  color: #e90101;
  text-decoration: underline;
}
.member .conts-box .link-text:hover {
  text-decoration: none;
}
.member .conts-box .form-table {
  font-size: 1.2em;
}
.member .conts-box .col-box-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .member .conts-box .col-box-c {
    margin-right: auto;
    margin-left: auto;
    width: 85%;
  }
}
.member .conts-box .col-box-c .button-wrap {
  width: 48%;
}
.member .conts-box .form-reason {
  text-align: center;
}
.member .conts-box .form-reason .label {
  color: #004098;
  display: inline-block;
  font-size: 1.2em;
  font-weight: 700;
  padding: 2em 1em 0 0;
  text-align: right;
  vertical-align: top;
}
.member .conts-box .form-reason .textarea {
  display: inline-block;
}
.member .conts-box .form-reason .textarea textarea {
  max-width: 95%;
}

/************************************
	General Purpose
************************************/
.gp .conts-box {
  margin-bottom: 0;
  padding: 0;
}
.gp .conts-box-inner {
  padding: 8vw;
}
@media screen and (min-width: 769px) {
  .gp .conts-box-inner {
    padding: 4vw 20vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box-inner {
    padding: 72px 360px;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box .inner {
    margin-right: auto;
    margin-left: auto;
    width: 1140px;
  }
}
.gp .conts-box .ttl-h2 {
  margin-bottom: 6vw;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .ttl-h2 {
    margin-bottom: 3vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box .ttl-h2 {
    margin-bottom: 54px;
  }
}
.gp .conts-box .ttl-h3 {
  color: #004098;
  font-size: 0.46rem;
  font-weight: 700;
  margin-bottom: 6vw;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .ttl-h3 {
    font-size: 0.34rem;
    margin-bottom: 3vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box .ttl-h3 {
    font-size: 34px;
    margin-bottom: 54px;
  }
}
.gp .conts-box .ttl-h4 {
  color: #004098;
  font-size: 0.42rem;
  font-weight: 700;
  margin-bottom: 2.6666666667vw;
  margin-left: 0.4em;
  padding-left: 0.2em;
  text-indent: -0.2em;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .ttl-h4 {
    font-size: 0.3rem;
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box .ttl-h4 {
    font-size: 30px;
    margin-bottom: 24px;
  }
}
.gp .conts-box .ttl-h4::before {
  background: #004098;
  height: 1.2em;
  content: "";
  display: inline-block;
  left: -0.4em;
  position: relative;
  top: -0.1em;
  vertical-align: middle;
  width: 3px;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .ttl-h4::before {
    width: 5px;
  }
}
.gp .conts-box .ttl-h4.ic-none {
  font-size: 0.36rem;
  font-weight: 700;
  margin-left: 0;
  padding-left: 0;
  text-align: center;
  text-indent: 0;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .ttl-h4.ic-none {
    font-size: 0.24rem;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box .ttl-h4.ic-none {
    font-size: 24px;
  }
}
.gp .conts-box .ttl-h4.ic-none::before {
  display: none;
}
.gp .conts-box .office-info {
  background: #FFF;
  padding: 4vw;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .office-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2vw;
  }
}
.gp .conts-box .office-info:not(:last-child) {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .office-info:not(:last-child) {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box .office-info:not(:last-child) {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 768px) {
  .gp .conts-box .office-info-inner {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .gp .conts-box .office-info-inner {
    width: 48%;
  }
}
.gp .conts-box .office-info-inner .text-box {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .office-info-inner .text-box {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box .office-info-inner .text-box {
    margin-bottom: 36px;
  }
}
.gp .conts-box .office-info-inner .text-box p:not(:last-child) {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .office-info-inner .text-box p:not(:last-child) {
    margin-bottom: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box .office-info-inner .text-box p:not(:last-child) {
    margin-bottom: 18px;
  }
}
.gp .conts-box .office-info-inner .text-box .contact .label {
  color: #004098;
  margin-right: 0.5em;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .office-info-inner .link-btn {
    min-width: 260px;
  }
}
@media screen and (min-width: 769px) {
  .gp .conts-box .office-info .map-box {
    width: 48%;
  }
}
.gp .conts-box .office-info .map-box .map {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.gp .conts-box .office-info .map-box .map iframe {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .gp .conts-box .table-box {
    overflow-x: hidden;
  }
}
@media screen and (max-width: 768px) {
  .gp .conts-box .table-box-scroll {
    overflow-x: auto;
  }
}
.gp .conts-box .table-box-scroll:not(:last-child) {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .table-box-scroll:not(:last-child) {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box .table-box-scroll:not(:last-child) {
    margin-bottom: 36px;
  }
}
.gp .conts-box .table-box-scroll table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .gp .conts-box .table-box-scroll table {
    min-width: 1080px;
  }
}
.gp .conts-box .table-box-scroll table th {
  background: #004098;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  color: #FFF;
  padding: 1em;
}
.gp .conts-box .table-box-scroll table td {
  background: #E8E9EE;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  padding: 1em;
}
.gp .conts-box .faq-list {
  border-bottom: 1px solid #E8E9EE;
  margin-bottom: 2em;
  padding-bottom: 2em;
}
.gp .conts-box .faq-list dt {
  color: #e90101;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.gp .conts-box.conts-form .ttl-h2 {
  font-size: 0.6rem;
  line-height: 1.2;
  padding: 0 4vw;
}
@media screen and (min-width: 769px) {
  .gp .conts-box.conts-form .ttl-h2 {
    font-size: 0.6rem;
    padding: 0 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp .conts-box.conts-form .ttl-h2 {
    font-size: 60px;
    padding: 0 36px;
  }
}
@media screen and (min-width: 769px) {
  .gp .conts-box.conts-form .conts-box-inner form {
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
  }
}
.gp.privacy .conts-box {
  margin-bottom: 0;
  padding: 0;
}
.gp.privacy .conts-box .ttl-sec {
  background: #F8F8FA;
  border-left: 4px solid #004098;
  color: #004098;
  font-size: 0.42rem;
  font-weight: 700;
  margin-bottom: 4vw;
  padding: 2vw 4vw;
}
@media screen and (min-width: 769px) {
  .gp.privacy .conts-box .ttl-sec {
    font-size: 0.3rem;
    margin-bottom: 2vw;
    padding: 1vw 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp.privacy .conts-box .ttl-sec {
    font-size: 30px;
    margin-bottom: 36px;
    padding: 18px 36px;
  }
}
.gp.privacy .conts-box .ttl-h3 .ic-ttl {
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 2.5em;
}
.gp.privacy .conts-box .ttl-h5 {
  color: #004098;
  font-size: 0.36rem;
  font-weight: 700;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) {
  .gp.privacy .conts-box .ttl-h5 {
    font-size: 0.24rem;
    margin-bottom: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp.privacy .conts-box .ttl-h5 {
    font-size: 24px;
    margin-bottom: 18px;
  }
}
.gp.privacy .conts-box .lead-box {
  font-size: 1.2em;
  margin-bottom: 6vw;
}
@media screen and (min-width: 769px) {
  .gp.privacy .conts-box .lead-box {
    text-align: center;
    margin-bottom: 3vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp.privacy .conts-box .lead-box {
    margin-bottom: 54px;
  }
}
.gp.privacy .conts-box-inner .sec-box:not(:last-child) {
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) {
  .gp.privacy .conts-box-inner .sec-box:not(:last-child) {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp.privacy .conts-box-inner .sec-box:not(:last-child) {
    margin-bottom: 72px;
  }
}
.gp.privacy .conts-box-inner .inner {
  padding: 0 2vw;
}
@media screen and (min-width: 769px) {
  .gp.privacy .conts-box-inner .inner {
    padding: 0 1vw;
  }
}
.gp.privacy .conts-box-inner .inner:not(:last-child) {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .gp.privacy .conts-box-inner .inner:not(:last-child) {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp.privacy .conts-box-inner .inner:not(:last-child) {
    margin-bottom: 36px;
  }
}
.gp.privacy .conts-box-inner .mark-list {
  margin-left: 1.5em;
}
.gp.privacy .conts-box-inner .mark-list > li {
  list-style: disc;
}
.gp.privacy .conts-box-inner .mark-list:not(:last-child) {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .gp.privacy .conts-box-inner .mark-list:not(:last-child) {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp.privacy .conts-box-inner .mark-list:not(:last-child) {
    margin-bottom: 36px;
  }
}
.gp.privacy .conts-box-inner .mark-list-nest {
  margin-left: 1.5em;
}
.gp.privacy .conts-box-inner .mark-list-nest li {
  list-style: circle;
}
.gp.privacy .conts-box-inner .num-list {
  margin-left: 1.5em;
}
.gp.privacy .conts-box-inner .num-list > li {
  list-style: lower-roman;
}
.gp.privacy .conts-box-inner .num-list > li:not(:last-child) {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .gp.privacy .conts-box-inner .num-list > li:not(:last-child) {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp.privacy .conts-box-inner .num-list > li:not(:last-child) {
    margin-bottom: 36px;
  }
}
.gp.privacy .conts-box-inner .num-list:not(:last-child) {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .gp.privacy .conts-box-inner .num-list:not(:last-child) {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp.privacy .conts-box-inner .num-list:not(:last-child) {
    margin-bottom: 36px;
  }
}
.gp.privacy .conts-box-inner .num-list-nest {
  margin-top: 1em;
}
.gp.privacy .conts-box-inner .num-list-nest:not(:last-child) {
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) {
  .gp.privacy .conts-box-inner .num-list-nest:not(:last-child) {
    margin-bottom: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp.privacy .conts-box-inner .num-list-nest:not(:last-child) {
    margin-bottom: 18px;
  }
}
.gp.privacy .conts-box-inner .num-list-nest li {
  list-style: none;
}
.gp.privacy .conts-box-inner .num-list-nest li:not(:last-child) {
  margin-bottom: 1em;
}
.gp.form #wrapper .error-msg {
  margin-right: 2vw;
  margin-left: 2vw;
}
@media screen and (min-width: 769px) {
  .gp.form #wrapper .error-msg {
    margin-right: 4vw;
    margin-left: 4vw;
  }
}
.gp.form #wrapper.portal-form {
  padding-top: 0;
}
.gp.form #wrapper.portal-form .error-msg {
  margin-top: 4vw;
}
@media screen and (min-width: 769px) {
  .gp.form #wrapper.portal-form .error-msg {
    margin-top: 6.640625vw;
  }
}
.gp.page-404 #wrapper {
  background: #FFF;
}
.gp.page-404 #wrapper main {
  min-height: calc(100vh - 50vw);
}
@media screen and (min-width: 769px) {
  .gp.page-404 #wrapper main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 8.35vw);
  }
}
@media screen and (min-width: 1921px) {
  .gp.page-404 #wrapper main {
    min-height: 800px;
  }
}
.gp.page-404 #wrapper main .conts-box {
  padding: 16vw 0 8vw;
}
@media screen and (min-width: 769px) {
  .gp.page-404 #wrapper main .conts-box {
    padding: 0;
  }
}
.gp.page-404 #wrapper main .conts-box .ttl-h2 {
  font-weight: 900;
  margin-bottom: 0;
}
.gp.page-404 #wrapper main .conts-box .ttl-h3 {
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) {
  .gp.page-404 #wrapper main .conts-box .ttl-h3 {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1921px) {
  .gp.page-404 #wrapper main .conts-box .ttl-h3 {
    margin-bottom: 72px;
  }
}

/************************************
	object
************************************/
/*----- clearfix -----*/
.cf::before, .cf::after {
  content: "";
  display: table;
}
.cf::after {
  clear: both;
}

/*----- アイコン -----*/
.material-icons {
  display: inline-block;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  height: 1em;
  line-height: 1;
  text-transform: none;
  text-rendering: optimizeLegibility;
  vertical-align: middle;
  width: 1em;
}

.ic::before {
  display: inline-block;
  font-family: "Material Icons";
  font-size: 1.5em;
  line-height: 0;
  margin-right: 0.15em;
  position: relative;
  vertical-align: middle;
}
.ic.large::before {
  font-size: 2em;
}
.ic.search::before {
  content: "\e8b6";
}
.ic.arrow-r::before {
  content: "\e5df";
  top: -0.075em;
}
.ic.arrow-b::before {
  content: "\e5c5";
}
.ic.mandatory {
  background: #e90101;
  border-radius: 0.2em;
  color: #FFF;
  display: inline-block;
  font-size: 0.8em;
  padding: 0.2em 0.5em;
  vertical-align: middle;
}
.ic.quote-d::before, .ic.quote-d::after {
  content: '"';
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 1.2em;
  line-height: 1;
  margin-right: 0.1em;
  margin-left: 0.1em;
  position: relative;
  vertical-align: middle;
}
.ic.line-arrow-r {
  position: relative;
}
.ic.line-arrow-r::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: 2px solid #004098;
  border-right: 2px solid #004098;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -4px;
}
.ic-modal {
  line-height: 0 !important;
  position: relative;
}
.ic-modal-open {
  background: #004098;
  cursor: pointer;
  font-size: 0.48rem;
  height: 6vw;
  line-height: 1;
  opacity: 1;
  overflow: hidden;
  padding-right: 0;
  position: absolute;
  right: 12px;
  text-indent: 100%;
  top: calc(100% - 6vw - 12px);
  white-space: nowrap;
  width: 6vw;
}
@media screen and (min-width: 769px) {
  .ic-modal-open {
    font-size: 16px;
    height: 24px;
    right: 12px;
    top: calc(100% - 36px);
    width: 24px;
  }
}
@media screen and (min-width: 1921px) {
  .ic-modal-open {
    font-size: 16px;
  }
}
.ic-modal-open::before {
  color: #FFF;
  content: "\e145";
  font-family: "Material Icons";
  left: 50%;
  position: absolute;
  text-indent: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ic-img {
  vertical-align: middle;
  width: auto;
}

/*----- 配色 -----*/
/*** 背景 ***/
.bg-white {
  background: #FFF !important;
}
.bg-red {
  background: #FF1403 !important;
}
.bg-gray {
  background: #E8E9EE !important;
}
.bg-dgray {
  background: #DBDBDB !important;
}

/*----- テキスト -----*/
.ta-l {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .ta-l-pc {
    text-align: center;
  }
}
.ta-c {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .ta-c-pc {
    text-align: center;
  }
}
.ta-r {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .ta-r-pc {
    text-align: center;
  }
}

.fc-r {
  color: #F00;
}
.fc-gray {
  color: #999;
}

/*----- 画像 -----*/
@media screen and (min-width: 769px) {
  img.size-l-pc {
    max-width: 80%;
  }
}
@media screen and (min-width: 769px) {
  img.size-m-pc {
    max-width: 50%;
  }
}
@media screen and (min-width: 769px) {
  img.size-s-pc {
    max-width: 30%;
  }
}

/*----- 余白 -----*/
.pd-0 {
  padding: 0 !important;
}
.pd-b {
  padding-bottom: 4vw !important;
}
@media screen and (min-width: 769px) {
  .pd-b {
    padding-bottom: 2vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .pd-b {
    padding-bottom: 36px !important;
  }
}
.pd-b-0 {
  padding-bottom: 0 !important;
}
.pd-b-1h {
  padding-bottom: 6vw !important;
}
@media screen and (min-width: 769px) {
  .pd-b-1h {
    padding-bottom: 3vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .pd-b-1h {
    padding-bottom: 54px !important;
  }
}
.pd-b-1h-d {
  padding-bottom: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .pd-b-1h-d {
    padding-bottom: 1.3333333333vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .pd-b-1h-d {
    padding-bottom: 24px !important;
  }
}
.pd-b-2 {
  padding-bottom: 8vw !important;
}
@media screen and (min-width: 769px) {
  .pd-b-2 {
    padding-bottom: 4vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .pd-b-2 {
    padding-bottom: 72px !important;
  }
}
.pd-b-2-d {
  padding-bottom: 2vw !important;
}
@media screen and (min-width: 769px) {
  .pd-b-2-d {
    padding-bottom: 1vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .pd-b-2-d {
    padding-bottom: 18px !important;
  }
}
.pd-t-0 {
  padding-top: 0 !important;
}
.pd-t {
  padding-top: 4vw !important;
}
@media screen and (min-width: 769px) {
  .pd-t {
    padding-top: 2vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .pd-t {
    padding-top: 36px !important;
  }
}
.pd-t-1h {
  padding-top: 6vw !important;
}
@media screen and (min-width: 769px) {
  .pd-t-1h {
    padding-top: 3vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .pd-t-1h {
    padding-top: 54px !important;
  }
}
.pd-t-1h-d {
  padding-top: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .pd-t-1h-d {
    padding-top: 1.3333333333vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .pd-t-1h-d {
    padding-top: 24px !important;
  }
}
.pd-t-2 {
  padding-top: 8vw !important;
}
@media screen and (min-width: 769px) {
  .pd-t-2 {
    padding-top: 4vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .pd-t-2 {
    padding-top: 72px !important;
  }
}
.pd-t-2-d {
  padding-top: 2vw !important;
}
@media screen and (min-width: 769px) {
  .pd-t-2-d {
    padding-top: 1vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .pd-t-2-d {
    padding-top: 18px !important;
  }
}

.mg-0 {
  margin: 0 !important;
}
.mg-b-0 {
  margin-bottom: 0 !important;
}
.mg-b {
  margin-bottom: 4vw !important;
}
@media screen and (min-width: 769px) {
  .mg-b {
    margin-bottom: 2vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .mg-b {
    margin-bottom: 36px !important;
  }
}
.mg-b-1h {
  margin-bottom: 6vw !important;
}
@media screen and (min-width: 769px) {
  .mg-b-1h {
    margin-bottom: 3vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .mg-b-1h {
    margin-bottom: 54px !important;
  }
}
.mg-b-1h-d {
  margin-bottom: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .mg-b-1h-d {
    margin-bottom: 1.3333333333vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .mg-b-1h-d {
    margin-bottom: 24px !important;
  }
}
.mg-b-2 {
  margin-bottom: 8vw !important;
}
@media screen and (min-width: 769px) {
  .mg-b-2 {
    margin-bottom: 4vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .mg-b-2 {
    margin-bottom: 72px !important;
  }
}
.mg-b-2-d {
  margin-bottom: 2vw !important;
}
@media screen and (min-width: 769px) {
  .mg-b-2-d {
    margin-bottom: 1vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .mg-b-2-d {
    margin-bottom: 18px !important;
  }
}
.mg-t-0 {
  margin-top: 0 !important;
}
.mg-t {
  margin-top: 4vw !important;
}
@media screen and (min-width: 769px) {
  .mg-t {
    margin-top: 2vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .mg-t {
    margin-top: 36px !important;
  }
}
.mg-t-1h {
  margin-top: 6vw !important;
}
@media screen and (min-width: 769px) {
  .mg-t-1h {
    margin-top: 3vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .mg-t-1h {
    margin-top: 54px !important;
  }
}
.mg-t-1h-d {
  margin-top: 2.6666666667vw !important;
}
@media screen and (min-width: 769px) {
  .mg-t-1h-d {
    margin-top: 1.3333333333vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .mg-t-1h-d {
    margin-top: 24px !important;
  }
}
.mg-t-2 {
  margin-top: 8vw !important;
}
@media screen and (min-width: 769px) {
  .mg-t-2 {
    margin-top: 4vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .mg-t-2 {
    margin-top: 72px !important;
  }
}
.mg-t-2-d {
  margin-top: 2vw !important;
}
@media screen and (min-width: 769px) {
  .mg-t-2-d {
    margin-top: 1vw !important;
  }
}
@media screen and (min-width: 1921px) {
  .mg-t-2-d {
    margin-top: 18px !important;
  }
}

/*----- 表示 -----*/
.hide-sp,
.img-pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .hide-sp {
    display: block;
  }

  br.hide-sp, span.hide-sp {
    display: inline;
  }

  .img-pc {
    display: inline;
  }

  .hide-pc,
.img-sp {
    display: none;
  }
}
/************************************
	state
************************************/
/********** header **********/
#header {
  background: #002b98;
  transition: position 0.2s linear;
}
@media screen and (max-width: 768px) {
  #header {
    padding-bottom: 10.5vw;
    position: relative;
  }
}
#header .header-btn .icon {
  transition: width 0.25s ease;
  width: 100%;
}
#header .header-btn::before {
  top: 0;
  transition: top 0.5s ease, transform 0.5s ease;
}
#header .header-btn::after {
  bottom: 0;
  transition: bottom 0.5s ease, transform 0.5s ease;
}
#header .header-navi ul li a {
  color: #FFF;
  transition: color 0.5s ease;
}
#header .header-navi ul li::after {
  height: 0;
  opacity: 0;
  transition: bottom 0.5s ease, height 0.5s ease, opacity 0.5s ease;
}
@media screen and (min-width: 769px) {
  #header .header-navi ul li::after {
    height: 4px;
  }
}
#header .header-navi ul li.is-current a {
  color: #FED100;
  transition: unset;
}
#header .header-navi ul li.is-current::after {
  height: 2px;
  opacity: 1;
}
@media screen and (min-width: 769px) {
  #header .header-navi ul li.is-current::after {
    height: 4px;
  }
}
#header .header-navi ul li.is-disable {
  visibility: hidden;
}
#header .header-navi ul li.is-disable a {
  pointer-events: none;
}
#header.is-fixed {
  background: transparent;
}
@media screen and (max-width: 768px) {
  #header.is-fixed {
    padding-bottom: 0;
    position: fixed;
  }
}
@media screen and (min-width: 769px) {
  #header.is-fixed {
    background: #002b98;
  }
}
@media screen and (max-width: 768px) {
  #header.is-fixed .header-box:nth-of-type(1) {
    background: #002b98;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #header.is-fixed .header-box:nth-of-type(2) {
    display: none;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #header.is-fixed .header-btn {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #header.is-fixed .header-logo {
    width: calc((355 / 1000) * 100%);
  }
}
#header.is-fixed .header-navi {
  font-size: 0.42rem;
}
@media screen and (max-width: 768px) {
  #header.is-fixed .header-navi {
    left: auto;
    position: relative;
    top: auto;
  }
}
@media screen and (min-width: 769px) {
  #header.is-fixed .header-navi {
    font-size: 0.18rem;
  }
}
@media screen and (min-width: 1921px) {
  #header.is-fixed .header-navi {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #header.is-fixed .header-navi ul li {
    text-align: left;
    width: 100%;
  }
}
#header.is-fixed .header-navi ul li a {
  position: relative;
}
@media screen and (max-width: 768px) {
  #header.is-fixed .header-navi ul li a {
    border-top: 2px solid #0C2055;
  }
}
@media screen and (max-width: 768px) {
  #header.is-fixed .header-navi ul li a::after {
    color: #FED100;
    content: "\e5cc";
    font-family: "Material Icons";
    font-size: 1.5em;
    line-height: 0;
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  #header.is-fixed .header-navi ul li:not(:last-child) {
    border-right: none;
  }
}
#header.is-fixed .header-navi ul li.is-current a {
  color: #FED100;
  transition: unset;
}
#header.is-fixed .header-navi ul li.is-current::after {
  height: 2px;
  opacity: 1;
}
@media screen and (min-width: 769px) {
  #header.is-fixed .header-navi ul li.is-current::after {
    height: 4px;
  }
}
@media screen and (max-width: 768px) {
  #header.is-fixed .header-menu {
    background: #0C2055;
    padding: 4vw;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  #header.is-fixed .header-menu {
    background: #002b98;
  }
}
#header.is-fixed .header-menu ul {
  font-size: 0.3rem;
}
@media screen and (min-width: 769px) {
  #header.is-fixed .header-menu ul {
    font-size: 0.18rem;
  }
}
@media screen and (min-width: 1921px) {
  #header.is-fixed .header-menu ul {
    font-size: 18px;
  }
}
#header.is-fixed .header-menu .btn {
  font-size: 0.36rem;
}
@media screen and (min-width: 769px) {
  #header.is-fixed .header-menu .btn {
    font-size: 0.18rem;
  }
}
@media screen and (min-width: 1921px) {
  #header.is-fixed .header-menu .btn {
    font-size: 18px;
  }
}
#header.is-active {
  z-index: 99;
}
@media screen and (max-width: 768px) {
  #header.is-active .header-box:nth-of-type(2) {
    -webkit-animation: headerNaviActive 0.5s ease-in-out forwards;
    animation: headerNaviActive 0.5s ease-in-out forwards;
    display: block;
  }
}
#header.is-active .header-btn .icon {
  width: 0;
}
#header.is-active .header-btn::before {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
#header.is-active .header-btn::after {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  #header.is-disable .header-box:nth-of-type(2) {
    -webkit-animation: headerNaviDisable 0.5s ease-in-out forwards;
    animation: headerNaviDisable 0.5s ease-in-out forwards;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #header.is-disable.is-hide .header-box:nth-of-type(2) {
    display: none;
  }
}

.member #header.is-fixed {
  background: #002b98;
}
@media screen and (max-width: 768px) {
  .member #header.is-fixed .header-box:nth-of-type(1) {
    background: #002b98;
    width: calc((440 / 1080) * 100%);
  }
}
@media screen and (max-width: 768px) {
  .member #header.is-fixed .header-box:nth-of-type(2) {
    display: block;
    width: calc((640 / 1080) * 100%);
  }
}
@media screen and (max-width: 768px) {
  .member #header.is-fixed .header-btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .member #header.is-fixed .header-logo {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .member #header.is-fixed .header-menu {
    background: #002b98;
    padding: 0 4vw 0 0;
  }
}
@media screen and (min-width: 769px) {
  .member #header.is-fixed .header-menu {
    background: #002b98;
  }
}
.member #header.is-fixed .header-menu ul {
  font-size: 0.24rem;
}
@media screen and (min-width: 769px) {
  .member #header.is-fixed .header-menu ul {
    font-size: 0.18rem;
  }
}
@media screen and (min-width: 1921px) {
  .member #header.is-fixed .header-menu ul {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .member #header.is-disable .header-box:nth-of-type(2) {
    -webkit-animation: none;
    animation: none;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .member #header.is-disable.is-hide .header-box:nth-of-type(2) {
    display: block;
  }
}

/********** module **********/
@media screen and (max-width: 768px) {
  .site-navi-inner .site-navi-ttl.is-active::after {
    content: "\e15b";
  }
}

@media screen and (min-width: 769px) {
  .sort-box .sort-list .sort-item.search .select-list ul li.is-active {
    background: transparent;
    color: transparent;
  }
}
.sort-box .sort-list .select-box.is-active {
  z-index: 99;
}
.sort-box .sort-list .select-box.is-active .label::after {
  opacity: 1;
}

.message-box .message-content-btn.is-active::after {
  content: "\e15b";
}

.modal-overlay.is-fadeout {
  -webkit-animation: fadeOut 0.25s ease-in-out forwards;
  animation: fadeOut 0.25s ease-in-out forwards;
}

.is-active-modal .modal-overlay {
  -webkit-animation: fadeIn 0.25s ease-in-out forwards;
  animation: fadeIn 0.25s ease-in-out forwards;
  z-index: 9;
}
.is-active-modal .select-box.is-active .select-list {
  -webkit-animation: fadeIn 0.25s ease-in-out forwards;
  animation: fadeIn 0.25s ease-in-out forwards;
  display: block;
}
.is-active-modal .select-box.is-active .select-list ul {
  display: inline-block;
}
.is-active-modal .select-box.is-active#langSelect {
  position: relative;
  z-index: 10;
}
.is-active-modal .select-box.is-active#langSelect .label {
  color: #FFF;
}
.is-active-modal .select-box.is-active#langSelect .select-list ul li.is-active {
  background: #004098;
}
.is-active-modal .select-box.is-active#langSelect .select-list ul li.is-active a {
  color: #FFF;
  pointer-events: none;
}
.is-active-modal .select-box.is-active#langSelect .select-list ul li.is-disable {
  pointer-events: none;
}
.is-active-modal .sort-box {
  z-index: 99;
}
.is-active-modal .sort-btn {
  display: none !important;
}
.is-active-modal.is-active-langbox .sort-box {
  z-index: 9;
}
.is-active-modal.ua-sp .sort-box .select-box, .is-active-modal.ua-tb .sort-box .select-box {
  position: static;
}
.is-active-modal.ua-sp .sort-box .select-box.series, .is-active-modal.ua-sp .sort-box .select-box.category, .is-active-modal.ua-tb .sort-box .select-box.series, .is-active-modal.ua-tb .sort-box .select-box.category {
  position: relative;
}
.is-active-modal.ua-pc .sort-box .select-box {
  position: static;
}

/********** Member **********/
.member {
  background: #FFF;
}
.member .conts-box .flow-list .flow.is-active .num::after {
  background: #004098;
}
.member .conts-box .flow-list .flow.is-active .text {
  color: #004098;
}

/********** Theme **********/
@media screen and (min-width: 769px) {
  body[class*=series-monsterhunter] {
    background: url(../images/news/title/mh_bg.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 768px) {
  body[class*=series-monsterhunter]::before {
    background: url(../images/news/title/mh_bg.jpg) center top no-repeat;
    background-size: cover;
    display: block;
  }
}
body[class*=series-monsterhunter] .ttl-h2 {
  color: #004098;
}
body[class*=series-monsterhunter] .select-box .select-list ul li[data-ser*=monsterhunter] {
  background: #004098;
}
body[class*=series-monsterhunter] .select-box .select-list ul li[data-ser*=monsterhunter] a {
  color: #FFF;
}
@media screen and (min-width: 769px) {
  body[class*=series-residentevil] {
    background: url(../images/news/title/bio_bg.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 768px) {
  body[class*=series-residentevil]::before {
    background: url(../images/news/title/bio_bg.jpg) center top no-repeat;
    background-size: cover;
    display: block;
  }
}
body[class*=series-residentevil] .ttl-h2 {
  color: #FFF;
}
body[class*=series-residentevil] .select-box .select-list ul li[data-ser*=residentevil] {
  background: #004098;
}
body[class*=series-residentevil] .select-box .select-list ul li[data-ser*=residentevil] a {
  color: #FFF;
}
body[class*=series-residentevil].news.index .conts-box#latest .error-message-text strong {
  color: #FFF;
}
body[class*=series-residentevil].news.index .conts-box#latest .loading-item::after {
  color: #FFF;
}
body[class*=series-residentevil].news.index .conts-box#latest .link-btn.more::after {
  color: #FFF;
}
@media screen and (min-width: 769px) {
  body[class*=series-streetfighter] {
    background: url(../images/news/title/sf_bg.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 768px) {
  body[class*=series-streetfighter]::before {
    background: url(../images/news/title/sf_bg_sp.jpg) center top no-repeat;
    background-size: cover;
    display: block;
  }
}
body[class*=series-streetfighter] .ttl-h2 {
  color: #FFF;
}
body[class*=series-streetfighter] .select-box .select-list ul li[data-ser*=streetfighter] {
  background: #004098;
}
body[class*=series-streetfighter] .select-box .select-list ul li[data-ser*=streetfighter] a {
  color: #FFF;
}
body[class*=series-streetfighter].news.index .conts-box#latest .error-message-text strong {
  color: #FFF;
}
body[class*=series-streetfighter].news.index .conts-box#latest .loading-item::after {
  color: #FFF;
}
body[class*=series-streetfighter].news.index .conts-box#latest .link-btn.more::after {
  color: #FFF;
}
@media screen and (min-width: 769px) {
  body[class*=series-rockman], body[class*=series-megaman] {
    background: url(../images/news/title/rm_bg.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 768px) {
  body[class*=series-rockman]::before, body[class*=series-megaman]::before {
    background: url(../images/news/title/rm_bg.jpg) center top no-repeat;
    background-size: cover;
    display: block;
  }
}
body[class*=series-rockman] .ttl-h2, body[class*=series-megaman] .ttl-h2 {
  color: #FFF;
}
body[class*=series-rockman] .select-box .select-list ul li[data-ser*=rockman], body[class*=series-rockman] .select-box .select-list ul li[data-ser*=megaman], body[class*=series-megaman] .select-box .select-list ul li[data-ser*=rockman], body[class*=series-megaman] .select-box .select-list ul li[data-ser*=megaman] {
  background: #004098;
}
body[class*=series-rockman] .select-box .select-list ul li[data-ser*=rockman] a, body[class*=series-rockman] .select-box .select-list ul li[data-ser*=megaman] a, body[class*=series-megaman] .select-box .select-list ul li[data-ser*=rockman] a, body[class*=series-megaman] .select-box .select-list ul li[data-ser*=megaman] a {
  color: #FFF;
}
body[class*=series-rockman].news.index .conts-box#latest .error-message-text strong, body[class*=series-megaman].news.index .conts-box#latest .error-message-text strong {
  color: #FFF;
}
body[class*=series-rockman].news.index .conts-box#latest .loading-item::after, body[class*=series-megaman].news.index .conts-box#latest .loading-item::after {
  color: #FFF;
}
body[class*=series-rockman].news.index .conts-box#latest .link-btn.more::after, body[class*=series-megaman].news.index .conts-box#latest .link-btn.more::after {
  color: #FFF;
}
@media screen and (min-width: 769px) {
  body[class*=series-gyakuten], body[class*=series-aceattorny] {
    background: url(../images/news/title/gyakuten_bg.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 768px) {
  body[class*=series-gyakuten]::before, body[class*=series-aceattorny]::before {
    background: url(../images/news/title/gyakuten_bg.jpg) center top no-repeat;
    background-size: cover;
    display: block;
  }
}
body[class*=series-gyakuten] .select-box .select-list ul li[data-ser*=gyakuten], body[class*=series-gyakuten] .select-box .select-list ul li[data-ser*=aceattorny], body[class*=series-aceattorny] .select-box .select-list ul li[data-ser*=gyakuten], body[class*=series-aceattorny] .select-box .select-list ul li[data-ser*=aceattorny] {
  background: #004098;
}
body[class*=series-gyakuten] .select-box .select-list ul li[data-ser*=gyakuten] a, body[class*=series-gyakuten] .select-box .select-list ul li[data-ser*=aceattorny] a, body[class*=series-aceattorny] .select-box .select-list ul li[data-ser*=gyakuten] a, body[class*=series-aceattorny] .select-box .select-list ul li[data-ser*=aceattorny] a {
  color: #FFF;
}
@media screen and (min-width: 769px) {
  body[class*=series-basara] {
    background: url(../images/news/title/basara_bg.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 768px) {
  body[class*=series-basara]::before {
    background: url(../images/news/title/basara_bg.jpg) center top no-repeat;
    background-size: cover;
    display: block;
  }
}
body[class*=series-basara] .select-box .select-list ul li[data-ser*=basara] {
  background: #004098;
}
body[class*=series-basara] .select-box .select-list ul li[data-ser*=basara] a {
  color: #FFF;
}
@media screen and (min-width: 769px) {
  body[class*=series-dmc] {
    background: url(../images/news/title/dmc_bg.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 768px) {
  body[class*=series-dmc]::before {
    background: url(../images/news/title/dmc_bg.jpg) center top no-repeat;
    background-size: cover;
    display: block;
  }
}
body[class*=series-dmc] .ttl-h2 {
  color: #FFF;
}
body[class*=series-dmc] .select-box .select-list ul li[data-ser*=dmc] {
  background: #004098;
}
body[class*=series-dmc] .select-box .select-list ul li[data-ser*=dmc] a {
  color: #FFF;
}
body[class*=series-dmc].news.index .conts-box#latest .error-message-text strong {
  color: #FFF;
}
body[class*=series-dmc].news.index .conts-box#latest .loading-item::after {
  color: #FFF;
}
body[class*=series-dmc].news.index .conts-box#latest .link-btn.more::after {
  color: #FFF;
}
body .cat- .select-box .select-list ul li[data-cat=all] {
  background: #004098;
}
body .cat- .select-box .select-list ul li[data-cat=all] a {
  color: #FFF;
}
body[class*=cat-game] .select-box .select-list ul li[data-cat*=game] {
  background: #00B4FF;
}
body[class*=cat-game] .select-box .select-list ul li[data-cat*=game] a {
  color: #FFF;
}
body[class*=cat-live] .select-box .select-list ul li[data-cat*=live] {
  background: #C500FF;
}
body[class*=cat-live] .select-box .select-list ul li[data-cat*=live] a {
  color: #FFF;
}
body[class*=cat-event] .select-box .select-list ul li[data-cat*=event] {
  background: #E90101;
}
body[class*=cat-event] .select-box .select-list ul li[data-cat*=event] a {
  color: #FFF;
}
body[class*=cat-campaign] .select-box .select-list ul li[data-cat*=campaign] {
  background: #FF7F09;
}
body[class*=cat-campaign] .select-box .select-list ul li[data-cat*=campaign] a {
  color: #FFF;
}
body[class*=cat-goods] .select-box .select-list ul li[data-cat*=goods] {
  background: #00CC6E;
}
body[class*=cat-goods] .select-box .select-list ul li[data-cat*=goods] a {
  color: #FFF;
}
body[class*=cat-esports] .select-box .select-list ul li[data-cat*=esports] {
  background: #004098;
}
body[class*=cat-esports] .select-box .select-list ul li[data-cat*=esports] a {
  color: #FFF;
}
body[class*=cat-media] .select-box .select-list ul li[data-cat*=media] {
  background: #8D1AC3;
}
body[class*=cat-media] .select-box .select-list ul li[data-cat*=media] a {
  color: #FFF;
}
body[class*=cat-mhb] .select-box .select-list ul li[data-cat*=mhb] {
  background: #333;
}
body[class*=cat-mhb] .select-box .select-list ul li[data-cat*=mhb] a {
  color: #FFF;
}
body[class*=cat-sale] .select-box .select-list ul li[data-cat*=sale] {
  background: #FF6699;
}
body[class*=cat-sale] .select-box .select-list ul li[data-cat*=sale] a {
  color: #FFF;
}
body[class*=cat-other] .select-box .select-list ul li[data-cat*=other] {
  background: #333;
}
body[class*=cat-other] .select-box .select-list ul li[data-cat*=other] a {
  color: #FFF;
}

/************************************
	anime
************************************/
@keyframes slideThumb {
  0% {
    width: 0;
    background: #2E6FCC;
  }
  100% {
    width: 100%;
    background: #2E6FCC;
  }
}
@-webkit-keyframes slideThumb {
  0% {
    width: 0;
    background: #2E6FCC;
  }
  100% {
    width: 100%;
    background: #2E6FCC;
  }
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: block;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: block;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  80% {
    transform: translateY(4%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  80% {
    transform: translateY(4%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes headerFixed {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes headerFixed {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes sortBoxActive {
  0% {
    width: 13%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes sortBoxActive {
  0% {
    width: 13%;
  }
  100% {
    width: 100%;
  }
}
@keyframes sortBoxDisable {
  0% {
    width: 100%;
  }
  100% {
    width: 13%;
  }
}
@-webkit-keyframes sortBoxDisable {
  0% {
    width: 100%;
  }
  100% {
    width: 13%;
  }
}
@media screen and (min-width: 769px) {
  @keyframes sortBoxActive {
    0% {
      width: 4.25%;
    }
    100% {
      width: 100%;
    }
  }
  @-webkit-keyframes sortBoxActive {
    0% {
      width: 4.25%;
    }
    100% {
      width: 100%;
    }
  }
  @keyframes sortBoxDisable {
    0% {
      width: 100%;
    }
    100% {
      width: 4.25%;
    }
  }
  @-webkit-keyframes sortBoxDisable {
    0% {
      width: 100%;
    }
    100% {
      width: 4.25%;
    }
  }
}
@keyframes headerNaviActive {
  0% {
    display: none;
    transform: rotateX(-90deg);
    transform-origin: top;
  }
  100% {
    display: block;
    transform: rotateX(0deg);
    transform-origin: top;
  }
}
@-webkit-keyframes headerNaviActive {
  0% {
    display: none;
    transform: rotateX(-90deg);
    transform-origin: top;
  }
  100% {
    display: block;
    transform: rotateX(0deg);
    transform-origin: top;
  }
}
@keyframes headerNaviDisable {
  0% {
    display: block;
    transform: rotateX(0deg);
    transform-origin: top;
  }
  100% {
    display: none;
    transform: rotateX(-90deg);
    transform-origin: top;
  }
}
@-webkit-keyframes headerNaviDisable {
  0% {
    display: block;
    transform: rotateX(0deg);
    transform-origin: top;
  }
  100% {
    display: none;
    transform: rotateX(-90deg);
    transform-origin: top;
  }
}
@keyframes loading {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@-webkit-keyframes loading {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@-webkit-keyframes youtubeLoading {
  0% {
    transform: translate(-50%, -50%) translateZ(0) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) translateZ(0) rotate(360deg);
  }
}
@keyframes youtubeLoading {
  0% {
    transform: translate(-50%, -50%) translateZ(0) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) translateZ(0) rotate(360deg);
  }
}
