@charset "UTF-8";
/* === Viewport Bases  === */
/* === Breakpoints === */
/* --- mq --- */
/* --- px→vw 関数 --- */
/* --- 流体clamp（SP→PC）--- */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.8;
  /* 本文：SP13→PC16 の流体 */
  font-size: clamp(13px, 11.0769230769px + 0.2564102564vw, 16px);
}

dt {
  font-weight: 500;
}

img {
  width: 100%;
}

.u-br--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-br--sp {
    display: inline;
  }
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: inline !important;
  }
}

.u-pc {
  display: inline;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-br--pc {
  display: inline;
}
@media screen and (max-width: 767px) {
  .u-br--pc {
    display: none;
  }
}

.u-color-pink {
  color: #EB516D !important;
}

.p-num {
  font-size: 5vw;
  color: #EB516D;
  font-family: "Old Standard TT", Georgia, "Times New Roman", serif;
}
@media screen and (max-width: 767px) {
  .p-num {
    font-size: 12.8vw;
  }
}

.cta {
  text-align: center;
  width: 100vw;
  height: auto;
}
.cta img {
  width: 100%;
}

/* ===== Reveal (manual with data attributes) ===== */
/* 共通：非表示状態 */
[data-reveal] {
  --reveal-delay: 0s;
  /* 遅延：inline styleや属性で上書き可 */
  --reveal-dur: .6s;
  /* 時間 */
  --reveal-dist: 18px;
  /* 移動距離 */
  opacity: 0;
  transition: opacity var(--reveal-dur) ease, transform var(--reveal-dur) ease;
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

/* 種類（方向・ズーム） */
[data-reveal=fade] {
  transform: none;
}

[data-reveal=up] {
  transform: translateY(var(--reveal-dist));
}

[data-reveal=down] {
  transform: translateY(calc(var(--reveal-dist) * -1));
}

[data-reveal=left] {
  transform: translateX(var(--reveal-dist));
}

[data-reveal=right] {
  transform: translateX(calc(var(--reveal-dist) * -1));
}

[data-reveal=zoom] {
  transform: scale(0.96);
}

/* 表示状態（IOで .is-in 付与） */
.is-in[data-reveal] {
  opacity: 1;
  transform: none;
}

/* ===== Floating CTA：デフォルト非表示（PCも非表示） ===== */
.f-cta .btn-cta {
  pointer-events: auto;
  /* ボタンはクリック可 */
  display: inline-block;
  line-height: 0;
}

.f-cta.is-hidden {
  opacity: 0;
  transform: translateX(100vw);
  transition: all 1s ease-out;
}

/* 目印（start/end）は画面に出さない */
.js-cta-start,
.js-cta-end {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ========== Floating CTA (SP/PC 共通) ========== */
.f-cta {
  position: fixed;
  left: 50%;
  bottom: -2.6041666667vw;
  /* iOS セーフエリア考慮 */
  transform: translate(-50%, 24px);
  /* 初期は少し下に隠す */
  z-index: 1000;
  display: grid;
  /* 中央揃え */
  place-items: center;
  width: 59.5833333333vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  /* 表示状態（JSが is-active を付ける） */
}
@media screen and (max-width: 767px) {
  .f-cta {
    left: 0;
    bottom: 0;
    width: min(92vw, 630px);
    transform: none;
  }
}
.f-cta.is-active {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
  transition: all 0.5s linear;
  /* 監視用“終点”に重なったら消す等を使う場合 */
}
@media screen and (max-width: 767px) {
  .f-cta.is-active {
    left: 0;
    bottom: 0;
    width: min(92vw, 630px);
    transform: none;
  }
}
.f-cta.is-active.is-hide, .f-cta.is-active.is-hidden {
  opacity: 0;
  transform: none;
  pointer-events: none;
}
.f-cta.is-active .btn-cta {
  line-height: 0;
  display: inline-block;
}
.f-cta.is-active .btn-cta img,
.f-cta.is-active .btn-cta picture {
  display: block;
  width: 100%;
  height: auto;
}

/* 動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  .f-cta {
    transition: none;
  }
}
/* CTA “キラッ” */
.btn-cta {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 0;
  width: 59.5833333333vw;
  height: 16.71875vw;
}
@media screen and (max-width: 767px) {
  .btn-cta {
    width: 100vw;
    height: 30.1333333333vw;
  }
}
.btn-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.btn-cta__shine {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 2.8s cubic-bezier(0.12, -0.29, 1, -0.55) infinite;
  /* にじみを柔らげる＋ミントになじませる */
  filter: blur(1px);
  -webkit-mask-image: radial-gradient(160% 80% at 50% 50%, #000 55%, transparent 80%);
  mask-image: radial-gradient(160% 80% at 50% 50%, #000 55%, transparent 80%);
}

@keyframes shine {
  to {
    transform: translateX(120%);
  }
}
/* 動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn-cta__shine {
    animation: none;
    transition: none;
  }
}
/* ふんわり出現（reveal）— 基盤が無ければ暫定 */
.reveal {
  opacity: 0;
  transform: translateY(0.625vw);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-inview {
  opacity: 1;
  transform: none;
}

.p-hero {
  position: relative;
}
.p-hero__bg {
  width: 100vw;
  height: auto;
}
.p-hero__cta {
  position: absolute;
  bottom: -1.3020833333vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-hero__cta {
    bottom: 0;
  }
}

.p-why {
  position: relative;
  /* なぜ今〜部分背景画像 */
  /* 白いカード */
  /* 「なぜ今」ピルラベル（カード上中央に乗る） */
  /* 内側の枠 */
  /* 見出し */
  /* 犬（左下にオーバーラップ） */
  /* 斜めの帯（背景グラデ） */
  /* リード文＋強調 */
  /* “しかし”帯 */
  /* 左右の配置（中央基準にオフセット） */
  /* SPで微調整したければここで */
  /* ============ お客様に選ばれるには ============ */
  /* ============ 提携説明（背景ブラー帯） ============ */
  /* 白いピル型チップ */
  /* ============ 唯一無二のスクール（グラデ帯） ============ */
}
.p-why-inner {
  background-color: #E8F3F1;
}
.p-why-header {
  background-image: url(../images/bg__why.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 6.5104166667vw;
}
@media screen and (max-width: 767px) {
  .p-why-header {
    background-image: url(../images/bg__why--sp.jpg);
    background-repeat: no-repeat;
    padding-top: 11.2vw;
  }
}
.p-why-card {
  position: relative;
  max-width: 52.0833333333vw;
  margin: 0 auto;
  background: #fff;
  padding: 0.5729166667vw;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-why-card {
    max-width: none;
    margin: 0 4vw;
    padding: 1.4666666667vw;
  }
}
.p-why-label {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  display: inline-block;
  background: #7BCABD;
  color: #fff;
  font-size: 1.875vw;
  font-weight: 500;
  border-radius: 1.5625vw;
  padding: 0.2083333333vw 1.6666666667vw;
}
@media screen and (max-width: 767px) {
  .p-why-label {
    padding: 0.5333333333vw 4.2666666667vw;
    font-size: 4.8vw;
  }
}
.p-why-border {
  border: 3px solid #7BCABD;
  padding: 3.0208333333vw 0;
}
@media screen and (max-width: 767px) {
  .p-why-border {
    padding: 6.2666666667vw 0 5.6vw;
  }
}
.p-why-title {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 2.5vw;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #32516B;
}
@media screen and (max-width: 767px) {
  .p-why-title {
    font-size: 6.4vw;
  }
}
.p-why-title .color--pink {
  color: #EB516D;
}
.p-why-title .is-sm {
  font-size: 0.834em;
}
.p-why-dog {
  position: relative;
  z-index: 2;
  /* リボンより上に */
  width: 12.03125vw;
  margin-left: 23.9583333333vw;
  margin-top: -2.6458333333vw;
  /* カードと重ねる */
}
@media screen and (max-width: 767px) {
  .p-why-dog {
    width: 30.8vw;
    margin-left: 2.6666666667vw;
    margin-top: -9.3333333333vw;
  }
}
.p-why-dog img {
  width: 100%;
  height: auto;
  display: block;
}
.p-why-ribbon {
  position: relative;
  z-index: 1;
  margin: -10.9375vw 0 0;
  /* カードの下に少し重ねる */
  height: 5.2083333333vw;
  background: linear-gradient(90deg, #02adb9 44%, #51ccbc 100%);
  box-shadow: 0 4px 10px rgba(98, 160, 150, 0.5);
  transform: rotate(-3deg);
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-why-ribbon {
    margin: -26.1333333333vw 0 0;
    height: 9.3333333333vw;
  }
}
.p-why-ribbon-text {
  color: #fff;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1.2;
  font-size: 3.3333333333vw;
  padding-left: 4.84375vw;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-why-ribbon-text {
    font-size: 6.4vw;
    padding-left: 12.4vw;
  }
}
.p-why-copy {
  position: relative;
  z-index: 3;
  display: flex;
  text-align: left;
  margin: 3.6458333333vw 1.5625vw 0;
  color: #32516B;
  align-items: end;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-why-copy {
    margin: 9.3333333333vw 4vw 0;
    justify-content: space-between;
  }
}
.p-why-copy p {
  font-size: 1.875vw;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-why-copy p {
    font-size: 4.8vw;
  }
}
.p-why-copy .p-why-emphasis {
  display: inline-block;
  color: #EB516D;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 2.7604166667vw;
  box-shadow: 2px 4px 10px rgba(156, 177, 173, 0.25);
  background-color: #fff;
  line-height: 1;
  padding: 0.3645833333vw 0.78125vw;
}
@media screen and (max-width: 767px) {
  .p-why-copy .p-why-emphasis {
    font-size: 8.5333333333vw;
    padding: 0.9333333333vw 2vw;
  }
}
.p-why-copy .p-why-emphasis .is-ex {
  display: inline-block;
  padding-left: 0.2083333333vw;
  transform: rotate(11deg);
  font-size: 3.4375vw;
}
@media screen and (max-width: 767px) {
  .p-why-copy .p-why-emphasis .is-ex {
    font-size: 9.3333333333vw;
    padding-left: 0.5333333333vw;
  }
}
.p-why-chart {
  margin: 1.7708333333vw auto 2.7083333333vw;
  width: 52.0833333333vw;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-why-chart {
    margin: 4.5333333333vw auto 6.9333333333vw;
    width: 92vw;
    height: auto;
  }
}
.p-why-chart img {
  width: 100%;
  height: auto;
}
.p-why__band {
  position: relative;
  margin: 2.5vw auto 0;
  padding: 9.4270833333vw 0 3.125vw;
  background-image: url(../images/bg__why-band.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-why__band {
    background-image: url(../images/bg__why-band--sp.png);
    margin: 4.2666666667vw auto 0;
    padding: 24.1333333333vw 0 8vw;
  }
}
.p-why__band-kicker {
  position: absolute;
  top: 0.3125vw;
  /* バッジが少しはみ出す高さに調整 */
  left: 50%;
  transform: translateX(-50%);
  width: 7.0833333333vw;
  height: 7.0833333333vw;
  border-radius: 50%;
  background: #fff;
  color: #32516B;
  display: grid;
  place-items: center;
  font-size: 1.875vw;
  letter-spacing: 0.08em;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-why__band-kicker {
    top: 0.8vw;
    width: 18.1333333333vw;
    height: 18.1333333333vw;
    font-size: 4.8vw;
  }
}
.p-why__band-title {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  margin-top: 0.4166666667vw;
  font-size: 3.3333333333vw;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-why__band-title {
    font-size: 8.5333333333vw;
  }
}
.p-why .is-dot {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.p-why .is-dot::before,
.p-why .is-dot::after {
  content: "";
  position: absolute;
  top: -1.0416666667vw;
  /* 上方向の距離（文字サイズに追従） */
  width: 0.18em;
  /* 点の直径 */
  height: 0.18em;
  border-radius: 50%;
  background: currentColor;
  /* 見出しの色に合わせる（白） */
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-why .is-dot::before,
  .p-why .is-dot::after {
    top: 0;
    /* 上方向の距離（文字サイズに追従） */
    width: 0.08em;
    /* 点の直径 */
    height: 0.08em;
  }
}
.p-why .is-dot::before {
  left: -5.2083333333vw;
}
@media screen and (max-width: 767px) {
  .p-why .is-dot::before {
    left: 4.1333333333vw;
  }
}
.p-why .is-dot::after {
  left: -1.71875vw;
}
@media screen and (max-width: 767px) {
  .p-why .is-dot::after {
    left: 12.4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-why .is-dot::before,
  .p-why .is-dot::after {
    top: -0.02em;
    /* 例：少しだけ上げる */
    width: 0.15em;
    height: 0.15em;
    /* 例：点をわずかに大きく */
  }
}
.p-why .p-why-select {
  position: relative;
  padding: 3.125vw 0;
  text-align: center;
  /* だからカード */
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select {
    padding: 8vw 0;
  }
}
.p-why .p-why-select .l-accent {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select .l-accent {
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/bg__accent.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18.6266666667vw;
    height: 26.16vw;
  }
}
.p-why .p-why-select__head {
  font-size: 1.875vw;
  color: #32516B;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select__head {
    font-size: 4.8vw;
  }
}
.p-why .p-why-select__circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6979166667vw;
  justify-items: center;
  align-items: start;
  margin: 1.3020833333vw auto;
  width: 52.0833333333vw;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select__circles {
    gap: 6.5333333333vw;
    margin: 3.3333333333vw 4vw;
  }
}
.p-why .p-why-select__circle {
  width: 14.8958333333vw;
  height: 14.8958333333vw;
  background: #32516B;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.7083333333vw;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select__circle {
    width: 26.2666666667vw;
    height: 26.2666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select__circle {
    font-size: 4.8vw;
  }
}
.p-why .p-why-select__note {
  font-size: 1.875vw;
  margin-bottom: 1.0416666667vw;
  color: #32516B;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select__note {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-why .p-why-select__reason-kicker {
  display: inline-block;
  background: #fff;
  color: #e16a77;
  padding: 0.9375vw 1.7708333333vw 0;
  border-radius: 0.6770833333vw 0.6770833333vw 0 0;
  font-size: 1.875vw;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select__reason-kicker {
    padding: 2.4vw 4.5333333333vw 0;
    border-radius: 1.7333333333vw 1.7333333333vw 0 0;
    font-size: 4.8vw;
  }
}
.p-why .p-why-select__reason {
  max-width: 52.0833333333vw;
  margin: -0.2604166667vw auto 0;
  background-color: #fff;
  padding: 1.3541666667vw 0.8854166667vw;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select__reason {
    max-width: 92vw;
    margin: -0.6666666667vw auto 0;
    padding: 3.4666666667vw 2.2666666667vw;
    max-width: 92vw;
  }
}
.p-why .p-why-select__reason-text {
  font-size: 1.6666666667vw;
  color: #32516B;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select__reason-text {
    font-size: 4.2666666667vw;
  }
}
.p-why .p-why-select .c-highlight {
  margin: 0.5208333333vw 0;
  color: #fff;
  font-size: 1.875vw;
  background-color: #7BCABD;
  box-shadow: 2px 4px 10px rgba(156, 177, 173, 0.25);
  padding: 0 0.15625vw;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-select .c-highlight {
    margin: 1.0666666667vw 0;
    font-size: 4.8vw;
    padding: 0 0.4vw;
  }
}
.p-why .p-why-proof {
  padding: 3.125vw 0;
  color: #fff;
  background-image: url(../images/bg__why-proof.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-proof {
    background-image: url(../images/bg__why-proof--sp.jpg);
    padding: 8vw 0;
  }
}
.p-why .p-why-proof .l-inner {
  margin: 0 auto;
  width: 52.0833333333vw;
  text-align: left;
  padding-left: 1.5625vw;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-proof .l-inner {
    margin: 0;
    padding-left: 4vw;
    width: 93.8666666667vw;
  }
}
.p-why .p-why-proof__text {
  font-size: 1.6666666667vw;
  line-height: 1.43;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-why .p-why-proof__text {
    font-size: 4.2666666667vw;
  }
}
.p-why .p-why-proof__chips {
  margin: 0.5208333333vw auto 0.78125vw;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-proof__chips {
    margin: 1.3333333333vw auto 2vw;
  }
}
.p-why .c-chip {
  display: inline-block;
  background: #fff;
  color: #32516B;
  font-size: 1.7708333333vw;
  line-height: 1.67;
  margin-top: 1.25vw;
  padding: 0 0.46875vw;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-why .c-chip {
    padding: 0.8vw 1.6vw;
    font-size: 4.8vw;
    letter-spacing: 0;
  }
}
.p-why .p-why-unique {
  background: linear-gradient(90deg, #02adb9 44%, #51ccbc 100%);
  color: #fff;
  text-align: center;
  padding: 3.125vw 0;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-unique {
    padding: 8vw 0;
  }
}
.p-why .p-why-unique__lead {
  font-size: 1.875vw;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-unique__lead {
    font-size: 4.8vw;
  }
}
.p-why .p-why-unique__lead.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-unique__lead.u-sp {
    display: block !important;
  }
}
.p-why .p-why-unique__chips {
  margin: 0.7291666667vw 0;
  gap: 0.5208333333vw;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-unique__chips {
    gap: 1.0666666667vw;
  }
}
.p-why .p-why-unique__plus {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-unique__plus {
    display: block;
    position: relative;
    margin: -1.6vw auto;
    width: 4.9333333333vw;
    height: 4.9333333333vw;
    border-radius: 50%;
    background: #32516B;
    color: #fff;
    font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Arial, sans-serif;
    place-items: center;
    font-size: 3.4666666667vw;
    line-height: 1.3;
    z-index: 1;
  }
}
.p-why .p-why-unique__title {
  display: inline-block;
  margin-top: 0.9375vw;
  padding: 0.0520833333vw 0.8333333333vw;
  background: #fff;
  color: #EB516D;
  font-size: 2.9166666667vw;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-why .p-why-unique__title {
    padding: 0.1333333333vw 2.1333333333vw;
    font-size: 7.4666666667vw;
  }
}

/* ================= p-features ================= */
.p-features {
  padding: 5.2083333333vw 0;
  /* ====== 交互テーマを変数で切替 ====== */
  /* ====== カード共通 ====== */
}
@media screen and (max-width: 767px) {
  .p-features {
    padding: 8vw 0;
  }
}
.p-features__head {
  text-align: center;
  margin-bottom: 1.1979166667vw;
}
@media screen and (max-width: 767px) {
  .p-features__head {
    margin-bottom: 3.0666666667vw;
  }
}
.p-features__kicker {
  font-size: 0.9895833333vw;
  letter-spacing: 0.08em;
  color: #32516B;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  margin-bottom: 0.3125vw;
}
@media screen and (max-width: 767px) {
  .p-features__kicker {
    font-size: 2.5333333333vw;
    margin-bottom: 0.8vw;
  }
}
.p-features__kicker .is-sm {
  font-size: 0.842em;
}
.p-features__line {
  display: block;
  margin: 0 auto;
  width: 12.4479166667vw;
  height: 0.9895833333vw;
  background-image: url(../images/under-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-features__line {
    width: 31.8666666667vw;
    height: 2.5333333333vw;
  }
}
.p-features__title {
  margin-top: -0.78125vw;
  font-size: 2.5vw;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  color: #32516B;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .p-features__title {
    margin-top: -2vw;
    font-size: 6.4vw;
  }
}
.p-features__list {
  margin: 0 23.9583333333vw;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6041666667vw;
  /* 奇数: 白背景 + グリーン枠 + ネイビー文字 + バッジ右上（ミント） */
  /* 偶数: グリーン背景 + 白枠 + 文字白 + バッジ左上（濃グリーン） */
}
@media screen and (max-width: 767px) {
  .p-features__list {
    margin: 0 4vw;
    gap: 6.6666666667vw;
  }
}
.p-features__list > li:nth-child(odd) {
  --card-bg: #fff;
  --card-border: #7BCABD;
  --card-fg: #32516B;
  --badge-fg: #fff;
}
.p-features__list > li:nth-child(even) {
  --card-bg:#7BCABD;
  --card-border: #fff;
  --card-fg: #fff;
  --badge-fg: #7BCABD;
}
.p-features__list > li:nth-child(even) .c-feature__title {
  text-align: end;
}
.p-features .c-feature {
  position: relative;
  background: var(--card-bg);
  color: var(--card-fg);
  border: 3px solid var(--card-border);
  border-radius: 0.8333333333vw;
  padding: 2.0833333333vw 1.5625vw;
  box-shadow: 7px 7px 10px rgb(243, 240, 234);
  /* タイトル＆テキストは currentColor で色を継承 */
  /* バッジ本体 */
}
@media screen and (max-width: 767px) {
  .p-features .c-feature {
    border-radius: 4vw;
    padding: 5.3333333333vw 4vw;
  }
}
.p-features .c-feature__title {
  margin: 0.4166666667vw 0 0.625vw;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-features .c-feature__title {
    margin: 1.0666666667vw 0 1.3333333333vw;
  }
}
.p-features .c-feature__title-main {
  display: inline-block;
  /* ← 幅=テキスト幅に */
  color: currentColor;
  font-size: 2.0833333333vw;
  line-height: 1.5;
  position: relative;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-features .c-feature__title-main {
    font-size: 5.3333333333vw;
  }
}
.p-features .c-feature__title-main::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-features .c-feature__title-main::after {
    content: "";
    display: block;
    width: 100%;
    /* ← テキスト幅に追従 */
    border-bottom: 2px dotted var(--card-fg);
    /* 高さ要らないが Safari 対策で行を確保したいなら height:0; でもOK */
    margin-top: 0.15625vw;
    /* 線の上下微調整 */
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-features .c-feature__title-main::after {
    margin-top: 0.4vw;
  }
}
.p-features .c-feature__title-accent {
  font-size: 2.5vw;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-features .c-feature__title-accent {
    display: block;
    font-size: 6.4vw;
  }
}
.p-features .c-feature__media {
  margin-top: 1.25vw;
  border-radius: 0.625vw;
  width: 48.6979166667vw;
  height: 17.4479166667vw;
}
@media screen and (max-width: 767px) {
  .p-features .c-feature__media {
    margin-top: 3.2vw;
    border-radius: 1.6vw;
    width: 84vw;
    height: 44.6666666667vw;
  }
}
.p-features .c-feature__media img {
  display: block;
  width: 100%;
  height: auto;
}
.p-features .c-feature__desc {
  margin-top: 1.5625vw;
  font-size: 1.6666666667vw;
  line-height: 1.9;
  color: currentColor;
}
@media screen and (max-width: 767px) {
  .p-features .c-feature__desc {
    margin-top: 4vw;
    font-size: 4.2666666667vw;
  }
}
.p-features .c-feature .c-feature-badge {
  position: absolute;
  z-index: 3;
  text-align: center;
  display: grid;
  width: 5.5729166667vw;
  height: 7.65625vw;
  /* 右/左のどちらに付くかはmodifierで */
  /* 中の文字組み */
}
.p-features .c-feature .c-feature-badge.c-feature-badge--right {
  background-image: url(../images/feature-badge_gr.png);
  background-size: cover;
  right: 0.7291666667vw;
  top: -1.1458333333vw;
}
.p-features .c-feature .c-feature-badge.c-feature-badge--left {
  background-image: url(../images/feature-badge_wh.png);
  background-size: cover;
  left: 0.7291666667vw;
  top: -1.1458333333vw;
}
@media screen and (max-width: 767px) {
  .p-features .c-feature .c-feature-badge {
    width: 14.2666666667vw;
    height: 19.6vw;
  }
  .p-features .c-feature .c-feature-badge.c-feature-badge--right {
    right: 4vw;
    top: -3.4666666667vw;
  }
  .p-features .c-feature .c-feature-badge.c-feature-badge--left {
    left: 4vw;
    top: -3.4666666667vw;
  }
}
.p-features .c-feature .c-feature-badge__label {
  letter-spacing: 0.12em;
  font-size: 1.25vw;
  position: relative;
  line-height: 1;
  margin-top: 0.78125vw;
  color: var(--badge-fg);
  /* ラベル下の白線 */
}
@media screen and (max-width: 767px) {
  .p-features .c-feature .c-feature-badge__label {
    font-size: 3.2vw;
    margin-top: 1.8666666667vw;
  }
}
.p-features .c-feature .c-feature-badge__label::after {
  content: "";
  display: block;
  width: 4.2708333333vw;
  height: 0.0520833333vw;
  margin: 0.3125vw auto 0;
  background: var(--badge-fg);
}
@media screen and (max-width: 767px) {
  .p-features .c-feature .c-feature-badge__label::after {
    width: 10.9333333333vw;
    height: 0.1333333333vw;
    margin: 0.8vw auto 0;
  }
}
.p-features .c-feature .c-feature-badge__num {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  /* 見出し用のセリフ体を指定してね */
  line-height: 1;
  font-size: 2.9166666667vw;
  color: var(--badge-fg);
  margin-top: -2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .p-features .c-feature .c-feature-badge__num {
    font-size: 6.4vw;
    margin-top: -5.3333333333vw;
  }
}
.p-features .c-feature:nth-child(2) .c-feature__desc {
  letter-spacing: -0.02em;
}
.p-features .c-feature:nth-child(6) .c-feature__title {
  margin-right: -1.5208333333vw;
}
@media screen and (max-width: 767px) {
  .p-features .c-feature:nth-child(6) .c-feature__title {
    margin-right: 0;
  }
}
.p-features .c-feature:nth-child(6) .c-feature__desc {
  letter-spacing: -0.04em;
}
.p-features .c-feature:last-child .c-feature__title-accent {
  display: block;
}

/* ========== p-comparison PCデフォ / SPは@mq(md)で上書き ========== */
.p-comparison {
  position: relative;
  background-color: #E8F3F1;
  padding: 5vw 0;
  overflow: hidden;
  /* 端末依存対策 */
}
@media screen and (max-width: 767px) {
  .p-comparison {
    padding: 7.4666666667vw 0 4.8vw;
  }
}
.p-comparison .l-accent {
  position: absolute;
  top: -1.4583333333vw;
  left: 0;
  width: 7.2760416667vw;
  height: 10.21875vw;
  background-image: url(../images/bg__accent.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-comparison .l-accent {
    top: -3.7333333333vw;
    width: 18.6266666667vw;
    height: 26.16vw;
  }
}
.p-comparison .l-accent-btm {
  position: absolute;
  bottom: -4.4270833333vw;
  right: -2.1354166667vw;
  width: 7.2760416667vw;
  height: 10.21875vw;
  background-image: url(../images/bg__accent-btm.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-comparison .l-accent-btm {
    bottom: -11.3333333333vw;
    right: -5.4666666667vw;
    width: 18.6266666667vw;
    height: 26.16vw;
  }
}
.p-comparison__title {
  text-align: center;
  font-size: 2.5vw;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  color: #32516B;
  line-height: 1.35;
  margin-bottom: 1.4583333333vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__title {
    font-size: 6.4vw;
    margin-bottom: 2.6666666667vw;
  }
}
.p-comparison-title .is-sm {
  font-size: 0.834em;
}
.p-comparison__scroller {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.p-comparison__note {
  position: relative;
  margin: 0.5729166667vw 23.9583333333vw 0 0;
  text-align: right;
  font-size: 0.5208333333vw;
  color: #32516B;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-comparison__note {
    margin: 1.4666666667vw 4vw 0 0;
    font-size: 1.3333333333vw;
  }
}

/* テーブル本体 */
.c-table {
  margin: 4.1666666667vw auto 0.5729166667vw;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.8333333333vw;
  /* 共通：ヘッダセルは透明＆相対位置。行の高さは“高い方(=63px)”で揃う */
  /* それぞれの色と高さだけ変える */
  /* 行 */
  /* 後続セル共通 */
  /* 行最後の右線を消す場合はここで調整 */
  /* 左の縦書きキー列 */
  /* theadのダミー列 */
  /* 実際の縦書きは内側のラッパーにのみ付与 */
  /* 実際の縦書きは内側だけに付ける */
  /* 幅固定の安定化も念のため */
}
@media screen and (max-width: 767px) {
  .c-table {
    margin: 10.6666666667vw 4vw 1.4666666667vw;
  }
}
.c-table th,
.c-table td {
  font-weight: 500;
}
.c-table__head th {
  border: 0;
  padding: 0.7291666667vw;
}
.c-table .c-table__th--pill {
  position: relative;
  background: transparent;
  color: #fff;
  text-align: center;
  padding: 0;
  /* ピルで水平余白を持たせる */
  vertical-align: middle;
  /* ピルを行中央に */
  /* 行の高さは大きい方に合わせたいので min-height は最大値にしておくと安心 */
  min-height: 3.28125vw;
  /* ピル本体（高さ可変） */
}
@media screen and (max-width: 767px) {
  .c-table .c-table__th--pill {
    min-height: 8.4vw;
    /* SPも同様に最大値ベースで */
  }
}
.c-table .c-table__th--pill::before {
  content: attr(data-label);
  /* 文字はここで描く（後述） */
  /* セル中央に配置 */
  display: block;
  height: var(--pill-h);
  line-height: var(--pill-h);
  /* 1行文字ならこれで中央揃え */
  padding: 0 1.0416666667vw;
  border-radius: 1.0416666667vw 1.0416666667vw 0 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-table .c-table__th--pill::before {
    padding: 0 2.1333333333vw;
    border-radius: 2.6666666667vw 2.6666666667vw 0 0;
  }
}
.c-table .c-table__th--our {
  --pill-h: 3.28125vw;
  font-size: 1.4583333333vw;
}
@media screen and (max-width: 767px) {
  .c-table .c-table__th--our {
    --pill-h: 8.4vw;
    font-size: 3.7333333333vw;
  }
}
.c-table .c-table__th--our::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -1.7708333333vw;
  background: #EB516D;
}
@media screen and (max-width: 767px) {
  .c-table .c-table__th--our::before {
    top: -6.6666666667vw;
  }
}
.c-table .c-table__th--other {
  --pill-h: 2.7083333333vw;
  font-size: 1.3541666667vw;
  /* ネイビー */
}
@media screen and (max-width: 767px) {
  .c-table .c-table__th--other {
    --pill-h: 6.9333333333vw;
    font-size: 3.4666666667vw;
  }
}
.c-table .c-table__th--other::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -1.1979166667vw;
  background: #32516B;
}
@media screen and (max-width: 767px) {
  .c-table .c-table__th--other::before {
    top: -5.2vw;
  }
}
.c-table__row {
  background: #fff;
  height: 7.0833333333vw;
}
@media screen and (max-width: 767px) {
  .c-table__row {
    height: 18.1333333333vw;
  }
}
.c-table__row:nth-child(6) {
  height: 9.4791666667vw;
}
@media screen and (max-width: 767px) {
  .c-table__row:nth-child(6) {
    height: 24.2666666667vw;
  }
}
.c-table__row:last-child .c-table__td--our {
  padding-left: 2.9166666667vw;
}
@media screen and (max-width: 767px) {
  .c-table__row:last-child .c-table__td--our {
    padding-left: 0;
    text-align: center;
  }
}
.c-table__td {
  vertical-align: middle;
  color: #32516B;
  font-size: 1.25vw;
}
@media screen and (max-width: 767px) {
  .c-table__td {
    border-bottom-width: 1px;
    border-right-width: 1px;
    font-size: 3.2vw;
  }
}
.c-table__td {
  line-height: 1.45;
}
.c-table__td:last-child {
  border-right: 0;
}
.c-table .c-table__td--our {
  padding-left: 2.9166666667vw;
  width: 35.625vw;
  border-bottom: 1px solid #FFC1C1;
}
@media screen and (max-width: 767px) {
  .c-table .c-table__td--our {
    padding-left: 4vw;
    width: 49.8666666667vw;
  }
}
.c-table .c-table__td--other {
  width: 13.9583333333vw;
  text-align: center;
  background-color: #F6F8F8;
  border-bottom: 1px solid #32516B;
}
@media screen and (max-width: 767px) {
  .c-table .c-table__td--other {
    width: 35.7333333333vw;
  }
}
.c-table__th--key {
  width: 4.1666666667vw;
  border-right: 0;
}
.c-table__th--row {
  position: relative;
  padding: 0;
  width: 2.6041666667vw;
  min-width: 2.6041666667vw;
  box-sizing: border-box;
  background: #7BCABD;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  /* 縦書き */
  /* 全角を縦中横にしない */
  vertical-align: middle;
  font-size: 1.25vw;
}
@media screen and (max-width: 767px) {
  .c-table__th--row {
    width: 6.6666666667vw;
    font-size: 3.2vw;
  }
}
.c-table .c-table__th--row > .c-table__v {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  height: auto;
}
.c-table .c-table__vt {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-text-orientation: upright;
}
.c-table .c-table {
  table-layout: fixed;
  border-collapse: separate;
  /* collapse は Safari と縦書きの相性が悪いことあり */
}
@supports not (text-orientation: upright) {
  .c-table .c-table__v {
    writing-mode: initial;
    transform: rotate(90deg);
    transform-origin: center;
  }
}
.c-table tbody tr:first-child .c-table__th--row {
  border-top: 1px solid #fff;
}

/* ===== p-curriculum ===== */
/* ========= p-curriculum ========= */
.p-curriculum {
  background-image: url(../images/bg__curriculum.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.125vw 0 2.34375vw;
  /* PC：上3 / 下2（中央寄せ） */
}
@media screen and (max-width: 767px) {
  .p-curriculum {
    background-image: url(../images/bg__curriculum--sp.jpg);
    padding: 8vw 0 6vw;
  }
}
.p-curriculum__title {
  font-size: 2.5vw;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1.35;
  margin-bottom: 1.9270833333vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-curriculum__title {
    font-size: 6.4vw;
    margin-bottom: 3.2vw;
  }
}
.p-curriculum__list {
  display: grid;
  justify-items: center;
  row-gap: 2.0833333333vw;
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
  margin: 0 auto;
  width: 52.0833333333vw;
}
@media screen and (max-width: 767px) {
  .p-curriculum__list {
    grid-template-columns: 1fr;
    margin: 0 4vw;
    display: flex;
    flex-direction: column;
    gap: 2.6666666667vw;
    width: auto;
  }
}
.p-curriculum__list > .c-step {
  justify-self: center;
}

/* PC：5マーカー列で「上3：1/3/5、下2：2/4」に配置 */
@media (min-width: 768px) {
  .p-curriculum__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .p-curriculum__list > li:nth-child(1) {
    grid-column: 1;
  }
  .p-curriculum__list > li:nth-child(2) {
    grid-column: 3;
  }
  .p-curriculum__list > li:nth-child(3) {
    grid-column: 5;
  }
  .p-curriculum__list > li:nth-child(4) {
    grid-column: 2;
  }
  .p-curriculum__list > li:nth-child(5) {
    grid-column: 4;
  }
}
/* ========= c-step ========= */
/* PC：丸サムネ上、文言下（縦積みのカード） */
.c-step {
  position: relative;
  width: min(100%, 16.6666666667vw);
  display: grid;
  row-gap: 0.7291666667vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-step {
    /* SP：左右に振るタイムライン */
    width: 100%;
    max-width: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* 斜めの点線（最後は消す） */
    /* 交互に並び替え */
  }
  .c-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3.7333333333vw;
    width: 16vw;
    height: 2px;
    transform-origin: left center;
    transform: translateX(-50%) rotate(35deg);
    background: repeating-linear-gradient(to right, #32516B 0, #32516B 4px, transparent 4px, transparent 6px);
  }
  .c-step:nth-child(even) {
    flex-direction: row-reverse;
  }
  .c-step:nth-child(even) .c-step__thumb .c-step__badge {
    position: absolute;
    border-radius: 9999px;
    background: #7BCABD;
    color: #fff;
    font-family: "Old Standard TT", Georgia, "Times New Roman", serif;
    font-size: 3.3333333333vw;
    text-align: center;
    line-height: 1;
    top: -2.3333333333vw;
    right: 22.6666666667vw;
    left: auto;
    width: 16.1333333333vw;
    height: 16.1333333333vw;
    border-width: 0.4vw;
    font-size: 8.5333333333vw;
  }
  .c-step:nth-child(even)::after {
    transform: translateX(-50%) rotate(-35deg);
    bottom: -5.0666666667vw;
  }
  .c-step:nth-child(odd) .c-step__thumb .c-step__badge {
    position: absolute;
    border-radius: 9999px;
    background: #7BCABD;
    color: #fff;
    font-family: "Old Standard TT", Georgia, "Times New Roman", serif;
    font-size: 3.3333333333vw;
    text-align: center;
    line-height: 1;
    top: -2vw;
    left: -1.8666666667vw;
    width: 16.1333333333vw;
    height: 16.1333333333vw;
    border-width: 0.4vw;
    font-size: 8.5333333333vw;
  }
  .c-step:nth-child(odd) .c-step__thumb {
    grid-column: 1;
    justify-self: start;
  }
  .c-step:nth-child(odd) .c-step__body {
    grid-column: 2;
  }
  .c-step:nth-child(even) .c-step__thumb {
    grid-column: 2;
    justify-self: end;
  }
  .c-step:nth-child(even) .c-step__body {
    grid-column: 1;
    text-align: left;
  }
}

/* 丸サムネ（ミント太枠＋白細枠） */
.c-step__thumb {
  width: 14.6875vw;
  height: 14.6875vw;
  border-radius: 9999px;
  overflow: hidden;
  border: 9px solid #7BCABD;
  /* Dayバッジ */
}
.c-step__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-step__thumb {
    width: 37.6vw;
    height: 37.6vw;
  }
}
.c-step__thumb .pc {
  position: absolute;
  border-radius: 9999px;
  background: #7BCABD;
  color: #fff;
  font-family: "Old Standard TT", Georgia, "Times New Roman", serif;
  font-size: 3.3333333333vw;
  text-align: center;
  line-height: 1;
  top: -0.7395833333vw;
  left: -0.6770833333vw;
  width: 6.3020833333vw;
  height: 6.3020833333vw;
  border-width: 0.4vw;
}
.c-step__thumb .pc .c-step__badge-inner {
  position: absolute;
  top: 0.2604166667vw;
  left: 0.2604166667vw;
  width: 5.78125vw;
  height: 5.78125vw;
  border: 1px solid #fff;
  border-radius: 9999px;
}
@media screen and (max-width: 767px) {
  .c-step__thumb .c-step__badge .c-step__badge-inner {
    position: absolute;
    top: 0.6666666667vw;
    left: 0.6666666667vw;
    width: 14.8vw;
    height: 14.8vw;
    border: 1px solid #fff;
    border-radius: 9999px;
  }
}
.c-step__thumb .c-step__badge .c-step__badge-inner em {
  display: block;
  font-style: normal;
  font-size: 0.42em;
  letter-spacing: 0.06em;
  margin: 0.78125vw auto 0;
}
@media screen and (max-width: 767px) {
  .c-step__thumb .c-step__badge .c-step__badge-inner em {
    margin: 2vw auto 0;
    font-size: 2.6666666667vw;
  }
}

/* テキスト */
.c-step__body {
  margin: auto;
}

.c-step__title {
  font-size: 0.9375vw;
  line-height: 1.9;
  color: #32516B;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-step__title {
    font-size: 3.7333333333vw;
    line-height: 1.7;
    text-align: center;
  }
}

/* ===== p-support ===== */
.p-support {
  position: relative;
  padding: 3.125vw 0;
  background: linear-gradient(163deg, #7BCABD 0%, #B3EDE4 100%, transparent 70%);
  /* 上部ミント帯 */
  /* 白い大きなカード */
  /* リスト（PCは2列まで並ぶ/自動折返し） */
}
@media screen and (max-width: 767px) {
  .p-support {
    padding: 8vw 0;
  }
}
.p-support .l-accent-btm {
  position: absolute;
  bottom: -3.125vw;
  left: -0.1822916667vw;
  width: 7.2760416667vw;
  height: 10.21875vw;
  background-image: url(../images/bg__accent-btm.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-support .l-accent-btm {
    bottom: -11.2vw;
    left: -0.4666666667vw;
    width: 18.6266666667vw;
    height: 26.16vw;
  }
}
.p-support__title {
  color: #fff;
  text-align: center;
  font-size: 2.5vw;
  font-weight: 500;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .p-support__title {
    font-size: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-support__panel {
  background: #fff;
  border-radius: 1.5625vw;
  margin: 0 23.9583333333vw;
  padding: 2.34375vw 0 3.3333333333vw 1.5625vw;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .p-support__panel {
    border-radius: 4vw;
    margin: 0 4vw;
    padding: 6vw 0 8.5333333333vw 4vw;
  }
}
.p-support__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .p-support__list {
    grid-template-columns: 1fr;
    row-gap: 6vw;
  }
}
.p-support .u-img--pc {
  position: absolute;
  bottom: 3.125vw;
  right: 23.9583333333vw;
  width: 18.4375vw;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-support .u-img--pc {
    display: none;
  }
}

/* ===== c-perk（1行アイテム） ===== */
.c-perk {
  display: grid;
  grid-template-columns: 5vw 1fr;
  align-items: center;
  -moz-column-gap: 2.6041666667vw;
       column-gap: 2.6041666667vw;
  padding: 0.7291666667vw 0.5208333333vw;
  /* バッジ（円） */
  /* テキストブロック */
}
@media screen and (max-width: 767px) {
  .c-perk {
    grid-template-columns: 11.7333333333vw 1fr;
    -moz-column-gap: 6.6666666667vw;
         column-gap: 6.6666666667vw;
    padding: 1.6vw 1.0666666667vw;
  }
}
.c-perk__badge {
  position: relative;
  width: 6.5104166667vw;
  height: 6.5104166667vw;
  border-radius: 999px;
  background: #7BCABD;
  /* ミント */
  color: #fff;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-perk__badge {
    width: 16.6666666667vw;
    height: 16.6666666667vw;
    border-width: 0.4vw;
  }
}
.c-perk__badge-label {
  font-size: 0.7291666667vw;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 0.15625vw;
  /* ラベル下の白線 */
}
@media screen and (max-width: 767px) {
  .c-perk__badge-label {
    font-size: 3.2vw;
    margin-top: 1.2vw;
  }
}
.c-perk__badge-label::after {
  content: "";
  display: block;
  width: 4.2708333333vw;
  height: 0.0520833333vw;
  margin: 0.3125vw auto 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-perk__badge-label::after {
    width: 10.9333333333vw;
    height: 0.1333333333vw;
    margin: 0.8vw auto 0;
  }
}
.c-perk__badge-num {
  font-family: "Old Standard TT", Georgia, "Times New Roman", serif;
  line-height: 1;
  font-size: 3.3333333333vw;
}
@media screen and (max-width: 767px) {
  .c-perk__badge-num {
    font-size: 8.5333333333vw;
  }
}
.c-perk__text {
  color: #32516B;
}
.c-perk__lead {
  font-size: 2.0833333333vw;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-perk__lead {
    font-size: 5.3333333333vw;
  }
}
.c-perk__desc {
  font-size: 1.6666666667vw;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .c-perk__desc {
    font-size: 4.2666666667vw;
  }
}

.c-perk:nth-child(2) .c-perk__text {
  display: flex;
  align-items: center;
  gap: 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .c-perk:nth-child(2) .c-perk__text {
    gap: 5.3333333333vw;
  }
}

/* SPの改行ユーティリティ（既存ルールに合わせて） */
.u-br--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-br--sp {
    display: inline;
  }
}

/* =========================
   Voices
   ========================= */
.p-voices {
  position: relative;
  background-image: url(../images/bg__curriculum.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.125vw 0 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .p-voices {
    background-image: url(../images/bg__curriculum--sp.jpg);
    padding: 8vw 0 5.3333333333vw;
  }
}
.p-voices__title {
  font-size: 2.5vw;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1.45;
  color: #32516B;
  margin-bottom: 3.125vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-voices__title {
    font-size: 6.4vw;
    margin-bottom: 8vw;
  }
}
.p-voices__list {
  width: 52.0833333333vw;
  display: grid;
  gap: 3.6979166667vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-voices__list {
    width: 100%;
    gap: 8.5333333333vw;
  }
}
.p-voices__note {
  margin: 1.5625vw 23.9583333333vw 0 0;
  text-align: right;
  font-size: 0.5208333333vw;
  color: #32516B;
}
@media screen and (max-width: 767px) {
  .p-voices__note {
    margin: 4vw 4vw 0 0;
    font-size: 1.3333333333vw;
  }
}

/* ---------- card ---------- */
.c-voice {
  position: relative;
  /* 白カード（本文） */
  /* 見出し（赤） */
  /* 年代・属性タグ（右下のピル） */
  /* 強調（赤） */
}
.c-voice__figure {
  position: absolute;
  width: 17.96875vw;
  height: 10.5208333333vw;
  box-shadow: 2px 4px 10px rgba(156, 177, 173, 0.25);
}
@media screen and (max-width: 767px) {
  .c-voice__figure {
    width: 46vw;
    height: 26.9333333333vw;
  }
}
.c-voice__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-voice__card {
  background: #fff;
  margin: 4.4270833333vw 0 0 1.5625vw;
  padding: 2.0833333333vw 0 2.0833333333vw 1.5625vw;
  box-shadow: -4px 9px 30px rgba(193, 184, 184, 0.25);
  border-radius: 0 0 0 3.125vw;
  border: 1px solid #7BCABD;
}
@media screen and (max-width: 767px) {
  .c-voice__card {
    margin: 7.0666666667vw 4vw 0;
    padding: 4vw 2.6666666667vw 4.5333333333vw 4vw;
    border-radius: 0 0 0 8vw;
  }
}
.c-voice__lead {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  margin-left: 15.7291666667vw;
  font-size: 1.6666666667vw;
  line-height: 1.6;
  margin: 0 0 0.6770833333vw 15.7291666667vw;
}
@media screen and (max-width: 767px) {
  .c-voice__lead {
    margin-left: 41.0666666667vw;
    margin-bottom: 6vw;
    font-size: 4.2666666667vw;
  }
}
.c-voice__text {
  font-size: 1.25vw;
  line-height: 1.58;
  color: #32516B;
  margin-right: 1.5625vw;
}
@media screen and (max-width: 767px) {
  .c-voice__text {
    margin-right: 0;
    font-size: 3.2vw;
  }
}
.c-voice__tag {
  position: absolute;
  bottom: -0.9375vw;
  right: 0;
  padding: 0 1.3020833333vw;
  background: #7BCABD;
  color: #fff;
  font-size: 1.25vw;
  line-height: 1.58;
}
@media screen and (max-width: 767px) {
  .c-voice__tag {
    bottom: -2.4vw;
    right: 4vw;
    padding: 0 3.3333333333vw;
    font-size: 3.2vw;
  }
}
.c-voice:nth-child(even) {
  /* 白カード（本文） */
  /* 見出し（赤） */
  /* 年代・属性タグ（右下のピル） */
}
.c-voice:nth-child(even) .c-voice__figure {
  position: absolute;
  right: 0;
  width: 17.96875vw;
  height: 10.5208333333vw;
  box-shadow: 2px 4px 10px rgba(156, 177, 173, 0.25);
}
@media screen and (max-width: 767px) {
  .c-voice:nth-child(even) .c-voice__figure {
    width: 46vw;
    height: 26.9333333333vw;
  }
}
.c-voice:nth-child(even) .c-voice__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-voice:nth-child(even) .c-voice__card {
  background: #fff;
  margin: 4.4270833333vw 1.5625vw 0 0;
  padding: 2.6041666667vw 1.5625vw 2.0833333333vw;
  box-shadow: -4px 9px 30px rgba(193, 184, 184, 0.25);
  border-radius: 0 0 3.125vw 0;
  border: 1px solid #7BCABD;
}
@media screen and (max-width: 767px) {
  .c-voice:nth-child(even) .c-voice__card {
    margin: 7.0666666667vw 4vw 0;
    padding: 4vw 3.2vw 9.6vw 4vw;
    border-radius: 0 0 8vw 0;
  }
}
.c-voice:nth-child(even) .c-voice__lead {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 1.6666666667vw;
  line-height: 1.6;
  margin: 0 0 2.5520833333vw;
}
@media screen and (max-width: 767px) {
  .c-voice:nth-child(even) .c-voice__lead {
    text-align: start;
    margin-bottom: 6vw;
    font-size: 4.2666666667vw;
  }
}
.c-voice:nth-child(even) .c-voice__text {
  font-size: 1.25vw;
  line-height: 1.58;
  color: #32516B;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .c-voice:nth-child(even) .c-voice__text {
    font-size: 3.2vw;
  }
}
.c-voice:nth-child(even) .c-voice__tag {
  position: absolute;
  bottom: -0.9375vw;
  left: 0;
  padding: 0 1.3020833333vw;
  width: -moz-fit-content;
  width: fit-content;
  background: #7BCABD;
  color: #fff;
  font-size: 1.25vw;
  line-height: 1.58;
}
@media screen and (max-width: 767px) {
  .c-voice:nth-child(even) .c-voice__tag {
    bottom: -2.4vw;
    left: 4vw;
    padding: 0 3.3333333333vw;
    font-size: 3.2vw;
  }
}
.c-voice .u-accent {
  color: #e46a7a;
  font-weight: 700;
}

.c-voice:last-of-type .c-voice__lead {
  font-size: 1.6666666667vw;
  line-height: 1.6;
  margin: 0 0 2.5520833333vw 15.7291666667vw;
}
@media screen and (max-width: 767px) {
  .c-voice:last-of-type .c-voice__lead {
    margin-left: 41.0666666667vw;
    margin-bottom: 6vw;
    font-size: 4.2666666667vw;
  }
}

/* =========================================
   FAQ
   ----------------------------------------- */
.p-faq {
  position: relative;
  background-color: #E8F3F1;
  padding: 5.2083333333vw 23.9583333333vw;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 8vw 4vw;
  }
}
.p-faq .l-accent {
  position: absolute;
  top: -1.8489583333vw;
  left: 0;
  width: 7.2760416667vw;
  height: 10.21875vw;
  background-image: url(../images/bg__accent-btm.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-faq .l-accent {
    top: -4.7333333333vw;
    width: 18.6266666667vw;
    height: 26.16vw;
  }
}
.p-faq__title {
  text-align: center;
  font-size: 2.5vw;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  line-height: 1.35;
  color: #32516B;
  margin-bottom: 2.6041666667vw;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 6.4vw;
    margin-bottom: 6.6666666667vw;
  }
}

/* =========================================
   c-faq
   ----------------------------------------- */
.c-faq {
  display: grid;
  width: 52.0833333333vw;
  gap: 1.1458333333vw;
  /* 1QAブロック */
  /* ---------- Q（ミントバー） ---------- */
  /* ---------- A（白カード） ---------- */
}
@media screen and (max-width: 767px) {
  .c-faq {
    gap: 2.9333333333vw;
    width: 100%;
  }
}
.c-faq__item {
  display: grid;
}
.c-faq__item:nth-child(4) .c-faq__q {
  padding: 0.5208333333vw 1.0416666667vw;
}
@media screen and (max-width: 767px) {
  .c-faq__item:nth-child(4) .c-faq__q {
    padding: 1.3333333333vw 1.8666666667vw 1.3333333333vw 2.6666666667vw;
  }
}
.c-faq__q {
  display: grid;
  grid-template-columns: 2.9166666667vw 1fr;
  align-items: center;
  -moz-column-gap: 1.1979166667vw;
       column-gap: 1.1979166667vw;
  background: #7BCABD;
  color: #fff;
  padding: 1.40625vw 1.0416666667vw;
}
@media screen and (max-width: 767px) {
  .c-faq__q {
    grid-template-columns: 6.4vw 1fr;
    -moz-column-gap: 3.0666666667vw;
         column-gap: 3.0666666667vw;
    padding: 3.6vw 1.8666666667vw 3.6vw 2.6666666667vw;
  }
}
.c-faq__q-label {
  inline-size: 2.5vw;
  block-size: 2.5vw;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Arial, sans-serif;
  font-size: 1.875vw;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-faq__q-label {
    inline-size: 5.3333333333vw;
    block-size: 5.3333333333vw;
    font-size: 4.8vw;
    border-width: 0.4vw;
  }
}
.c-faq__q-text {
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-faq__q-text {
    font-size: 3.2vw;
  }
}
.c-faq__a {
  display: grid;
  grid-template-columns: 2.9166666667vw 1fr;
  -moz-column-gap: 1.4583333333vw;
       column-gap: 1.4583333333vw;
  align-items: center;
  background: #fff;
  color: #32516B;
  padding: 1.0416666667vw 1.0416666667vw;
}
@media screen and (max-width: 767px) {
  .c-faq__a {
    grid-template-columns: 6.4vw 1fr;
    -moz-column-gap: 0.9333333333vw;
         column-gap: 0.9333333333vw;
    padding: 3.4666666667vw 3.4666666667vw 3.4666666667vw 2.2666666667vw;
  }
}
.c-faq__a-label {
  color: #e46a7a;
  /* アクセントピンク */
  font-family: "Noto Sans JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Arial, sans-serif;
  font-size: 1.875vw;
  line-height: 1;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .c-faq__a-label {
    font-size: 4.8vw;
  }
}
.c-faq__a-text {
  font-size: 1.25vw;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .c-faq__a-text {
    font-size: 3.2vw;
  }
}

/* =========================
   Outline
   ========================= */
.p-outline {
  background-color: #E8F3F1;
  /* ---- ヒーロー ---- */
  /* ---- 白い角丸カード ---- */
}
.p-outline__hero {
  background-image: url(../images/bg__outline.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 17.65625vw;
}
@media screen and (max-width: 767px) {
  .p-outline__hero {
    background-image: url(../images/bg__outline--sp.png);
    height: 45.2vw;
  }
}
.p-outline__heading {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 2.5vw;
  line-height: 1.1;
  color: #fff;
  padding: 5.2083333333vw 0 0 33.28125vw;
  text-shadow: 0 0 20px rgb(1, 1, 1);
}
@media screen and (max-width: 767px) {
  .p-outline__heading {
    padding: 8vw 0 0 9.0666666667vw;
    font-size: 6.4vw;
  }
}
.p-outline__card {
  max-width: 54.1666666667vw;
  margin: -6.4583333333vw auto 1.5104166667vw;
  /* 画像に少し食い込ませる */
  padding: 1.6666666667vw 1.5625vw 2.7083333333vw;
  background: #fff;
  border-radius: 3.125vw;
}
@media screen and (max-width: 767px) {
  .p-outline__card {
    max-width: min(92vw, 92vw);
    margin: -16.5333333333vw auto 3.8666666667vw;
    padding: 4.2666666667vw 4vw 6.9333333333vw;
    border-radius: 8vw;
  }
}

/* =========================
   Definition list
   ========================= */
.c-outline {
  display: grid;
  gap: 3.125vw;
  /* 用語（見出し） */
  /* 詳細テキスト */
}
@media screen and (max-width: 767px) {
  .c-outline {
    gap: 8vw;
  }
}
.c-outline__row {
  text-align: center;
  color: #32516B;
}
.c-outline__term {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 2.0833333333vw;
  line-height: 1.45;
  margin-bottom: 1.09375vw;
  position: relative;
  padding-bottom: 0.8333333333vw;
  /* 下に点線 */
}
.c-outline__term::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32.8125vw;
  height: 0;
  border-bottom: 2px dotted color-mix(in oklab, #2f4054 40%, transparent);
}
@media screen and (max-width: 767px) {
  .c-outline__term {
    font-size: 5.3333333333vw;
    margin-bottom: 2.8vw;
    padding-bottom: 1.6vw;
  }
  .c-outline__term::after {
    width: 84vw;
    border-bottom-width: 0.2666666667vw;
  }
}
.c-outline__desc {
  font-size: 1.6666666667vw;
  line-height: 1.45;
  color: #32516B;
  position: relative;
  padding-bottom: 0.9375vw;
}
@media screen and (max-width: 767px) {
  .c-outline__desc {
    font-size: 4.2666666667vw;
    padding-bottom: 1.8666666667vw;
  }
}

footer {
  margin: 1.4583333333vw 0 1.25vw;
  width: 100vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer {
    margin: 2.9333333333vw 0 2.4vw;
  }
}
footer .footer__link {
  display: flex;
  gap: 0.6770833333vw;
  justify-content: center;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  footer .footer__link {
    gap: 1.7333333333vw;
  }
}
footer .footer__link a {
  font-size: 0.7291666667vw;
  color: #32516B;
}
@media screen and (max-width: 767px) {
  footer .footer__link a {
    font-size: 1.8666666667vw;
  }
}
footer .footer__link a:hover {
  opacity: 0.7;
}
footer .footer__link span {
  content: "";
  width: 0.0520833333vw;
  height: 0.5208333333vw;
  background-color: #32516B;
}
@media screen and (max-width: 767px) {
  footer .footer__link span {
    width: 0.1333333333vw;
    height: 1.3333333333vw;
  }
}
footer .footer__copy {
  font-size: 0.5208333333vw;
  color: #32516B;
}
@media screen and (max-width: 767px) {
  footer .footer__copy {
    font-size: 1.3333333333vw;
  }
}

/* ================= privacy ================= */
.p-privacy {
  margin: 6.25vw auto 0;
  width: 52.0833333333vw;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    margin: 10.6666666667vw auto 0;
    width: 92vw;
  }
}
.p-privacy__title {
  color: #32516B;
  font-size: 2.5vw;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-privacy__title {
    font-size: 6.4vw;
  }
}
.p-privacy__lead {
  margin: 0.5208333333vw 0 3.125vw;
  line-height: 1.9;
  font-size: 1.25vw;
  color: #666;
}
@media screen and (max-width: 767px) {
  .p-privacy__lead {
    margin: 1.3333333333vw 0 5.3333333333vw;
    font-size: 3.2vw;
  }
}
.p-privacy__section {
  padding: 2.0833333333vw 0;
  border-top: 1px solid rgba(50, 81, 107, 0.6);
  color: #666;
}
@media screen and (max-width: 767px) {
  .p-privacy__section {
    padding: 2.6666666667vw 0;
  }
}
.p-privacy__section:first-of-type {
  border-top: 1px solid rgba(50, 81, 107, 0.6);
}
.p-privacy__section:last-of-type {
  border-bottom: 1px solid rgba(50, 81, 107, 0.6);
}
.p-privacy__heading {
  font-size: 1.25vw;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__heading {
    font-size: 3.2vw;
  }
}
.p-privacy__text, .p-privacy__list {
  margin: 0;
  line-height: 1.9;
  font-size: 0.9375vw;
}
@media screen and (max-width: 767px) {
  .p-privacy__text, .p-privacy__list {
    font-size: 2.6666666667vw;
  }
}
.p-privacy__note {
  margin-top: 0.5rem;
  font-size: 0.95em;
}

.p-privacy__footer {
  padding: 2.0833333333vw 0;
}
@media screen and (max-width: 767px) {
  .p-privacy__footer {
    padding: 5.3333333333vw 0;
  }
}

.p-privacy__copyright {
  font-size: 0.5208333333vw;
  color: #666;
}
@media screen and (max-width: 767px) {
  .p-privacy__copyright {
    font-size: 2.6666666667vw;
  }
}

/* ================= tokushoho ================= */
/* ================= tokushoho (legal) ================= */
.p-legal {
  /* レイアウト幅・余白はプラポリと合わせる */
  margin: 6.25vw auto 0;
  width: 52.0833333333vw;
  /* セクションの罫線＆余白（同トーン） */
  /* 小見出し（キャンセルポリシー内など） */
  /* 箇条書き（免除条件など） */
  /* 事業者情報のDL（2カラム → SPで縦積み） */
  /* 日付フッター */
}
@media screen and (max-width: 767px) {
  .p-legal {
    margin: 10.6666666667vw auto 0;
    width: 92vw;
  }
}
.p-legal__title {
  color: #32516B;
  font-size: 2.5vw;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-legal__title {
    font-size: 6.4vw;
  }
}
.p-legal__section {
  padding: 2.0833333333vw 0;
  border-top: 1px solid rgba(50, 81, 107, 0.6);
  color: #666;
}
@media screen and (max-width: 767px) {
  .p-legal__section {
    padding: 2.6666666667vw 0;
  }
}
.p-legal__section:first-of-type {
  border-top: 1px solid rgba(50, 81, 107, 0.6);
}
.p-legal__section:last-of-type {
  border-bottom: 1px solid rgba(50, 81, 107, 0.6);
}
.p-legal__heading {
  font-size: 1.25vw;
  margin: 0 0 0.5rem;
  color: #32516B;
}
@media screen and (max-width: 767px) {
  .p-legal__heading {
    font-size: 3.2vw;
  }
}
.p-legal__subheading {
  font-size: 1.0416666667vw;
  font-weight: 700;
  margin: 0.5208333333vw 0 0.3125vw;
}
@media screen and (max-width: 767px) {
  .p-legal__subheading {
    font-size: 2.9333333333vw;
    margin: 1.3333333333vw 0 0.8vw;
  }
}
.p-legal__text {
  margin: 0;
  line-height: 1.9;
  font-size: 0.9375vw;
}
@media screen and (max-width: 767px) {
  .p-legal__text {
    font-size: 2.6666666667vw;
  }
}
.p-legal__list--bulleted {
  margin: 0.5rem 0 0 1.2em;
  line-height: 1.9;
  list-style: disc;
  font-size: 0.9375vw;
}
@media screen and (max-width: 767px) {
  .p-legal__list--bulleted {
    font-size: 2.6666666667vw;
  }
}
.p-legal__list {
  margin: 0;
}
.p-legal__row {
  display: flex;
  gap: 1.0416666667vw;
  align-items: flex-start;
  padding: 0.5208333333vw 0;
}
@media screen and (max-width: 767px) {
  .p-legal__row {
    display: block;
    padding: 1.3333333333vw 0;
  }
}
.p-legal__term {
  width: 13.0208333333vw;
  min-width: 10.4166666667vw;
  font-weight: 700;
  color: #32516B;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-legal__term {
    width: auto;
    min-width: 0;
    margin: 0 0 0.8vw;
  }
}
.p-legal__desc {
  flex: 1 1 auto;
  margin: 0;
  color: #666;
  line-height: 1.9;
  font-size: 0.9375vw;
}
@media screen and (max-width: 767px) {
  .p-legal__desc {
    font-size: 2.6666666667vw;
  }
}
.p-legal__desc a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: inherit;
  word-break: break-all;
}
.p-legal__date {
  margin-top: 1.0416666667vw;
}
@media screen and (max-width: 767px) {
  .p-legal__date {
    margin-top: 2.6666666667vw;
  }
}
.p-legal__date small {
  color: #666;
  font-size: 0.7291666667vw;
}
@media screen and (max-width: 767px) {
  .p-legal__date small {
    font-size: 2.4vw;
  }
}/*# sourceMappingURL=style.css.map */