:root {
  --green-bg: #5ba963;
  /* #66bc6e*/
  --card-white: #ffffff;
  --accent: #57b06f;
  --muted: #6b6b6b;
  --maxw: 1280px;
  --radius: 14px;
  --shadow: 0 8px 20px rgba(0, 0, 0, .08);
  --stage-padding: 26px;
  --radius-lg: 18px;
  --peek2: 30%;
  /* スライダーのチラ見え（PC） */
  --link:#57b06f;
  --link-hover: #3f8f56; /* 少し暗く */
  --text-main: #333;
}

* {
  box-sizing: border-box;
}

/* ===== Typography spacing ===== */
h1 {
  margin-bottom: 1.5em;
}

h2 {
  margin-bottom: 1.2em;
}

h3 {
  margin-bottom: 1em;
}

h4,
h5,
h6 {
  margin-bottom: 0.8em;
}

p {
  margin-bottom: 1em;
  line-height: 1.7;
}

ul,
ol {
  margin-bottom: 1em;
  padding-left: 1.4em;
}

li {
  margin-bottom: 0.4em;
}

section {
  margin-bottom: 4rem;
}

/* 詰めたい時用 */
.section-tight {
  margin-bottom: 2rem;
}

h1+p,
h2+p,
h3+p {
  margin-top: -0.3em;
}

p+ul,
p+ol,
p+dl {
  margin-top: -0.4em;
}

section> :first-child {
  margin-top: 0;
}

section> :last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 2.5rem;
  }
}

a {
  color: var(--link);
  text-decoration: underline;
}

a:hover {
  color: var(--link-hover);
}

.nav a,
.btn a,
.btn {
  color: inherit;
  text-decoration: none;
}

.nav a:hover,
.btn:hover,
.btn a:hover {
  color: inherit;
  text-decoration: none;
}


html,
body {
  height: 100%;
  margin: 0;
  font-family: 'Zen Maru Gothic', Meiryo, sans-serif;
  background: var(--green-bg);
  font-size: 16px;
  color: var(--text-main);
}

/* card */
.stage {
  max-width: var(--maxw);
  margin: 28px auto;
  background: var(--card-white);
  border-radius: 18px;
  padding: var(--stage-padding);
  box-shadow: var(--shadow);
  position: relative;
  width: calc(100% - 32px);
}

/* ===== Header ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-title {
  font-size: 14px;
  font-weight: 900;
}

.logo {
  width: 250px;
  /* height: 56px; */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  color: var(--accent);
}

.logo-link {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  opacity: 0.85;
}

/* ===== Main Nav (PC) ===== */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  display: flex;
  align-items: center;
  padding: 0 14px;
  position: relative;
}

.main-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav li+li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  border-left: 2px dotted rgba(98, 191, 120, .6);
}

.main-nav .nav-item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 3px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-scholarship::before {
  background-image: url("../images/nav01.svg");
}

.icon-worker::before {
  background-image: url("../images/nav02.svg");
}

.icon-message::before {
  background-image: url("../images/nav03.svg");
}

.icon-about::before {
  background-image: url("../images/nav04.svg");
}

.icon-activities::before {
  background-image: url("../images/nav05.svg");
}

.icon-contact::before {
  background-image: url("../images/nav06.svg");
}

.main-nav a:hover {
  color: var(--accent);
}

/* ===== Hamburger button ===== */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid #66bc6e;
  background: #fff;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 3000;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #66bc6e;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* backdrop（JSで表示制御） */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 2000;
  display: none;
}

/* ===== Slider（PEEK） ===== */
.mv {
  position: relative;
  margin-top: 12px;
  overflow: hidden;
}

.mv-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 14px;
  isolation: isolate;
}

.mv-track {
  display: flex;
  gap: 0;
  transition: transform .6s cubic-bezier(.2, .9, .2, 1);
  will-change: transform;
}

.mv-slide {
  flex: 0 0 calc(100% - var(--peek2));
  min-width: calc(100% - var(--peek2));
  height: 560px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}

.mv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* スライド内リンクを全面に */
.mv-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* 画像もそのまま全面 */
.mv-slide-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* クリックできる感（任意） */
.mv-slide-link {
  cursor: pointer;
}

.mv-slide-link:focus-visible {
  outline: 3px solid rgba(98, 191, 120, 0.6);
  outline-offset: 4px;
  border-radius: 14px;
}

.mv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #66bc6e;
  border: 2px solid #66bc6e;
  background: rgba(255, 255, 255, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
  cursor: pointer;
  z-index: 10;
}

.mv-arrow.prev {
  left: 12px;
}

.mv-arrow.next {
  right: 12px;
}

.mv-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

figure {
  margin: 0;
}

/* ===== Slider arrows : SP size down ===== */
@media (max-width: 560px) {
  .mv-arrow {
    width: 32px;
    height: 32px;
    border-width: 1.5px;
    font-size: 12px;
    /* ◀ ▶ のサイズ */
  }

  .mv-arrow.prev {
    left: 8px;
  }

  .mv-arrow.next {
    right: 8px;
  }
}


/* ===== News ===== */
.news-wrap {
  display: flex;
  gap: 22px;
  margin-top: 26px;
  align-items: flex-start;
}

.news-left {
  width: 160px;
  padding-left: 6px;
}

.news-left h2 {
  color: var(--accent);
  font-size: 26px;
  margin: 4px 0 10px;
}

.news-list {
  flex: 1;
}

.news-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  /* border-bottom: 1px dashed rgba(98, 191, 120, .6); */
}

.news-row .date {
  color: var(--text-main);
  width: 90px;
}

.news-row .txt {
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  /* 幅指定をしない場合は以下を消す */
  flex: 1 1 auto;
  min-width: 0;
  max-width: 380px;
}

/* ===== News tag ===== */
.news-row .tag {
  width: 64px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 0 8px;
  white-space: nowrap;
  box-sizing: border-box;
}

@supports (-moz-appearance: none) {
  .news-row .tag {
    transform: translateY(-1px);
  }
}

/* ===== News list (SP) 崩れ対策：2段レイアウト ===== */
@media (max-width: 560px) {
  .news-row {
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
  }

  .news-row .date {
    width: auto;
    flex: 0 0 auto;
    font-size: 12px;
  }

  .news-row .tag {
    width: auto;
    flex: 0 0 auto;
    height: 22px;
  }

  .news-row .txt {
    flex: 0 0 100%;
    font-size: 13px;
    line-height: 1.6;
  }
}



/* ジャンル別カラー例 */
.tag-topics {
  background: #66bc6e;
  color: #FFF;
}

.tag-update {
  background: #66bc6e;
  color: #FFF;
}

/* ===== News: show only first 3 rows ===== */
.news-list .news-row {
  display: flex;
}

.news-wrap.news-archive .news-row:nth-child(n + 4) {
  display: flex;
}

.news-more {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.news-more::after {
  content: " ›";
}

.news-more:hover {
  opacity: 0.7;
}

/* ===== PC：Newsをセンター寄せ ===== */
@media (min-width: 769px) {
  .news-wrap {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .news-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}


/* ===== NEWS一覧ページ調整 ===== */
.news-wrap.news-archive {
  display: block;
  max-width: 920px;
  width: 100%;
  margin: 24px auto 0;
}

.news-archive-inner {
  max-width: 920px;
  margin: 0 auto;
}

.news-wrap.news-archive .news-list {
  width: 100%;
}

/* 4行目以降も表示 */
.news-wrap.news-archive .news-row:nth-child(n + 4) {
  display: flex;
}

/* ===== NEWS ページ番号式ページャー ===== */
.news-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 40px 0 0;
}

.pager-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
}

.pager-btn:disabled {
  opacity: .4;
  cursor: default;
}

.pager-numbers {
  display: flex;
  gap: 6px;
}

.pager-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pager-number.is-active {
  background: var(--accent);
  color: #fff;
  pointer-events: none;
}




/* ===== hero-copy ===== */
.hero-copy {
  position: relative;
  margin: 60px 0 30px;
}

.hero-copy h1 {
  font-size: 32px;
  color: var(--accent);
  /* margin: 30px 0; */
  margin: 10px 0 30px;
  text-align: center;
}

.hero-copy p {
  max-width: 730px;
  margin: 0 auto;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* 文章中のlogo */
.hero-logo{
  display: flex;
  justify-content: center;
  margin: 24px auto 0;
}

.hero-logo img{
  max-width: 140px; 
  width: 60%;
  height: auto;
}

@media (max-width: 768px){
  .hero-logo img{
    max-width: 120px;
  }
}


/* =========================
   DECORATIONS (Hero / News)
========================= */

/* --- hero（花：左 / 風船：右） --- */
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  /* テキストより後ろにしたい場合は 0 に */
}

.hero-copy h1,
.hero-copy p {
  position: relative;
  z-index: 2;
  /* 装飾より前に */
}

/* 花：左横（上下にふわふわ） */
.hero-deco.flower {
  width: 76px;
  left: calc(50% - 480px);
  top: 8px;
  animation: deco-float 5.5s ease-in-out infinite;
}

/* 風船：右横（ふわふわ＋少し揺れ） */
.hero-deco.balloon {
  width: 76px;
  left: calc(50% + 420px);
  top: 0px;
  animation: balloon-float 6.5s ease-in-out infinite;
}

/* --- News（鳥：右横） --- */
.news-wrap {
  position: relative;
  /* これが基準 */
}

.news-deco.bird {
  position: absolute;
  width: 70px;
  right: 60px;
  top: 6px;
  pointer-events: none;
  z-index: 1;
  animation: bird-drift 10s ease-in-out infinite;
}

/* animations */
@keyframes deco-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes balloon-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(0, -12px) rotate(2deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes bird-drift {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-28px);
  }

  100% {
    transform: translateX(0);
  }
}

/* キラキラ（静止） */
.news-deco.sparkle {
  position: absolute;
  width: 70px;
  right: -24px;
  /* 鳥の右横に置く場合：鳥(right:16px)より少し左に */
  top: 10px;
  pointer-events: none;
  z-index: 1;
  animation: none;
  /* ← 動かさない */
}

/* 葉っぱ（静止）共通 */
.hero-deco.leaf {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  /* 花/風船より後ろにしたい場合 */
  animation: none;
  /* ← 静止 */
  opacity: 0.95;
}

/* 花の下（左側） */
.hero-deco.leaf-left {
  width: 20px;
  left: calc(50% - 500px);
  /* 花(50%-480px)より左へ */
  top: 110px;
  /* 花(top:8px)の下に来る位置 */
}

/* 風船の下（右側） */
.hero-deco.leaf-right {
  width: 80px;
  left: calc(50% + 400px);
  /* 風船(50%+420px)より少し右へ */
  top: 78px;
}


/* SPでは非表示（文字が詰まるのを防止） */
@media (max-width: 768px) {

  .hero-deco,
  .news-deco {
    display: none;
  }
}



/* ===== イラスト全体の土台 ===== */
.illu-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 40px 0 20px;
}

/* 人物（主役） */
.illu-people {
  width: min(980px, 92%);
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

@media (max-width: 560px) {
  .illu-people {
    width: 96%;
  }
}



.info-box {
  text-align: center;
  padding: 28px 10px;
  border-radius: 10px;
  margin: 12px auto;
  background: transparent;
  color: var(--muted);
}




/* =========================
   Footer（BASE）
========================= */
.footer {
  color: #fff;
  padding: 10px 0 40px 20px;
  font-size: 14px;
}

.footer-inner {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

/* ===== Footer Nav ===== */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
}

.footer-nav li::before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/icon-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: filter .25s ease;
}

.footer-nav li:hover::before {
  filter: brightness(.75);
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}

.footer-nav a:hover {
  opacity: .7;
}

/* 下層ページ用 */
.footer-nav li.is-child {
  position: relative;
  padding-left: 48px;
  /* インデント */
  margin-bottom: 4px;
}

.footer-nav li.is-child a {
  font-size: 13px;
  line-height: 1;
  opacity: 0.9;
  transition: filter .2s ease;
}

.footer-nav li.is-child a:hover {
  filter: brightness(.75);
}

.footer-nav li.is-child-end {
  margin-bottom: 12px;
}

/* 既存のSVG矢印を消す */
.footer-nav li.is-child::before {
  content: none;
}

/* 「＞」を表示 */
.footer-nav li.is-child::after {
  content: ">";
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
}

/* ===== Footer Info ===== */
.footer-info h3 {
  margin: 6px 0 0;
  line-height: 1.6;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-info p {
  font-size: 1rem;
  line-height: 1.8;
}

.footer-info .footer-oldname {
  margin-top: 2%;
  font-size: 13px;
  line-height: 1.4;
}

/* ===== Footer Map ===== */
.footer-map{
  width: 100%;
  aspect-ratio: 16 / 10; /* 好みで 16/9, 4/3 でもOK */
  border-radius: 20px;
  overflow: hidden;       /* 角丸を確実に効かせる */
}

.footer-map iframe{
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (min-width: 769px){
  .footer-map{
    aspect-ratio: 4 / 3;
  }
}

/* ===== Footer Bottom（お問い合わせボタン） =====
   ※ここは “壊れやすい指定” を入れない。PC/SPで分けて制御。
*/
.footer-bottom {
  display: flex;
  align-items: center;
}

/* ボタン */
.footer-btn {
  display: inline-block;
  background: #fff;
  color: #00a86b;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity .2s;
}

.footer-btn:hover {
  opacity: .8;
}

/* =========================
   Footer Bottom（PC）
   - footer-info は左揃えのまま
   - ボタンは「footer-info列の中央」に配置
========================= */
@media (min-width: 769px) {
  .footer-bottom {
    justify-content: center;
    margin-top: 20px;
  }
}

/* =========================
   Footer Bottom（SP）
   - スマホはボタン中央（あなたの現状仕様）
========================= */
@media (max-width: 768px) {
  .footer-bottom {
    justify-content: center;
    margin-top: 16px;
  }
}

/* =========================
   Footer banners (PNG)
========================= */
.footer-banners {
  width: 90%;
  max-width: 1260px;
  margin: 80px auto 0;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  /* PCは横並び */
}

.footer-banner {
  flex: 1 1 0;
  min-width: 0;
  height: 64px;
  display: block;
  overflow: hidden;
  transition: transform .2s ease, filter .2s ease;
}

.footer-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* hover / tap */
.footer-banner:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.footer-banner:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

/* SP：2列固定（2個ずつ） */
@media (max-width: 768px) {
  .footer-banners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 6px;
    /* ← 行間詰め */
    margin-top: 32px;
    /* 詰めたいなら 24px などに */
  }

  .footer-banner {
    width: 100%;
    height: 56px;
    min-width: 0;
  }
}

/* さらに小さい端末は1列（任意） */
@media (max-width: 420px) {
  .footer-banners {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Footer copyright
========================= */
footer small {
  display: block;
  width: 90%;
  max-width: 1260px;
  margin: 24px auto 0;
  padding-top: 12px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

/* =========================
   Footer（SP：ナビをボタン風）
   ※ここは “別mediaにしてネストしない” のが重要
========================= */
@media (max-width: 768px) {

  /* 下層リンクは出さない */
  .footer-nav li.is-child {
    display: none;
  }

  /* リスト基本調整 */
  .footer-nav {
    margin: 0;
    padding: 0;
  }

  .footer-nav li {
    padding: 0;
    margin: 0;
    position: relative;
  }

  /* 矢印 */
  .footer-nav li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("../images/icon-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }

  /* ボタン風リンク */
  .footer-nav a {
    display: block;
    padding: 14px 14px 14px 28px;
    color: #fff;
    text-decoration: none;
    transition: background-color .2s ease;
  }

  .footer-nav a:hover,
  .footer-nav a:active {
    background: rgba(255, 255, 255, 0.12);
  }

  /* 下線 */
  .footer-nav li a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  }

  /* 中央寄せにしたい場合だけ */
  .footer-info {
    margin-left: auto;
    margin-right: auto;
  }
}

/* header/footerの読み込み前に場所を確保してズレを防ぐ */
#header { min-height: 100px; }
#footer { min-height: 300px; }



/* ===== reveal animation（headerには付けない） ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .main-nav a {
    font-size: 12px;
  }

  .main-nav li {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {

  /* ハンバーガー表示 */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    margin-right: 16px;
  }

  /* PCナビの装飾はSPでは不要 */
  .main-nav li+li::after {
    display: none;
  }

  /* SPドロワー化（id限定で安定） */
  #spNav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(86vw, 360px);
    height: 100dvh;
    background: #fff;
    box-shadow: -12px 0 28px rgba(0, 0, 0, .12);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 2500;
    padding: 72px 20px 20px;
    display: block;
  }

  #spNav.is-open {
    transform: translateX(0);
  }

  #spNav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  #spNav li {
    padding: 12px 0;
  }

  #spNav li+li {
    border-top: 1px solid rgba(98, 191, 120, 0.35);
    /* #66bc6e */
  }

  /* 余白を少し整える（任意） */
  #spNav li {
    padding: 14px 0;
  }

  #spNav a {
    font-size: 16px;
    padding: 10px 8px;
  }

  /* スライダー：SPはチラ見せしない */
  :root {
    --peek2: 0%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .stage {
    margin: 18px 16px;
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: 1.5rem;
  }

  .illu {
    width: 64px;
    height: 110px;
  }

  .news-wrap {
    flex-direction: column;
  }

  .news-left {
    width: 100%;
  }

  :root {
    --peek2: 0%;
  }

  .mv-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 230px;
  }

  .mv-slide img {
    object-position: 50% 50% !important;
  }
}