@charset "UTF-8";
/* resposive function
----------------------------------*/
/*----------------------------------------------
 * * reset styles
 * *----------------------------------------------*/
main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
  display: block;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/*----------------------------------------------
 * * formatting styles
 * *----------------------------------------------*/
:root {
  --mainColor: #60b424;
  --subColor: #00a7ea;
  --navy: #005ca2;
  --grayBg: #f3f3f3;
  --yellow: #ffee00;
  --red: #e30012;
  --w: 1062px;
}

@media screen and (max-width: 767px) {
  :root {
    --w: 85.9375%;
  }
}
/* common
----------------------------------*/
.sp {
  display: none !important;
}

.sp_ib {
  display: none !important;
}

.sp_min {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_ib {
    display: inline-block !important;
  }
}
html {
  font-size: 100%;
}

body {
  background-color: var(--mainColor);
  font-family: "Airbnb", "小塚ゴシック", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

@font-face {
  font-family: "Airbnb";
  src: url("../font/AirbnbCereal-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Airbnb";
  src: url("../font/AirbnbCereal-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
.Airbnb {
  font-family: "Airbnb", sans-serif;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
    -webkit-text-size-adjust: 100%;
  }
}
a {
  color: inherit;
  transition-duration: 0.3s;
}

_::-webkit-full-page-media,
_:future,
:root a {
  text-underline-offset: 2px;
}

img {
  border-style: none;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}
@media (any-hover: none) {
  a:active {
    text-decoration: none;
  }
}
/* ----------------------------------------------
 * * header
 * *----------------------------------------------*/
header {
  width: 100%;
  padding: 90px 0 85px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

@media screen and (max-width: 767px) {
  header {
    padding: 50px 0 38px;
    gap: 15px;
  }
  header .logo {
    width: 19.2vw;
  }
}
/* ----------------------------------------------
 * * main
 * *----------------------------------------------*/
.btnToEntry a {
  position: fixed;
  width: 65px;
  z-index: 200;
  right: 0;
  top: calc(50% - 154px);
  background: #f7d100;
  border: 2px solid #fff;
}
.btnToEntry a:hover {
  opacity: 0.8;
}

section.ticketSec {
  padding-bottom: 30px;
}
section.ticketSec figure {
  width: 610px;
  margin: 0 auto;
}
section.ticketSec .catch {
  width: 559px;
  margin: 60px auto 0;
}
section.ticketSec ul.btnWrap {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 65px;
}
section.ticketSec ul.btnWrap li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 78px;
  background: #f7d100;
  font-size: 21px;
  font-weight: bold;
  border: 2px solid #fff;
}
section.ticketSec ul.btnWrap li a:hover {
  opacity: 0.8;
}
section.ticketSec .figScroll {
  margin-top: 90px;
}
section.ticketSec .figScroll > div {
  display: flex;
  overflow: hidden;
}
section.ticketSec .figScroll > div ul {
  display: flex;
  -webkit-animation: loop-list 30s linear infinite;
          animation: loop-list 30s linear infinite;
}
section.ticketSec .figScroll > div ul li {
  width: 260px;
  padding: 8px;
  display: block;
}
section.ticketSec .figScroll > div ul li img {
  width: 100%;
}
section.ticketSec .figScroll > div.rev ul {
  -webkit-animation: loop-list-rev 30s linear infinite;
          animation: loop-list-rev 30s linear infinite;
}

@-webkit-keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop-list-rev {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes loop-list-rev {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .btnToEntry a {
    width: 38px;
    width: min(10vw, 38px);
    right: 0;
    top: calc(50% - 90px);
    border: 1px solid #fff;
  }
  section.ticketSec {
    padding-bottom: 12vw;
  }
  section.ticketSec figure {
    width: 74.1333333333vw;
  }
  section.ticketSec .catch {
    width: 76.8vw;
    margin: 16vw auto 0;
  }
  section.ticketSec ul.btnWrap {
    margin-top: 17.3333333333vw;
    flex-direction: column;
  }
  section.ticketSec ul.btnWrap li a {
    width: 64vw;
    height: 13.3333333333vw;
    margin: 0 auto;
    font-size: 3.7333333333vw;
    border: 1px solid #fff;
  }
  section.ticketSec .figScroll {
    margin-top: 10.6666666667vw;
  }
  section.ticketSec .figScroll > div ul li {
    width: 70.4vw;
    padding: 2.1333333333vw;
  }
}
/* ----------------------------------------------*/
section.planSec {
  background: #fff;
  color: var(--mainColor);
  padding: 20px 0 110px;
  position: relative;
  z-index: 30;
}
section.planSec h2 {
  width: 360px;
  margin: 80px auto 0;
}
section.planSec div.planBox ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: min(4.4943820225vw, 40px);
}
section.planSec div.planBox ul li {
  width: min(47.191011236vw, 420px);
  letter-spacing: 0.1em;
}
section.planSec div.planBox ul li > div {
  border: 4px solid var(--mainColor);
  border-radius: min(1.6853932584vw, 15px);
}
section.planSec div.planBox ul li > div > p {
  text-align: center;
  padding: min(1.6853932584vw, 15px) 0;
  line-height: 1;
  font-size: min(3.7078651685vw, 33px);
  font-weight: 700;
}
section.planSec div.planBox ul li > div > p em {
  font-size: min(4.2696629213vw, 38px);
  font-style: normal;
  display: inline-block;
  transform: translateY(0.05em);
  margin-left: 1em;
}
section.planSec div.planBox ul li > div > p span {
  font-size: min(3.0898876404vw, 27.5px);
}
section.planSec div.planBox ul li > div > p span small {
  font-size: min(2.808988764vw, 25px);
}
section.planSec div.planBox ul li h3 {
  background: var(--mainColor);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(6.404494382vw, 57px);
  font-size: min(2.9213483146vw, 26px);
  font-weight: 700;
}
section.planSec div.planBox ul li:last-child > div {
  border-color: var(--navy);
  color: var(--navy);
}
section.planSec div.planBox ul li:last-child h3 {
  background: var(--navy);
}
section.planSec div.planBox ul li > p {
  color: #333;
  font-size: min(2.0224719101vw, 18px);
  font-weight: 700;
  margin-top: min(1.6853932584vw, 15px);
}
section.planSec div.planBox ul li > p.ind {
  margin-top: 0;
  text-indent: -1em;
  margin-left: 1em;
}
section.planSec div.returnBoxWrap {
  width: 100%;
  max-width: 735px;
  margin: 45px auto 0;
  border: 4px solid var(--mainColor);
  border-radius: 15px;
  box-sizing: border-box;
}
section.planSec div.returnBox h3 {
  background: var(--mainColor);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-size: 26px;
  font-weight: 700;
}
section.planSec div.returnBox ul {
  display: flex;
  justify-content: center;
  font-size: 23px;
  font-weight: 700;
  padding: 27px 0 30px;
}
section.planSec div.returnBox ul h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 188px;
  height: 50px;
  color: #fff;
  background: var(--mainColor);
  border-radius: 100px;
  margin: 0 auto 20px;
}
section.planSec div.returnBox ul h4 + p img {
  width: 57px;
}
section.planSec div.returnBox ul li {
  width: 300px;
  gap: 20px;
  text-align: center;
}
section.planSec div.returnBox ul li:last-child {
  color: var(--navy);
}
section.planSec div.returnBox ul li:last-child h4 {
  background: var(--navy);
}
section.planSec div.rtnNoticeList {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
section.planSec div.rtnNoticeList ul li {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-indent: -1em;
  margin-left: 1em;
}
section.planSec div.rtnNoticeList ul li::before {
  content: "※";
}
section.planSec ul.entryList {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}
section.planSec ul.entryList li {
  width: 204px;
}
section.planSec div.noticeList {
  display: flex;
  justify-content: center;
  font-size: 14px;
}
section.planSec div.noticeList ol {
  padding: 0 20px;
  margin: 45px auto 0;
  color: #000;
  font-size: 14px;
  counter-reset: num;
}
section.planSec div.noticeList ol > li h3::before {
  font-size: 14px;
  counter-increment: num;
  content: counter(num) ".";
  margin-right: 0.5em;
}
section.planSec div.noticeList ol > li ~ li {
  margin-top: 1.5em;
}
section.planSec div.noticeList ol p,
section.planSec div.noticeList ol ul {
  margin-left: 1.3em;
  font-weight: normal;
}
section.planSec div.noticeList ol ul li {
  color: #333;
  text-indent: -1em;
  margin-left: 1em;
}
section.planSec div.noticeList ol ul li::bofore {
  content: "※";
}
section.planSec .btnEntry a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 70px auto 0;
  width: 350px;
  height: 78px;
  background: #f7d100;
  font-size: 21px;
  font-weight: bold;
  border: 2px solid #fff;
  color: #000;
}
section.planSec .btnEntry a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  section.planSec {
    padding: 10.6666666667vw 0 13.3333333333vw;
  }
  section.planSec h2 {
    width: 75.7333333333vw;
    margin: 16vw auto 0;
  }
  section.planSec h2:first-of-type {
    margin-top: 0;
  }
  section.planSec div.planBox ul {
    flex-direction: column;
    gap: 4.8vw;
    margin-top: 5.8666666667vw;
  }
  section.planSec div.planBox ul li {
    width: 75.7333333333vw;
    margin: 0 auto;
  }
  section.planSec div.planBox ul li > div {
    border: 2px solid var(--mainColor);
    border-radius: 2.4vw;
  }
  section.planSec div.planBox ul li > div > p {
    padding: 4vw 0;
    font-size: 5.8666666667vw;
  }
  section.planSec div.planBox ul li > div > p em {
    font-size: 6.6666666667vw;
  }
  section.planSec div.planBox ul li > div > p span {
    font-size: 4.9333333333vw;
  }
  section.planSec div.planBox ul li > div > p span small {
    font-size: 4.5333333333vw;
  }
  section.planSec div.planBox ul li h3 {
    height: 10.2666666667vw;
    font-size: 4.8vw;
  }
  section.planSec div.planBox ul li > p {
    font-size: 3.4666666667vw;
    margin-top: 3.2vw;
  }
  section.planSec div.returnBoxWrap {
    width: 85.3333333333vw;
    margin: 6.4vw auto 0;
    border: 2px solid var(--mainColor);
    border-radius: 2.4vw;
  }
  section.planSec div.returnBox h3 {
    height: 9.0666666667vw;
    font-size: 4vw;
  }
  section.planSec div.returnBox ul {
    display: flex;
    justify-content: center;
    font-size: 3.4666666667vw;
    font-weight: 700;
    padding: 3.7333333333vw 0 5.8666666667vw;
  }
  section.planSec div.returnBox ul h4 {
    width: 28vw;
    height: 7.4666666667vw;
    margin: 0 auto 2.4vw;
  }
  section.planSec div.returnBox ul h4 + p img {
    width: 8.5333333333vw;
  }
  section.planSec div.returnBox ul li {
    width: 36vw;
    gap: 2.6666666667vw;
  }
  section.planSec div.rtnNoticeList {
    width: 85.3333333333vw;
    margin: 6.4vw auto 0;
  }
  section.planSec div.rtnNoticeList ul li {
    font-size: 3.4666666667vw;
  }
  section.planSec ul.entryList {
    gap: 2.6666666667vw;
    margin-top: 6.6666666667vw;
  }
  section.planSec ul.entryList li {
    width: 31.4666666667vw;
  }
  section.planSec div.noticeList {
    font-size: 3.4666666667vw;
  }
  section.planSec div.noticeList ol {
    width: 85.3333333333vw;
    padding: 0;
    margin: 8vw auto 0;
    font-size: 3.4666666667vw;
  }
  section.planSec div.noticeList ol > li h3 {
    display: flex;
  }
  section.planSec div.noticeList ol > li h3::before {
    font-size: 3.7333333333vw;
  }
  section.planSec div.noticeList ol > li ~ li {
    margin-top: 1.5em;
  }
  section.planSec .btnEntry a {
    width: 64vw;
    height: 13.3333333333vw;
    margin: 35px auto 0;
    font-size: 3.7333333333vw;
    border: 1px solid #fff;
  }
}
/* ----------------------------------------------*/
section.childrenSec .childrenScroll > div {
  display: flex;
  overflow: hidden;
}
section.childrenSec .childrenScroll > div ul {
  display: flex;
  -webkit-animation: loop-list 80s linear infinite;
          animation: loop-list 80s linear infinite;
}
section.childrenSec .childrenScroll > div ul li {
  width: 457px;
  display: block;
}
section.childrenSec .childrenScroll > div ul li img {
  width: 100%;
}
section.childrenSec .childrenScroll > div.rev ul {
  -webkit-animation: loop-list-rev 80s linear infinite;
          animation: loop-list-rev 80s linear infinite;
}
section.childrenSec div.movieBox {
  padding: 88px 25px 105px;
}
section.childrenSec div.movieBox h2 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
section.childrenSec div.movieBox #YT {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
}
section.childrenSec div.movieBox #YT iframe {
  width: 100%;
  aspect-ratio: 16/8.5;
  border-radius: 15px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  section.childrenSec .childrenScroll > div ul {
    -webkit-animation: loop-list 60s linear infinite;
            animation: loop-list 60s linear infinite;
  }
  section.childrenSec .childrenScroll > div ul li {
    width: 80vw;
  }
  section.childrenSec .childrenScroll > div.rev ul {
    -webkit-animation: loop-list-rev 60s linear infinite;
            animation: loop-list-rev 60s linear infinite;
  }
  section.childrenSec div.movieBox {
    padding: 14.6666666667vw 6.6666666667vw 16vw;
  }
  section.childrenSec div.movieBox h2 {
    font-size: 5.3333333333vw;
  }
  section.childrenSec div.movieBox #YT {
    margin: 7.4666666667vw auto 0;
  }
  section.childrenSec div.movieBox #YT iframe {
    border-radius: 2.4vw;
  }
}
/* ----------------------------------------------*/
section.sponsorSec {
  background: #f3f4f4;
  padding: 130px 0 110px;
}
section.sponsorSec h2 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}
section.sponsorSec h2 + p {
  text-align: center;
  font-size: 15px;
}
section.sponsorSec div.sponcorList {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
section.sponsorSec div.sponcorList ul {
  max-width: min(93.6170212766vw, 880px);
}
section.sponsorSec div.sponcorList li {
  display: inline-block;
}
section.sponsorSec div.sponcorList li::after {
  content: " / ";
}

@media screen and (max-width: 767px) {
  section.sponsorSec {
    padding: 65px 0;
  }
  section.sponsorSec h2 {
    font-size: 5.6vw;
  }
  section.sponsorSec h2 + p {
    font-size: 3.2vw;
  }
  section.sponsorSec div.sponcorList {
    margin-top: 16vw;
  }
  section.sponsorSec div.sponcorList ul {
    width: 100%;
    padding: 0 6.6666666667vw;
    box-sizing: border-box;
  }
}
/*--------------------------------------------*/
/* social
----------------------------------------------*/
.sns {
  text-align: center;
}

.sb-link {
  width: 50px !important;
  height: 50px !important;
}

.social {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: min(2.4719101124vw, 22px);
  color: #fff;
  margin: 30px auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social a {
  color: #fff !important;
  display: inline-block;
  transition: 0.3s opacity;
}
.social a:hover {
  opacity: 0.6;
}
.social .btnwrap {
  margin: 10px 0;
}
.social .btnwrap.icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social .btnwrap.icons a {
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  transition: 0.3s opacity;
  background-image: url(../img/footer_sns.png);
  background-repeat: no-repeat;
  background-size: 120px;
}
.social .btnwrap.icons a:hover {
  opacity: 0.6;
}
.social .twitter {
  padding: 0;
  min-height: 36px;
  margin: 0 20px 0 0;
  display: flex;
  align-items: center;
}
.social .twitter .snsicon {
  width: 40px;
  height: 40px;
  background: url(../img/footer_sns.png) no-repeat 0px 0px;
  background-size: 120px auto;
}
.social .twitter a {
  padding: 5px 10px;
}
.social .insta a {
  background-position: -40px 0px;
}
.social .fb a {
  background-position: -80px 0px;
}
.social .yt a {
  background-position: 0px -40px;
}
.social .line a {
  background-position: -40px -40px;
}
.social .engate a {
  background-position: -80px -40px;
}
.social .tiktok a {
  background-position: 0px -80px;
}

@media screen and (max-width: 767px) {
  .social {
    font-size: 5.3333333333vw;
    margin: 8vw auto;
    flex-direction: column;
  }
  .social .twitter {
    flex-direction: column;
    min-height: 8vw;
    margin: 0 0 2.6666666667vw 0;
  }
  .social .twitter a {
    padding: 3px 5px 0 5px;
    margin: 0 0 10px 0;
  }
  .social .twitter .snsicon {
    margin: 0 auto;
  }
}
/*--------------------------------------------*/
/* FOOTER
----------------------------------------------*/
footer {
  padding: min(0.9090909091vw, 10px) 0 0 0;
  box-sizing: border-box;
  background: linear-gradient(180deg, #1c4b57 0%, #002865 100%);
  font-size: min(2vw, 22px);
}
footer .nav {
  margin: 0;
  background: #D8D8D8;
}
footer .nav ul {
  background: #D8D8D8;
  display: flex;
  width: min(94.5454545455vw, 1040px);
  margin: 0 auto;
  border-left: 1px solid #ccc;
}
footer .nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14.2857142857%;
  border-right: 1px solid #ccc;
}
footer .nav ul li a {
  font-size: min(1.2727272727vw, 14px);
  font-weight: 400;
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 58px;
  transition: 0.3s opacity;
}
footer .nav ul li a:hover {
  opacity: 0.6;
}
footer h3 {
  font-size: min(3.1818181818vw, 35px);
}
footer .partners {
  padding: 80px 0;
  background: #4d4d4d;
  color: #fff;
}
footer .partners h3 {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 100%;
  margin: 0 0 20px 0;
  text-align: center;
}
footer .partners h3 span {
  font-size: min(1.1818181818vw, 13px);
  display: block;
}
footer .partners ul {
  margin: 40px auto 10px;
  width: 95%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
}
footer .partners ul li {
  margin: 0 1px;
}
footer .partners ul li a {
  display: block;
  transition: 0.3s opacity;
}
footer .partners ul li a:hover {
  opacity: 0.6;
}
footer .partners .all_wrap {
  display: flex;
  width: 640px;
  margin: 0px auto 20px;
}
footer .partners .all {
  border: 1px solid #fff;
  margin: 20px 5px;
  padding: 5px 8px;
  color: #fff;
  text-decoration: none !important;
  text-align: center;
  width: calc(50% - 16px - 4px);
  font-size: min(1.3636363636vw, 15px);
  font-weight: 400;
  transition: 0.3s opacity;
}
footer .partners .all:first-child {
  margin: 20px 5px;
}
footer .partners .all:hover {
  opacity: 0.6;
}
footer .supporter {
  padding: 50px 0 30px;
  background: #fff;
  color: #929292;
}
footer .supporter h3 {
  font-size: min(2.7272727273vw, 30px);
  font-family: "Barlow Condensed", sans-serif;
  line-height: 100%;
  margin: 0 0 20px 0;
  color: #929292;
  text-shadow: none;
  text-align: center;
}
footer .supporter h3 span {
  font-size: min(1.0227272727vw, 11.25px);
  display: block;
}
footer .supporter ul {
  width: 100%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: min(3.6363636364vw, 40px);
}
footer .supporter ul li {
  display: flex;
  flex-direction: column;
  background: none;
  overflow: hidden;
  text-align: center;
  margin: 0 1px;
  width: min(16.1818181818vw, 178px);
}
footer .supporter ul li .bnr {
  width: 90px;
  margin: 0 auto;
  text-align: center;
}
footer .supporter ul li .bnr a {
  transition: 0.3s opacity;
}
footer .supporter ul li .bnr a:hover {
  opacity: 0.6;
}
footer .supporter ul li .txt {
  margin: 5px 0 0;
  color: #000;
  font-size: min(0.9090909091vw, 10px);
  line-height: 120%;
  text-align: center;
}
footer .supporter ul li .txt a {
  text-decoration: none;
}
footer .branding {
  padding: 0px 0 40px;
  background: #fff;
  color: #929292;
}
footer .branding h3 {
  font-size: min(2.7272727273vw, 30px);
  font-family: "Barlow Condensed", sans-serif;
  line-height: 100%;
  margin: 0 0 20px 0;
  color: #929292;
  text-shadow: none;
  text-align: center;
}
footer .branding h3 span {
  font-size: min(1.0227272727vw, 11.25px);
  display: block;
}
footer .branding ul {
  width: 400px;
  margin: 0 auto;
  display: flex;
  text-align: center;
}
footer .branding ul li {
  width: 50%;
  background: none;
  padding: 10px;
  overflow: hidden;
  text-align: center;
  margin: 0 10px;
}
footer .branding ul li.bnr {
  width: 150px;
  margin: 0 auto;
  text-align: center;
}
footer .branding ul li.bnr a {
  display: block;
  transition: 0.3s opacity;
}
footer .branding ul li.bnr a:hover {
  opacity: 0.6;
}
footer .nav_b {
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 40px 0;
}
footer .nav_b ul {
  width: min(94.5454545455vw, 1040px);
  display: flex;
  margin: 0 auto;
}
footer .nav_b ul li {
  display: flex;
  padding: 10px 12px;
  width: 25%;
  box-sizing: border-box;
  text-align: center;
}
footer .nav_b ul li:last-child {
  border-right: none;
}
footer .nav_b ul li a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d3d3d3;
  font-size: min(1.2727272727vw, 14px);
  transition: 0.3s opacity;
}
footer .nav_b ul li a:hover {
  opacity: 0.6;
}
footer .copyright {
  padding: 20px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: min(1.0909090909vw, 12px);
  color: #fff;
}

@media screen and (max-width: 1040px) {
  footer {
    margin-top: 0;
  }
  footer .partners ul {
    flex-wrap: wrap;
    width: 85%;
  }
  footer .partners ul li {
    margin: 2px;
    width: calc(20% - 4px);
  }
  footer .supporter ul {
    flex-wrap: wrap;
  }
  footer .supporter ul li {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  footer {
    overflow: hidden;
  }
  footer .nav {
    margin: 0;
  }
  footer .nav ul {
    background: #D8D8D8;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  footer .nav ul li {
    width: calc(33.333% - 1px);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  footer .nav ul li a {
    height: 14.1333333333vw;
    font-size: 3.2vw;
  }
  footer .partners {
    padding: 50px 0 40px;
    color: #fff;
  }
  footer .partners h3 {
    font-size: 6.1333333333vw;
    line-height: 100%;
    margin: 0 0 10px 0;
  }
  footer .partners h3 span {
    font-size: 3.2vw;
    font-weight: normal;
  }
  footer .partners ul {
    margin: auto;
    width: 96%;
    display: flex;
    flex-wrap: wrap;
  }
  footer .partners ul li {
    margin: 0 4px 4px 0;
    width: calc(50% - 2px);
    background: #fff;
    vertical-align: middle;
    text-align: center;
  }
  footer .partners ul li:nth-child(2n) {
    width: calc(50% - 2px);
    margin: 0 0 4px 0;
  }
  footer .partners ul li:nth-child(6) {
    background: #000;
  }
  footer .partners ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .partners .all_wrap {
    display: block;
    width: 70%;
    margin: 0px auto;
  }
  footer .partners .all {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: 2.1333333333vw auto;
    padding: 2.6666666667vw;
    color: #fff;
    text-decoration: none !important;
    text-align: center;
    width: calc(100% - 22px);
    font-size: 3.2vw;
  }
  footer .partners .all:first-child {
    margin: 5.3333333333vw auto 2.1333333333vw;
  }
  footer .supporter {
    padding: 8vw 0;
  }
  footer .supporter h3 {
    font-size: 6.1333333333vw;
    margin: 0 0 2.6666666667vw 0;
  }
  footer .supporter h3 span {
    font-size: 2.9333333333vw;
  }
  footer .supporter ul {
    width: 100%;
    margin: 0 auto 10px;
    display: block;
    text-align: center;
  }
  footer .supporter ul li {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 2.6666666667vw;
    width: 90%;
    background: none;
    padding: 2.1333333333vw;
    text-align: left;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
  }
  footer .supporter ul li .bnr {
    width: 24vw;
    flex-shrink: 0;
    margin: 0;
    text-align: left;
  }
  footer .supporter ul li .txt {
    margin: 0;
    font-size: 2.6666666667vw;
    line-height: 120%;
    text-align: left;
    padding: 0 0 0 10px;
    width: calc(100% - 26.6666666667vw);
  }
  footer .branding {
    padding: 0px 0 8vw;
  }
  footer .branding h3 {
    font-size: 6.1333333333vw;
    margin: 0 0 5.3333333333vw 0;
  }
  footer .branding h3 span {
    font-size: 2.9333333333vw;
  }
  footer .branding ul {
    width: 80%;
    margin: 0 auto;
    display: flex;
    text-align: center;
  }
  footer .branding ul li {
    display: flex;
    background: none;
    padding: 0;
    overflow: hidden;
    text-align: center;
    margin: 0 10px;
  }
  footer .branding ul li.bnr {
    width: 50%;
    margin: 0 auto;
    text-align: center;
  }
  footer .branding ul li.bnr a img {
    width: 80%;
  }
  footer .nav_b {
    margin: 0 0 5.3333333333vw 0;
  }
  footer .nav_b ul {
    width: 100%;
    border-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  footer .nav_b ul li {
    display: flex;
    box-sizing: border-box;
    width: calc(50% - 1px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  }
  footer .nav_b ul li:nth-child(2n) {
    border-right: 0;
  }
  footer .nav_b ul li a {
    width: 100%;
    padding: 2.1333333333vw 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d3d3d3;
    text-decoration: none;
    text-align: center;
    font-size: 3.2vw;
  }
  footer .copyright {
    padding: 2.6666666667vw;
    font-size: 3.2vw;
  }
  footer #searchform {
    width: calc(100% - 5.3333333333vw);
    margin: 3.2vw auto;
    display: flex;
  }
  footer #searchform #s {
    padding: 4vw;
    border: none;
    font-size: 3.7333333333vw;
    width: calc(100% - 8vw - 16vw) !important;
    border-radius: 0;
  }
  footer #searchform button.submit_button {
    padding: 2.6666666667vw 1.3333333333vw;
    font-size: 3.7333333333vw;
    background-color: #6fba2c;
    color: #fff;
    font-weight: bol700d;
    border: none;
    width: 16vw;
    text-align: center;
  }
}
p.bottomBnr {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
}
p.bottomBnr a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #051C75;
  width: 100%;
  height: min(18.1818181818vw, 200px);
  transition: 0.3s opacity;
}
p.bottomBnr a img {
  width: min(77.5454545455vw, 853px);
}
p.bottomBnr a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  p.bottomBnr a {
    height: 22.6666666667vw;
  }
  p.bottomBnr a img {
    width: 84vw;
  }
}
/*# sourceMappingURL=base.css.map */