﻿@charset "utf-8";

:root {
  --paper: #f6f7f4;
  --white: #fffefb;
  --pine: #16332b;
  --pine-soft: #2c4a40;
  --sage: #cfdcd1;
  --sage-pale: #e7eee6;
  --haze: #8d84ab;
  --line: rgba(22, 51, 43, 0.14);
  --line-strong: rgba(22, 51, 43, 0.32);

  --mincho: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --gothic: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --numeral: "Cormorant Garamond", var(--mincho);

  --gutter: clamp(20px, 5vw, 72px);
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;   /* 固定ヘッダーで見出しが隠れないように */
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--pine);
  font-family: var(--gothic);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.header.is-stuck {
  /* backdrop-filter はここでは使わない。
     これを付けると、中にあるスマホ用メニュー（position: fixed）が
     画面全体ではなくヘッダーの内側に閉じ込められてしまう。
     背景は 94% 不透明なので、ぼかしが無くても見た目はほぼ変わらない */
  background: rgba(246, 247, 244, 0.96);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}

.brand {
  font-family: var(--mincho);
  font-size: clamp(14px, 3.4vw, 17px);
  letter-spacing: 0.18em;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.brand small {
  display: block;
  font-family: var(--numeral);
  font-size: 10px;
  letter-spacing: 0.34em;
  opacity: 0.55;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.9vw, 28px);
  font-size: 12.5px;
  letter-spacing: 0.12em;
}

.nav a {
  text-decoration: none;
  position: relative;
  padding-block: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav .nav-cta {
  background: var(--pine);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--pine-soft); }

/* スマホ用のメニューボタン（三本線） */

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--pine);
  transition: translate 0.32s ease, rotate 0.32s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) { translate: 0 8px; rotate: 45deg; }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { translate: 0 -8px; rotate: -45deg; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(120px, 16vh, 180px) 0 clamp(72px, 10vh, 120px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  background: linear-gradient(180deg, var(--sage-pale), rgba(231, 238, 230, 0));
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.hero-copy {
  writing-mode: vertical-rl;
  font-family: var(--mincho);
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.12em;
  height: clamp(300px, 44vh, 430px);
  margin: 0;
}

.hero-copy em {
  font-style: normal;
  -webkit-text-emphasis: filled circle var(--haze);
  text-emphasis: filled circle var(--haze);
}

.hero-body { padding-bottom: 8px; }

.hero-eyebrow {
  font-family: var(--numeral);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--pine-soft);
  margin: 0 0 22px;
}

.hero-photo {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: auto;
  filter: saturate(0.88);
}

.hero-lead {
  max-width: 30em;
  margin: 26px 0 0;
  font-size: 14px;
  color: var(--pine-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary { background: var(--pine); color: var(--white); }
.btn-primary:hover { background: var(--pine-soft); }

.btn-ghost { border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: var(--sage-pale); border-color: transparent; }

.btn span[aria-hidden] { font-family: var(--numeral); font-size: 16px; }

/* ---------- section frame ---------- */

.section { padding-block: clamp(72px, 11vh, 128px); }
.section-alt { background: var(--white); }

.section-head { margin-bottom: clamp(36px, 5vw, 60px); }

.section-label {
  font-family: var(--numeral);
  font-size: 11.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--haze);
  margin: 0 0 12px;
}

.section-title {
  font-family: var(--mincho);
  font-size: clamp(24px, 3.3vw, 36px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 0;
}

.section-note {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--pine-soft);
  max-width: 36em;
}

/* ---------- reasons ---------- */

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.reason {
  padding: 40px 32px 44px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.reason + .reason { padding-left: 32px; }
.reason + .reason::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 44px;
  width: 1px;
  background: var(--line);
}

.reason h3 {
  font-family: var(--mincho);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 20px 0 10px;
}

.reason p {
  margin: 0;
  font-size: 13.5px;
  color: var(--pine-soft);
}

.reason .reason-figure {
  font-family: var(--numeral);
  font-size: clamp(52px, 6.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--pine);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.reason .reason-figure small {
  font-family: var(--gothic);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--pine-soft);
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.gallery figure { margin: 0; position: relative; overflow: hidden; }

.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.88);
  transition: scale 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery figure:hover img { scale: 1.04; }

.gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

/* ---------- コンペ・ラウンド会 ---------- */

.community {
  background: var(--sage-pale);
  padding-block: clamp(72px, 11vh, 128px);
}

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.community-text p {
  font-size: 14px;
  color: var(--pine-soft);
  max-width: 34em;
}

.community-text .section-title { margin-bottom: 22px; }

.community-note {
  font-size: 12.5px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: 26px;
}

.community-photo { margin: 0; }

.community-photo img {
  width: 100%;
  height: auto;
  filter: saturate(0.9);
}

.community-photo figcaption {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--pine-soft);
  margin-top: 12px;
}

/* ---------- instructor ---------- */

.instructor {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.instructor-photo { filter: saturate(0.9); }

.instructor-name {
  font-family: var(--mincho);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 4px;
}

.instructor-name span {
  font-family: var(--numeral);
  display: block;
  font-size: 12px;
  letter-spacing: 0.34em;
  opacity: 0.5;
  margin-top: 8px;
}

.instructor p { font-size: 14px; color: var(--pine-soft); }

.instructor .section-label {
  font-family: var(--numeral);
  font-size: 11.5px;
  letter-spacing: 0.4em;
  color: var(--haze);
}

/* ---------- plans ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.plan { background: var(--paper); padding: clamp(28px, 4vw, 44px); }
.section-alt .plan { background: var(--white); }

.plan h3 {
  font-family: var(--mincho);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
}

.plan-sub { font-size: 13px; color: var(--pine-soft); margin: 0 0 24px; }

.plan-price {
  font-family: var(--numeral);
  font-size: clamp(38px, 4.6vw, 52px);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.plan-price small { font-family: var(--gothic); font-size: 13px; }

.plan ul { list-style: none; margin: 22px 0 0; padding: 0; font-size: 13.5px; }

.plan li {
  padding-left: 20px;
  position: relative;
  color: var(--pine-soft);
}

.plan li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.95em;
  width: 6px;
  height: 1px;
  background: var(--haze);
}

.plan-flag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--haze);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 2px 12px;
  margin-bottom: 12px;
}

.plan-first {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--numeral);
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1;
  color: var(--haze);
  margin: 18px 0 0;
}

.plan-first span {
  font-family: var(--gothic);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 3px 10px;
  align-self: center;
}

.plan-first small { font-family: var(--gothic); font-size: 12.5px; }

.campaign {
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(26px, 3.5vw, 40px);
  background: var(--sage-pale);
}

.campaign-label {
  font-family: var(--numeral);
  font-size: 11.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--haze);
  margin: 0 0 12px;
}

.campaign h3 {
  font-family: var(--mincho);
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin: 0 0 20px;
  max-width: 34em;
}

.campaign ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--pine-soft);
}

.campaign li {
  position: relative;
  padding-left: 20px;
  line-height: 1.95;
}

.campaign li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.95em;
  width: 6px;
  height: 1px;
  background: var(--haze);
}

.plan-extra {
  list-style: none;
  margin: clamp(28px, 4vw, 44px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.plan-extra li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px 20px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}

.plan-extra .amt {
  font-family: var(--numeral);
  font-size: 22px;
  letter-spacing: 0.02em;
}

.plan-extra .amt small {
  font-family: var(--gothic);
  font-size: 12.5px;
  margin-left: 4px;
}

.plan-notes {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  font-size: 13px;
  color: var(--pine-soft);
}

.plan-notes li {
  position: relative;
  padding-left: 20px;
  line-height: 1.95;
}

.plan-notes li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.95em;
  width: 6px;
  height: 1px;
  background: var(--haze);
}

/* ---------- faq ---------- */

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--mincho);
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--pine-soft); }

.faq-q-mark {
  font-family: var(--numeral);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--haze);
  margin-right: 14px;
}

.faq-sign {
  flex: none;
  position: relative;
  width: 13px;
  height: 13px;
  margin-top: 9px;
}

.faq-sign::before,
.faq-sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: var(--pine);
  transition: rotate 0.3s ease, opacity 0.3s ease;
}

.faq-sign::after { rotate: 90deg; }

.faq-item[open] .faq-sign::after { rotate: 0deg; opacity: 0; }

.faq-item .faq-a {
  padding: 0 4px 26px 4px;
  margin: 0;
  font-size: 13.5px;
  color: var(--pine-soft);
  max-width: 52em;
}


/* ---------- schedule ---------- */

.schedule-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.schedule-caption {
  font-family: var(--mincho);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
}

.schedule-scroll { overflow-x: auto; }

.schedule {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 13px;
}

.schedule th,
.schedule td {
  border: 1px solid var(--line);
  padding: 11px 8px;
  text-align: center;
  font-weight: 400;
}

.schedule thead th {
  font-family: var(--gothic);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  background: var(--sage-pale);
}

.schedule tbody th {
  font-family: var(--gothic);
  font-size: 13.5px;
  font-weight: 400;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-align: left;
  padding-left: 16px;
  white-space: nowrap;
  width: 42%;
  color: var(--pine);
}

.schedule td.open { color: var(--pine); }
.schedule td.closed { color: rgba(22, 51, 43, 0.34); }
.schedule td.ask { color: var(--haze); font-size: 12px; }

.ask-mark { color: var(--haze); }

/* ---------- access ---------- */

.access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.access dl {
  margin: 0;
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 0;
  font-size: 13.5px;
}

.access dt {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  letter-spacing: 0.14em;
  font-size: 12.5px;
  color: var(--haze);
}

.access dd {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--pine-soft);
}

.access-map {
  aspect-ratio: 4 / 3;
  width: 100%;
  border: 0;
  filter: saturate(0.85) contrast(0.95);
}

/* ---------- closing cta ---------- */

.closing {
  background: var(--pine);
  color: var(--white);
  padding-block: clamp(80px, 12vh, 140px);
  text-align: center;
}

.closing .section-label { color: rgba(255, 254, 251, 0.5); }

.closing h2 {
  font-family: var(--mincho);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

.closing p {
  color: rgba(255, 254, 251, 0.72);
  font-size: 14px;
  margin: 0 auto 34px;
  max-width: 32em;
}

.closing .btn-primary { background: var(--white); color: var(--pine); }
.closing .btn-primary:hover { background: var(--sage); }

/* ---------- footer ---------- */

.footer {
  padding: 48px 0 40px;
  font-size: 12.5px;
  color: var(--pine-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer a { text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.copyright { font-family: var(--numeral); letter-spacing: 0.16em; opacity: 0.6; }

/* ---------- booking ---------- */

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.booking-card {
  background: var(--paper);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}

.section-alt .booking-card { background: var(--white); }

.booking-tag {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--haze);
  margin: 0 0 14px;
}

.booking-card h3 {
  font-family: var(--mincho);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

.booking-card > p {
  font-size: 13.5px;
  color: var(--pine-soft);
  margin: 0 0 24px;
}

.booking-card .btn-row { margin-top: auto; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-note {
  font-size: 12px;
  color: var(--pine-soft);
  margin: 16px 0 0;
  opacity: 0.8;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

/* ---------- news (blog / X) ---------- */

.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 68px);
}

.news-subhead {
  font-family: var(--numeral);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--haze);
  font-weight: 400;
  margin: 0 0 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.post-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.post-list li { border-bottom: 1px solid var(--line); }

.post-list a {
  display: block;
  padding: 20px 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.post-list a:hover { opacity: 0.62; }

.post-list time {
  font-family: var(--numeral);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--haze);
  display: block;
  margin-bottom: 6px;
}

.post-title {
  font-family: var(--mincho);
  font-size: 16px;
  letter-spacing: 0.06em;
  display: block;
  line-height: 1.75;
}

.post-excerpt {
  font-size: 13px;
  color: var(--pine-soft);
  margin: 6px 0 0;
  line-height: 1.9;
}

.post-list .post-text {
  font-size: 13.5px;
  color: var(--pine-soft);
  margin: 0;
  line-height: 1.95;
}

/* サムネイル付きの記事リスト */

.post-list--thumb a {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 22px;
  align-items: start;
}

.post-thumb {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.88);
  transition: scale 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.post-thumb-frame {
  overflow: hidden;
  background: var(--sage-pale);
}

.post-list--thumb a:hover .post-thumb { scale: 1.05; }

/* ---------- sub pages ---------- */

.subpage-hero {
  padding: clamp(120px, 18vh, 190px) 0 clamp(40px, 6vh, 64px);
  background: var(--sage-pale);
}

.subpage-hero h1 {
  font-family: var(--mincho);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 18px;
}

.subpage-hero p {
  font-size: 14px;
  color: var(--pine-soft);
  max-width: 40em;
  margin: 0;
}

.notice-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  font-size: 13.5px;
  max-width: 46em;
}

.notice-list li {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--pine-soft);
}

.notice-date {
  font-family: var(--numeral);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--haze);
  flex: none;
  min-width: 4.5em;
}

/* ---------- ラウンド予定 ---------- */

.round-schedule { margin-bottom: clamp(48px, 6vw, 72px); }

/* ラウンド予定は普段たたんでおいて、押すと開く（FAQと同じ作り） */
.round-toggle {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.round-toggle > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 4px;
}

.round-toggle > summary::-webkit-details-marker { display: none; }
.round-toggle > summary:hover { color: var(--pine-soft); }

.round-toggle-title {
  font-family: var(--mincho);
  font-size: 17px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.round-toggle-meta {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--pine-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.round-toggle .faq-sign { margin-top: 0; }
.round-toggle[open] .faq-sign::after { rotate: 0deg; opacity: 0; }

/* 開いたときは、上の見出しと間が空きすぎないように詰める */
.round-toggle[open] > summary { padding-bottom: 8px; }
.round-toggle .archive-note { margin-top: 0; }
.round-toggle .round-list { margin-top: 16px; }
.round-toggle .round-list .round-item:last-child { border-bottom: 0; }
.round-toggle .round-note { padding-bottom: 22px; }

@media (max-width: 620px) {
  .round-toggle > summary { gap: 10px; padding: 17px 2px; }
  .round-toggle-title { font-size: 15px; }
  .round-toggle-meta { font-size: 11px; }
  /* 幅が足りないので、要約からコース名だけ落とす（日付は残す） */
  .round-toggle-course { display: none; }
}

.round-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.round-item {
  display: grid;
  grid-template-columns: 6.5em 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}

.round-date {
  font-family: var(--numeral);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--pine);
  white-space: nowrap;
}

.round-date small { font-size: 18px; margin: 0 1px; opacity: 0.5; }

.round-date em {
  font-family: var(--gothic);
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--pine-soft);
  margin-left: 7px;
}

.round-main { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; }

.round-course {
  font-family: var(--mincho);
  font-size: 16px;
  letter-spacing: 0.06em;
}

.round-tag {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--pine-soft);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 3px 12px;
  white-space: nowrap;
}

.round-tag--compe { color: var(--haze); border-color: currentColor; }
.round-tag--closed { border-style: dashed; }

.round-item.is-closed { background: rgba(22, 51, 43, 0.03); }
.round-item.is-closed .round-date,
.round-item.is-closed .round-course { color: var(--pine-soft); }
.round-item.is-closed .round-course { font-size: 15px; }

.round-item .btn { padding: 11px 20px; font-size: 12.5px; }

.round-note {
  font-size: 12.5px;
  color: var(--pine-soft);
  margin: 18px 0 0;
}

@media (max-width: 620px) {
  /* スマホでは1件1行に収める。
     日付・コース名・申し込みを横に並べ、たたんで縦積みにしない */
  .round-item {
    grid-template-columns: 4.4em 1fr auto;
    gap: 2px 10px;
    align-items: center;
    padding: 13px 2px;
  }

  .round-date { font-size: 17px; }
  .round-date small { font-size: 13px; }
  .round-date em { font-size: 10.5px; margin-left: 4px; }

  .round-main { align-items: center; gap: 2px 8px; }
  .round-course { font-size: 14px; letter-spacing: 0.02em; }

  /* この一覧はラウンドレッスンばかりなので、通常の札は省く。
     コンペと臨時休講だけ、ひと目で分かるように残す */
  .round-tag:not(.round-tag--compe):not(.round-tag--closed) { display: none; }
  .round-tag { font-size: 10.5px; padding: 2px 9px; }
  .round-cap { font-size: 11px; }

  .round-item.is-closed .round-course { font-size: 14px; }

  .round-item .btn {
    justify-self: end;
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .round-item .btn span { display: none; }   /* 矢印は省いて幅を稼ぐ */

  .round-full { padding: 7px 13px; font-size: 11px; }
}

.reserve-frame {
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.reserve-frame iframe {
  display: block;
  width: 100%;
  height: min(1100px, 148vh);
  border: 0;
}

.reserve-fallback {
  font-size: 13px;
  color: var(--pine-soft);
  margin: 16px 0 0;
}

.reserve-cancel {
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.reserve-cancel h2 {
  font-family: var(--mincho);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

.reserve-cancel p {
  font-size: 13.5px;
  color: var(--pine-soft);
  margin: 0 0 22px;
  max-width: 40em;
}

.archive-note {
  font-size: 13px;
  color: var(--pine-soft);
  margin: 0 0 4px;
}

.blog-archive { margin-top: clamp(48px, 7vw, 80px); }

/* ---------- article ---------- */

.article-hero {
  padding: clamp(120px, 18vh, 190px) 0 clamp(32px, 5vh, 52px);
  background: var(--sage-pale);
}

.article-meta {
  font-family: var(--numeral);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--haze);
  margin: 0 0 16px;
}

.article-hero h1 {
  font-family: var(--mincho);
  font-size: clamp(24px, 3.8vw, 38px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
  margin: 0;
  max-width: 22em;
}

.article-lead {
  font-size: 14px;
  color: var(--pine-soft);
  margin: 20px 0 0;
  max-width: 40em;
}

.article-body {
  max-width: 40em;
  font-size: 14.5px;
  line-height: 2.15;
}

.article-body > * + * { margin-top: 1.6em; }

.article-body h2 {
  font-family: var(--mincho);
  font-size: clamp(19px, 2.4vw, 23px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-top: 2.6em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.article-body h3 {
  font-family: var(--mincho);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 2.2em;
}

.article-body p { margin-bottom: 0; }


.article-body ul,
.article-body ol { padding-left: 1.4em; color: var(--pine-soft); }

.article-body li + li { margin-top: 0.5em; }

.article-body ul { list-style: none; padding-left: 0; }

.article-body ul li {
  position: relative;
  padding-left: 22px;
}

.article-body ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.02em;
  width: 7px;
  height: 1px;
  background: var(--haze);
}

.article-body img {
  width: 100%;
  filter: saturate(0.88);
}

.article-body figure { margin: 2.2em 0; }

.article-body figcaption {
  font-size: 12.5px;
  color: var(--pine-soft);
  margin-top: 10px;
}

.article-body blockquote {
  margin: 2.2em 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--sage);
  color: var(--pine-soft);
  font-family: var(--mincho);
}

.article-note {
  margin-top: 3em;
  padding: clamp(24px, 3.5vw, 36px);
  background: var(--sage-pale);
}

.article-note h2 {
  font-family: var(--mincho);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  border: 0;
  padding: 0;
}

.article-note p {
  font-size: 13.5px;
  color: var(--pine-soft);
  margin: 0 0 22px;
}

.article-nav {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  font-family: var(--mincho);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.article-nav a { text-decoration: none; transition: opacity 0.3s ease; }
.article-nav a:hover { opacity: 0.6; }

.article-nav span {
  display: block;
  font-family: var(--numeral);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--haze);
  margin-bottom: 5px;
}

.article-nav__prev { justify-self: start; }
.article-nav__next { justify-self: end; text-align: right; }

.article-nav__index {
  justify-self: center;
  font-size: 12.5px;
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  white-space: nowrap;
}

.article-nav__index:hover { background: var(--sage-pale); }

.article-foot {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

/* ---------- 100切り講座 目次 ---------- */

.kouza-hero-note {
  font-size: 13px;
  color: var(--haze);
  margin-top: 14px;
}

.kouza-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}

.kouza-nav a {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.kouza-nav a:hover { background: var(--sage-pale); border-color: transparent; }

.kouza-group { margin-bottom: clamp(52px, 7vw, 84px); scroll-margin-top: 8px; }

.kouza-group h2 {
  font-family: var(--mincho);
  font-size: clamp(20px, 2.7vw, 26px);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.kouza-count {
  font-family: var(--numeral);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--haze);
}

.kouza-lead {
  font-size: 13.5px;
  color: var(--pine-soft);
  margin: 0 0 8px;
  max-width: 44em;
  line-height: 2;
}

.kouza-note {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--haze);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px 14px;
  margin: 6px 0 0;
}

.kouza-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.kouza-list li { border-bottom: 1px solid var(--line); }

.kouza-list a {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 15px 4px;
  text-decoration: none;
  transition: background 0.25s ease, padding 0.25s ease;
}

.kouza-list a:hover { background: var(--sage-pale); padding-inline: 12px; }

.kouza-no {
  font-family: var(--numeral);
  font-size: 13.5px;
  letter-spacing: 0.12em;
  color: var(--haze);
  white-space: nowrap;
}

.kouza-title {
  font-family: var(--mincho);
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.kouza-list--archive .kouza-no { font-size: 12.5px; }

@media (max-width: 620px) {
  .kouza-list a { grid-template-columns: 1fr; gap: 4px; }
  .kouza-list a:hover { padding-inline: 4px; }
}

/* ---------- 利用規約 ---------- */

.terms { max-width: 48em; }

.terms-article { margin-bottom: clamp(32px, 4vw, 44px); }

.terms-article h2 {
  font-family: var(--mincho);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.terms-article p,
.terms-article li {
  font-size: 13.5px;
  line-height: 2.1;
  color: var(--pine-soft);
}

.terms-article p { margin: 0 0 12px; }

.terms-article ol {
  margin: 0;
  padding-left: 1.6em;
}

.terms-article li { margin-bottom: 10px; }


.terms-notice {
  border-left: 3px solid var(--haze);
  background: var(--sage-pale);
  padding: 18px 22px;
  margin: 0 0 clamp(32px, 4vw, 44px);
  font-size: 13.5px;
  line-height: 2;
  color: var(--pine-soft);
}

.terms-date {
  font-size: 13px;
  color: var(--pine-soft);
  text-align: right;
  margin: 0 0 8px;
}

/* ---------- 入会案内ページ ---------- */

.join-heading {
  font-family: var(--mincho);
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: clamp(48px, 6vw, 72px) 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
}

.join-heading:first-of-type { margin-top: 0; }

.join-lead {
  font-size: 14px;
  line-height: 2.1;
  color: var(--pine-soft);
  max-width: 46em;
  margin: 0 0 22px;
}

.join-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 14px;
}

.join-table th,
.join-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 12px;
  text-align: left;
  font-weight: 400;
}

.join-table thead th {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--haze);
  border-bottom-color: var(--line-strong);
  padding-bottom: 10px;
}

.join-table tbody th {
  font-family: var(--mincho);
  font-size: 15px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.join-table td {
  font-family: var(--numeral);
  font-size: 19px;
  color: var(--pine-soft);
}

.join-table td.join-em {
  color: var(--haze);
  font-size: 22px;
}

.join-note {
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--pine-soft);
  margin: 16px 0 0;
}

.join-cta { margin: 22px 0 0; }

.ad-note {
  color: var(--haze);
  font-size: 11.5px;
  margin-top: 10px;
}


.join-points {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 2.1;
  color: var(--pine-soft);
  max-width: 48em;
}

.join-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.join-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1em;
  width: 7px;
  height: 1px;
  background: var(--haze);
}

.join-points strong { color: var(--pine); font-weight: 500; }

.join-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.join-steps li { background: var(--paper); padding: clamp(24px, 3vw, 34px); }

.join-step-num {
  font-family: var(--numeral);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--haze);
  margin: 0 0 10px;
}

.join-steps h3 {
  font-family: var(--mincho);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.join-steps p:not(.join-step-num) {
  font-size: 13.5px;
  color: var(--pine-soft);
  margin: 0;
  max-width: 44em;
}


/* ---------- 入会申込書（印刷用） ---------- */

.form-actions { margin: 26px 0 0; }
.form-actions .btn { border: 0; cursor: pointer; font-family: var(--gothic); }

.paper {
  max-width: 800px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  color: #111;
  font-family: var(--gothic);
  font-size: 13.5px;
  line-height: 1.9;
}

.paper-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0 0 22px;
  padding: 10px;
  background: #eee;
}

.paper-box {
  border: 2px solid #111;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.paper-box p { margin: 0 0 8px; }
.paper-box p:last-child { margin-bottom: 0; }

.cb {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid #111;
  margin-right: 10px;
  vertical-align: -1px;
}

.paper-check b { font-size: 15px; }
.paper-small { font-size: 11.5px; color: #555; }

.paper-date { text-align: right; margin: 0 0 8px; }

.paper-label {
  margin: 18px 0 6px;
  font-size: 13px;
  font-weight: 500;
}

.paper-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 6px;
}

.paper-table th,
.paper-table td {
  border: 1px solid #111;
  padding: 8px 10px;
  font-weight: 400;
  text-align: left;
  vertical-align: top;
}

.paper-table th {
  width: 6.5em;
  background: #f4f4f4;
  font-size: 12.5px;
  white-space: nowrap;
}

.paper-table td.tall { height: 46px; }
.paper-table td { height: 34px; }

.paper-foot {
  margin: 24px 0 0;
  font-size: 11px;
  color: #555;
  text-align: center;
}

@media print {
  .no-print,
  .sticky-cta { display: none !important; }

  @page { size: A4 portrait; margin: 12mm; }

  body {
    background: #fff;
    padding-bottom: 0;
    font-size: 11pt;
  }

  .form-section { padding: 0 !important; }
  .wrap { max-width: none; padding: 0; }

  .paper {
    max-width: none;
    border: 0;
    padding: 0;
    font-size: 10.5pt;
    line-height: 1.7;
  }

  .paper-title { background: #e8e8e8 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .paper-table th { background: #f2f2f2 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ---------- sticky mobile cta ---------- */

.sticky-cta { display: none; }

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 0.9s ease, translate 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-in { opacity: 1; translate: 0 0; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero::before { width: 100%; height: 55%; inset: 0 0 auto; }
  .hero-inner { grid-template-columns: 1fr; align-items: start; }
  .hero-copy {
    writing-mode: horizontal-tb;
    height: auto;
    font-size: clamp(28px, 8vw, 40px);
  }
  .hero-copy em {
    -webkit-text-emphasis: none;
    text-emphasis: none;
    text-decoration: underline;
    text-decoration-color: var(--haze);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.28em;
  }
  .reasons { grid-template-columns: 1fr; }
  .reason,
  .reason + .reason { padding: 32px 0; }
  .reason + .reason::before { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .instructor,
  .plans,
  .access,
  .booking-grid,
  .schedule-grid,
  .news-grid { grid-template-columns: 1fr; }
  .community-inner { grid-template-columns: 1fr; gap: 32px; }
  .schedule-grid { gap: 36px; }
  .plans,
  .booking-grid { gap: 1px; }
  .news-grid { gap: 40px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  /* メニューを全画面のパネルとして開く */
  .nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 88px var(--gutter) 40px;
    background: var(--paper);
    font-size: 15px;
    letter-spacing: 0.1em;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    translate: 0 -8px;
    transition: opacity 0.34s ease, translate 0.34s ease, visibility 0.34s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }

  .nav a {
    font-family: var(--mincho);
    font-size: 17px;
    padding: 18px 2px;
    border-bottom: 1px solid var(--line);
  }

  .nav a::after { display: none; }

  .nav .nav-cta {
    margin-top: 28px;
    border: 0;
    border-radius: 999px;
    padding: 17px 22px;
    text-align: center;
    font-family: var(--gothic);
    font-size: 14px;
  }

  /* メニューを開いている間は背面をスクロールさせない */
  body.nav-open { overflow: hidden; }
}

@media (max-width: 620px) {
  body { padding-bottom: 74px; }
  body:not(:has(.sticky-cta)) { padding-bottom: 0; }

  .post-list--thumb a {
    grid-template-columns: 104px 1fr;
    gap: 14px;
  }

  .sticky-cta {
    display: flex;
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(246, 247, 244, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 -1px 0 var(--line);
  }

  .sticky-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 12px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  .sticky-cta .btn-ghost { flex: 0 0 34%; }

  /* メニューを開いている間は下の固定バーを隠す（メニュー内にCTAがあるため） */
  body.nav-open .sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; translate: none; transition: none; }
  .gallery img { transition: none; }
}

:focus-visible {
  outline: 2px solid var(--haze);
  outline-offset: 3px;
}

.campaign-more { margin: 24px 0 0; }

.ruby-note { font-size: 12px; color: var(--haze); letter-spacing: .08em; }

.join-form-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px !important;
}

.form-note {
  font-size: 12.5px;
  color: var(--pine-soft);
  margin: 16px 0 0;
  max-width: 42em;
}


.round-cap {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--pine-soft);
  white-space: nowrap;
}

.round-full {
  font-size: 12.5px;
  letter-spacing: .1em;
  color: #a8563f;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 22px;
  white-space: nowrap;
  justify-self: end;
}

.round-item.is-full .round-course,
.round-item.is-full .round-date { color: var(--pine-soft); }


/* ---------- 文中リンク ----------

   地の文の中に置くリンクは、ここでまとめて色と下線を付ける。
   置き場所ごとに書き足していくと必ず付け忘れが出るので、
   新しく本文を書く場所が増えたら、この一覧に足すこと。
   ボタン（.btn）と、行全体がリンクになっているもの
   （記事一覧、前後の回、講座の分類ボタン）は対象外。            */

.subpage-hero p a:not(.btn),
.notice-list a:not(.btn),
.archive-note a:not(.btn),
.round-note a:not(.btn),
.reserve-fallback a:not(.btn),
.reserve-cancel p a:not(.btn),
.faq-item .faq-a a:not(.btn),
.join-lead a:not(.btn),
.join-points a:not(.btn),
.join-steps a:not(.btn),
.join-note a:not(.btn),
.form-note a:not(.btn),
.terms-article a:not(.btn),
.article-body a:not(.btn),
.article-note a:not(.btn) {
  color: var(--pine);
  text-underline-offset: 0.25em;
}
