@charset "UTF-8";

@font-face {
  font-family: "MyCustomFont"; /* 任意のフォント名を指定 */
  src: url("../fonts/TsunagiGothic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --black-color02: #004846;
  --white-color: #fff;
  --gray-color: #dbdbdb;
  --primary-color: #a7d2eb;
  --sub-color: #f1f9ff;
  --list-color: #ebb1bb;
  --accent-color: #fde999;
  --accent-color02: #78c8d4;
  --accent-color03: #f5bb98;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-xs: 672px;
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "MyCustomFont", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u_md_dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/*=============================
WIllオープニングアニメーション
=============================*/

/* 画面全体を覆うオープニングレイヤー */
#opening {
  position: fixed;
  inset: 0;
  background: #fff; /* ここはサイトに合わせて色変更OK */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* アニメ中クリック防止（消した後も邪魔しない） */
  opacity: 1;
}

/* 中身を中央に */
.opening_inner {
  text-align: center;
}

/* WILLアニメ（今のやつそのまま） */
.will-anim {
  position: relative;
  display: block;
  width: 300px;
  margin: 0 auto;
}

.will-logo {
  display: block;
  margin: 0 auto;
}

/* ボール共通 */
.ball {
  position: absolute;
  width: 27px;
  bottom: -6px;
  transform-origin: center center;
}

/* 最終位置 */
.ball-left {
  top: 43%;
  left: 61%;
}

.ball-right {
  top: 43%;
  left: 70%;
}

/* 色変化用 */
.ball-black {
  filter: brightness(0) saturate(0);
}

.ball-white {
  filter: brightness(10) saturate(0);
}

/* オープニング中はスクロール禁止（必要なら） */
body.is-opening {
  overflow: hidden;
}

.opening_loading {
  font-size: 24px;
  letter-spacing: 0.12em;
  color: #444;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.loading-5 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-5 span {
  display: inline-block;
  color: #2589d0;
  font-weight: 600;
  font-size: 1.5em;
  animation: animation-loading-5 1s infinite;
}

.loading-5 span:nth-of-type(2) {
  animation-delay: 0.1s;
}

.loading-5 span:nth-of-type(3) {
  animation-delay: 0.2s;
}

.loading-5 span:nth-of-type(4) {
  animation-delay: 0.3s;
}

.loading-5 span:nth-of-type(5) {
  animation-delay: 0.4s;
}

.loading-5 span:nth-of-type(6) {
  animation-delay: 0.5s;
}

.loading-5 span:nth-of-type(7) {
  animation-delay: 0.6s;
}

.loading-5 span:nth-of-type(8) {
  animation-delay: 0.7s;
}

.loading-5 span:nth-of-type(9) {
  animation-delay: 0.8s;
}

.loading-5 span:nth-of-type(10) {
  animation-delay: 0.9s;
}

@keyframes animation-loading-5 {
  50% {
    transform: translateY(10px);
  }
}

.will-anim {
  position: relative;
  display: block;
  width: 300px;
  margin: 0 auto;
}

/* ロゴは普通に中央に */
.will-logo {
  display: block;
  margin: 0 auto;
}

/* ボール共通 */
.ball {
  position: absolute;
  width: 27px; /* ここはお好みのサイズで */
  bottom: -6px; /* ← ここが「地面」になる高さ */
  transform-origin: center center;
}

/* 最終的に収まる位置（目安） */
.ball-left {
  top: 43%;
  left: 61%; /* LとLの間の左側 */
}

.ball-right {
  top: 43%;
  left: 70%; /* 右側 */
}

/* 黒ボール・白ボール用のフィルタ（あとでJSから当てる） */
.ball-black {
  filter: brightness(0) saturate(0); /* 黒っぽく */
}

.ball-white {
  filter: brightness(10) saturate(0); /* 白っぽく（必要に応じて調整） */
}

/* ---------- layout ---------- */

.l_container-xs,
.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-xs {
  max-width: calc(var(--content-width-xs) + 32px);
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents-sm {
  padding: 40px 0;
}
.l_contents {
  padding: 80px 0;
}

@media screen and (min-width: 768px) {
  .l_contents {
    padding: 120px 0;
  }
}

.l_header {
  height: 72px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header {
    padding: 0 48px;
  }
}

.l_header-logo {
  width: 100px;
  height: 100%;
}

.l_header-logo_link {
  height: 100%;
  display: flex;
  align-items: center;
}

.l_header-logo_img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  z-index: var(--z-index-header);
}

.l_header-nav_list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.l_header-nav_item {
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.l_header-nav_item__link {
  width: 200px;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.l_header-nav_link{
    display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.l_header-nav_item:not(:first-child) {
  margin-top: 40px;
}

.l_footer {
  padding-top: 64px;
  text-align: center;
  background: var(--gray-color02);
}

.l_footer_logo {
  width: 200px;
  margin: 0 auto;
}

.l_footer_logo-link {
  height: 100%;
  display: block;
}

.l_footer_logo-img {
  display: block;
}

.l_footer_logo-txt {
  font-size: 18px;
}

.l_footer_list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .l_footer_list {
    flex-direction: row;
    gap: 40px;
  }
}

.l_footer_item {
  font-size: 14px;
}

.l_footer_item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .l_footer_item:not(:first-child) {
    margin-top: 0px;
  }
}

.l_footer_link {
  height: 100%;
  display: flex;
  align-items: center;
}

.l_footer-copyright {
  background: var(--primary-color);
  padding: 24px 0;
  margin-top: 48px;
}

.l_footer-copyright_txt {
  font-size: 12px;
  color: var(--white-color);
}

/* ---------- module ---------- */

.m_copy-box {
  width: 100%;
  height: 100px;
  background: var(--sub-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.m_page_title {
  font-size: 28px;
  text-shadow: 2px 2px 0 var(--accent-color03);
}

/*=============================
m_hamburger
=============================*/

.m_hamburger-circle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vh;
  background: var(--primary-color);
  z-index: var(--z-index-header);
  /* ★ ふわっと登場のための初期値 */
  opacity: 0;
  transform: translateY(-20px);
}

@media screen and (min-width: 768px) {
  .m_hamburger-circle {
    top: 50px;
    right: 50px;
  }
}

.btn-trigger {
  position: relative;
  width: 32px;
  height: 28px;
  cursor: pointer;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}
.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 14px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn07 span:nth-of-type(1) {
  -webkit-animation: btn07-bar01 0.75s forwards;
  animation: btn07-bar01 0.75s forwards;
}
@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(13px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(13px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar01 {
  0% {
    transform: translateY(13px) rotate(45deg);
  }
  50% {
    transform: translateY(13px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#btn07 span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}
#btn07 span:nth-of-type(3) {
  -webkit-animation: btn07-bar03 0.75s forwards;
  animation: btn07-bar03 0.75s forwards;
}
@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-13px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-13px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes btn07-bar03 {
  0% {
    transform: translateY(-13px) rotate(-45deg);
  }
  50% {
    transform: translateY(-13px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#btn07.active span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 0.75s forwards;
  animation: active-btn07-bar01 0.75s forwards;
}
@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(13px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(13px) rotate(45deg);
  }
}
@keyframes active-btn07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(13px) rotate(0);
  }
  100% {
    transform: translateY(13px) rotate(45deg);
  }
}
#btn07.active span:nth-of-type(2) {
  opacity: 0;
}
#btn07.active span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 0.75s forwards;
  animation: active-btn07-bar03 0.75s forwards;
}
@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-13px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-13px) rotate(-45deg);
  }
}
@keyframes active-btn07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-13px) rotate(0);
  }
  100% {
    transform: translateY(-13px) rotate(-45deg);
  }
}

/*=============================
m_section_title
=============================*/

.m_section_title {
  position: relative;
}

.m_section_title::before,
.m_section_title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: calc(50vw - 100px);
  background: var(--primary-color);
}

.m_section_title::before {
  left: 0;
}

.m_section_title::after {
  right: 0;
}

.m_section_title_main,
.m_category_main {
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .m_section_title_main,
  .m_category_main {
    font-size: 24px;
  }
}

.m_section_title_sub {
  color: var(--accent-color);
  letter-spacing: 0.3em;
  font-size: 20px;
  text-align: center;
  text-shadow: 2px 2px 2px var(--gray-color);
}

/*=============================
m_btn-wrapper
=============================*/

.m_btn-wrapper {
  display: block;
  width: 200px;
  height: 60px;
  margin: 0 auto;
}

.m_btn-link {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: var(--white-color);
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  font-weight: bold;
  overflow: hidden;
  background: var(--list-color);
  border-bottom: solid 4px #c67381; /*少し濃い目の色に*/
}

.m_btn:active {
  border-bottom: solid 2px #fd9535;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.m_btn:hover {
  background: var(--accent-color);
  color: var(--black-color);
}

.m_btn-link::after {
  content: "";
  margin-left: 24px;
  display: block;
  width: 15px;
  height: 15px;
  border-top: 4px solid var(--white-color);
  border-right: 4px solid var(--white-color);
  transform: rotate(45deg);
}

/*=============================
m_cta
=============================*/

.m_cta {
  padding: 56px 16px;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.3)), url(../img/top_club04.JPEG) center / cover;
}

@media screen and (min-width: 900px) {
  .m_cta {
    display: flex;
    padding: 0;
    background: var(--black-color);
    height: 400px;
  }
}

.m_cta_img-wrapper {
  display: none;
}

@media screen and (min-width: 900px) {
  .m_cta_img-wrapper {
    display: block;
    width: 70%;
    flex-shrink: 0;
    height: 100%;
  }

  .m_cta_img {
    height: 100%;
    object-fit: cover;
  }
}

.m_cta_box {
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  padding: 24px 0;
  border-radius: 8px;
}

@media screen and (min-width: 900px) {
  .m_cta_box {
    margin: 0 auto;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.m_cta_txt {
  font-size: 18px;
  font-weight: bold;
  color: var(--black-color);
  letter-spacing: 0;
}

@media screen and (min-width: 900px) {
  .m_cta_txt {
    color: var(--white-color);
    font-size: 20px;
  }
}

.m_cta_btn-wrapper {
  width: 260px;
  height: 68px;
  margin: 16px auto 0;
  position: relative;
}

.m_cta_btn-wrapper::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: url(../img/arrow.webp) no-repeat center / contain;
  bottom: 0;
  right: 10%;
  transform: rotate(230deg);
  transform-origin: center; /* 回転の軸 */
  animation: cta-finger-press 1.4s ease-in-out infinite;
}

@keyframes cta-finger-press {
  0% {
    transform: translate(0, 0) rotate(230deg);
  }
  40% {
    transform: translate(-6px, 6px) rotate(220deg); /* 少し左＋下＋ちょい回転 */
  }
  60% {
    transform: translate(-6px, 6px) rotate(220deg); /* 押し込んだ状態をちょっとキープ */
  }
  100% {
    transform: translate(0, 0) rotate(230deg); /* 元の位置に戻る */
  }
}

.m_cta-btn {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: var(--black-color);
  box-shadow: inset 4px 4px 8px rgba(255, 255, 255, 0.639), 4px 4px 8px rgba(0, 0, 0, 0.774);
  font-weight: bold;
  overflow: hidden;
  background: var(--accent-color03);
  border-bottom: solid 4px #c67381; /*少し濃い目の色に*/
  border-right: solid 4px #c67381;
  position: relative;
  animation: cta-btn-press 1.4s ease-in-out infinite;
  transition: filter 0.2s ease;
}

@keyframes cta-btn-press {
  0% {
    filter: brightness(1); /* 通常 */
  }
  40% {
    filter: brightness(1.25); /* 指が押し込むタイミングで光る */
  }
  60% {
    filter: brightness(1.25); /* 少しキープ */
  }
  100% {
    filter: brightness(1); /* 元に戻る */
  }
}

.m_cta-btn:hover {
  text-shadow: -6px 0px 15px rgba(255, 255, 240, 0.83), 6px 0px 15px rgba(255, 255, 240, 0.83);
}

/*=============================
m_kv
=============================*/

.m_kv {
  height: calc(100vh - 100px);
  background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4));
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_kv-inner {
    position: relative;
    height: 100%;
  }
}

.m_kv-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .m_kv-box {
    left: 16px;
    transform: translate(0, -50%);
    text-align: left;
  }
}

.m_kv-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--white-color);
  text-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
}

@media screen and (min-width: 1080px) {
  .m_kv-title {
    font-size: 32px;
  }
}

.m_kv-desc {
  font-weight: bold;
  color: var(--white-color);
  margin-top: 16px;
}

/* ---------- .top_kv ---------- */

.top_copy-box {
  width: 100%;
  height: 170px;
  background: var(--sub-color);
}

.top_kv {
  height: 100vh;
  /* swiper無効時 ↓ */
  background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4));
  /* swiper有効時 ↓ */
  /* background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4)); */
  position: relative;
}

.top_kv-inner {
  position: relative;
  height: 100%;
}

.top_kv_box {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: url(../img/KV-copy.webp) center center / contain no-repeat;
  padding-bottom: 16px;
}

.top_kv_copy {
  font-size: 40px;
  font-weight: bold;
  color: var(--black-color);
  text-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
}

@media screen and (min-width: 768px) {
  .top_kv_copy {
    font-size: 42px;
  }
}

@media screen and (min-width: 1200px) {
  .top_kv_copy {
    font-size: 48px;
  }
}

.top_kv_sub-copy {
  font-size: 28px;
  font-weight: bold;
  color: var(--black-color);
}

/*=============================
top_kv-slideshow
=============================*/

.top_kv-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-back);
}

/* スライドショー本体（absolute のままでOK） */
.top_kv-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden; /* ← オーバーレイがはみ出さないように */
  z-index: var(--z-index-back);
}

/* ★ 白いフィルター（画像の上にかぶせる） */
.top_kv-slideshow::after {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 と同じ */
  background: rgba(255, 255, 255, 0.188); /* 白フィルターの濃さここで調整 */
  pointer-events: none; /* ← スワイプ操作を邪魔しない */
  z-index: 10; /* ← 画像より上に来るように大きめに */
}

/* 画像は下に置く */
.top_kv-slideshow_slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.top_kv-slideshow_slide_img {
  object-fit: cover;
  height: 100%;
}

/*=============================
top_kv_scroll 
=============================*/

/* 上から下へゆっくり動くアニメーションをつける */

.top_kv_scroll {
  position: absolute;
  bottom: 40px;
  left: 30px;
  transform: translateX(-50%);
}

.top_kv_scroll-img-wrapper {
  position: relative;
}

.top_kv_scroll-img-wrapper::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  rotate: 45deg;
  position: absolute;
  bottom: -59px;
  left: 8px;
}

.top_kv_scroll-img-wrapper::after {
  content: "";
  width: 150px;
  height: 2px;
  background: var(--accent-color);
  position: absolute;
  rotate: -90deg;
  bottom: 10px;
  left: -50px;
}

/* ---------- .top_concept ---------- */

.top_section {
  background: var(--sub-color);
}

.top_concept {
  overflow: hidden;
}

.top_concept_copy {
  margin-top: 60px;
  font-size: 28px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .top_concept_copy {
    font-size: 48px;
  }
}

.top_concept_body {
  width: 100%;
  max-width: 500px;
  margin: 24px auto 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .top_concept_body {
    max-width: 1000px;
  }
}

.top_concept_txt-right {
  text-align: right;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .top_concept_txt-right {
    margin-top: 80px;
    text-align: center;
  }
}

@media screen and (min-width: 1080px) {
  .top_concept_txt-right {
    font-size: 18px;
  }
}

.top_concept_circle {
  width: 80%;
  max-width: 400px;
  aspect-ratio: 1;
  background: var(--primary-color);
  border-radius: 100vh;
  margin: 24px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 50px rgba(167, 210, 235, 0.6), inset 0 0 40px rgba(0, 0, 0, 0.25); /* 例：水色の光のぼかし */
}

.top_concept_main-txt {
  text-align: center;
  font-size: 20px;
  white-space: nowrap;
  text-shadow: 4px 4px 8px var(--white-color);
}

@media screen and (min-width: 768px) {
  .top_concept_main-txt {
    font-size: 32px;
  }
}
.top_concept_txt-left {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .top_concept_txt-left {
    text-align: center;
    margin-top: 60px;
  }
}

@media screen and (min-width: 1080px) {
  .top_concept_txt-left {
    font-size: 18px;
  }
}

.top_concept_img-wrapper {
  position: absolute;
}

.top_concept_img-wrapper__01 {
  width: 170px;
  top: 0;
  right: 85%;
  transform: translateX(20%);
}

@media screen and (min-width: 768px) {
  .top_concept_img-wrapper__01 {
    width: 250px;
    top: -40px;
  }
}

.top_concept_img-wrapper__01::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url(../img/concept-bg-1.webp);
  background-size: contain;
  width: 170px;
  height: 184px;
  transform: translate(7px, 7px);
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .top_concept_img-wrapper__01::before {
    width: 250px;
    height: 275px;
    transform: translate(10px, 10px);
    background-repeat: no-repeat;
  }
}

.top_concept_img-wrapper__02 {
  width: 190px;
  top: 100%;
  transform: translateY(-100%);
  left: 68%;
}

@media screen and (min-width: 768px) {
  .top_concept_img-wrapper__02 {
    width: 290px;
    transform: translateY(-80%);
    left: 80%;
  }
}

.top_concept_img-wrapper__02::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url(../img/concept-bg-2.webp);
  background-size: contain;
  width: 190px;
  height: 203px;
  transform: translate(-7px, -7px);
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .top_concept_img-wrapper__02::before {
    width: 290px;
    height: 310px;
    transform: translate(-10px, -10px);
  }
}

.top_concept_img-wrapper__03 {
  display: none;
  width: 260px;
  height: 260px;
  z-index: 2;
}

.top_concept_img-wrapper__03::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url(../img/concept-bg-3.webp);
  background-size: contain;
  width: 260px;
  height: 260px;
  transform: translate(-10px, 10px);
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .top_concept_img-wrapper__03 {
    display: block;
    top: -20px;
    right: -60px;
  }
}

.top_concept_img-wrapper__04 {
  display: none;
  width: 340px;
  height: 216px;
  z-index: 2;
}

.top_concept_img-wrapper__04::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url(../img/concept-bg-4.webp);
  background-size: contain;
  width: 340px;
  height: 216px;
  transform: translate(10px, -10px);
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .top_concept_img-wrapper__04 {
    display: block;
    top: 95%;
    transform: translateY(-100%);
    left: -80px;
  }
}

.top_concept_img {
  display: block;
  animation: float 6s ease-in-out infinite;
}

/* それぞれ少しずつズラす */
.top_concept_img-wrapper__01 .top_concept_img {
  animation-duration: 15s;
  animation-delay: 0s;
}
.top_concept_img-wrapper__02 .top_concept_img {
  animation-duration: 8s;
  animation-delay: 2s;
}
.top_concept_img-wrapper__03 .top_concept_img {
  animation-duration: 12s;
  animation-delay: 0.8s;
}
.top_concept_img-wrapper__04 .top_concept_img {
  animation-duration: 10s;
  animation-delay: 1.8s;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-10px, -15px);
  }
  50% {
    transform: translate(10px, -5px);
  }
  75% {
    transform: translate(-5px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.top_concept_btn-wrapper {
  margin-top: 60px;
}

/* ---------- .top_thought ---------- */

.top_thought_txt {
  margin-top: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .top_thought_txt {
    margin-top: 80px;
  }
}

.top_thought_txt:nth-of-type(2) {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .top_thought_txt:nth-of-type(2) {
    margin-top: 40px;
  }
}

.top_thought_txt__emphasis {
  display: inline-block;
  transform-origin: center;
  font-size: 24px;
  background: linear-gradient(transparent 0%, transparent 75%, var(--accent-color) 75%, var(--accent-color) 100%);
}

@media screen and (min-width: 768px) {
  .top_thought_txt__emphasis {
    font-size: 32px;
  }
}

.top_thought_df-box {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .top_thought_df-box {
    margin: 80px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
  }
}

@media screen and (min-width: 768px) {
  .top_thought_contents {
    width: 440px;
    flex-shrink: 0;
  }
}

.top_thought_contents-title {
  text-align: center;
  width: 100%;
  height: 47px;
  font-size: 20px;
  background-image: url(../img/ribon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_thought_item-box {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .top_thought_item-box {
    gap: 24px;
  }
}

.top_thought_item-box::before,
.top_thought_item-box::after {
  content: "";
  width: 44px;
  height: 4px;
  background: var(--black-color);
  position: absolute;
}

.top_thought_item-box::before {
  transform: rotate(45deg);
}
.top_thought_item-box::after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .top_thought_item-box::before,
  .top_thought_item-box::after {
    width: 60px;
    height: 8px;
  }
}

.top_thought_item {
  width: 130px;
  height: 130px;
  padding: 16px 0;
  text-align: center;
  border: 5px solid var(--list-color);
  border-radius: 16px;
}

@media screen and (min-width: 768px) {
  .top_thought_item {
    width: 200px;
    height: 200px;
    padding: 24px;
  }
}

.top_thought_item-name {
  font-size: 24px;
  line-height: 1.5em;
}

@media screen and (min-width: 768px) {
  .top_thought_item-name {
    font-size: 32px;
    line-height: 2em;
  }
}

.top_thought_item-text {
  line-height: 1.5em;
  margin-top: 8px;
}

.top_thought_contents-txt {
  font-size: 20px;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .top_thought_contents-txt {
    margin-bottom: 0;
  }
}


/* ---------- .top_school ---------- */
.top_school {
  overflow: hidden;
}

.top_school_logo {
  width: 60%;
  max-width: 300px;
  margin: 40px auto 0;
}

.top_school_body {
  margin-top: 32px;
}

.top_school_title {
  text-align: center;
  font-size: 32px;
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -webkit-text-stroke: 2px var(--black-color); /* 幅 3px, 実線, 色は黒 */
}

.top_school_title__color {
  color: var(--primary-color);
  -webkit-text-stroke: 2px var(--primary-color); /* 幅 3px, 実線, 色は黒 */
}
.top_school_title__color2 {
  color: var(--list-color);
  -webkit-text-stroke: 2px var(--list-color); /* 幅 3px, 実線, 色は黒 */
}

.top_school_copy {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
}

.top_school_list-wrapper {
  position: relative;
  max-width: calc(var(--content-width-lg) + 32px);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1088px) {
  .top_school_list-wrapper {
    overflow: hidden;
    height: auto;
  }
}

.top_school_list {
  margin-top: 24px;
}

.top_school_item {
  height: 210px;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .top_school_item {
    width: 352px;
  }
}

.top_school_img-wrapper {
  width: 100%;
  height: 100%;
}

.top_school_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_school_dots {
  position: absolute;
  right: 0;
  width: 16px;
  height: 96px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transform: translateY(-50%);
}

.top_school_dots .swiper-pagination-bullet {
  background: var(--gray-color);
  width: 16px;
  height: 16px;
  border-radius: 100vh;
  color: transparent;
  border: 1px solid var(--white-color);
}

.top_school_dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--list-color);
}

.top_school_circle {
  position: relative;
  height: 100px;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (min-width: 500px) {
  .top_school_circle {
    height: 150px;
  }
}

.top_school_circle-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: absolute;
  top: -20px;
  z-index: 10;
  width: 100%;
  max-width: 500px;
}

.top_school_circle-item {
  width: calc((100% - 24px * 2) / 3);
  aspect-ratio: 1;
  border-radius: 100vh;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(var(--accent-color) 0%, #fbe177 100%);
  text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.66);
  box-shadow: inset 6px 10px 5px rgba(253, 253, 253, 0.28), 3px 3px 10px rgba(40, 40, 40, 0.28);
}

.top_school_circle-text {
  text-align: center;
}

@media screen and (min-width: 500px) {
  .top_school_circle-text {
    font-size: 20px;
  }
}
.top_school_text {
  text-align: center;
  margin-top: 40px;
}

.js_school-swiper .swiper-slide {
  width: 100%;
  height: auto;
  max-width: 500px; /* ★ 最大幅 */
  box-sizing: border-box;
}

/* ---------- .top_club ---------- */

.top_club_title__color {
  color: var(--accent-color02);
  -webkit-text-stroke: 3px var(--accent-color02); /* 幅 3px, 実線, 色は黒 */
}

.top_club_title__color2 {
  color: var(--accent-color03);
  -webkit-text-stroke: 3px var(--accent-color03); /* 幅 3px, 実線, 色は黒 */
}

/*=============================
SNSアイコンリンク
=============================*/

.btn-social-giza {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.btn-social-giza a {
  display: inline-block;
  text-decoration: none;
  font-size: 25px;
}
.btn-social-giza .fa-stack-1x {
  color: white;
  font-size: 18px;
}
.btn-social-giza .fa-stack-2x {
  transition: 0.3s;
}
.btn-social-giza .btn-social-giza-x .fa-stack-2x {
  color: #000000;
}

.btn-social-giza .btn-social-giza-instagram .fa-stack-2x {
  color: #f79393;
}
.btn-social-giza .btn-social-giza-line .fa-stack-2x {
  color: #acde71;
}
.btn-social-giza .btn-social-giza-facebook .fa-stack-2x {
  color: #668ad8;
}
.btn-social-giza a:hover .fa-stack-2x {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.btn-social-giza a:active.fa-stack-2x {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.btn-social-giza .fa-stack-2x.fa-spin {
  animation-duration: 6s; /* 好きな速度（例：4秒で1回転） */
}

/* ---------- .top_info ---------- */

.top_info_content {
  margin-top: 40px;
}

.top_info_txt {
  text-align: center;
}

.top_info_txt:nth-of-type(2n) {
  margin-top: 32px;
}

.m_post_list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.m_post_item {
  padding: 24px;
  border-radius: 8px;
  background: var(--white-color);
  box-shadow: 4px 4px 8px var(--gray-color);
  max-width: 350px;
}

.m_post_thumb-wrapper {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.m_post_thumb {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.m_post_content {
  padding: 8px;
}

.m_post_meta {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.m_post_cat {
  padding: 2px 8px;
  color: var(--white-color);
  background: var(--accent-color03);
  border-radius: 4px;
}

.m_post_title {
  margin-top: 24px;
  font-size: 18px;
}

/* about_page */ /* about_page */ /* about_page */ /* about_page */
/* ---------- about_page ---------- */
/* about_page */ /* about_page */ /* about_page */ /* about_page */

@media screen and (min-width: 768px) {
  .about_nurture_df-box {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }
}

.about_nurture_sub-copy {
  margin-top: 40px;
  text-align: center;
}

.about_nurture_copy {
  margin-top: 32px;
  font-size: 20px;
  white-space: nowrap;
  text-align: center;
}

.about_nurture_text {
  margin-top: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .about_nurture_text {
    max-width: 500px;
  }
}

.about_nurture_img-wrapper {
  margin-top: 40px;
}

.about_4pillars_text {
  margin-top: 40px;
  text-align: center;
}

.about_4pillars_list {
  margin: 64px auto 0;
  display: flex;
  gap: 56px 16px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .about_4pillars_list {
    gap: 56px 32px;
  }
}

.about_4pillars_item {
  max-width: 400px;
}

@media screen and (min-width: 768px) {
  .about_4pillars_item {
    max-width: calc((100% - 32px) / 2);
  }
}

.about_4pillars_box {
  width: 100%;
  border-radius: 8px;
  background: var(--sub-color);
  padding: 30px 20px;
  position: relative;
  line-height: 1.2em;
  box-shadow: inset 4px 4px 10px var(--accent-color02), inset -4px -4px 10px var(--accent-color02);
}

.about_4pillars_box-number {
  font-size: 40px;
  font-family: "Montserrat";
  -webkit-text-stroke: 3px var(--black-color);
  font-weight: 900;
  position: absolute;
  top: -12px;
  left: 24px;
  color: var(--black-color);
}

.about_4pillars_item-title {
  font-size: 24px;
  text-align: center;
}

.about_4pillars_item-sub {
  font-size: 14px;
  color: var(--primary-color);
  text-align: center;
  margin-top: 16px;
}

.about_4pillars_logo {
  width: 100px;
  height: 100px;
  margin: 24px auto 0;
}

.about_4pillars_item-text {
  margin-top: 24px;
  font-family: "Noto Sans JP";
}

.company_section_table {
  margin: 40px auto 0;
  max-width: 560px;
}

caption {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

caption:after {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 40px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--accent-color03);
  border-radius: 2px;
}

.company_section_tr:nth-of-type(2n + 1) {
  background: var(--sub-color);
}

.company_section_th {
  font-weight: bold;
  width: 85px;
  padding: 16px 0 16px 8px;
  position: relative;
}

@media screen and (min-width: 700px) {
  .company_section_th {
    width: 120px;
  }
}

.company_section_td {
  font-size: 16px;
  padding: 16px 8px 16px 32px;
}

/* ---------- staff ---------- */

.staff_staff_copy {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
}

.staff_staff_card-wrapper{
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .staff_staff_card-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 24px;
    margin-top: 60px;
  }
}

.staff_staff_card:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .staff_staff_card:not(:first-child) {
  margin-top: 0px;
}
}

.staff_card_img-wrapper {
  width: 80%;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 8px;
  position: relative;
}

.staff_card_heading-wrapper {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%) rotate(12deg);
}

  .staff_staff_card{
    max-width: 450px;
  }

@media screen and (min-width: 768px) {
  .staff_staff_card{
width: 450px;
  }
}

.staff_staff_card:nth-child(2n) .staff_card_heading-wrapper {
  transform: translateX(-50%) rotate(-12deg);
}

.staff_card_heading {
  font-size: 14px;
  display: inline-block;
  position: relative;
  padding: 0.5em 1em;
  border-right: 12px solid #a7d2eb;
  background-color: #f5f5f5;
  color: #333333;
  white-space: nowrap;
}

.staff_card_heading::before {
  position: absolute;
  bottom: -6px;
  right: -6px;
  z-index: -1;
  transform: rotate(5deg);
  width: 100%;
  height: 80%;
  background-color: var(--black-color);
  content: "";
  filter: blur(5px);
}

.staff_card_img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

.staff_card_button {
  background: var(--white-color);
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.staff_card_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.staff_card_content__a {
  margin-top: 40px;
}

.service_faq_wrapper {
  margin-top: 40px;
}

.service_faq_icon {
  font-size: 14px;
  font-weight: bold;
  padding-right: 16px;
}

.staff_card_name {
  font-size: 18px;
  margin-right: 16px;
}

.staff_card_text {
  font-size: 14px;
  text-align: left;
}

.staff_card_mark {
  width: 30px;
  height: 30px;
  position: relative;
  flex-shrink: 0;
  border-radius: 100vh;
  background: var(--accent-color03);
}

.staff_card_mark::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border: 8px solid;
  border-color: var(--white-color) transparent transparent transparent;
}

.staff_message_text {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
}

.staff_message_list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 768px) {
  .staff_message_list{
    flex-direction: row;
    gap: 24px;
  }
}

.staff_message_item {
  width: 100%;
}

.staff_message_box {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding: 1em calc(1.5em + 9px);
  border-top: 2px solid var(--accent-color03);
  border-bottom: 2px solid var(--accent-color03);
  color: var(--black-color);
  font-size: 14px;
}

.staff_message_box::before,
.staff_message_box::after {
  position: absolute;
  width: 2px;
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% + 20px);
  background-color: var(--accent-color03);
  content: "";
}

.staff_message_box::before {
  left: 9px;
}

.staff_message_box::after {
  right: 9px;
}

/* ---------- club team ---------- */

.club_mission_df-box {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .club_mission_df-box {
    margin-top: 60px;
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }
  .club_mission_df-box:nth-last-of-type(2) {
    flex-direction: row-reverse;
  }
}

.club_mission_contents-box {
  max-width: 500px;
  margin: 0 auto;
}

.club_mission_sub-copy {
  text-align: center;
}

.club_mission_copy {
  font-size: 20px;
  margin-top: 32px;
  text-align: center;
}

.club_mission_text {
  margin-top: 40px;
  font-family: "Noto sans JP";
  letter-spacing: normal;
  padding: 8px;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .club_mission_text {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}

.club_mission_img-wrapper {
  position: relative;
  overflow: hidden; /* 念のため */
}

@media screen and (min-width: 768px) {
  .club_mission_img-wrapper {
    width: 400px;
    flex-shrink: 0;
  }
}

/* 上にかぶせるグラデーションレイヤー */
.club_mission_img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 と同じ */
  background: linear-gradient(
    to bottom,
    #fff 0%,
    /* ← 背景色（セクションの背景と同じ色） */ rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.club_mission_title,
.club_cta_copy {
  font-size: 18px;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .club_cta_copy {
    color: var(--black-color);
    text-shadow: 4px 4px 8px var(--white-color);
    font-size: 24px;
  }
}

.club_mission_title {
  margin-top: 56px;
  color: var(--black-color);
}

.club_mission_title::after,
.club_cta_copy:after {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 100px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--accent-color);
  border-radius: 2px;
}

.club_mission_record {
  font-size: 14px;
  letter-spacing: normal;
  font-family: "Noto Sans JP";
  line-height: 1.8em;
  max-width: 500px;
  margin: 0 auto;
}

.club_team_logo {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .club_team_logo {
    gap: 28px;
  }
}

.club_team_logo-img {
  width: 40%;
  max-width: 300px;
  max-width: 200px;
}

@media screen and (min-width: 768px) {
  .club_team_logo-img {
    width: 200px;
  }
}

.club_team_text {
  max-width: 700px;
  margin: 40px auto 0;
}

@media screen and (min-width: 854px) {
  .club_team_text {
    text-align: center;
    max-width: 1000px;
  }
}

/* --チームメンバー募集-- */

.club_cta {
  padding: 40px 0;
  background: linear-gradient(rgb(0 0 0 / 20%), rgb(0 0 0 / 20%)), url(../img/TOP-kv04.webp);
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .club_cta {
    background-position-y: bottom;
  }
}

@media screen and (min-width: 768px) {
  .club_cta_df-box {
    display: flex;
    gap: 16px;
    justify-content: center;
  }
}
.box-010 {
  position: relative;
  max-width: 350px;
  margin: 80px auto;
  padding: 2.5em 1.5em 1.5em;
  box-shadow: 3px 3px 6px rgb(0 0 0 / 20%);
}
.box-010__man {
  background-color: var(--sub-color);
  color: var(--black-color02);
}
.box-010__woman {
  background-color: var(--sub-color);
  color: var(--black-color02);
}

.box-010 span {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-60%) rotate(-5deg);
  padding: 0.5em 2em;
  border-right: 2px dotted rgb(0 0 0 / 10%);
  border-left: 2px dotted rgb(0 0 0 / 10%);
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  background-color: rgb(255 255 255 / 60%);
  font-weight: 600;
}

.box-010__woman span {
  transform: translateX(-40%) rotate(5deg);
}

.box-010 p {
  margin-top: 24px;
}

.club_vision_leads {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .club_vision_leads {
    max-width: 700px;
    margin: 60px auto 0;
  }
}

.club_vision_lead.has-icon {
  font-size: 16px;
  position: relative;
  padding-left: 1.8em; /* アイコン分の余白 */
}

@media screen and (min-width: 768px) {
  .club_vision_lead.has-icon {
    font-size: 18px;
  }
}
.club_vision_lead.has-icon::before {
  content: "\f434"; /* Font Awesomeのバスケットボールのユニコード */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solidの時はだいたいこれ */
  position: absolute;
  left: 0;
  top: 0;
  animation: fa-spin-custom 3s linear infinite;
}
/* 回転アニメーション */
@keyframes fa-spin-custom {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.club_vision_lead:not(:first-child) {
  margin-top: 32px;
}

.club_value_leads {
  margin-top: 40px;
}

.club_value_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .club_value_list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.club_value_box {
  max-width: 400px;
  margin: 0 auto;
  border: 2px solid var(--accent-color03);
  border-radius: 8px;
  color: var(--black-color);
  box-shadow: 4px 4px 0 var(--gray-color);
}

.club_value_box-title {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  position: relative;
  top: -18px;
  left: 50%;
  transform: translateX(-55%);
  margin: 0 7px;
  padding: 0 8px;
  background: #fff;
  color: var(--accent-color02);
  font-weight: 600;
  vertical-align: top;
}

.club_value_box-title::before {
  width: 15px;
  height: 7.5px;
  border-bottom: 3px solid var(--accent-color02);
  border-left: 3px solid var(--accent-color02);
  transform: rotate(-45deg) translate(2px, -2px);
  content: "";
}

.club_value_box-text {
  margin: 0;
  padding: 0 1.5em 1em;
  letter-spacing: normal;
}

/* ------------school--------------- */

.school_academy_sub-copy {
  margin-top: 40px;
  text-align: center;
}

.school_academy_copy {
  margin-top: 32px;
  font-size: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .school_academy_df-box {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
  }
}

.school_academy_nav {
  margin-top: 40px;
}

.school_academy_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.school_academy_item {
  position: relative;
  text-decoration: none;
  margin: 0 auto;
  width: 330px;
  height: 80px;
  border-radius: 32px;
  text-align: center;
  background: #f7f7f7;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.08);
}

.school_academy_item::after {
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2em;
  height: 1em;
  background-color: #a7d2eb;
  clip-path: polygon(0 100%, 100% 100%, 40% 25%, 40% 65%, 0% 65%);
  content: "";
  transition: transform 0.3s;
}

.school_academy_item:hover::after {
  transform: translateY(-50%) scaleX(1.4);
}

.school_academy_item-link {
  position: absolute;
  color: var(--accent-color02);
  width: 310px;
  height: 60px;
  left: 10px;
  top: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: var(--sub-color);
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5), 0 2px 2px rgba(0, 0, 0, 0.19);
  border-bottom: solid 2px #b5b5b5;
}

.school_class_text {
  font-size: 15px;
  margin-top: 40px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .school_class_text {
    margin-top: 60px;
  }
}
.school_class_copy {
  font-size: 20px;
  margin-top: 32px;
  text-align: center;
}

/* -----カードフリップのCSS----- */

.school_flip-card-list {
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  width: 343px;
}

@media screen and (min-width: 768px) {
  .school_flip-card-list {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.school_flip-card {
  max-width: 343px;
  height: 250px;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
}

@media screen and (min-width: 768px) {
  .school_flip-card {
    width: 343px;
  }
}

/* タイトル（回転しない部分） */
.school_flip-card-title {
  position: absolute;
  font-size: 18px;
  top: -5px;
  left: 5px;
  background: linear-gradient(transparent 0%, transparent 75%, var(--list-color) 75%, var(--list-color) 100%);
}

.school_flip-card:nth-child(2n) .school_flip-card-title {
  left: auto;
  right: 10px;
}

/* ここから下は前と同じでOK */
.school_flip-card-inner {
  position: relative;
  width: 100%;
  height: 250px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

/* li に is-flipped が付いたら、inner だけ回転 */
.school_flip-card.is-flipped .school_flip-card-inner {
  transform: rotateY(180deg);
}

.school_flip-card-front,
.school_flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.school_flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.school_flip-card-btn {
  position: absolute;
  top: 70%; /* ★ 中央ではなく “少し下” に配置 */
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 6px 16px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.school_flip-card-back {
  background: #0f172a;
  color: #fff;
  padding: 16px;
  text-align: left;
  transform: rotateY(180deg);
}

.school_flip-card-back-title {
  background: linear-gradient(transparent 0%, transparent 75%, var(--list-color) 75%, var(--list-color) 100%);
  margin-top: 16px;
  text-align: center;
  font-size: 20px;
}

.school_flip-card-copy {
  font-size: 18px;
  margin-top: 16px;
  text-align: center;
}

.school_flip-card-text {
  margin-top: 8px;
  font-size: 14px;
}

.school_teaching_copy,
.school_coaching_copy {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .school_teaching_copy,
  .school_coaching_copy {
    text-align: center;
    margin-top: 60px;
    font-size: 20px;
    white-space: nowrap;
  }
}

.school_teaching_text {
  margin-top: 32px;
  font-size: 15px;
  font-family: "Noto Sans JP";
  font-weight: bold;
}

.scholl_teaching {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .school_teaching_df-box {
    display: flex;
    margin-top: 60px;
    gap: 24px;
    align-items: center;
    justify-content: center;
  }
  .school_coaching_df-box {
    display: flex;
    margin-top: 60px;
    gap: 24px;
    align-items: center;
    flex-direction: row-reverse;
  }
}

/* -------FAq---------- */

.service_faq {
  background: var(--gray-color02);
}

.service_faq_button {
  background: var(--white-color);
  width: 100%;
  box-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
  padding: 32px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

@media screen and (min-width: 1080px) {
  .service_faq_button {
    padding: 32px 24px 32px 64px;
  }
}

.service_faq_button:not(:first-child) {
  margin-top: 16px;
}

.service_faq_content {
  display: flex;
}

.service_faq_icon {
  font-size: 14px;
  font-weight: bold;
  padding-right: 16px;
}

.service_faq_icon__q {
  color: var(--primary-color);
}

.service_faq_icon__a {
  color: var(--accent-color);
}

.service_faq_txt {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  margin-right: 16px;
}

@media screen and (min-width: 1080px) {
  .service_faq_txt {
    font-size: 16px;
  }
}

.service_faq_mark {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.service_faq_mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 100%;
  background: var(--black-color);
}

.service_faq_mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: var(--black-color);
}

/* ---------- .case_section ---------- */

.case_section:nth-of-type(2n) {
  background: var(--gray-color02);
}

@media screen and (min-width: 1200px) {
  .case_section-inner {
    display: flex;
    justify-content: space-between;
    max-width: var(--content-width-lg);
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .case_section:nth-child(2n-1) .case_section-inner {
    flex-direction: row-reverse;
  }
}

.case_section_wrapper {
  max-width: var(--content-width-sm);
  margin: 0 auto;
}

@media screen and (min-width: 1200px) {
  .case_section_wrapper {
    max-width: 520px;
    margin: 0;
  }
}

.case_section_img {
  max-width: var(--content-width);
}

.case_section_content {
  width: 92%;
  max-width: var(--content-width);
  margin: 30px auto 0;
}

@media screen and (min-width: 1200px) {
  .case_section_content {
    width: 50%;
    margin: 0;
  }
}

.case_section_title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
}

@media screen and (min-width: 1200px) {
  .case_section_title {
    font-size: 24px;
    margin-top: 24px;
  }
}

.case_section_txt {
  margin-top: 40px;
}

@media screen and (min-width: 1200px) {
  .case_section_txt {
    margin-top: 24px;
  }
}

/* ---------- information ---------- */

.info_info_nav {
  margin-top: 40px;
}

.info_info_nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.info_info_nav-item {
  width: calc((100% - 24px) / 2);
  height: 40px;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .info_info_nav-item {
    width: calc((100% - 24px * 2) / 3);
    height: 40px;
    border-radius: 8px;
  }
}

.info_info_nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 16px;
  box-shadow: 0 0 0 3px var(--accent-color03);
  background-color: var(--accent-color03);
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.info_info_nav-link::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--white-color);
  border: 3px solid var(--list-color);
  border-radius: 8px;
}

.page-numbers.current {
  background: var(--list-color);
}

/* ---------- .single-info ---------- */

.single_post_title {
  font-size: 24px;
}

.single_post_text {
  margin-top: 40px;
}
@media screen and (min-width: 1200px) {
  .single-case_section_content {
    margin-top: 48px;
  }
}

.single-case_section_img {
  height: 300px;
  object-fit: cover;
  transition: 0.3s;
}

@media screen and (min-width: 1200px) {
  .single-case_section_img {
    height: 465px;
  }
}

.single-case_section_title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 40px;
}

.single-case_section_txt-content {
  margin-top: 40px;
}

.single-case_section_txt-content p:not(:first-child) {
  margin-top: 40px;
}

/* ---------- contact ---------- */

.contact_navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_navigation_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  padding: 1em 2em;
  border: 1px solid #e7e7e7;
  border-radius: 25px;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #fff;
  background-color: var(--white-color);
  color: var(--black-color);
  font-weight: 600;
}

.contact_navigation_link:hover {
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #fff;
}

.contact_contact_line {
  margin: 40px auto 0;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  background: var(--sub-color);
  padding: 28px 16px;
}

.contact_contact_line-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact_contact_line-svg-wrapper {
  width: 60px;
  height: 60px;
}

.contact_contact_line-svg {
  width: 100%;
  height: 100%;
}

.contact_contact_line-text {
  text-align: center;
}

.contact_contact_line-img-wrapper {
  width: 270px;
  margin: 32px auto 0;
  animation: zoomLoop 1.8s ease-in-out infinite;
}

@keyframes zoomLoop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* 少しだけ拡大 */
  }
  100% {
    transform: scale(1);
  }
}

.contact_contact_text {
  text-align: center;
  margin-top: 40px;
}

/* ------form------- */

.contact_form_list {
  margin-top: 40px;
}

.contact_form_heading {
  font-weight: bold;
  position: relative;
}

.contact_form_heading:not(:first-child) {
  margin-top: 40px;
}

.contact_form_example {
  color: var(--gray-color);
  font-size: 12px;
  font-weight: normal;
  margin-left: 16px;
}

.contact_form_detail {
  margin-top: 16px;
}

.contact_form_input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  padding: 0 8px;
}

.contact_form_required {
  font-size: 12px;
  font-weight: bold;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color03);
  color: var(--white-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contact_form_label {
  font-size: 14px;
  font-weight: bold;
  padding-left: 16px;
}

.contact_form_textarea {
  width: 100%;
  height: 250px;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  padding: 8px 16px;
  resize: none;
}

.contact_form_privacy-wrapper {
  font-size: 14px;
  font-weight: bold;
  margin-top: 43px;
  text-align: center;
}

.contact_form_privacy-link {
  color: var(--accent-color03);
  margin-left: 16px;
  text-decoration: underline;
  text-decoration-thickness: 2px; /* 太さ */
  text-underline-offset: 3px; /* 文字との距離 */
  text-decoration-color: var(--accent-color03); /* 任意の色 */
}

.contact_form_btn-wrapper {
  margin-top: 40px;
}

.contact_btn_input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--accent-color02);
  border-radius: 8px;
  color: var(--white-color);
}
/* チェックボックスデザイン */
input[type="checkbox"] {
  cursor: pointer;
  padding-left: 30px; /*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 2px solid var(--gray-color);
  width: 24px; /*チェックボックスの横幅*/
  height: 24px; /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
  border-radius: 4px;
}

/* フォーカスが当たっている時のデザインを追加 */
input[type="checkbox"]:focus-visible::before {
  border-color: blue;
}

input[type="checkbox"]::after {
  border-bottom: 3px solid var(--accent-color03); /*チェックの太さ*/
  border-left: 3px solid var(--accent-color03); /*チェックの太さ*/
  opacity: 0; /*チェック前は非表示*/
  height: 10px; /*チェックの高さ*/
  width: 17px; /*チェックの横幅*/
  transform: rotate(-45deg);
  top: -7px; /*チェック時の位置調整*/
  left: 9px; /*チェック時の位置調整*/
}

input[type="checkbox"]:checked::after {
  opacity: 1; /*チェック後表示*/
}

/* ---------- privacy ---------- */
.privacy h2 {
  font-weight: bold;
  font-size: 18px;
}

.privacy h2:not(:first-child) {
  margin-top: 40px;
}

.privacy p {
  margin-top: 24px;
  font-size: 14px;
}

/* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: auto;
}

.js_school-swiper {
  position: relative;
  overflow: hidden; /* ★ これが一番効く */
  width: 100%;
}

.js_staff_mark.is-open::before,
.js_staff_mark.is-open::after {
  top: 2px;
  transform: translate(-50%) rotate(180deg);
}

.js_faq_mark.is-open::before {
  opacity: 0;
}

.js_staff-a {
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.js_faq-a {
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.staff_card_content__a {
  margin-top: 0;
  transition: 0.3s;
}

.js_staff.is-active .service_faq_content__a {
  margin-top: 40px;
}

.js_faq.is-active .service_faq_content__a {
  margin-top: 40px;
}

.js_h-slide_trigger {
  overflow: hidden;
}

/* WordPressにすることによって必要なスタイル */

.error404-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  text-align: center;
  padding: 20px;
}

.error404-title {
  font-size: 28px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  color: #333;
  margin-bottom: 16px;
  white-space: nowrap;
}

.error404-desc {
  margin-top: 12px;
  font-size: 16px;
  color: #555;
}

.error404-btn {
  margin-top: 24px;
  padding: 12px 28px;
  background: #333;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.error404-btn:hover {
  background: #555;
}

/* 点滅するカーソル */
#typing-text::after {
  content: "|";
  margin-left: 4px;
  opacity: 1;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* 404.php */
.notfound_txt {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

/* contact form */
.wpcf7-radio {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1080px) {
  .wpcf7-radio {
    flex-direction: row;
  }
}

.wpcf7-radio .wpcf7-list-item {
  margin-top: 24px;
}

.wpcf7-radio .wpcf7-list-item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .wpcf7-radio .wpcf7-list-item {
    margin: 24px 40px 0 0;
  }
}

@media screen and (min-width: 1080px) {
  .wpcf7-radio .wpcf7-list-item:not(:first-child) {
    margin-top: 24px;
  }
}

.wpcf7-radio .wpcf7-list-item label {
  appearance: radio;
  display: flex;
  align-items: center;
}

.wpcf7-radio .wpcf7-list-item input[type="radio"] {
  appearance: radio;
}

.wpcf7-list-item-label {
  font-size: 12px;
  font-weight: bold;
  padding-left: 10px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-acceptance + .contact_form_privacy-link {
  margin: 0;
}

/* デバッグ用：とりあえずアニメーションしない状態 */
.flow-grid {
  padding-block: 40px;
}

/* 外にはみ出した分を隠す */
.flow-grid_track {
  overflow-x: hidden;   /* 横だけ隠す */
  overflow-y: visible;
}

/* フォトグリッド＋横方向に流す */
.flow-grid_inner {
  display: grid;
  grid-auto-flow: column;               /* 列方向に次々と並べる */
  grid-auto-columns: 160px;             /* 各カードの幅 */
  grid-template-rows: repeat(2, 160px); /* 2段構成。1マス160px高さ */
  gap: 16px;
  animation: flowGrid 4s linear infinite;
  will-change: transform;
}

.flow-grid_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* 右 → 左にずっと流す */
@keyframes flowGrid {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 同じ並びを2回分出しているので -50% で1セット分だけ左へ */
    transform: translateX(-50%);
  }
}



