/* ==============================
   BASE
============================== */
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
p {
  margin: 0 0 1em;
}
h1, h2, h3 {
  margin: 0 0 0.6em;
  line-height: 1.4;
}

a { color: #333; }
a:hover {color:#0098e8; }
/* ==============================
   HEADER 共通
============================== */
.site-header {
  width: 100%;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1560px;
  margin: 0 auto;
  height: 90px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.logo img {
	width: 300px;
	height: auto;
}
.gnav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.gnav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gnav a {
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 600;
}
.gnav a:hover {
  color: #0098e8;
}
/* 言語スイッチ共通 */
.lang {
  font-size: 14px;
  white-space: nowrap;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 6px 12px;
  background: #e9f6ff;
  color: #555;
  text-decoration: none;
  line-height: 1;
}
.lang-btn + .lang-btn {
  border-left: 1px solid #ffffff;
}
.lang-btn.is-active {
  background: #0070d8;
  color: #fff;
}
.lang-btn:hover:not(.is-active) {
  background: #d8edff;
}
/* ==========================
   ハンバーガー 共通
========================== */
.hamburger {
  width: 34px;
  height: 26px;
  display: none; /* デフォは非表示（PC） */
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333; /* ← ライン色 */
  border-radius: 3px;
  transition: .3s;
}
/* 開いたときの変形 */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
@media (min-width: 769px) {
  #why, #katachi, #kyoten, #zero, #admission-info, #event, #contact {
    scroll-margin-top: 40px;
  }
  #naze, #aim {
    scroll-margin-top: 96px;
  }
  .logo {
    margin-right: 40px;
    order: 1;
  }
 .gnav {
    order: 2;
  }	
  .lang {
    order: 3;
    margin-left: 0;
    display: inline-flex;
    overflow: hidden;
    border: 1px solid #d0e9ff;
    font-size: 13px;
  }
	  .header-inner {
    padding: 12px;
  gap: 10px;
}
  .hamburger {
    display: none; /* PCでは出さない */
  }
}
@media (max-width: 1024px) {
	 .logo {
    order: 1;
  }

  .gnav {
    order: 2;
    margin-left: auto;
	max-width: 62%;
  }	
	 .lang {
    order: 3;
  }
}
@media (max-width: 768px) {
  #why, #katachi, #kyoten, #zero, #admission-info, #event, #contact, #naze, #aim {
    scroll-margin-top: 80px;
  }

  /* ロゴ｜言語｜ハンバーガー の順 */
  .logo {
    order: 1;
    max-width: 55%;
    font-size: 14px;
  }
  .lang {
    order: 2;
    margin-left: auto;
    margin-right: 12px;
    display: inline-flex;
    overflow: hidden;
    border: 1px solid #d0e9ff;
  }
  .gnav {
    display: none; /* PCナビ非表示 */
  }
  .hamburger {
    order: 3;
    display: flex !important; /* ← ここで確実に表示 */
    z-index: 9999;
  }
  .hamburger span {
    display: block !important; /* 念のため強制 */
    background: #333 !important; /* ここをド派手色にして確認も可 */
  }
}
/* ==========================
   SPナビ（左からスライドイン）
========================== */
.sp-nav {
  position: fixed;
  top: 0;
  left: -280px; /* 初期は画面外に */
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 4px 0 16px rgba(0, 0, 0, .15);
  padding: 60px 20px 20px;
  transition: left .35s ease;
  z-index: 9999;
}
.sp-nav.open {
  left: 0; /* スライドイン！ */
}
.sp-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-nav li {
  margin-bottom: 18px;
}
.sp-nav a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
/* 閉じるボタン */
.sp-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
}
/* ==============================
   HERO
============================== */
.hero {
  background: #5FCBFF;
  padding: 40px 20px 50px;
}
.hero-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
}
/* 左側 */
.hero-left {
  position: relative;
  width: 45%;
  min-height: 420px;
  background: #E7F7FF;
  border-radius: 18px;
}
.hero-earth {
  width: 60%;
  margin: 0 0 auto auto;
  display: block;
  border-radius: 18px;
}
/* ---------- キャッチ画像3行 ---------- */
.hero-catch-img {
  position: absolute;
  top: 22%; /* 全体の縦位置（お好みで微調整） */
  left: 0; /* 背景画像の左端にピッタリ */
  display: flex;
  overflow: hidden;
  width: 80%;
  flex-direction: column;
  gap: 6px; /* 行間（画像の余白に合わせて調整） */
}
/* 各行画像の共通スタイル */
.catch-line-img {
  width: auto; /* 画像の元サイズを尊重 */
  max-width: 120%; /* はみ出し過ぎ防止用。大きすぎるときはこの値を下げる */
  opacity: 0;
  transform: translateY(-12px);
  animation: catchFadeIn 0.9s ease-out forwards;
}
/* フェードインをずらして順番に表示 */
.catch-line-img.line1 {
  animation-delay: 0.1s;
  transform: rotateZ(-20deg);
}
.catch-line-img.line2 {
  animation-delay: 0.45s;
  transform: rotateZ(-20deg);
}
.catch-line-img.line3 {
  animation-delay: 0.8s;
  transform: rotateZ(-20deg);
}
/* フェードイン＋上から降りてくる感じ */
@keyframes catchFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------- スマホ調整 ---------- */
@media (max-width: 1024px) {
.hero-catch-img {
  top: 22%;
  width: 80%;
}
.hero-arrow {
  top: 26%;
  right: 0;
  width: 24%;
  z-index: 999;
}	
}
@media (max-width: 599px) {
  .hero-catch-img {
    top: 22%;
    left: 0;
    transform: scale(0.85); /* 全体を少し小さくして収める */
    transform-origin: left top;
  }
  .catch-line-img {
    max-width: 140%; /* 必要なら調整 */
  }
}
.hero-arrow {
  position: absolute;
  top: 26%;
  right: -10%;
  width: 36%;
  z-index: 999;
}
.hero-students {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 80%;
  max-width: 620px;
}

/* ==============================
   HERO SLIDERS（上下＆黄色帯）
============================== */
.hero-sliders {
  width: 54%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* スライダー枠（動いてもいいエリア） */
.hero-slider-upper, .hero-slider-lower {
  width: 100%;
  max-height: 330px;
  height: 40%;
  border-radius: 18px;
  overflow: hidden; /* はみ出した大画像をクリップ */
}
/* ここで Swiper の width:100% を上書きする */
.hero-slider-upper .swiper-wrapper, .hero-slider-lower .swiper-wrapper {
  display: flex;
}
/* 各スライド */
.hero-slider-upper .swiper-slide, .hero-slider-lower .swiper-slide {
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
}
.hero-slider-upper img, .hero-slider-lower img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 大きい：ちょっとはみ出す */
.hero-slide-lg {
  flex-basis: 130%; /* ＝コンテナ幅の130% */
}
/* 中くらい */
.hero-slide-md {
  flex-basis: 60%;
}
/* 小さい */
.hero-slide-sm {
  flex-basis: 40%;
}
/* スマホは1枚ずつ見せる */
@media (max-width: 599px) {
.hero-arrow {
  position: absolute;
  top: 30%;
  right: 0;
  width: 30%;
}
  .hero-slider-upper, .hero-slider-lower {
    height: 180px;
  }
  .hero-slide-lg, .hero-slide-md, .hero-slide-sm {
    flex-basis: 100%; /* SPは1枚ずつ */
  }
}
/* 黄色の帯（右側カラム用） */
.hero-right-banner {
  width: 100%;
  padding: 2rem 4px 0;
  height: 20%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hero-right-banner-main {
  /*display: inline-block;*/
  width: 100%;
  text-align: center;
  background: url("../../image/index/right-hero_obi.png") no-repeat center;
  background-size: contain;
  color: #333;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.82vw, 2.2rem);
  padding: 10px 28px;
}
.hero-right-banner-sub {
  width: 100%;
  font-size: clamp(1.2rem, 1.88vw, 1.4rem);
  text-align: center;
  color: #333;
  margin-top: 0;
  margin-left: 18px; /* ちょっと右寄せで添付画像っぽく */
}
@media (max-width: 1024px) {
  .hero-sliders {
    width: 100%;
  }
}
/* SP時 */
@media (max-width: 599px) {
  .hero-slider-upper, .hero-slider-lower {
    height: 180px;
  }
  .hero-right-banner {
    text-align: center;
    padding: 6px 0 0;
  }
  .hero-right-banner-main {
    padding: 8px 18px;
  }
  .hero-right-banner-sub {
    margin-left: 0;
    margin-top: 6px;
  }
}
/* ==============================
   WHY SECTION
============================== */
.why {
  padding: 80px 20px 0;
  margin-bottom: 170px;
  position: relative;
  background: url("../../image/index/index_section01_bg.jpg") repeat;
}
.why::after {
  width: 96%;
  position: absolute;
  content: "";
  left: 2%;
  right: 2%;
  bottom: -170px;
  height: 170px;
  background: url("../../image/index/index_section01_bg.jpg") repeat;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.why-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.why-title {
  width: 414px;
  margin: 0 auto 20px;
}
.why-link {
  font-size: clamp(1.4rem, 2.14vw, 1.8rem);
  color: #0066cc;
  margin-bottom: 18px;
  font-weight: 600;
}
.dots {
  display: flex;
  justify-content: center;
  /*gap: 12px;*/
  margin: clamp(25px, 4vw, 45px) auto;
}
.why-label {
  font-size: 13px;
  color: #0098e8;
  margin-bottom: 6px;
}
.why-main {
  display: inline-block;
  margin-bottom: 50px;
}
.why-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-items: center;
  gap: 50px;
}
.why-photo {
  flex: 1 1 50%;
}
.why-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}
.why-text {
  flex: 1 1 50%;
  max-width: 100%;
  text-align: left;
}
.why-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .why {
    padding: 40px 20px 0;
    margin-bottom: 80px;
    position: relative;
  }
  .why::after {
    width: 96%;
    bottom: -80px;
    height: 80px;
  }
  .why-title {
    width: 80%;
  }
}
/* ==========================
   WHY - 私たちがめざすもの
========================== */
.why-vision {
  margin-top: 80px;
}
.vision-card {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 56px 56px;
  background: transparent;
}
/* 上の角丸長方形（透過色レイヤーはここだけ） */
.vision-card::before {
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: rgba(95, 203, 255, 0.2);
  border-radius: 32px; /* 角丸はここで作る */
}
/* 下の三角 ▼ （こちらも同じ色。上とは重ならない位置に） */
.vision-card::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 100%; /* ← bottom ではなく「長方形の下端から」スタート */
  height: 80px;
  background: rgba(95, 203, 255, 0.2);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
/* 見出しリボン */
.vision-card-head {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
.vision-card-head, .vision-grid {
  position: relative;
  z-index: 2;
}
.vision-card-head {
  text-align: center;
  margin-bottom: 32px;
}
.vision-tag {
  display: block;
  margin-bottom: 8px;
}
.vision-tag::before {
  right: 100%;
  margin-right: 8px;
}
.vision-tag::after {
  left: 100%;
  margin-left: 8px;
}
.vision-title {
  display: block;
}
/* 2カラムグリッド：左テキスト2段、右写真2枚 */
.vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  row-gap: 40px;
}
.block-explore { /* 自らの足で探究し */
  display: flex;
  flex-flow: column;
  width: calc(50% - 20px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.photo-top {
  width: calc(50% - 20px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.photo-bottom {
  margin-top: auto;
  display: block;
}
/* 各ブロック */
.vision-text h4 {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  margin-bottom: 6px;
  color: #666666;
  text-align: left;
  font-style: italic;
  font-weight: 700;
}
.vision-text h4 .accent {
  font-size: clamp(2.4rem, 3.47vw, 3rem);
  font-style: italic;
  color: #0066cc;
  font-weight: 700;
  position: relative;
}
.vision-text h4 .accent::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 2px;
  height: 10px;
  width: 100%;
  background: url("../image/idex/vision_accent.png") no-repeat center;
  z-index: -1;
}
.vision-text p {
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 10px;
  text-align: left;
}
.vision-illust {
  text-align: right;
}
.vision-illust img {
  width: 120px;
  height: auto;
  opacity: 0.8;
}
.vision-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 50px 10px 50px;
}
@media (max-width: 1024px) {
  .vision-card {
    padding: 40px 28px 40px;
  }
  .vision-card::after {
    left: 5%;
    right: 5%;
    top: 100%; /* ← bottom ではなく「長方形の下端から」スタート */
    height: 60px;
  }
  .vision-grid {
    gap: 20px;
    row-gap: 40px;
  }
}
@media (max-width: 768px) {
  .vision-card {
    padding: 28px 18px 32px;
    border-radius: 24px;
  }
  .vision-grid {
    display: block;
  }
  .vision-illust {
    display: none;
  }
  .block-explore, .photo-top { /* 自らの足で探究し */
    width: 100%;
    margin-bottom: 5rem;
  }
  .block-explore:first-child {
    margin-bottom: 0;
  }
}
/* --- 下の X + テーブル --- */
.vision-bottom {
  margin-top: 60px;
  padding: 60px 40px 40px;
  border-radius: 40px 40px 0 0;
  position: relative;
  overflow: hidden;
}
.vision-x {
  text-align: center;
  margin-bottom: 34px;
}
.vision-x-mark {
  font-size: 44px;
  color: #ff5bb5;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  display: inline-block;
  margin-bottom: 10px;
}
.vision-x-lead {
  font-size: clamp(1.6rem, 2.14vw, 1.8rem);
  margin-bottom: 6px;
}
.vision-x-lead .strong {
  font-weight: 700;
  font-size: clamp(1.6rem, 2.14vw, 2rem);
}
.vision-x-sub {
  font-size: 13px;
  color: #555;
}
/* 生徒イラスト＋テーブル横並び */
.vision-bottom-main {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 10px;
}
.vision-students {
  width: 100%;
  margin: auto;
}
.vision-students img {
  width: 100%;
  max-width: 720px;
  height: auto;
}
/* 情報テーブル */
.vision-table-wrap {
  flex: 1;
  width: 80%;
}
.vision-table {
  margin: 0;
}
.vision-table > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  text-align: left;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  margin-bottom: 8px;
}
.vision-table dt {
  font-weight: 600;
}
.vision-table dd {
  margin: 0;
}
.vision-note {
  font-size: 1.4rem;
  text-align: right;
  margin-top: 4px;
  color: #777;
}
/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 1024px) {
  .vision-bottom {
    margin-top: 80px;
    padding: 60px 0 40px;
  }
  .vision-bottom-main {
    flex-direction: column;
    align-items: center;
  }
  .vision-table-wrap {
    width: 100%;
  }
  .vision-table > div {
    grid-template-columns: 120px 1fr;
  }
}
@media (max-width: 599px) {
  .why-vision {
    margin-top: 50px;
  }
  .vision-bottom {
    margin-top: 40px;
    padding: 40px 16px 30px;
    border-radius: 32px 32px 0 0;
  }
  .vision-table > div {
    grid-template-columns: 1fr;
    row-gap: 2px;
    text-align: center;
  }
}
/* =====================================
   新しい学びのカタチ
===================================== */
.learning-style {
  margin-top: 0;
  padding-top: 20px;
}
.ls-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ls-head {
  text-align: center;
  margin-bottom: 40px;
}
.ls-title-img {
  width: 380px;
  height: auto;
}
/* 上段：テキスト＋写真 */
.ls-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 80px;
}
.ls-text-block h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 4px;
  color: #0066cc;
  font-weight: 700;
}
.ls-text-block p {
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  line-height: 1.6;
  margin-bottom: 22px;
}
.ls-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .learning-style {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .ls-top {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ls-title-img {
    width: 300px;
    height: auto;
  }
}
/* ============================
   1年次・2年次・3年次
============================ */
.katachi {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto 50px;
}
.ls-years {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  gap: 20px;
  margin-top: 40px;
}
.ls-year {
  background: #fff;
  border: 3px solid #00b9ff;
  border-radius: 24px;
  padding: 50px 20px 0;
  position: relative;
}
@media (max-width: 1560px) {
  .katachi {
    width: 96%;
  }
  .ls-year {
    padding: 50px 15px 0;
    position: relative;
  }
}
@media (max-width: 768px) {
  .katachi {
    width: 80%;
  }
  .ls-years {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ls-year {
    margin-bottom: 30px;
  }
}
/* ラベル部分 */
.year-head {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: #00b9ff;
  color: #fff;
  padding: 5px 50px;
  border-radius: 16px;
  font-size: clamp(1.8rem, 2.94vw, 2.2rem);
  z-index: 2;
  border: 2px solid #00b9ff;
}
.year-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.year-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
}
/* 青い丸 ● のマーカー */
.year-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #48c8ff; 
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: clamp(1.2rem, 2vw, 1.4rem);
  transform: translateY(-50%);
}
.year-list strong {
  color: #ff0066;
  font-weight: 500;
}
.year-list strong span {
  font-size: clamp(2.2rem, 2.67vw, 2.8rem);
}
@media (max-width: 1560px) {
  .year-head {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    background: #00b9ff;
    color: #fff;
    padding: 5px 30px;
    border-radius: 16px;
    font-size: clamp(1.8rem, 2.94vw, 2.2rem);
    z-index: 2;
    border: 2px solid #00b9ff;
  }
}
@media (max-width: 768px) {
   .year-list li::before {
  width: 8px;
  height: 8px;
  top: clamp(1rem, 1.6vw, 1.2rem);
    
}
}
/* 円の配置（簡易版） */
.year-map {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.year-map.mt20 {
    margin-top: 30px;
}
.circle {
  width: 90px;
  height: 90px;
  background: #fdd835;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}
/* 色（例） */
.c1 {
  background: #ff7eb3;
}
.c2 {
  background: #00a4ff;
}
.c3 {
  background: #ffb400;
}
.c4 {
  background: #ff7eb3;
}
.c5 {
  background: #00a4ff;
}
.c6 {
  background: #ffb400;
}
.c7 {
  background: #00a4ff;
}
/*@media (max-width: 1560px) {
  .y1 .year-map img, .y3 .year-map img {
    width: 80%;
    margin: auto;
  }
}*/
@media (max-width: 768px) {
    .year-map.mt20 {
    margin-top: 0;
}
}
/* ==========================
   探究拠点 map セクション
========================== */
.explore-map-section {
  margin-top: 80px;
  background: #e7f7ff;
  padding: 50px 0 90px;
}
.explore-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* タイトル */
.explore-head {
  text-align: center;
  margin-bottom: 40px;
}
.explore-title-img {
  width: 280px;
  height: auto;
}
/* 日本地図 */
.explore-map-main {
  text-align: center;
  margin-bottom: 40px;
}
.explore-map-img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
}
.swipe-hint {
  display: none;
}
@media (max-width: 768px) {
  .explore-inner {
    padding: 0 0 40px;
  }
  .explore-map-main {
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    text-align: left;
  }
  .explore-map-img {
    display: block;
    max-width: none;
    width: auto;
    height: 66vh;
    border-radius: 24px;
  }
  .explore-map-main::-webkit-scrollbar {
    display: none;
  }
  .swipe-hint {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    color: #555;
    font-weight: 600;
    margin-top: -10px;
    margin-bottom: 25px;
    opacity: 0.75;
    animation: swipeFade 1.8s infinite ease-in-out;
  }
}
@keyframes swipeFade {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.3;
  }
}
/* --------- スライダー ---------- */
.explore-slider-full {
  width: 90%;
  max-width: 1500px;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 30px 0 10px;
  overflow: hidden;
}
.explore-slider .swiper-slide {
  width: auto !important;
  flex: 0 0 auto;
}
.explore-slider .swiper-wrapper {}
.explore-slide {
  flex: 0 0 auto;
}
/* 大中小の横幅（高さは共通で object-fit） */
.slide-lg {
  width: 510px;
}
.slide-md {
  width: 335px;
}
.slide-sm {
  width: 230px;
}
.explore-card-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.14);*/
}
.explore-card-inner img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}
/* 黄色ラベルは前と同じでOK */
.explore-label {
  position: absolute;
  left: 0;
  top: 14px;
  background: #ffff00;
  color: #333;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
}
/* レスポンシブ（SPではサイズ少し小さく） */
@media (max-width: 1024px) {
  .slide-lg {
    width: 400px;
  }
  .slide-md {
    width: 264px;
  }
  .slide-sm {
    width: 180px;
  }
  .explore-card-inner img {
    height: 280px;
  }
}
@media (max-width: 599px) {
  .explore-map-section {
    padding: 60px 0 30px;
    margin-top: 80px;
  }
}
/* --------- 拠点紹介テキスト ---------- */
.explore-info {
  margin-top: 30px;
}
.explore-info-title {
  position: relative;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: clamp(1.8rem, 2.8vw, 2.4rem);
  padding-bottom: 1rem;
  border-bottom: 1px dotted #333;
}
/* 青いドットマーク */
.explore-info-title::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0066CC;
  position: absolute;
  left: 0;
  top: 0.7em;
  transform: translateY(-50%);
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 50%; /* ←いびつ感のポイント */
}
.explore-info-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
}
.explore-info-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.explore-info-cols li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
}
.explore-info-cols li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #48c8ff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: clamp(1.4rem, 2.14vw, 1.6rem);
  transform: translateY(-50%);
}
.explore-info-cols strong {
  color: #333;
  font-size: clamp(1.6rem, 2.14vw, 1.8rem);
  font-weight: 700;
}
/* --------- レスポンシブ ---------- */
@media (max-width: 1024px) {
  .explore-slider .swiper-slide {
    width: 220px;
  }
  .explore-info-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 599px) {
  .explore-map-section {
    padding: 60px 0 70px;
    margin-top: 80px;
  }
  .explore-title-img {
    width: 210px;
  }
  .explore-slider .swiper-slide {
    width: 200px;
  }
}
/* ============================
   ゼロからの物語
============================ */
.story-section {
  background: #fff;
  padding: 60px 0 90px;
  background: url("../../image/index/zero_back.png") 10% bottom no-repeat;
}
.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.story-illust img {
  display: none;
}
@media (max-width: 1300px) {
.story-section {
  background: url("../../image/index/zero_back.png") 2% bottom no-repeat;
}
}
@media (max-width: 1024px) {
  .story-section {
    padding: 80px 0 0;
    background: none;
  }
  .story-illust {
    text-align: center;
  }
  .story-illust img {
    display: block;
    margin: 50px auto 0;
    max-width: 320px;
    height: auto;
  }
}
.story-body {
  flex: 1;
  text-align: center;
}
.story-title-img {
  max-width: 570px;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
.story-lead {
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  margin-bottom: 8px;
}
.story-text {
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  margin-bottom: 32px;
}
/* SNSボタン */
.story-sns-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 60px 0 0 0;
}
.sns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  min-height: 60px;
  box-sizing: border-box;
  padding: 14px 58px;
  border-radius: 14px;
  border: 2px solid #333;
  background: #fff;
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  font-weight: 700;
  text-decoration: none;
  color: #333;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.05);*/
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.sns-btn:hover {
  transform: translateY(-6px);
  border: 2px solid #333;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
  background: #fdfdfd;
}
.sns-btn img {
  max-width: 100%;
  height: auto;
}

.sns-note {}
.sns-instagram {}
.sns-youtube {}
.sns-yt-icon {
  width: 110px;
  height: auto;
  margin-right: 0.5rem;
}
.sns-insta-icon {
  width: 27px;
  height: auto;
  margin-right: 0.5rem;
}
.sns-note-icon {
  width: 100px;
  margin-right: 0.5rem;
}
@media (max-width: 1024px) {
  .story-inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .story-sns-list {
    padding: 0;
    margin: 40px 0 0 0;
  }
  .story-body {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .story-section {
    padding: 60px 0 0;
  }
  .sns-btn {
    min-width: 160px;
    padding: 12px 20px;
    font-size: 15px;
  }
}
/* ============================
   入試情報
============================ */
.admission-section {
  background: url("../../image/index/admission_back.png") 90% center no-repeat #E7F7FF;
  padding: 60px 0 110px;
}
.admission-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* 見出し */
.admission-heading {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.admission-badge {
  display: inline-block;
  padding: 4px 16px;
  border: 2px solid #333;
  border-radius: 18px;
  font-size: 12px;
  margin-bottom: 8px;
  background: #fff;
}
.admission-title-img {
  width: 300px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .admission-section {
    background: url("../../image/index/admission_back.png") 90% 10% no-repeat #E7F7FF;
    background-size: 20%;
    padding: 90px 0 110px;
  }
}
/* 本文＋イラスト */
.admission-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.admission-text {
  width: 100%;
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  line-height: 2;
  text-align: center;
  margin: 0 auto;
}
.admission-text p + p {
  margin-top: 20px;
}
.admission-text ul {
  width: fit-content;
  margin: 0 auto 20px; 
  padding: 0;
}
.admission-text ul li {
 text-align: left;
}
.admission-cta {
  margin-top: 32px;
}
.btn-admission {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #ffd643;
  color: #333;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn-admission:hover {
  background: #ffcc24;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
/* 右側イラスト */
.admission-illust img {
  display: none;
}
@media (max-width: 1024px) {
  .admission-illust img {
    display: block;
    margin: auto;
    width: 50%;
    height: auto;
  }
}
/* ============================
   レスポンシブ
============================ */
@media (max-width: 960px) {
  .admission-content {
    flex-direction: column;
    gap: 40px;
  }
  .admission-text {
    max-width: 100%;
  }
}
@media (max-width: 599px) {
  .admission-section {
    padding: 70px 0 80px;
  }
  .story-title-img {
    width: 260px;
  }
  /*
  .admission-title-img {
    width: 190px;
  }
*/
  .admission-illust img {
    max-width: 200px;
  }
}
/* ============================
   イベント
============================ */
.event-section {
  background: #fff;
  padding: 60px 0 90px;
}
.event-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.event-heading {
  text-align: center;
  margin-bottom: 40px;
}
.event-title-img {
  width: 390px;
  max-width: 100%;
  height: auto;
}
.event-headtext {
  width: 100%;
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  line-height: 2;
  text-align: center;
  margin: 0 auto 30px;
}

/* 一覧部分 */

/* 一覧部分 */
.event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1000px;
  margin-inline: auto;
}
.event-item {
  display: flex;
  gap: 20px;
  padding: 12px 0;
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  line-height: 1.7;
  border-bottom: 1px dotted #c8c8c8;
  align-items: flex-start;
}
.event-item:last-child {
  border-bottom: none;
}
.event-date {
  white-space: nowrap;
  min-width: 140px;
  font-weight: 500;
}
.event-text {
  flex: 1;
}
.event-more {
  max-width: 1000px;
  margin: 18px auto 0;
  text-align: right;
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
}
.event-more-link {
  font-weight: 600;
  text-decoration: none;
}
.event-more-link:hover {
}
/* PCだけ改行させたいとき用 */
.pc-only {
  display: inline;
}
/* ============================
   お問い合わせ
============================ */
.contact-section {
  background: #dff4ff;
  padding: 80px 0 100px;
}
.contact-section a {
    color: #0098e8;
}
.contact-section a:hover{
    color: #0070D8;
}
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.contact-heading {
  margin-bottom: 32px;
}
.contact-title-img {
  width: 250px;
  max-width: 100%;
  height: auto;
}
.contact-text p {
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  line-height: 2;
}
.contact-text p + p {
  margin-top: 16px;
}
.contact-cta {
  margin-top: 36px;
}
/* 入試情報のボタンとテイストを揃えた黄色ボタン */
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #ffd643;
  color: #666666;
  font-size: clamp(1.4rem, 2.14vw, 1.8rem);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn-contact:hover {
  background: #fec003;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
/* ============================
   レスポンシブ
============================ */
@media (max-width: 768px) {
  .event-inner {
    padding: 0 20px;
  }
  .event-item {
    flex-direction: column;
    gap: 4px;
  }
	.event-text {
    max-width: 100%;
  }
  .event-date {
    min-width: 0;
  }
  .event-list {
    max-width: 100%;
  }
  .event-more {
    text-align: left;
  }
  .pc-only {
    display: none;
  }
  .contact-section {
    padding: 70px 0 80px;
  }
}
/* ==============================
   FOOTER (BLUE AREA)
============================== */
.site-footer {
  background: #0065d9;
  color: #fff;
  padding: 44px 20px 30px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.footer-info {
  flex: 1;
}
.footer-school {
  font-size: 18px;
  margin: 0 0 10px;
}
.footer-school img {
	max-width: 254px;
	height: auto;
}
.footer-row {
  font-size: clamp(1.2rem, 1.74vw, 1.4rem);
  line-height: 1.5;
  margin: 0;
}
.footer-row + .footer-row {
  margin-top: 4px;
}
.footer-row a {
  color: #fff;
  text-decoration: underline;
}


.site-footer dl.links{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap:15px;
    width: auto;
    max-width: 400px;
}
.site-footer dt ,.site-footer dd{
   font-size: clamp(1.2rem, 1.74vw, 1.4rem);
  line-height: 1.5;
}
.site-footer dl.links a {
    color: #fff;
}
.site-footer dl.links a:hover {
    color: #fec003;
}
/* SNS */
.footer-sns {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}
.sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
}
.sns-icon.note {
  width: 32px;
}
.sns-icon.insta {
  width: 28px;
}
.sns-icon.youtube {
  width: 38px;
}
/* CTAボタン */
.footer-cta {
  display: flex;
  align-items: flex-end;
  flex-flow: column;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 38px;
  border-radius: 12px;
  background: #FF2F98;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.footer-btn::after {
  content: "〉";
  margin-left: 12px;
  font-size: 14px;
}
.footer-btn:hover {
  background: #fec003;
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
.footer-btn img {
	margin-right: 10px;
}
.footer-cta span {
	margin: 10px 0 0;
	font-size: clamp(1.2rem, 1.74vw, 1.4rem);
}
.footer-cta span a {
	color: #fff;
}
.footer-cta span a:hover {
	color:#EBDB3A;
}
.footer-cta span + span {
	margin: 0;
}
.footer-copy {
  max-width: 1400px;
  margin: 24px auto 0;
  font-size: 11px;
  text-align: center;
  color: #fff;
}
/* ==============================
   RESPONSIVE
============================== */
/* Tablet */
@media (max-width: 1024px) {
  .hero-layout {
    flex-direction: column;
  }
  .hero-left, .hero-grid {
    width: 100%;
  }
  .hero-left {
    min-height: 480px;
  }
  .why-content {
    flex-direction: column;
    align-items: center;
  }
  .why-text {
    max-width: 90%;
  }
  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }
  .footer-cta {
    justify-content: flex-start;
    margin: auto;
  }
}
/* Smartphone */
@media (max-width: 599px) {
  .header-inner {
    padding: 10px 14px;
  }
  .gnav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .gnav ul {
    gap: 10px;
  }
  .hero {
    padding: 30px 14px 40px;
  }
  .hero-banner {
    border-radius: 16px;
    font-size: 16px;
    padding-inline: 14px;
  }
  .why {
    padding: 60px 14px 70px;
  }
  .why-main {
    font-size: 18px;
    padding: 6px 20px;
  }
  .why-text p {
    font-size: 13px;
  }
  .site-footer {
    padding: 36px 14px 26px;
  }
  .footer-btn {
    width: 100%;
    justify-content: center;
  }
  .footer-copy {
    margin-top: 18px;
  }
}
/* ==== スクロールアニメの基本状態 ==== */
.sa {
  opacity: 0;
  transform: translateY(40px) scale(0.985);
  filter: blur(1.5px);
  transition:
    opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1), transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), filter 0.9s ease-out;
}
/* 表示状態 */
.sa.sa-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* パターン：フェードのみ（あまり動かしたくないところ用） */
.sa-fade {
  transform: scale(1);
}
/* パターン：下からふんわりアップ */
.sa-up {
  transform: translateY(60px) scale(0.985);
}
/* パターン：上から */
.sa-down {
  transform: translateY(-60px) scale(0.985);
}
/* パターン：左からふんわり */
.sa-left {
  transform: translateX(-60px) scale(0.985);
}
/* パターン：右からふんわり */
.sa-right {
  transform: translateX(60px) scale(0.985);
}
/* ちょっと遅らせたいときのディレイ用（連番でふわっと） */
.sa-delay-1 {
  transition-delay: 0.15s;
}
.sa-delay-2 {
  transition-delay: 0.30s;
}
.sa-delay-3 {
  transition-delay: 0.45s;
}
.sa-delay-4 {
  transition-delay: 0.60s;
}
/* アニメOFF設定 respect */
@media (prefers-reduced-motion: reduce) {
  .sa, .sa.sa-show {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* ==============================
   404 Not Found
============================== */
.notfound {
  padding: 80px 20px 40px;
  text-align: center; /* ← 全て中央揃え */
}
.notfound-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.notfound-message {
  max-width: 700px;
  margin: 0 auto; /* ← 中央寄せ */
}
.notfound-title {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 12px;
}
.notfound-text {
  font-size: clamp(1.4rem, 2.14vw, 1.8rem);
  color: #555;
  margin: 0 0 18px;
}
.notfound-text-en {
 font-size: clamp(1.4rem,2.14vw,1.6rem);
  color: #777;
  line-height: 1.8;
  margin: 0 0 18px;
}
.notfound-link-home {
  display: inline-block;
  font-size: clamp(1.4rem,2.14vw,1.6rem);
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: clamp(4rem,5.47vw,6rem);
}
.notfound-link-home:hover {
  border-color: #0070d8;
  color: #0070d8;
}
/* ボタン2つ */
.notfound-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.nf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: clamp(1.4rem,2.14vw,1.6rem);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
/* 青ボタン（トップへ） */
.nf-btn-primary {
  background: #ffffff;
  color: #0070d8;
  border-color: #0070d8;
}
.nf-btn-primary:hover {
  background: #e6f0ff;
  border: 1px solid #0070d8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}
/* 黄色ボタン（お問い合わせ） */
.nf-btn-yellow {
  background: #ffc800;
  color: #333;
}
.nf-btn-yellow:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
}
/* 下の学園名テキスト */
.notfound-note {
  font-size: 11px;
  color: #999;
  margin: 8px 0 0;
}
/* イラスト */
.notfound-illust-fixed {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding-left: 20px; /* ← 左からスタート */
}
.notfound-illust-fixed img {
  width: 230px;
  height: auto;
  margin-top: -10px; /* 本文に寄せる調整 */
}
/* ==============================
   404 レスポンシブ
============================== */
@media (max-width: 1024px) {
  .notfound-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .notfound {
    padding: 40px 0 20px;
  }
  .notfound-btns {
    flex-direction: column;
    align-items: center;
  }
  .nf-btn {
    width: 70%;
  }
  .notfound-illust-fixed {
    padding-left: 0;
    text-align: center;
  }
  .notfound-illust-fixed img {
    width: 180px;
    margin-top: 20px;
  }
}

/* ==============================
   サイトポリシー
============================== */

.policy {
  padding: 60px 0 100px;
  background: #fff;
}

.policy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  line-height: 1.7;
  color: #333;
}

/* 各ブロック */
.policy-block {
  margin-bottom: 66px;
}
.policy-block .plink a{
  font-weight: 700;
  padding-bottom: 6px;
  text-decoration: underline;
}
.policy-block .plink a:hover {
	color:#ff3399 ;
}
.policy-block em {
	color: #3e86f5;
	display: block;
  font-weight: 700;
}

/* 大見出し（左に青バー） */
.policy-heading {
  position: relative;
　font-size: clamp(1.8rem, 2.4vw, 2rem);
  font-weight: 700;
  margin: 0 0 16px;
  padding-left: 16px;
}

.policy-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 8px;
  height: 38px;
  border-radius: 999px;
  background: #0098e8;
}

/* 小見出し（● JavaScript など） */
.policy-subheading {
  position: relative;
 font-size: clamp(1.4rem, 2.14vw, 1.6rem);
  font-weight: 700;
  margin: 28px 0 8px;
  padding-left: 18px;
}

.policy-subheading::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #0098e8;
  font-size: 14px;
}

/* 通常リスト */
.policy-list {
  list-style: disc;
  padding-left: 1.6em;
  margin: 0 0 12px;
}

.policy-list li + li {
  margin-top: 4px;
}

/* ツール／外部リンクのリスト */
.policy-link-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.policy-link-list li {
  margin-bottom: 16px;
  line-height: 1.6;
}

.policy-tool {
  font-size: clamp(1.4rem, 2.14vw, 1.6rem);
}

.policy a {
  color: #0070d8;
  text-decoration: underline;
}

.policy a:hover {
  text-decoration: none;
}

/* レスポンシブ */
@media (max-width: 599px) {
  .policy {
    padding: 40px 0 70px;
  }
  .policy-heading {
    font-size: 16px;
  }
}
