/******* common *******/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  font-weight: normal;
  font-family: "Noto Sans JP", serif;
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* IE and Edge */
* {
  -ms-overflow-style: none;
}

/* Chrome, Safari, Opera */
::-webkit-scrollbar {
  display: none;
}

@font-face {
  font-family: "Neue";
  src: url("../font/NeueAachenProRegular.TTF");
}
ul,
ol {
  list-style: none;
}
a,
a:visited {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
iframe {
  border: none;
}
.sp,
.pad {
  display: none;
}
.disable {
  pointer-events: none;
  opacity: 0.4;
}

.inner {
  width: 1300px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.main_title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main_title .en {
  color: #fff;
  font-family: "EB Garamond";
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.96px;
}

.main_title .ja {
  color: #fff;
  font-family: "Shippori Mincho";
  font-size: 56px;
  font-weight: 700;
  line-height: 110%;
}

.main_title_tategaki {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
}

.main_title_tategaki .en-tategaki {
  color: #fff;
  font-family: "EB Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.96px;
}

.main_title_tategaki .ja-tategaki {
  color: #fff;
  font-feature-settings: "vert" on;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  font-family: "Shippori Mincho";
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 61.6px */
}

.btn_navy {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 180%;
  background-color: #051f59;
  border: 1px solid #fff;
  width: 420px;
  height: 72px;
  display: block; /* flexではなくblock */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* テキストのラッパーを追加 */
.btn-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 30px; /* テキストの高さに合わせて調整 */
  overflow: hidden;
}

.btn-text {
  display: block;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  line-height: 30px; /* ラッパーの高さと同じに */
}

.btn-text::after {
  content: attr(data-text);
  position: absolute;
  top: 30px; /* テキストの高さと同じ */
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 30px;
}

@media (hover: hover) {
  .btn_navy:hover .btn-text {
    transform: translateY(-30px); /* テキストの高さ分移動 */
  }
}

.x-pad {
  display: block;
}

@media screen and (max-width: 980px) {
  .pad {
    display: block;
  }
  .x-pad {
    display: none;
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }

  .main_title {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
  }

  .main_title .en {
    font-size: 18px;
    width: fit-content;
  }

  .main_title .ja {
    font-size: 36px;
    width: fit-content;
  }

  .btn_navy {
    width: 345px;
    height: 64px;
    font-size: 18px;
  }
}

.line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 0 auto;
  display: block;
}

/* !animation
---------------------------------------------------------- */
@keyframes underline {
  0% {
    width: 0;
    left: 0;
    right: auto;
  }
  45% {
    width: 100%;
    left: 0;
    right: auto;
  }
  55% {
    width: 100%;
    left: auto;
    right: 0;
  }
  100% {
    width: 0;
    left: auto;
    right: 0;
  }
}

@keyframes glowFade {
  0% {
    opacity: 0;
    filter: blur(20px);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
  }
  10% {
    opacity: 0.1;
    filter: blur(18px);
    text-shadow: 0 0 38px rgba(255, 255, 255, 0.75);
  }
  20% {
    opacity: 0.2;
    filter: blur(15px);
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.7);
  }
  30% {
    opacity: 0.3;
    filter: blur(12px);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  }
  40% {
    opacity: 0.4;
    filter: blur(9px);
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
  }
  50% {
    opacity: 0.5;
    filter: blur(7px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  }
  60% {
    opacity: 0.65;
    filter: blur(5px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }
  70% {
    opacity: 0.8;
    filter: blur(3px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
  80% {
    opacity: 0.9;
    filter: blur(2px);
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.15);
  }
  90% {
    opacity: 0.95;
    filter: blur(1px);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
  }
  95% {
    opacity: 0.98;
    filter: blur(0.5px);
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.05);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    text-shadow: none;
  }
}

.glow-fade {
  opacity: 0;
  animation: glowFade 0.7s ease-out forwards;
  animation-play-state: paused; /* 初期は一時停止 */
}

/* アニメーション実行 */
.glow-fade.is-visible {
  animation-play-state: running; /* 表示されたら再生 */
}

/* !縦書き
---------------------------------------------------------- */
.ja-tategaki {
  writing-mode: vertical-rl; /* 右から左へ縦書き */
  text-orientation: upright; /* 文字を正立させる */
}

.en-tategaki {
  writing-mode: vertical-rl;
  text-orientation: mixed; /* 英数字は横向きに */
}

/* !background
---------------------------------------------------------- */
.background {
  position: fixed;
  z-index: -10;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.background img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* !news_header
---------------------------------------------------------- */
.news_header {
  background: transparent;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  overflow: hidden;
}
.news_header .new {
  color: #fff;
  font-family: "EB Garamond";
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  margin-top: 2px;
}
.news_header_content {
  overflow: hidden;
}
.news_header .news_header_detail {
  display: flex;
  gap: 36px;
  width: fit-content;
  margin: 0 auto;
}

.new_text_container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

@media (hover: hover) {
  .news_header .news_header_detail:hover .new_text {
    text-decoration: underline;
    color: #fff;
  }
}

.news_header .new_text {
  font-family: Noto Sans JP;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.news_header .white_arrow_down {
  width: 24px;
}

@media screen and (max-width: 767px) {
  .news_header {
    height: 52px;
  }
  .news_header .new {
    font-size: 16px;
    line-height: 24px;
    padding-left: 20px;
  }
  .news_header .new_text {
    font-size: 12px;
    line-height: 20px;
    width: 78%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news_header .news_header_detail {
    gap: 12px;
  }
  .news_header .white_arrow_down {
    width: 16px;
  }
}

/* !kv
---------------------------------------------------------- */
.kv {
  width: 100%;
  background-color: #000;
  position: relativeå;
}
/* !header
---------------------------------------------------------- */
.headerIn {
  opacity: 0;
  transition: opacity 0.8s;
}
.headerIn.show {
  opacity: 1;
}
.headerIn .header_logo {
  width: 110px;
  position: fixed;
  top: 35px;
  left: 64px;
  z-index: 900;
}
.headerIn .menu_open_btn {
  position: fixed;
  width: 64px;
  top: 70px;
  right: 64px;
  z-index: 100;
  transition: opacity 0.4s;
  cursor: pointer;
}

@media (hover: hover) {
  .headerIn .menu_open_btn:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .headerIn .header_logo {
    width: 65px;
    left: 12px;
    top: 20px;
  }
  .headerIn .menu_open_btn {
    width: 40px;
    right: 20px;
    top: 40px;
  }
}

/* !navigation
---------------------------------------------------------- */
#navigation {
  background-image: url(../image/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#navigation.open {
  opacity: 1;
  z-index: 100;
  pointer-events: auto;
}
#navigation .menu_close_btn {
  position: absolute;
  width: 64px;
  top: 70px;
  right: 64px;
  z-index: 100;
  transition: opacity 0.4s;
  cursor: pointer;
}

@media (hover: hover) {
  #navigation .menu_close_btn:hover {
    opacity: 0.7;
  }
}

.navigation_container {
  width: 100%;
  max-width: 840px;
}

#navigation .nav_list {
  display: flex;
  flex-direction: row-reverse;
  gap: 72px;
}

.nav_item a {
  transition: opacity 0.4s;
  display: flex;
  flex-direction: row-reverse;
  gap: 12px;
}

@media (hover: hover) {
  .nav_item a:hover {
    opacity: 0.7;
  }
}

.nav-en {
  color: #fff;
  font-family: "EB Garamond";
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.72px;
  margin-top: 8px;
}

.nav-ja {
  color: #fff;
  font-feature-settings: "vert" on;
  font-family: "Shippori Mincho";
  font-size: 44px;
  font-weight: 700;
  line-height: 110%;
}

@media screen and (max-width: 767px) {
  #navigation {
    align-items: start;
  }

  #navigation .nav_list {
    flex-direction: column;
    gap: 32px;
    align-items: start;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    padding: 0 32px 0;
    width: 100%;
  }

  #navigation .menu_close_btn {
    width: 40px;
    top: 40px;
    right: 20px;
  }

  .navigation_container {
    padding: 0 32px;
  }

  .nav_item a {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }

  .en-tategaki.nav-en {
    font-size: 16px;
    writing-mode: initial;
    text-orientation: initial;
    margin-top: 0;
    margin-left: 8px;
  }

  .ja-tategaki.nav-ja {
    font-size: 26px;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-feature-settings: normal;
    -webkit-font-feature-settings: normal;
    text-rendering: auto;
  }
}

/* !game info
---------------------------------------------------------- */
#theme {
  padding: 80px 0 140px;
}

#theme .inner {
  width: 1000px;
}

#theme .top-text {
  color: #fff;
  text-align: center;
  font-family: "Shippori Mincho";
  font-size: 28px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.12px;
}

#theme .gameinfo {
  width: 1000px;
  max-width: 100%;
  border: 1px solid #fff;
  padding: 40px 12px;
  margin-top: 80px;
}

#theme .gameinfo .inner.top {
  width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

#theme .gameinfo .line {
  margin: 34px auto 31px;
}

#theme .gameinfo .studium {
  width: 442px;
}

#theme .inner.bottom {
  position: relative;
  width: 1300px;
  margin: 160px auto 0;
}

#theme .main_title_tategaki {
  position: absolute;
  top: 0;
  right: 0;
}

#theme .img-main-theme {
  width: 138px;
  margin: 0 auto;
}

#theme .text-box {
  margin: 120px auto;
  display: flex;
  flex-direction: row-reverse;
  gap: 36px;
  justify-content: center;
}

#theme .text-box p {
  color: #fff;
  font-feature-settings: "vert" on;
  font-family: "Shippori Mincho";
  font-size: 20px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.9px;
}

#theme .movie-box {
  width: 1000px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

@media screen and(max-width: 930px) {
  #theme .text-box {
    gap: 30px;
  }
}

@media screen and (max-width: 837px) {
  #theme {
    padding: 80px 0 72px;
  }
  #theme .top-text {
    font-size: 20px;
  }

  #theme .gameinfo {
    margin-top: 72px;
    padding: 24px 20px;
  }

  #theme .gameinfo .line {
    margin: 22px 0 16px;
  }

  #theme .inner.bottom {
    margin: 100px auto 0;
  }

  #theme .img-main-theme {
    width: 170px;
    margin-top: 40px;
  }

  #theme .text-box {
    margin: 36px 0 56px;
    flex-direction: column;
    gap: 24px;
  }

  #theme .text-box p {
    font-size: 14px;
    line-height: 175%;
    text-align: center;
    gap: 36px;
  }

  #theme .text-box .ja-tategaki {
    writing-mode: horizontal-tb; /* または initial */
    text-orientation: initial;
    font-feature-settings: normal;
    -webkit-font-feature-settings: normal;
    text-rendering: auto;
  }
}

/* !special uniform
---------------------------------------------------------- */
#special_uniform {
  padding: 140px 0;
}

#special_uniform .top-content .pc {
  width: 91.5%;
  margin-right: auto;
  display: inline-flex;
  gap: 72px;
}

#special_uniform .top-content .pad {
  display: none;
}

#special_uniform .top-content .img {
  width: 82.5%;
  height: auto;
}

#special_uniform .top-content img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#special_uniform .top-content .main_title {
  flex-shrink: 0;
}

#special_uniform .inner {
  padding-top: 100px;
  display: flex;
  gap: 7.7%;
  align-items: start;
  justify-content: center;
}

#special_uniform .left-container {
  width: 55.3%;
}

#special_uniform .right-container {
  width: 36%;
}

#special_uniform .text-box {
  display: flex;
  flex-direction: row-reverse;
  gap: 36px;
  margin-top: 76px;
}

#special_uniform .text-box p {
  color: #fff;
  font-feature-settings: "vert" on;
  font-family: "Shippori Mincho";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.9px;
}

#special_uniform .uniform-left-slider {
  max-width: 720px;
  margin-top: 75px;
  background: #000;
}

#special_uniform .uniform-top-slider {
  max-width: 480px;
  background: #000;
}

#special_uniform .uniform-bottom-slider {
  max-width: 480px;
  margin-top: 100px;
  background: #000;
}

#special_uniform .uniform-big-slider {
  width: 1300px;
  max-width: 100%;
  margin-top: 100px;
  background: #000;
}

@media screen and (max-width: 1092px) {
  #special_uniform .inner {
    gap: 5%;
  }
  #special_uniform .text-box {
    gap: 28px;
  }

  #special_uniform .uniform-bottom-slider,
  #special_uniform .uniform-left-slider {
    margin-top: 60px;
  }
}

@media screen and (max-width: 980px) {
  #special_uniform {
    padding: 56px 0 72px;
  }

  #special_uniform .top-content .pc {
    display: none;
  }

  #special_uniform .top-content .pad {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
    width: 600px;
    max-width: calc(100% - 32px);
    margin: 0 auto;
  }

  #special_uniform .top-content {
    flex-direction: column;
    gap: 36px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }

  #special_uniform .top-content .main_title {
    text-align: center;
  }

  #special_uniform .inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-top: 48px;
    max-width: 100%;
  }

  #special_uniform .text-box {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 0px;
    padding: 0 16px;
  }

  #special_uniform .text-box p {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-feature-settings: normal;
    -webkit-font-feature-settings: normal;
    text-rendering: auto;

    font-size: 14px;
    line-height: 175%;
    text-align: center;
  }

  #special_uniform .left-container,
  #special_uniform .right-container {
    width: 100%;
  }

  #special_uniform .top.pad {
    width: fit-content;
    max-width: calc(100% - 64px);
    margin: 48px auto 0;
  }

  #special_uniform .middle {
    width: 80.2%;
    margin-right: auto;
  }

  #special_uniform .bottom {
    width: 82.4%;
    margin-left: auto;
  }

  #special_uniform .uniform-bottom-slider {
    margin-top: 0;
  }

  #special_uniform .uniform-big-slider,
  #special_uniform .uniform-left-slider {
    margin-top: 60px;
  }
}

/* !event
---------------------------------------------------------- */
#event {
  padding: 100px 0 120px;
}

#event .inner {
  width: 1200px;
}

#event .event_list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

#event .event_list li {
  background-color: #051f59;
  padding: 36px;
}

#event .event_list li a {
  display: flex;
  gap: 32px;
  transition: 0.3s ease;
}

@media (hover: hover) {
  #event .event_list li a:hover {
    opacity: 0.7;
  }
}

#event .event_list li .img {
  width: 37.4%;
}

#event .event_list li img {
  object-fit: cover;
}

#event .event_list li .text_box {
  width: 61.7%;
  position: relative;
}

#event .event_list li .text_box h3 {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.88px;
}

#event .event_list li .text_box .text {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 174%;
  letter-spacing: 0.64px;
  margin-top: 12px;
  padding-bottom: 12px;
}

#event .event_list li .text_box .more {
  position: absolute;
  bottom: 0;
  left: 0;
}

#event .event_list li .text_box .more p {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.64px;
  position: relative;
}

#event .event_list li .text_box .more p::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  #event {
    padding: 56px 0 72px;
  }

  #event .event_list {
    margin-top: 36px;
    gap: 24px;
  }

  #event .event_list li {
    padding: 24px;
  }

  #event .event_list li a {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  #event .event_list li .img,
  #event .event_list li .text_box {
    width: 100%;
  }

  #event .event_list li .text_box h3 {
    font-size: 18px;
  }

  #event .event_list li .text_box .text {
    font-size: 14px;
  }

  #event .event_list li .text_box .more {
    position: unset;
  }

  #event .event_list li .text_box .more p {
    font-size: 16px;
  }
}

/* !goods & food
---------------------------------------------------------- */
#goods {
  padding: 100px 0 0;
}

#food {
  padding: 100px 0 120px;
}

#goods .inner,
#food .inner {
  width: 1200px;
}

#goods .goods_list,
#food .food_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 23px;
  margin: 48px auto 56px;
}

#goods .goods_list li,
#food .food_list li {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

#goods .goods_list li .item,
#food .food_list li .item {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.72px;
  margin-top: 4px;
  padding-bottom: 42px;
}

#goods .goods_list li .price,
#food .food_list li .price {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;

  display: flex;
  align-items: baseline;
  gap: 4px;

  position: absolute;
  bottom: 0;
  left: 0;
}

#goods .goods_list li .price span,
#food .food_list li .price span {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  #goods {
    padding: 56px 0 60px;
  }

  #food {
    padding: 60px 0 72px;
  }

  #goods .goods_list,
  #food .food_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 18px;
    margin: 32px 0 40px;
  }

  #goods .goods_list li .item,
  #food .food_list li .item {
    font-size: 16px;
    padding-bottom: 32px;
  }
}

/* !news
---------------------------------------------------------- */
#news {
  padding: 100px 0 140px;
}

#news .inner {
  width: 1200px;
}

#news .news_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

#news .news_list li {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

#news .news_list li a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: 0.3s ease;
  padding: 0 8px;
}

#news .news_list li a .date {
  color: #fff;
  font-family: "EB Garamond";
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}

#news .news_list li a .text_box {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

#news .news_list li a .text_box .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.72px;
}

#news .news_list li a .text_box img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  #news .news_list li a:hover .text_box img {
    transform: translateX(5px);
  }
}

@media screen and (max-width: 767px) {
  #news {
    padding: 56px 0 72px;
  }

  #news .news_list {
    margin-top: 40px;
  }

  #news .news_list li a .text_box .text {
    font-size: 14px;
  }
}

/* !kids starnight
---------------------------------------------------------- */
#kids-starnight {
  padding: 100px 0;
  position: relative;
}

#kids-starnight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

#kids-starnight .inner {
  width: 900px;
}

#kids-starnight .img {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}

#kids-starnight .inner h4 {
  color: #ffe200;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.44px;
  margin-top: 32px;
}

#kids-starnight .inner .btn_yellow {
  color: #051f59;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 180%;
  background-color: #ffe200;
  width: 420px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 64px auto 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

#kids-starnight .inner .btn_yellow .btn-text {
  display: block;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#kids-starnight .inner .btn_yellow .btn-text::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffe200;
  color: #051f59;
}

@media (hover: hover) {
  #kids-starnight .inner .btn_yellow:hover .btn-text {
    transform: translateY(-100%);
  }
}

@media screen and (max-width: 767px) {
  #kids-starnight {
    padding: 80px 0;
  }

  #kids-starnight .inner h4 {
    font-size: 20px;
    margin-top: 40px;
  }

  #kids-starnight .inner .btn_yellow {
    width: 345px;
    height: 64px;
    font-size: 18px;
    margin-top: 40px;
  }
}

/* !footer
---------------------------------------------------------- */
footer {
  background: rgba(0, 0, 0, 0.1);
  padding: 64px 0 100px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  mix-blend-mode: overlay;
  pointer-events: none; /* クリックイベントを通す */
}

footer .footer_logo {
  width: 150px;
  margin: 0 auto 28px;
}
footer .sns_text {
  color: #fff;
  text-align: right;
  font-family: "EB Garamond";
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
footer .sns_sub_text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 4px;
  text-align: center;
}
footer .sns_logo {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
footer .sns_logo .sns_icon a {
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 15px;
  border-radius: 50px;
  transition: opacity 0.4s;
}

@media (hover: hover) {
  footer .sns_logo .sns_icon a:hover {
    opacity: 0.7;
  }
}

footer .site_link {
  display: flex;
  gap: 16px;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin: 48px auto 42px;
}
footer .site_link_text {
  position: relative;
}
footer .site_link_text::after {
  content: "";
  display: block;
  background-color: currentColor;
  bottom: 0;
  height: 1.3px;
  left: 0;
  right: auto;
  width: 0;
  position: absolute;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(1, 0.61, 0.355, 0.215);
  transition-property: width;
  color: #f1f1f1;
}

@media (hover: hover) {
  footer .site_link_text:hover::after {
    animation: underline 0.5s cubic-bezier(1, 0.61, 0.355, 0.215) forwards;
  }
}

footer .site_link .vertical_line {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  height: 24px;
}
footer .copyright {
  color: #fff;
  font-family: "EB Garamond";
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer_top {
    padding: 48px 0 72px;
  }
  footer .footer_logo {
    width: 100px;
  }
  footer .sns_logo {
    gap: 8px;
  }
  footer .sns_text {
    font-size: 36px;
    line-height: 36px;
  }
  footer .sns_sub_text {
    font-size: 14px;
    line-height: 21px;
  }
  footer .sns_logo .sns_icon a {
    width: 48px;
    height: 48px;
    padding: 12px;
  }
  footer .site_link_list {
    margin-bottom: 42px;
  }
  footer .site_link_list .site_link {
    margin: 16px auto 0;
  }
  footer .copyright {
    font-size: 11px;
  }
}

.comingsoon {
  color: #fff;
  font-family: "Shippori Mincho";
  font-size: 48px;
  font-weight: 700;
  line-height: 110%; /* 70.4px */
  text-align: center;
  padding: 64px 0;
}

@media screen and (max-width: 767px) {
  .comingsoon {
    font-size: 24px;
    padding: 64px 0 48px;
  }
}
