@charset "UTF-8";
/************************************
  font
************************************/
@font-face {
  font-family: "source-han-sans-japanese";
  src: url("https://www.capcom-games.com/common/font/SourceHanSansJP-VF.otf.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}
@font-face {
  font-family: "source-han-sans-traditional";
  src: url("https://www.capcom-games.com/common/font/SourceHanSansTW-VF.otf.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}
@font-face {
  font-family: "source-han-sans-simplified-c";
  src: url("https://www.capcom-games.com/common/font/SourceHanSansCN-VF.otf.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}
@font-face {
  font-family: "source-han-sans-korean";
  src: url("https://www.capcom-games.com/common/font/SourceHanSansKR-VF.otf.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("https://www.capcom-games.com/common/font/SourceSans3-VF.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}
@font-face {
  font-family: "Material Icons";
  src: url("https://www.capcom-games.com/common/font/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}
/************************************
  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;
  }
}

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

body {
  background: #E8E9EE;
  color: #333;
  font-family: "source-han-sans-japanese", 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: min(0.2rem, 20px);
    letter-spacing: 0.075em;
  }
}
body a {
  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 {
  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 min(2vw, 36px);
    width: min(320 / 1920 * 100%, 320px);
  }
}
@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%);
  }
}
@media screen and (min-width: 1921px) {
  #header .header-box:nth-of-type(2) {
    width: calc(100% - 320px);
  }
}
#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: min(0.18rem, 18px);
    width: calc(700 / 1600 * 100%);
  }
}
#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: min(2vw, 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 {
    justify-content: flex-end;
    font-size: min(0.18rem, 18px);
    width: min(660 / 1600 * 100%, 640px);
  }
}
#header .header-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(380 / 660 * 100%, 380px);
}
@media screen and (min-width: 769px) {
  #header .header-menu ul {
    justify-content: flex-end;
    margin-right: min(60 / 660 * 100%, 60px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  #header .header-menu ul {
    margin-right: min(20 / 660 * 100%, 20px);
  }
}
#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: min(220 / 660 * 100%, 220px);
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  #header .header-menu .btn {
    width: min(260 / 660 * 100%, 260px);
  }
}
#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: min(2vw, 36px) min(0.6666666667vw, 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 {
  justify-content: flex-end;
  margin-right: 4vw;
}
@media screen and (min-width: 769px) {
  #header.portal-header-legal .header-menu {
    margin-right: min(2vw, 36px);
  }
}
#header.portal-header-legal .header-menu ul {
  justify-content: flex-end;
  width: 100%;
}
@media screen and (min-width: 769px) {
  #header.portal-header-legal .header-menu ul li:nth-child(1) {
    border-right: 1px solid rgb(255, 255, 255);
  }
}
@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: min(0.18rem, 18px);
    width: calc(330 / 1600 * 100%);
  }
}
.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: min(1vw, 18px) min(2vw, 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: min(1vw, 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: min(0.15rem, 15px);
  }
}
#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: min(0.15rem, 15px);
    margin-left: auto;
    text-align: right;
    width: auto;
  }
}
#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: min(0.15rem, 15px);
  }
}

/************************************
	content
************************************/
body #wrapper {
  line-height: 1.6;
}
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: min(85 / 1280 * 100vw, 125px);
  }
}
@media screen and (min-width: 769px) {
  body.index[data-page=index] #wrapper, body.page-404 #wrapper {
    padding-top: min(62.5 / 1280 * 100vw, 90px);
  }
}

.conts-box {
  margin-bottom: 8vw;
  padding: 0 4vw;
}
@media screen and (min-width: 769px) {
  .conts-box {
    margin-bottom: min(2vw, 72px);
    padding: 0 min(2vw, 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: min(2vw, 36px);
  }
}

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

.colormode-select {
  padding: 0 4vw 8vw;
}
@media screen and (min-width: 769px) {
  .colormode-select {
    padding: 0 min(2vw, 36px) min(2vw, 36px);
  }
}

/************************************
	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 {
    font-size: min(0.7rem, 70px);
    margin-bottom: min(2vw, 36px);
  }
}
.ttl-h2 small {
  display: block;
  font-size: 0.32rem;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .ttl-h2 small {
    font-size: min(0.2rem, 20px);
  }
}
.ttl-h2.db {
  letter-spacing: normal;
}
.ttl-h2.fs-s {
  font-size: 0.62rem;
}
@media screen and (min-width: 769px) {
  .ttl-h2.fs-s {
    font-size: min(0.62rem, 62px);
  }
}
.ttl-h2.fs-ss {
  font-size: 0.46rem;
}
@media screen and (min-width: 769px) {
  .ttl-h2.fs-ss {
    font-size: min(0.46rem, 46px);
  }
}

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

.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;
}

/*----- リスト -----*/
.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: min(2vw, 36px);
    width: calc(94% / 4);
  }
}
.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 min(1vw, 18px) min(1.3333333333vw, 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: min(1vw, 18px);
    padding-top: min(1vw, 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: min(0.14rem, 14px);
    padding: min(0.3333333333vw, 6px) min(0.3333333333vw, 6px) min(0.4vw, 7.2px);
    margin-right: 50%;
  }
}
.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: min(0.25vw, 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: min(0.5vw, 9px);
    right: min(1vw, 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: min(1vw, 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;
  top: 4vw;
}
@media screen and (min-width: 769px) {
  .panel-list.News .panel .detail .info-box .date {
    font-size: min(0.14rem, 14px);
    top: min(1.3333333333vw, 24px);
  }
}
.panel-list.News .panel .detail .ttl {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .panel-list.News .panel .detail .ttl {
    margin-bottom: min(1vw, 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: min(0.18rem, 18px);
  }
}
.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: min(1vw, 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: min(0.5vw, 9px);
  }
}
.panel-list.Game .panel .detail .info-box .title {
  font-size: 0.36rem;
  line-height: 1.2;
  margin-bottom: 0.5em;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .panel-list.Game .panel .detail .info-box .title {
    font-size: min(0.2rem, 20px);
    line-height: 1.4;
  }
}
.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: min(0.16rem, 16px);
  }
}
.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: min(0.5vw, 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: min(0.5vw, 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: min(0.5vw, 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: min(0.12rem, 12px);
    margin-bottom: min(0.3333333333vw, 6px);
    white-space: nowrap;
  }
}
.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.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%;
  }
}

.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 .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 .ttl {
    border-bottom: none;
    font-size: min(0.44rem, 44px);
    padding: min(1.3333333333vw, 24px) min(2vw, 36px);
    text-align: center;
    width: 24%;
  }
}
.sns-list .ttl small {
  margin-left: 2vw;
  font-size: 0.24rem;
  vertical-align: middle;
}
@media screen and (min-width: 769px) {
  .sns-list .ttl small {
    display: block;
    font-size: min(0.18rem, 18px);
    margin-left: 0;
  }
}
.sns-list .sns {
  text-align: center;
  width: calc(100% / 3);
}
@media screen and (max-width: 768px) {
  .sns-list .sns {
    border-right: 1px solid #d2d3d8;
    border-bottom: 1px solid #d2d3d8;
  }
}
@media screen and (min-width: 769px) {
  .sns-list .sns {
    border-left: 1px solid #d2d3d8;
    width: calc(76% / 6);
  }
}
.sns-list .sns a {
  line-height: 1;
  padding: 2.6666666667vw 0;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 769px) {
  .sns-list .sns a {
    padding: min(1.3333333333vw, 24px) 0;
  }
}
@media screen and (min-width: 769px) {
  .sns-list .sns a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 769px) {
  .sns-list .sns:nth-of-type(1) {
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .sns-list .sns:nth-of-type(4) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .sns-list .sns:nth-of-type(5), .sns-list .sns:nth-of-type(6) {
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .sns-list .sns:nth-of-type(7) {
    border-right: none;
    border-bottom: none;
  }
}
.sns-list .sns-X figure img {
  transform: scale(0.8);
}
.sns-list .sns-X .sns-image-dark {
  display: none;
  margin-bottom: 1vw;
  transform: scale(0.8);
}
@media screen and (min-width: 769px) {
  .sns-list .sns-X .sns-image-dark {
    margin-bottom: min(0.5vw, 9px);
    padding: 0 min(0.6666666667vw, 12px);
  }
}
.sns-list figure img {
  margin-bottom: 1vw;
  padding: 0 8vw;
}
@media screen and (min-width: 769px) {
  .sns-list figure img {
    margin-bottom: min(0.5vw, 9px);
    padding: 0 min(0.6666666667vw, 12px);
    width: 50%;
  }
}
.sns-list figure figcaption {
  font-size: 0.26rem;
}
@media screen and (min-width: 769px) {
  .sns-list figure figcaption {
    font-size: min(0.16rem, 16px);
  }
}
.sns-list figure figcaption span {
  display: none;
}
@media screen and (min-width: 769px) {
  .sns-list figure figcaption span {
    display: inline;
  }
}

.account-list {
  display: flex;
  flex-wrap: wrap;
}
.account-list-ttl {
  color: #004098;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .account-list-ttl {
    font-size: 0.46rem;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 1921px) {
  .account-list-ttl {
    font-size: 46px;
    margin-bottom: 36px;
  }
}
.account-list li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8vw;
  text-align: center;
  width: 32%;
}
@media screen and (min-width: 769px) {
  .account-list li {
    margin-bottom: 4vw;
    width: 24%;
  }
}
@media screen and (min-width: 1921px) {
  .account-list li {
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 768px) {
  .account-list li:not(:nth-child(3n)) {
    margin-right: 2%;
  }
}
@media screen and (min-width: 769px) {
  .account-list li:not(:nth-child(4n)) {
    margin-right: 1%;
  }
}
.account-list li > a {
  display: inherit;
  width: 100%;
}
.account-list li > a .list-inner {
  display: inherit;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .account-list li > a .list-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
.account-list li .thumb {
  border: 1px solid #D9D9D9;
  border-radius: 100%;
  line-height: 1;
  margin-right: auto;
  margin-bottom: 2vw;
  margin-left: auto;
  padding: 36.59% 0;
  position: relative;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .account-list li .thumb {
    min-height: 22vw;
  }
}
@media screen and (min-width: 769px) {
  .account-list li .thumb {
    margin-bottom: 0;
    padding: 11.742% 0;
    width: 24%;
  }
}
.account-list li .thumb img {
  border-radius: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.account-list li .detail {
  height: 100%;
  display: inherit;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .account-list li .detail {
    text-align: left;
    width: 70%;
  }
}
.account-list li .detail .account-name {
  color: #004098;
  flex-grow: 1;
  font-size: 0.28rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2vw;
  max-height: 55%;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .account-list li .detail .account-name {
    font-size: 0.2rem;
    margin-bottom: 0.5vw;
    max-height: auto;
    max-height: initial;
  }
}
@media screen and (min-width: 1921px) {
  .account-list li .detail .account-name {
    font-size: 20px;
    margin-bottom: 9px;
  }
}
.account-list li .detail .account-id {
  flex-grow: 0;
  font-size: 0.24rem;
  line-height: 1.2;
  margin-bottom: 2vw;
  word-break: break-all;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .account-list li .detail .account-id {
    font-size: 0.14rem;
    margin-bottom: 0.6666666667vw;
  }
}
@media screen and (min-width: 1921px) {
  .account-list li .detail .account-id {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.account-list li .detail .sns-btn {
  display: inline-block;
  flex-grow: 0;
  text-align: center;
  width: auto;
}
@media screen and (max-width: 768px) {
  .account-list li .detail .sns-btn {
    margin-right: auto;
    margin-left: auto;
  }
}
.account-list li .sns-btn object {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 90%;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .account-list li .sns-btn object {
    margin-left: 0;
    width: 70%;
  }
}
@media screen and (min-width: 1401px) {
  .account-list li .sns-btn object {
    width: 60%;
  }
}
@media screen and (min-width: 769px) {
  .account-list li .sns-btn object.size-l {
    width: 85%;
  }
}
@media screen and (min-width: 1401px) {
  .account-list li .sns-btn object.size-l {
    width: 75%;
  }
}
.account-list li .sns-btn .sns-btn-item {
  border-radius: 0.5em;
  box-sizing: border-box;
  color: #FFF;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  padding: 2vw;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .account-list li .sns-btn .sns-btn-item {
    padding: 6px 10px;
  }
}
.account-list li .sns-btn .sns-btn-item .icon {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.account-list li .sns-btn .sns-btn-item .icon::before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
.account-list li .sns-btn .instagram-btn {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow: hidden;
}
.account-list li .sns-btn .instagram-btn::before {
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.account-list li .sns-btn .instagram-btn .icon::before {
  background: url(../images/common/insta_icon_w.svg) center top no-repeat;
  background-size: contain;
  height: 13px;
  width: 13px;
}
.account-list li .sns-btn .line-btn {
  background: #00B833;
}
.account-list li .sns-btn .line-btn .icon::before {
  background: url(../images/common/line_icon_w.svg) center top no-repeat;
  background-size: contain;
  height: 12px;
  width: 13px;
}
.account-list li .sns-btn .weibo-btn {
  background: #FF8200;
  border-radius: 50px;
}
.account-list li .sns-btn .twitch-btn {
  background: #9147FF;
}
.account-list li .sns-btn .twitch-btn .icon::before {
  background: url(../images/common/twitch_icon_w.svg) center top no-repeat;
  background-size: contain;
  height: 13px;
  width: 12px;
}
.account-list li .sns-btn .flicker-btn {
  background: #128FDC;
}
.account-list li .sns-btn .flicker-btn .icon::before {
  background: url(../images/common/flicker_icon_w.svg) center top no-repeat;
  background-size: contain;
  height: 10px;
  width: 30px;
}
.account-list li .sns-btn .openrec-btn {
  background: #FF8300;
}
.account-list li .sns-btn .openrec-btn .icon::before {
  background: url(../images/common/openrec_icon_w.svg) center top no-repeat;
  background-size: contain;
  height: 8px;
  width: 51px;
}
@media screen and (min-width: 1024px) {
  .account-list li .sns-btn .openrec-btn .icon::before {
    height: 10px;
    width: 72px;
  }
}
.account-list li .sns-btn .tiktok-btn {
  background: #FE2C55;
}
.account-list li .sns-btn .tiktok-btn .icon::before {
  background: url(../images/common/tiktok_icon_w.svg) center top no-repeat;
  background-size: contain;
  height: 13px;
  width: 11px;
}
.account-list li .sns-btn .mildam-btn {
  background: #38CCE3;
}
.account-list li .sns-btn .mildam-btn .icon::before {
  background: url(../images/common/mildam_icon_w.svg) center top no-repeat;
  background-size: contain;
  height: 9px;
  width: 31px;
}
@media screen and (min-width: 1024px) {
  .account-list li .sns-btn .mildam-btn .icon::before {
    height: 11px;
    width: 38px;
  }
}
.account-list li .sns-btn .bluesky-btn {
  background: #0085FF;
}
.account-list li .sns-btn .bluesky-btn .icon::before {
  background: url(../images/common/bluesky_icon_w.svg) center top no-repeat;
  background-size: contain;
  height: 13px;
  width: 16px;
}
.account-list li .sns-btn .twitter-btn {
  background: transparents;
  border: 1px solid #000;
  border-radius: 4em;
  color: #000;
}
.account-list li .sns-btn .twitter-btn .icon::before {
  background: url(../images/common/x_icon.svg) center top no-repeat;
  background-size: contain;
  height: 12px;
  width: 12px;
}

/*----- サイトナビ -----*/
.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: min(1vw, 18px) min(2vw, 36px) min(2vw, 36px);
  }
}
@media screen and (min-width: 769px) {
  .site-navi-box {
    margin-right: min(3vw, 54px);
    margin-left: min(3vw, 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: min(3vw, 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: min(0.2rem, 20px);
    margin-bottom: min(0.6666666667vw, 12px);
    pointer-events: none;
  }
}
@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: min(0.6666666667vw, 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: min(0.18rem, 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: min(1vw, 18px) min(4vw, 72px) min(2vw, 36px);
    width: calc(1080 / 1840 * 100%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .select-box#langSelect {
    width: calc(884 / 1024 * 100%);
  }
}
.select-box#langSelect .label {
  width: auto;
}
.select-box#langSelect .label::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48"><path fill="%23333" d="M24 44q-4.2 0-7.85-1.575Q12.5 40.85 9.8 38.15q-2.7-2.7-4.25-6.375Q4 28.1 4 23.9t1.55-7.825Q7.1 12.45 9.8 9.75t6.35-4.225Q19.8 4 24 4q4.2 0 7.85 1.525Q35.5 7.05 38.2 9.75q2.7 2.7 4.25 6.325Q44 19.7 44 23.9t-1.55 7.875Q40.9 35.45 38.2 38.15t-6.35 4.275Q28.2 44 24 44Zm0-2.9q1.75-1.8 2.925-4.125Q28.1 34.65 28.85 31.45H19.2q.7 3 1.875 5.4Q22.25 39.25 24 41.1Zm-4.25-.6q-1.25-1.9-2.15-4.1-.9-2.2-1.5-4.95H8.6Q10.5 35 13 37.025q2.5 2.025 6.75 3.475Zm8.55-.05q3.6-1.15 6.475-3.45 2.875-2.3 4.625-5.55h-7.45q-.65 2.7-1.525 4.9-.875 2.2-2.125 4.1Zm-20.7-12h7.95q-.15-1.35-.175-2.425-.025-1.075-.025-2.125 0-1.25.05-2.225.05-.975.2-2.175h-8q-.35 1.2-.475 2.15T7 23.9q0 1.3.125 2.325.125 1.025.475 2.225Zm11.05 0H29.4q.2-1.55.25-2.525.05-.975.05-2.025 0-1-.05-1.925T29.4 19.5H18.65q-.2 1.55-.25 2.475-.05.925-.05 1.925 0 1.05.05 2.025.05.975.25 2.525Zm13.75 0h8q.35-1.2.475-2.225Q41 25.2 41 23.9q0-1.3-.125-2.25T40.4 19.5h-7.95q.15 1.75.2 2.675.05.925.05 1.725 0 1.1-.075 2.075-.075.975-.225 2.475Zm-.5-11.95h7.5q-1.65-3.45-4.525-5.75Q32 8.45 28.25 7.5q1.25 1.85 2.125 4t1.525 5Zm-12.7 0h9.7q-.55-2.65-1.85-5.125T24 7q-1.6 1.35-2.7 3.55-1.1 2.2-2.1 5.95Zm-10.6 0h7.55q.55-2.7 1.4-4.825.85-2.125 2.15-4.125-3.75.95-6.55 3.2T8.6 16.5Z"/></svg>');
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  height: 1.5em;
  margin-right: 0.25em;
  position: relative;
  vertical-align: middle;
  width: 1.5em;
}
.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: min(0.18rem, 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: min(4vw, 72px);
    padding: 0;
  }
}
.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 {
    font-size: min(0.18rem, 18px);
    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: min(1.3333333333vw, 24px) min(1vw, 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: min(1.3333333333vw, 24px) min(1vw, 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: min(1.3333333333vw, 24px) min(1vw, 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 min(1vw, 18px);
    position: relative;
    width: 25%;
  }
}
.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: min(0.5vw, 9px) min(1vw, 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: min(4.2vw, 92px);
    right: 0;
    top: 0;
    width: min(4.2vw, 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: min(1vw, 18px);
  }
}
.message-box .message-link {
  position: relative;
}
.message-box .message-link .text {
  width: calc(100% - 11em);
}
.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.26rem;
  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: min(0.16rem, 16px);
    padding: min(0.6666666667vw, 12px) min(1vw, 18px);
  }
}
.message-box .text-box .text {
  display: inline-block;
  font-size: 0.32rem;
  letter-spacing: normal;
}
@media screen and (min-width: 769px) {
  .message-box .text-box .text {
    font-size: min(0.18rem, 18px);
    vertical-align: middle;
  }
}
.message-box .text-box .text.link-text {
  display: inline;
}

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

/*----- ボタン -----*/
.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(540 / 1840 * 100%);
  }
}
.link-btn .btn {
  background: linear-gradient(to right, rgb(44, 170, 223) 0%, rgb(41, 122, 237) 100%);
  border-radius: 5em;
}
.link-btn .btn a {
  color: #FFF;
  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 {
    padding: min(1.6666666667vw, 30px) min(1vw, 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, rgb(237, 87, 41) 0%, rgb(223, 44, 44) 100%);
}
.link-btn .btn.color-dark {
  background: linear-gradient(to right, rgb(145, 145, 145) 0%, rgb(103, 103, 103) 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%;
}

.to-top {
  position: relative;
  right: 4vw;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .to-top {
    right: min(2vw, 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: min(0.5vw, 9px) min(1vw, 18px) min(0.5vw, 9px) min(0.5vw, 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;
  }
}

.toggle-switch-colormode {
  background: #004098;
  border-radius: 0.5rem;
  cursor: pointer;
  height: 0.8rem;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  width: 1.6rem;
}
@media screen and (max-width: 768px) {
  .toggle-switch-colormode {
    margin-right: auto;
  }
}
@media screen and (min-width: 769px) {
  .toggle-switch-colormode {
    height: min(0.36rem, 36px);
    width: min(0.72rem, 72px);
  }
}
.toggle-switch-colormode input[type=checkbox] {
  display: none;
}
.toggle-switch-colormode .toggle-switch-ic {
  background: #FFF;
  border-radius: 0.5rem;
  display: block;
  height: 0.68rem;
  left: 0.06rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-out;
  width: 0.68rem;
}
@media screen and (min-width: 769px) {
  .toggle-switch-colormode .toggle-switch-ic {
    height: min(0.3rem, 30px);
    left: min(0.03rem, 3px);
    width: min(0.3rem, 30px);
  }
}
.toggle-switch-colormode::before, .toggle-switch-colormode::after {
  font-family: "Material Icons";
  font-variation-settings: "FILL" 1;
  font-size: 0.42rem;
  font-weight: bold;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  transition: 0.2s ease-out;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .toggle-switch-colormode::before, .toggle-switch-colormode::after {
    font-size: min(0.2rem, 20px);
  }
}
.toggle-switch-colormode::before {
  color: #004098;
  content: "\e518";
  left: 0.19rem;
}
@media screen and (min-width: 769px) {
  .toggle-switch-colormode::before {
    left: min(0.08rem, 8px);
  }
}
.toggle-switch-colormode::after {
  color: #FFF;
  content: "\e51c";
  right: 0.19rem;
}
@media screen and (min-width: 769px) {
  .toggle-switch-colormode::after {
    right: min(0.08rem, 8px);
  }
}
.toggle-switch-colormode.is-checked {
  background: #CCC;
}
.toggle-switch-colormode.is-checked .toggle-switch-ic {
  background: #202020;
  left: 0.86rem;
}
@media screen and (min-width: 769px) {
  .toggle-switch-colormode.is-checked .toggle-switch-ic {
    left: min(0.39rem, 39px);
  }
}
.toggle-switch-colormode.is-checked::before {
  color: #202020;
}
.toggle-switch-colormode.is-checked::after {
  color: #FFF;
}

/*----- 動画 -----*/
.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 {
  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;
  }
}

/*----- フォーム -----*/
.form-box {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .form-box {
    margin-bottom: min(2vw, 36px);
  }
}
.form-box-inner {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .form-box-inner {
    margin-bottom: min(2vw, 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: min(0.36rem, 36px);
    margin-bottom: min(1.3333333333vw, 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;
  line-height: 2;
  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: block;
  float: right;
  font-size: 0.8em;
  padding: 0.2em 0.5em;
}
.form-box .form-table th span {
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.2;
  margin-top: 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,
.form-box .wpcf7-text {
  background: #E8E9EE;
  border: 1px solid #D7D7D7;
  border-radius: 0.5em;
  padding: 1em;
  width: 100%;
}
.form-box .form-text.size-l,
.form-box .wpcf7-text.size-l {
  width: 60%;
}
.form-box .form-text.size-l:not(:last-child),
.form-box .wpcf7-text.size-l:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-text.size-m,
.form-box .wpcf7-text.size-m {
  width: 40%;
}
.form-box .form-text.size-m:not(:last-child),
.form-box .wpcf7-text.size-m:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-text.size-s,
.form-box .wpcf7-text.size-s {
  width: 20%;
}
.form-box .form-text.size-s:not(:last-child),
.form-box .wpcf7-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: "source-han-sans-japanese", 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 .wpcf7-form-control-wrap select {
  background: #E8E9EE;
  border: #D7D7D7 solid 1px;
  border-radius: 0.5em;
  font-family: "source-han-sans-japanese", sans-serif;
  outline: none;
  padding: 0.75em 1em;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .form-box .wpcf7-form-control-wrap select {
    width: 60%;
  }
}
.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 .wpcf7-checkbox .wpcf7-list-item:nth-child(1) {
  margin: 0;
}
.form-box .wpcf7-checkbox .wpcf7-list-item-label {
  cursor: pointer;
  padding-left: 1.8em;
  position: relative;
}
.form-box .wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #E8E9EE;
  border: 1px solid #D7D7D7;
  border-radius: 0.5em;
  content: "";
  display: block;
  height: 1.5em;
  left: 0;
  position: absolute;
  top: 0;
  width: 1.5em;
}
.form-box .wpcf7-checkbox input[type=checkbox] {
  display: none;
}
.form-box .wpcf7-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  border-bottom: 2px solid #004098;
  border-right: 2px solid #004098;
  content: "";
  display: block;
  height: 0.8em;
  left: 0.45em;
  margin-top: -0.15em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
  width: 0.6em;
}
.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 .wpcf7-radio .wpcf7-list-item:nth-child(1) {
  margin: 0;
}
.form-box .wpcf7-radio .wpcf7-list-item-label {
  cursor: pointer;
  padding-left: 1.8em;
  position: relative;
}
.form-box .wpcf7-radio .wpcf7-list-item-label::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 .wpcf7-radio input[type=radio] {
  display: none;
}
.form-box .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  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 .button-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  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,
.form-box .wpcf7-submit {
  background: linear-gradient(to right, rgb(44, 170, 223) 0%, rgb(41, 122, 237) 100%);
  border: none;
  border-radius: 5em;
  color: #FFF;
  cursor: pointer;
  display: block;
  font-family: "source-han-sans-japanese", sans-serif;
  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,
  .form-box .wpcf7-submit {
    padding: min(1.3333333333vw, 24px) min(1vw, 18px);
  }
}
@media screen and (min-width: 769px) {
  .form-box .form-button:hover,
  .form-box .wpcf7-submit:hover {
    opacity: 0.8;
  }
}
.form-box .form-button.size-l,
.form-box .wpcf7-submit.size-l {
  width: 68%;
}
.form-box .form-button.size-l:not(:last-child),
.form-box .wpcf7-submit.size-l:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-button.size-m,
.form-box .wpcf7-submit.size-m {
  width: 48%;
}
.form-box .form-button.size-m:not(:last-child),
.form-box .wpcf7-submit.size-m:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-button.size-s,
.form-box .wpcf7-submit.size-s {
  width: 28%;
}
.form-box .form-button.size-s:not(:last-child),
.form-box .wpcf7-submit.size-s:not(:last-child) {
  margin-right: 0.5em;
}
.form-box .form-button.color-dark,
.form-box .wpcf7-submit.color-dark {
  background: linear-gradient(to right, rgb(145, 145, 145) 0%, rgb(103, 103, 103) 100%);
}
.form-box .form-button.color-red,
.form-box .wpcf7-submit.color-red {
  background: linear-gradient(to right, rgb(237, 87, 41) 0%, rgb(223, 44, 44) 100%);
}
.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, rgb(44, 170, 223) 0%, rgb(41, 122, 237) 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, rgb(145, 145, 145) 0%, rgb(103, 103, 103) 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 .wpcf7-textarea {
  background: #E8E9EE;
  border: 1px solid #D7D7D7;
  border-radius: 0.5em;
  line-height: 1.5;
  padding: 1em;
  resize: none;
  width: 100%;
}

.wpcf7 .form-box .button-wrap p {
  width: 100%;
}

.wpcf7 form .wpcf7-response-output {
  border-color: #00a0d2 !important;
  color: #00a0d2 !important;
  display: block;
  margin: 0 auto !important;
  padding: 0.5em 2em !important;
}
@media screen and (min-width: 769px) {
  .wpcf7 form .wpcf7-response-output {
    text-align: center !important;
    width: 70% !important;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #dc3232 !important;
  color: #dc3232 !important;
}

.grecaptcha-badge {
  margin-bottom: 140px !important;
  z-index: 3;
}

.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%;
}

/*----- アコーディオン -----*/
.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: "▲";
}

/*----- モーダル -----*/
.mfp-bg {
  z-index: 100;
}

.mfp-wrap {
  z-index: 101;
}

/*----- anime -----*/
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: opacity 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*----- trailer -----*/
.modal-trailer.mfp-bg {
  background: #FFF;
}

.modal-trailer .mfp-iframe-holder .mfp-close {
  background: #004098;
  font-size: 0.8rem;
  height: 10vw;
  line-height: 1;
  opacity: 1;
  overflow: hidden;
  padding-right: 0;
  right: 0;
  text-indent: 100%;
  top: -10vw;
  transition: opacity 0.25s ease-in;
  white-space: nowrap;
  width: 10vw;
}
@media screen and (min-width: 769px) {
  .modal-trailer .mfp-iframe-holder .mfp-close {
    font-size: 38px;
    height: 50px;
    top: -60px;
    width: 50px;
  }
}
.modal-trailer .mfp-iframe-holder .mfp-close::before {
  color: #FFF;
  content: "\e5cd";
  font-family: "Material Icons";
  left: 50%;
  position: absolute;
  text-indent: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal-trailer .mfp-iframe-holder .mfp-close:hover {
  opacity: 0.8;
}
.modal-trailer .mfp-iframe-scaler iframe {
  border: 4px solid #004098;
  box-shadow: none;
}

/*----- images -----*/
.modal-images {
  cursor: pointer;
}
.modal-images.mfp-bg {
  background: #FFF;
}
.modal-images .mfp-figure:after {
  display: none;
}

.modal-images .mfp-container {
  left: 50%;
  max-width: 80%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .modal-images .mfp-container {
    min-height: 768px;
    max-width: 900px;
    padding: min(0.8rem, 80px) 0;
    width: 100%;
  }
}
.modal-images .mfp-content {
  width: 100%;
}
.modal-images .mfp-image-holder .mfp-close {
  background: #004098;
  cursor: pointer;
  font-size: 0.8rem;
  height: 10vw;
  line-height: 1;
  opacity: 1;
  overflow: hidden;
  padding-right: 0;
  right: 0;
  text-indent: 100%;
  top: -10vw;
  transition: opacity 0.25s ease-in;
  white-space: nowrap;
  width: 10vw;
}
@media screen and (min-width: 769px) {
  .modal-images .mfp-image-holder .mfp-close {
    font-size: 38px;
    height: 50px;
    top: -60px;
    width: 50px;
  }
}
.modal-images .mfp-image-holder .mfp-close::before {
  color: #FFF;
  content: "\e5cd";
  font-family: "Material Icons";
  left: 50%;
  position: absolute;
  text-indent: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal-images .mfp-image-holder .mfp-close:hover {
  opacity: 0.8;
}
.modal-images img.mfp-img {
  padding: 4vw 0;
}
@media screen and (min-width: 769px) {
  .modal-images img.mfp-img {
    max-height: initial !important;
    padding: 5px 0 20px;
  }
}
.modal-images .mfp-figure::after {
  border: 4px solid #004098;
  box-shadow: none;
}
.modal-images.mfp-gallery .mfp-bottom-bar {
  margin-top: -6px;
}
.modal-images.mfp-gallery .mfp-counter {
  color: #004098;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.modal-images.mfp-gallery .mfp-arrow,
.modal-images.mfp-gallery .mfp-arrow::before {
  opacity: 1;
}
.modal-images.mfp-gallery .mfp-arrow-left {
  left: -12%;
}
.modal-images.mfp-gallery .mfp-arrow-left::before {
  border-top: none;
  border-right: none;
  border-bottom: 4px solid #004098;
  border-left: 4px solid #004098;
  height: 24px;
  transform: rotate(45deg);
  width: 24px;
}
.modal-images.mfp-gallery .mfp-arrow-left::after {
  display: none;
}
.modal-images.mfp-gallery .mfp-arrow-right {
  right: -12%;
}
.modal-images.mfp-gallery .mfp-arrow-right::before {
  border-top: 4px solid #004098;
  border-right: 4px solid #004098;
  border-bottom: none;
  border-left: none;
  height: 24px;
  transform: rotate(45deg);
  width: 24px;
}
.modal-images.mfp-gallery .mfp-arrow-right::after {
  display: none;
}

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

/*-----------------------------------------
	Swiper
-------------------------------------------*/
.swiper-container {
  visibility: hidden;
}
.swiper-container.swiper-container-initialized {
  visibility: visible;
}

.swiper-pagination {
  bottom: 0;
}
.swiper-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  display: inline-block;
  opacity: 1;
  position: relative;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #004098;
}

#mvSlider .swiper-slide {
  background: #000;
}
#mvSlider .swiper-slide .thumb,
#mvSlider .swiper-slide .detail {
  visibility: hidden;
}
#mvSlider.swiper-container.swiper-container-initialized .swiper-slide-active .thumb,
#mvSlider.swiper-container.swiper-container-initialized .swiper-slide-active .detail {
  visibility: visible;
}

#saleSlider.swiper-container {
  padding: 0 0 6vw;
}
@media screen and (min-width: 769px) {
  #saleSlider.swiper-container {
    padding: 0 0 2vw;
    visibility: visible;
  }
}
@media screen and (min-width: 769px) {
  #saleSlider .swiper-wrapper {
    transform: none !important;
  }
}
#saleSlider .swiper-slide {
  margin: 0 2vw;
  max-width: 48%;
}
@media screen and (min-width: 769px) {
  #saleSlider .swiper-slide {
    margin: 0 2% 0 0;
    max-width: 18.5%;
  }
}
#saleSlider .swiper-pagination {
  bottom: 0;
}
#saleSlider .swiper-pagination .swiper-pagination-bullet {
  background: rgb(255, 255, 255);
  border: 1px solid #DDD;
  border-radius: 5em;
  box-sizing: border-box;
  display: inline-block;
  height: 5px;
  opacity: 1;
  position: relative;
  width: calc(110 / 1080 * 100%);
}
@media screen and (min-width: 769px) {
  #saleSlider .swiper-pagination .swiper-pagination-bullet {
    height: 7px;
    max-width: 90px;
  }
}
#saleSlider .swiper-pagination .swiper-pagination-bullet-active {
  background: #004098;
}

@media screen and (min-width: 769px) {
  #channelSlider.swiper-container {
    visibility: visible;
  }
}
@media screen and (min-width: 769px) {
  #channelSlider .swiper-wrapper {
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  #channelSlider .swiper-slide {
    max-width: 48.5%;
  }
}
@media screen and (min-width: 769px) {
  #channelSlider .swiper-slide:not(:nth-child(-n+2)) {
    display: none;
  }
}
#channelSlider .custom-btn {
  background: rgba(0, 64, 152, 0.9);
  border: 1px solid #0050c2;
  box-sizing: border-box;
  height: 25vw;
  margin-top: -16vw;
  line-height: 1;
  width: calc(70 / 1080 * 100%);
}
@media screen and (min-width: 769px) {
  #channelSlider .custom-btn {
    display: none;
  }
}
#channelSlider .custom-btn::before {
  color: #FED100;
  display: inline-block;
  font-size: 2em;
  font-family: "Material Icons";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#channelSlider .custom-btn.swiper-button-prev {
  left: 0;
}
#channelSlider .custom-btn.swiper-button-prev::before {
  content: "\e5cb";
}
#channelSlider .custom-btn.swiper-button-next {
  right: 0;
}
#channelSlider .custom-btn.swiper-button-next::before {
  content: "\e5cc";
}

#seriesSlider.swiper-container {
  padding: 0 0 6vw;
}
@media screen and (min-width: 769px) {
  #seriesSlider.swiper-container {
    padding: 0 0 3vw;
  }
}
#seriesSlider .swiper-slide {
  margin: 0 4% 0 0;
  max-width: 43%;
}
@media screen and (min-width: 769px) {
  #seriesSlider .swiper-slide {
    margin: 0 2% 0 0;
    max-width: 15%;
  }
}
@media screen and (max-width: 768px) {
  #seriesSlider .swiper-slide:last-child {
    margin: 0;
  }
}
#seriesSlider .swiper-pagination {
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #seriesSlider .swiper-pagination {
    display: none;
  }
}
#seriesSlider .swiper-pagination .swiper-pagination-bullet {
  background: rgb(255, 255, 255);
  border: 1px solid #DDD;
  border-radius: 5em;
  box-sizing: border-box;
  display: inline-block;
  height: 5px;
  opacity: 1;
  position: relative;
  width: calc(90 / 1080 * 100%);
}
@media screen and (min-width: 769px) {
  #seriesSlider .swiper-pagination .swiper-pagination-bullet {
    height: 7px;
    max-width: 90px;
  }
}
#seriesSlider .swiper-pagination .swiper-pagination-bullet-active {
  background: #004098;
}
#seriesSlider .swiper-scrollbar {
  border-radius: 0;
  bottom: auto;
  height: 5px;
  left: auto;
  margin-top: 4vw;
  position: relative;
  width: 100%;
  z-index: 8;
}
@media screen and (min-width: 769px) {
  #seriesSlider .swiper-scrollbar {
    display: none;
  }
}
#seriesSlider .swiper-scrollbar-drag {
  background: rgba(0, 64, 152, 0.8);
  border-radius: 0;
}

@media screen and (max-width: 768px) {
  #cidSlider .swiper-slide {
    max-width: 100%;
    width: 100% !important;
  }
}
#cidSlider .swiper-pagination {
  bottom: 0;
}
#cidSlider .swiper-pagination .swiper-pagination-bullet {
  background: rgb(255, 255, 255);
  border: 1px solid #DDD;
  border-radius: 5em;
  box-sizing: border-box;
  display: inline-block;
  height: 5px;
  opacity: 1;
  position: relative;
  width: calc(90 / 640 * 100%);
}
@media screen and (min-width: 769px) {
  #cidSlider .swiper-pagination .swiper-pagination-bullet {
    height: 7px;
    max-width: 90px;
    transition: background 0.25s ease;
  }
}
#cidSlider .swiper-pagination .swiper-pagination-bullet-active {
  background: #004098;
}
#cidSlider.not-swiper.swiper-container {
  visibility: visible;
}

#screenShotSlider.swiper-container {
  cursor: grab;
  padding: 0 0 6vw;
}
@media screen and (min-width: 769px) {
  #screenShotSlider.swiper-container {
    padding: 0 0 2vw;
  }
}
#screenShotSlider .swiper-slide {
  padding: 0 0.5vw;
  max-width: 85%;
}
@media screen and (min-width: 769px) {
  #screenShotSlider .swiper-slide {
    padding: 0 0.25vw;
    max-width: 640px;
    min-width: 640px;
    width: calc(640 / 1920 * 100%);
  }
}
#screenShotSlider .swiper-pagination {
  bottom: 0;
  cursor: pointer;
}
#screenShotSlider .swiper-pagination .swiper-pagination-bullet-active {
  background: #004098;
}

#appSlider.swiper-container {
  padding: 0 0 6vw;
}
@media screen and (min-width: 769px) {
  #appSlider.swiper-container {
    padding: 0 0 2vw;
    visibility: visible;
  }
}
@media screen and (min-width: 769px) {
  #appSlider .swiper-wrapper {
    transform: none !important;
  }
}
#appSlider .swiper-slide {
  margin: 0 4% 0 0;
  max-width: 43%;
}
@media screen and (min-width: 769px) {
  #appSlider .swiper-slide {
    margin: 0 2% 0 0;
    max-width: 18.5%;
  }
}
@media screen and (max-width: 768px) {
  #appSlider .swiper-slide:last-child {
    margin: 0;
  }
}
#appSlider .swiper-scrollbar {
  border-radius: 0;
  bottom: auto;
  height: 5px;
  left: auto;
  margin-top: 4vw;
  position: relative;
  width: 100%;
  z-index: 8;
}
@media screen and (min-width: 769px) {
  #appSlider .swiper-scrollbar {
    display: none;
  }
}
#appSlider .swiper-scrollbar-drag {
  background: rgba(0, 64, 152, 0.8);
  border-radius: 0;
}

#pickupSlider.swiper-container {
  padding: 0 4vw 5vw;
}
@media screen and (min-width: 769px) {
  #pickupSlider.swiper-container {
    padding: 0 0 2.5vw;
  }
}
#pickupSlider .swiper-slide {
  margin: 0 3% 0 0;
  max-width: 54%;
}
@media screen and (min-width: 769px) {
  #pickupSlider .swiper-slide {
    margin: 0 1vw;
    max-width: 40.12%;
  }
}
@media screen and (min-width: 1921px) {
  #pickupSlider .swiper-slide {
    margin: 0 20px;
    max-width: 765px;
  }
}
@media screen and (max-width: 768px) {
  #pickupSlider .swiper-slide:last-child {
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  #pickupSlider .swiper-slide:not(.swiper-slide-active) a {
    pointer-events: none;
  }
}
#pickupSlider .swiper-pagination {
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #pickupSlider .swiper-pagination {
    display: none;
  }
}
#pickupSlider .swiper-pagination .swiper-pagination-bullet {
  background: rgb(255, 255, 255);
  border: 1px solid #DDD;
  border-radius: 5em;
  box-sizing: border-box;
  display: inline-block;
  height: 5px;
  opacity: 1;
  position: relative;
  width: calc(110 / 1080 * 100%);
}
@media screen and (min-width: 769px) {
  #pickupSlider .swiper-pagination .swiper-pagination-bullet {
    height: 7px;
    max-width: 90px;
  }
}
#pickupSlider .swiper-pagination .swiper-pagination-bullet-active {
  background: #004098;
}
#pickupSlider .swiper-scrollbar {
  border-radius: 0;
  bottom: auto;
  height: 5px;
  left: auto;
  margin-top: 4vw;
  position: relative;
  width: 100%;
  z-index: 8;
}
@media screen and (min-width: 769px) {
  #pickupSlider .swiper-scrollbar {
    display: none;
  }
}
#pickupSlider .swiper-scrollbar-drag {
  background: rgba(0, 64, 152, 0.8);
  border-radius: 0;
}
#pickupSlider .custom-btn {
  background: rgba(0, 64, 152, 0.9);
  border: 1px solid #0050c2;
  box-sizing: border-box;
  height: 25vw;
  margin-top: -16vw;
  line-height: 1;
  width: calc(70 / 1080 * 100%);
}
@media screen and (min-width: 769px) {
  #pickupSlider .custom-btn {
    height: 7vw;
    margin-top: -5vw;
    width: calc(70 / 1920 * 100%);
  }
}
#pickupSlider .custom-btn::before {
  color: #FED100;
  display: inline-block;
  font-size: 2em;
  font-family: "Material Icons";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#pickupSlider .custom-btn.swiper-button-prev {
  left: 0;
}
#pickupSlider .custom-btn.swiper-button-prev::before {
  content: "\e5cb";
}
#pickupSlider .custom-btn.swiper-button-next {
  right: 0;
}
#pickupSlider .custom-btn.swiper-button-next::before {
  content: "\e5cc";
}
#pickupSlider.not-swiper.swiper-container {
  visibility: visible;
}
#pickupSlider.not-swiper .swiper-wrapper {
  justify-content: center;
}
#pickupSlider.not-swiper .swiper-slide a {
  pointer-events: auto;
}

/************************************
	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
************************************/
@media screen and (min-width: 769px) {
  .gp #wrapper {
    padding-top: min(95 / 1280 * 100vw, 135px) !important;
  }
}
.gp .conts-box {
  margin-bottom: 0;
  padding: 0;
}
.gp .conts-box-inner {
  padding: 8vw;
}
@media screen and (min-width: 769px) {
  .gp .conts-box-inner {
    min-height: 76.5vh;
    padding: min(4vw, 72px) min(8vw, 144px);
  }
}
@media screen and (min-width: 1024px) {
  .gp .conts-box .inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1280px;
  }
}
.gp .conts-box .ttl-h2 {
  margin-bottom: 6vw;
}
@media screen and (min-width: 769px) {
  .gp .conts-box .ttl-h2 {
    margin-bottom: min(3vw, 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: min(0.34rem, 34px);
    margin-bottom: min(3vw, 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: min(0.3rem, 30px);
    margin-bottom: min(1.3333333333vw, 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: min(0.24rem, 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: min(2vw, 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: min(2vw, 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: min(1vw, 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: min(2vw, 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: min(0.6rem, 60px);
    padding: 0 min(2vw, 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: min(0.3rem, 30px);
    margin-bottom: min(2vw, 36px);
    padding: min(1vw, 18px) min(2vw, 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: min(0.24rem, 24px);
    margin-bottom: min(1vw, 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: min(3vw, 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: min(4vw, 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: min(2vw, 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: min(2vw, 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: min(2vw, 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: min(2vw, 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: min(1vw, 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: min(100vh - 8.35vw, 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;
  }
}
@media screen and (min-width: 769px) {
  .gp.page-404 #wrapper main .conts-box-inner {
    min-height: initial;
  }
}
.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: min(4vw, 72px);
  }
}

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

/*----- アイコン -----*/
.material-icons {
  display: inline-block;
  font-family: "Material Icons";
  font-size: min(0.24rem, 24px);
  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;
  }
}
.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;
}
.fc-blue {
  color: #004098;
}

/*----- 画像 -----*/
img.size-l {
  max-width: 80%;
}
img.size-m {
  max-width: 50%;
}
img.size-s {
  max-width: 30%;
}
@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%;
  }
}
@media screen and (max-width: 768px) {
  img.size-l-sp {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  img.size-m-sp {
    max-width: 50%;
  }
}
@media screen and (max-width: 768px) {
  img.size-s-sp {
    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;
  }
}

/*----- 表示 -----*/
@media screen and (max-width: 768px) {
  .hide-sp,
  .img-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .hide-pc,
  .img-sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hide-tb {
    display: block;
  }
}
/************************************
	anime
************************************/
@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;
  }
}
@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: block;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes fadeInFlex {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@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);
  }
}
@keyframes sortBoxActive {
  0% {
    width: 13%;
  }
  100% {
    width: 100%;
  }
}
@keyframes sortBoxDisable {
  0% {
    width: 100%;
  }
  100% {
    width: 13%;
  }
}
@media screen and (min-width: 769px) {
  @keyframes sortBoxActive {
    0% {
      width: 4.25%;
    }
    100% {
      width: 100%;
    }
  }
  @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;
  }
}
@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;
  }
}
@keyframes youtubeLoading {
  0% {
    transform: translate(-50%, -50%) translateZ(0) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) translateZ(0) rotate(360deg);
  }
}
/************************************
  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: min(0.18rem, 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: min(0.18rem, 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: min(0.18rem, 18px);
  }
}
#header.is-active {
  z-index: 99;
}
@media screen and (max-width: 768px) {
  #header.is-active .header-box:nth-of-type(2) {
    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) {
    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: min(0.18rem, 18px);
  }
}
@media screen and (max-width: 768px) {
  .member #header.is-disable .header-box:nth-of-type(2) {
    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 {
  animation: fadeOut 0.25s ease-in-out forwards;
}

.is-active-modal .modal-overlay {
  animation: fadeIn 0.25s ease-in-out forwards;
  z-index: 9;
}
.is-active-modal .select-box.is-active .label-select .label {
  pointer-events: none;
}
.is-active-modal .select-box.is-active .select-list {
  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: #FFF;
}
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;
}
body[class*=series-monsterhunter].news.index .conts-box#latest .error-message-text strong {
  color: #FFF;
}
body[class*=series-monsterhunter].news.index .conts-box#latest .loading-item::after {
  color: #FFF;
}
body[class*=series-monsterhunter].news.index .conts-box#latest .link-btn.more::after {
  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: #004098;
}
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;
}
@media screen and (min-width: 769px) {
  body[class*=series-gyakuten], body[class*=series-aceattorney] {
    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-aceattorney]::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*=aceattorney], body[class*=series-aceattorney] .select-box .select-list ul li[data-ser*=gyakuten], body[class*=series-aceattorney] .select-box .select-list ul li[data-ser*=aceattorney] {
  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*=aceattorney] a, body[class*=series-aceattorney] .select-box .select-list ul li[data-ser*=gyakuten] a, body[class*=series-aceattorney] .select-box .select-list ul li[data-ser*=aceattorney] 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;
}
@media screen and (min-width: 769px) {
  body[class*=series-dragonsdogma] {
    background: url(../images/news/title/dd_bg.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media screen and (max-width: 768px) {
  body[class*=series-dragonsdogma]::before {
    background: url(../images/news/title/dd_bg.jpg) center top no-repeat;
    background-size: cover;
    display: block;
  }
}
body[class*=series-dragonsdogma] .ttl-h2 {
  color: #FFF;
}
body[class*=series-dragonsdogma] .select-box .select-list ul li[data-ser*=dragonsdogma] {
  background: #004098;
}
body[class*=series-dragonsdogma] .select-box .select-list ul li[data-ser*=dragonsdogma] a {
  color: #FFF;
}
body[class*=series-dragonsdogma].news.index .conts-box#latest .error-message-text strong {
  color: #FFF;
}
body[class*=series-dragonsdogma].news.index .conts-box#latest .loading-item::after {
  color: #FFF;
}
body[class*=series-dragonsdogma].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;
}

[data-page=corp] #header.portal-header-legal .header-menu ul {
  margin-right: 0;
}
