/* ========== reset & base ========== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: repeating-linear-gradient(-45deg, #d2f0ff, #d2f0ff 3px, #ffffff 3px, #ffffff 6px);
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  /* ← 本文は標準 */
}

.mochiy-pop-p-one-regular {
  font-family: "Mochiy Pop P One", sans-serif;
}

.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
}

main {
  padding: 20px;
}

/* ===== Main Visual（背景＋見出し）===== */
/* ---- Main Visual（高さ固定＋clip-path維持）---- */
.main-visual {
  position: relative;
  height: 400px;
  /* PCは固定高さ。必要なら 40vh に変更可 */
  min-height: 260px;
  overflow: hidden;
  background-color: #fff;
  /* ストライプ透け防止 */

  /* 下端カーブを復活 */
  clip-path: ellipse(150% 100% at 50% 0%);
  -webkit-clip-path: ellipse(150% 100% at 50% 0%);
}

/* 背景画像を全面に敷く */
.main-visual-img {
  position: absolute;
  inset: 0;
  /* top:0 right:0 bottom:0 left:0 の省略形 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 顔が切れるなら contain に変更可 */
  z-index: 0;
}

/* テキストのレイアウト用ラッパー（本文と同じ横幅で中央寄せ） */
.title-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  /* ← これが “catch-text 下寄せ” の肝 */
  max-width: 600px;
  /* 本文と幅を揃える */
  width: 100%;
  margin: 0 auto;
  /* 中央寄せ */
  padding: 16px 16px 10px;
  /* 上に詰めて h1/h2 を上寄せ */
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  /* h1 → h2 → catch の縦並び */
  align-items: flex-start;
  /* 左寄せ */
  justify-content: flex-start;
  /* 上寄せ */
}

/* h1 / h2 の間隔（微調整） */
.main-title {
  margin: 0 0 .6rem 0;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  line-height: 1.2;
}

.sub-title {
  position: relative;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  margin: 0;
  /* margin-top は消す */
}

/* 下に20pxずらす */
.sub-title .text-fill,
.sub-title .text-stroke {
  position: absolute;
  inset: 0 auto auto 0;
  transform: translateY(45px);
  /* ← ここで下方向に移動 */
  white-space: nowrap;
}


.sub-title {
  margin: 0 0 .8rem 0;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-family: "M PLUS 1p", sans-serif;
  /* h2だけM PLUS 1p */
  font-weight: 700;
  /* 少し太く */
}

/* キャッチコピーは常に下部へ固定（白フチで可読性UP） */
.catch-text {
  margin-top: auto;
  /* ← 一番下へ押し下げる */
  align-self: flex-end;
  /* 右寄せしたいとき */
  text-align: right;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  line-height: 1.6;
  font-weight: 700;
  color: #006f97;

  /* 可読性（白縁＋薄影） */
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}

/* スマホは高さ・画像切替のみ（見出し位置は同ロジックで安定） */
@media (max-width: 768px) {
  .main-visual {
    height: 40vh;
    min-height: 240px;
  }

  .main-visual-img {
    content: url("../images/kamecro_top_sp.webp");
  }

  .title-wrap {
    padding: 14px 14px 10px;
  }
}

/* h1: グラデ＋白フチ＋青シャドウ */
.main-title {
  position: relative;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 .6rem 0;
}

.main-title .text-fill {
  position: absolute;
  inset: 0 auto auto 0;
  background: linear-gradient(to right, #e63178, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  z-index: 2;
}

.main-title .text-stroke {
  position: absolute;
  inset: 0 auto auto 0;
  color: transparent;
  -webkit-text-stroke: 3px #fff;
  /* 白フチ */
  text-shadow:
    3px 3px 0 #006f97,
    4px 4px 0 #006f97,
    5px 5px 0 #006f97;
  /* 濃い青シャドウ */
  white-space: nowrap;
  z-index: 1;
}


/* h2: 濃い青＋太め白フチ（影なし） */
.sub-title {
  position: relative;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  margin: 0 0 .8rem 0;
}

.sub-title .text-fill {
  position: absolute;
  inset: 0 auto auto 0;
  color: #006f97;
  -webkit-text-fill-color: #006f97;
  z-index: 2;
  white-space: nowrap;
}

.sub-title .text-stroke {
  position: absolute;
  inset: 0 auto auto 0;
  color: transparent;
  -webkit-text-stroke: 4px #fff;
  /* 白フチを太めに */
  z-index: 1;
  white-space: nowrap;
}


/* 右下に寄せたいキャッチは「下余白を自動で押して」下寄せ */
.catch-text {
  margin-top: auto;
  /* ← これで“最下部”へ押し下げる */
  text-align: right;
  /* 右寄せ（任意なら left に） */
  font-size: clamp(.85rem, 1.8vw, 1rem);
  line-height: 1.6;
  font-weight: 700;
  color: #004060;
  /* 白縁取り */
  -webkit-text-stroke: 3px #fff;
  /* 白いフチを太めに */
  paint-order: stroke fill;
  /* strokeを優先描画 */
  /* 背景ボックス不要。読みづらい画像の時だけ下行を有効化 */
  /*text-shadow: 0 0 6px rgba(255,255,255,.7);  */
}

/* SPで少しタイト目に */
@media (max-width: 480px) {
  .catch-text {
    margin-top: clamp(8px, 5vh, 60px);
  }
}

/* スマホだけ適用 */
@media (max-width: 768px) {
  .main-visual {
    height: 40vh;
    /* 既に40vhにしたとのことなので明示 */
    min-height: 260px;
    position: relative;
  }

  .mv-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* 縦並び */
  }

  .catch-text {
    margin-top: auto;
    /* ← これで最下部へ固定 */
    text-align: right;
    font-weight: 700;
    font-size: clamp(.95rem, 2vw, 1.15rem);
    line-height: 1.6;
    color: #006f97;
    /* 読みやすさ向上（白フチ＋薄影） */
    -webkit-text-stroke: 2px #fff;
    paint-order: stroke fill;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    /* 画面端の安全領域（iPhone対策） */
    padding: 0 16px calc(8px + env(safe-area-inset-bottom));
  }
}



/* ========== content area ========== */
.content {
  /* ストライプは本文側に適用（ヘッダーは白で隠す） */
  padding: 20px 16px 40px;
}

.content-box {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin: 20px auto;
  max-width: 640px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}

.section-title {
  width: 100%;
  margin: 0 0 1rem;
  padding: .5rem 1rem;
  background: #006f97;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.15rem;
}

/* カレンダーとボタンの間に余白を確保 */
.calendar {
  margin-top: .5rem;
}

.apply-btn-wrap {
  margin-top: 1.25rem;
}

/* CTAボタン */
.cta-button {
  display: inline-block;
  padding: .85rem 1.6rem;
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
  transition: transform .2s, box-shadow .2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}

.note {
  font-size: .95rem;
  color: #444;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: .35rem;
}

/* 指導者レイアウト */
.instructor {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}

.teacher-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.teacher-info {
  text-align: left;
  max-width: 260px;
}

@media (max-width: 480px) {
  .instructor {
    flex-direction: column;
    text-align: center;
  }

  .teacher-info {
    text-align: center;
  }
}

/* ========== hamburger (SP only) ========== */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
}

@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }
}

.checkbox {
  display: none;
}

/* ▼ サイズを少し大きく＆“柔らかい星”に。影も付ける */
.button {
  position: fixed;
  top: 4vh;
  /* 少し内側に */
  right: 4vw;
  z-index: 2000;

  height: 4.4rem;
  /* 3.5rem → 4.4rem */
  width: 4.4rem;

  background: #ffd000e3;

  /* 丸みを感じる少し“柔らかい星”の多角形（尖りを弱めた座標）*/
  clip-path: polygon(50% 4%,
      60% 34%,
      92% 34%,
      66% 54%,
      76% 88%,
      50% 68%,
      24% 88%,
      34% 54%,
      8% 34%,
      40% 34%);

  /* 影（輪郭に沿って付く） */
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .22));
  /* ぷっくり感を出すなら↓も足してOK
     box-shadow: 0 6px 14px rgba(0,0,0,.18) inset; */
  cursor: pointer;
}

/* 拡大する背景も星型＆少し小さめに */
.background {
  position: fixed;
  top: calc(4vh + .4rem);
  /* ボタンに追従させる */
  right: calc(4vw + .4rem);
  z-index: 1000;

  height: 3.6rem;
  /* 3rem → 3.6rem */
  width: 3.6rem;

  clip-path: polygon(50% 4%,
      60% 34%,
      92% 34%,
      66% 54%,
      76% 88%,
      50% 68%,
      24% 88%,
      34% 54%,
      8% 34%,
      40% 34%);
  background-image: radial-gradient(rgb(69, 155, 154), black);

  transition: transform .8s cubic-bezier(.86, 0, .07, 1);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .22));
}

/* 開いたときに背景を拡大して全面化（既存のままでOK） */
.checkbox:checked~.background {
  transform: scale(80);
}

/* ナビ（既存のまま） */
.nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: -60vw;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all .8s;
}

.checkbox:checked~.nav {
  opacity: 1;
  width: 100%;
  right: 0;
}

/* ▼ 三本線（ハンバーガー）をボタン幅の70%に */
.icon {
  position: absolute;
  top: 30%;
  left: 25%;
  width: 50%;
  /* 50%に */
  max-width: 0.5rem;
  /* でか過ぎ防止 */
  height: 2px;
  transform: translate(-50%, -50%);
  background-color: white;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  /* 親(.icon)の 100% → 実質ボタン幅の70% */
  height: 2px;
  background-color: white;
  transition: all .2s;
}

.icon::before {
  top: -0.8rem;
}

.icon::after {
  top: 0.8rem;
}

/* hover時の微アニメ（任意） */
.button:hover .icon::before {
  top: -1rem;
}

.button:hover .icon::after {
  top: 1rem;
}

/* Xに変形（既存のまま調整） */
.checkbox:checked+.button .icon {
  background-color: transparent;
}

.checkbox:checked+.button .icon::before {
  top: 0;
  transform: rotate(135deg);
}

.checkbox:checked+.button .icon::after {
  top: 0;
  transform: rotate(-135deg);
}



.nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: -60vw;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all .8s;
}

.list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}

.item {
  margin: 1rem;
}

.link {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.checkbox:checked~.background {
  transform: scale(80);
}

.checkbox:checked~.nav {
  opacity: 1;
  width: 100%;
  right: 0;
}

.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon,
.icon::before,
.icon::after {
  width: 3rem;
  height: 2px;
  background-color: green;
  display: inline-block;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all .2s;
}

.icon::before {
  top: -.8rem;
}

.icon::after {
  top: .8rem;
}

.button:hover .icon::before {
  top: -1rem;
}

.button:hover .icon::after {
  top: 1rem;
}

.checkbox:checked+.button .icon {
  background-color: transparent;
}

.checkbox:checked+.button .icon::before {
  top: 0;
  transform: rotate(135deg);
}

.checkbox:checked+.button .icon::after {
  top: 0;
  transform: rotate(-135deg);
}

/* ========== footer ========== */
.footer {
  background: #006f97;
  color: #fff;
  text-align: center;
  padding: 6px 0;
  font-size: .85rem;
}


/* 小さめ端末での余白と文字サイズ微調整 */
@media (max-width: 480px) {
  .mv-catch {
    right: 12px;
    left: 12px;
    /* はみ出し防止で左右余白 */
    max-width: none;
    /* 左右固定にしたので解除 */
    font-size: 15px;
  }
}

