@charset "UTF-8";
/*=============================================================
 01_base
=============================================================*/
/* --------------------------------------------------
-------------------------------------------------- 関数 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style-type: none;
}

/*-----------------------------------------------
 root
-----------------------------------------------*/
html {
  overflow-y: scroll;
}

body {
  overflow: hidden;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

/*-----------------------------------------------
 font
-----------------------------------------------*/
html {
  overflow-x: hidden;
  font-size: medium;
}

body {
  font-size: 62.5%; /* 16px -> 10px */
}

div {
  line-height: 0;
  box-sizing: border-box;
}

dt, dd, li,
caption, th, td,
input, button, textarea, select,
h1, h2, h3, h4, h5, h6, address {
  line-height: 0;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

h1 *, h2 *, h3 *, h4 *, h5 *, h6 *,
p input, p button, p select,
li h1, li h2, li h3, li h4, li h5, li h6, li p, li dt, li dd, li li, li th, li td, li input, li button, li textarea, li select,
dd h1, dd h2, dd h3, dd h4, dd h5, dd h6, dd p, dd dt, dd dd, dd li, dd th, dd td, dd input, dd button, dd textarea, dd select,
tr h1, tr h2, tr h3, tr h4, tr h5, tr h6, tr p, tr dt, tr dd, tr li, tr input, tr button, tr textarea, tr select {
  font-size: 100%;
}

input, button, select, option, textarea {
  font-size: 14px;
}

figure {
  margin: 0;
}

a,
a:link,
a:visited {
  color: #1d99c1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section {
  position: relative;
  box-sizing: border-box;
}

br.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  br.sp {
    display: inline;
  }
}
@media only screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}

/*-----------------------------------------------
 cf 
-----------------------------------------------*/
.clearfix {
  min-height: 1px;
}
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*-----------------------------------------------
 hover
-----------------------------------------------*/
.hover :hover {
  opacity: 0.8;
  animation: btn 0.5s;
  -webkit-animation: btn 0.5s;
  -moz-animation: btn 0.5s;
}
@media only screen and (max-width: 768px) {
  .hover :hover {
    animation: unset;
    -webkit-animation: unset;
    -moz-animation: unset;
  }
}

@keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
body {
  color: #151829;
  font-family: "Noto Sans JP", sans-serif;
}
body p {
  line-height: 1.8;
}

.re-image {
  width: 100%;
}

.wrap-flex {
  display: flex;
}

.wrap-grid {
  display: grid;
}

.bnr-ticket {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 200px;
  z-index: 10;
}
@media only screen and (max-width: 1620px) {
  .bnr-ticket {
    width: 16vw;
    right: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  .bnr-ticket {
    width: 25vw;
    right: 3.125vw;
    bottom: 3.125vw;
  }
}
.bnr-ticket a {
  display: block;
  transition: all 0.25s ease;
}
.bnr-ticket a .round {
  position: absolute;
  top: 0;
  left: 0;
}
.bnr-ticket a .round img {
  -webkit-animation: rotate 22s infinite linear;
          animation: rotate 22s infinite linear;
}
.bnr-ticket a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/parts/banner_icon.png") no-repeat top center;
  background-size: contain;
  transition: all 0.25s ease;
}
.bnr-ticket a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/parts/banner_txt2.png") no-repeat top center;
  background-size: contain;
  transition: all 0.25s ease;
}
.bnr-ticket a:hover {
  transform: scale(1.1);
}
.bnr-ticket a:hover::before {
  transform: translateY(20px);
  opacity: 0;
}
@media only screen and (max-width: 1620px) {
  .bnr-ticket a:hover::before {
    transform: translateY(1.6vw);
  }
}
@media only screen and (max-width: 768px) {
  .bnr-ticket a:hover::before {
    transform: translateY(3.125vw);
  }
}
.bnr-ticket a:hover::after {
  transform: scale(1.1) translateY(-12px);
}
@media only screen and (max-width: 1620px) {
  .bnr-ticket a:hover::after {
    transform: scale(1.1) translateY(-0.96vw);
  }
}
@media only screen and (max-width: 768px) {
  .bnr-ticket a:hover::after {
    transform: scale(1.1) translateY(-1.875vw);
  }
}

#logo-top {
  position: fixed;
  top: 30px;
  left: 30px;
  width: 100px;
  z-index: 10;
}
@media only screen and (max-width: 1620px) {
  #logo-top {
    width: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  #logo-top {
    width: 12.5vw;
  }
}
#logo-top a {
  transition: all 0.25s ease;
}
#logo-top .on {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#logo-top img {
  transition: all 0.25s ease;
}
#logo-top a {
  display: block;
}
#logo-top a:hover .off {
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  #logo-top a:hover .off {
    opacity: 1;
  }
}
#logo-top a:hover .on {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  #logo-top a:hover .on {
    opacity: 0;
  }
}

#feather-deco1 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/parts/feather01.png") repeat-y top center;
  background-size: 100%;
  z-index: 2;
  mix-blend-mode: overlay;
}
@media only screen and (max-width: 768px) {
  #feather-deco1 {
    background-image: url("../img/parts/feather01-sp.png");
  }
}

#feather-deco2 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/parts/feather02.png") repeat-y top center;
  background-size: 100%;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #feather-deco2 {
    background-image: url("../img/parts/feather02-sp.png");
  }
}

.btn a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 380px;
  padding: 10px;
  min-height: 80px;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 0 50px 50px 0;
  border: 2px solid #B4A468;
  background-color: #B4A468;
  text-decoration: none;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 1620px) {
  .btn a {
    width: 30.4vw;
    padding: 0.8vw;
    min-height: 6.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn a {
    width: 59.375vw;
    padding: 1.5625vw;
    min-height: 12.5vw;
    font-size: 2.1875vw;
    border-width: 0.3125vw;
    border-radius: 0 7.8125vw 7.8125vw 0;
  }
}
.btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 21px;
  height: 30px;
  background: url("../img/parts/arrow_wh_line.svg") no-repeat top center;
  background-size: contain;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 1620px) {
  .btn a::after {
    right: 2vw;
    width: 1.68vw;
    height: 2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn a::after {
    right: 3.90625vw;
    width: 3.28125vw;
    height: 4.6875vw;
  }
}
.btn a span {
  position: relative;
  font-size: 32px;
  letter-spacing: 0.05em;
  font-family: "Bebas Neue", serif;
}
@media only screen and (max-width: 1620px) {
  .btn a span {
    font-size: 2.56vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn a span {
    font-size: 5vw;
  }
}
.btn a:hover {
  background-color: #0C20DA;
}
.btn a:hover::after {
  right: 0;
  opacity: 0;
}
.btn__right a {
  padding-left: 30px;
  border-radius: 40px 0 0 40px;
}
@media only screen and (max-width: 1620px) {
  .btn__right a {
    padding-left: 2.4vw;
    border-radius: 3.2vw 0 0 3.2vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn__right a {
    padding-left: 4.6875vw;
    border-radius: 6.25vw 0 0 6.25vw;
  }
}
.btn__right a::after {
  right: inherit;
  left: 25px;
  transform: scale(-1, 1) translateY(-50%);
  background: url("../img/parts/arrow_wh_line.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1620px) {
  .btn__right a::after {
    left: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .btn__right a::after {
    left: 3.90625vw;
  }
}
.btn__right a:hover::after {
  left: 0;
}
.btn__bl a {
  background-color: #0C20DA;
  border-color: #0C20DA;
}
.btn__bl a:hover {
  background-color: #151829;
  border-color: #151829;
}
.btn.off {
  pointer-events: none;
}
.btn.off a {
  color: #151829;
  background-color: rgba(255, 255, 255, 0.5);
  border-color: transparent;
}
.btn.off a::after {
  background-image: url("../img/parts/arrow_bk_line.svg");
}

#btn-nav {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 80px;
  z-index: 50;
  cursor: pointer;
}
@media only screen and (max-width: 1620px) {
  #btn-nav {
    width: 6.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav {
    top: 3.125vw;
    right: 3.125vw;
    width: 12.5vw;
  }
}
#btn-nav .bg {
  transition: all 0.2s ease;
}
#btn-nav .line span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  transform-origin: 0 50%;
  background-color: #fff;
  transition: all 0.2s 0.1s ease;
}
@media only screen and (max-width: 1620px) {
  #btn-nav .line span {
    width: 3.2vw;
    height: 0.16vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav .line span {
    width: 6.25vw;
    height: 0.3125vw;
  }
}
#btn-nav .line span:nth-child(1) {
  top: 24px;
}
@media only screen and (max-width: 1620px) {
  #btn-nav .line span:nth-child(1) {
    top: 1.92vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav .line span:nth-child(1) {
    top: 3.75vw;
  }
}
#btn-nav .line span:nth-child(2) {
  top: 32px;
}
@media only screen and (max-width: 1620px) {
  #btn-nav .line span:nth-child(2) {
    top: 2.56vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav .line span:nth-child(2) {
    top: 5vw;
  }
}
#btn-nav p {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-family: "Bebas Neue", serif;
  color: #fff;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1620px) {
  #btn-nav p {
    font-size: 1.6vw;
    bottom: 0.96vw;
  }
}
@media only screen and (max-width: 768px) {
  #btn-nav p {
    bottom: 1.875vw;
    font-size: 3.125vw;
  }
}
#btn-nav.active .bg {
  transform: rotate(45deg);
}
#btn-nav.active .line span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translateX(-50%);
}
#btn-nav.active .line span:nth-child(2) {
  top: 50%;
  transform: rotate(-45deg) translateX(-50%);
}
#btn-nav.active p {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
}
@media only screen and (max-width: 768px) {
  #btn-nav.active p {
    transform: translateX(-50%) translateY(0.8vw);
  }
}

#header {
  position: fixed;
  top: 0;
  right: -640px;
  display: flex;
  justify-content: right;
  width: 100%;
  height: 100vh;
  z-index: 20;
  transition: all 0.25s ease;
  visibility: hidden;
}
@media only screen and (max-width: 1620px) {
  #header {
    right: -51.2vw;
  }
}
@media only screen and (max-width: 768px) {
  #header {
    width: 100vw;
    right: -100vw;
  }
}
#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50vw;
  width: 150vw;
  height: 100%;
  background-color: rgba(21, 24, 41, 0.8);
  opacity: 0;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 768px) {
  #header::before {
    display: none;
  }
}
#header.active {
  right: 0;
  visibility: inherit;
}
#header.active::before {
  opacity: 1;
}
#header nav {
  position: relative;
  display: flex;
  align-items: center;
  width: 640px;
  height: 100%;
  padding-left: 74px;
  box-sizing: border-box;
  background: url("../img/global/bg_nav.jpg") no-repeat bottom center #0C20DA;
  background-size: 100%;
}
@media only screen and (max-width: 1620px) {
  #header nav {
    width: 51.2vw;
    padding-left: 5.92vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav {
    width: 100%;
    padding-left: 11.5625vw;
  }
}
#header nav ul li:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1620px) {
  #header nav ul li:not(:last-child) {
    margin-bottom: 4.8vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li:not(:last-child) {
    margin-bottom: 9.375vw;
  }
}
#header nav ul li a {
  position: relative;
  display: inline-block;
  padding: 0 34px 0 44px;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1620px) {
  #header nav ul li a {
    padding: 0 2.72vw 0 3.52vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li a {
    padding: 0 0 0 5.9375vw;
  }
}
#header nav ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 5px;
  background: url("../img/parts/bullet_wh.svg") no-repeat top center;
  background-size: contain;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1620px) {
  #header nav ul li a::before {
    width: 1.92vw;
    height: 0.4vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li a::before {
    width: 3.75vw;
    height: 0.78125vw;
  }
}
#header nav ul li a:hover {
  margin-left: -34px;
}
@media only screen and (max-width: 1620px) {
  #header nav ul li a:hover {
    margin-left: -2.72vw;
  }
}
@media only screen and (max-width: 768px) {
  #header nav ul li a:hover {
    margin-left: 0;
  }
}
#header nav ul li a:hover::before {
  left: 100%;
}
@media only screen and (max-width: 768px) {
  #header nav ul li a:hover::before {
    left: 0;
  }
}

#footer {
  position: relative;
  padding: 92px 0 40px;
  background: url("../img/global/logo_footer.png") no-repeat top center #fff;
  background-size: 602px;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #footer {
    padding: 14.0625vw 0 10.625vw;
    background-size: 100%;
  }
}
#footer .share {
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  #footer .share {
    margin-bottom: 3.90625vw;
  }
}
#footer .share p {
  position: relative;
  font-size: 44px;
  line-height: 1;
  font-family: "Bebas Neue", serif;
  text-align: center;
  margin-bottom: 36px;
}
@media only screen and (max-width: 768px) {
  #footer .share p {
    font-size: 6.875vw;
    margin-bottom: 5.3125vw;
  }
}
#footer .share p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 120px);
  width: 1px;
  height: 40px;
  transform: rotate(-45deg);
  background-color: #151829;
}
@media only screen and (max-width: 768px) {
  #footer .share p::before {
    left: calc(50% - 18.75vw);
    height: 6.25vw;
  }
}
#footer .share p::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: calc(50% - 120px);
  width: 1px;
  height: 40px;
  transform: rotate(45deg);
  background-color: #151829;
}
@media only screen and (max-width: 768px) {
  #footer .share p::after {
    right: calc(50% - 18.75vw);
    height: 6.25vw;
  }
}
#footer .share .btn a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #footer .share .btn a {
    font-size: 3.4375vw;
    min-height: 12.5vw;
  }
}
#footer .sns {
  margin-bottom: 42px;
}
@media only screen and (max-width: 768px) {
  #footer .sns {
    margin-bottom: 6.25vw;
  }
}
#footer .sns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
@media only screen and (max-width: 768px) {
  #footer .sns ul {
    gap: 0 2.8125vw;
  }
}
#footer .sns ul li {
  width: 48px;
}
@media only screen and (max-width: 768px) {
  #footer .sns ul li {
    width: 7.5vw;
  }
}
#footer .sns ul li a {
  display: block;
}
#footer .bnr-list {
  margin-bottom: 42px;
}
@media only screen and (max-width: 768px) {
  #footer .bnr-list {
    width: 65.625vw;
    margin: 0 auto 6.25vw;
  }
}
#footer .bnr-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
@media only screen and (max-width: 768px) {
  #footer .bnr-list ul {
    gap: 2.1875vw 2.8125vw;
  }
}
#footer .bnr-list ul li {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  #footer .bnr-list ul li {
    width: 31.25vw;
  }
}
#footer .bnr-list ul li a {
  display: block;
}
#footer .supporter-list {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  #footer .supporter-list {
    width: 78.125vw;
    margin: 0 auto 11.875vw;
  }
}
#footer .supporter-list p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #footer .supporter-list p {
    font-size: 2.5vw;
    margin-bottom: 1.5625vw;
  }
}
#footer .supporter-list ul {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
@media only screen and (max-width: 768px) {
  #footer .supporter-list ul {
    gap: 0 2.8125vw;
  }
}
#footer .supporter-list ul li {
  width: 240px;
}
@media only screen and (max-width: 768px) {
  #footer .supporter-list ul li {
    width: 37.5vw;
  }
}
#footer .supporter-list ul li a {
  display: block;
}
#footer .copy {
  font-size: 14px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #footer .copy {
    font-size: 2.1875vw;
  }
}

#modal-block {
  background-color: rgba(21, 24, 41, 0.8);
}
#modal-block .close {
  top: 30px;
  right: 30px;
  width: 80px;
}
@media only screen and (max-width: 768px) {
  #modal-block .close {
    top: 3.125vw;
    right: 3.125vw;
    width: 12.5vw;
  }
}