@charset "UTF-8";
/* ==========================================================================
   Base — リセット / タイポグラフィ / 共通パーツ
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-wh);
  color: var(--color-t-txt01);
  font-family: var(--typography-t-16r-family);
  font-size: var(--typography-t-16r-size);
  font-weight: var(--typography-t-16r-weight);
  line-height: var(--typography-t-16r-line-height);
  letter-spacing: var(--typography-t-16r-letter-spacing);
  -webkit-font-smoothing: antialiased;
  /* 日本語の禁則を厳しめにして、行頭に小さいカナや句読点が来ないようにする */
  line-break: strict;
  overflow-wrap: normal;
  word-break: normal;
}

/* PCデザインは1440px基準の固定レイアウト。
   タブレット幅（768〜1439px）では横スクロールさせて崩れを防ぐ。
   767px以下は sp.css のSPレイアウトに切り替わる。 */
@media screen and (min-width: 768px) {
  body { min-width: var(--x-canvas); }
}

/* ==========================================================================
   改行コントロール
   `.c-lb` の直下 span は改行しない（= span の境界だけで改行が起きる）。
   front-data.php のラベル中の `|` が span の区切りになっている。
   これにより「ラミネートベニ／ア」のような語中での折り返しを防ぐ。
   ========================================================================== */
.c-lb > span {
  display: inline-block;
  white-space: nowrap;
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; transition: opacity .25s ease, background-color .25s ease, color .25s ease; }
a:hover { opacity: .75; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
table { border-collapse: collapse; border-spacing: 0; }

/* --- Typography utilities（design.md の複合トークンをセットで適用） --- */
.t-28sb { font-family: var(--typography-t-28sb-family); font-size: var(--typography-t-28sb-size); font-weight: var(--typography-t-28sb-weight); line-height: var(--typography-t-28sb-line-height); letter-spacing: var(--typography-t-28sb-letter-spacing); }
.t-24sb { font-family: var(--typography-t-24sb-family); font-size: var(--typography-t-24sb-size); font-weight: var(--typography-t-24sb-weight); line-height: var(--typography-t-24sb-line-height); letter-spacing: var(--typography-t-24sb-letter-spacing); }
.t-20sb { font-family: var(--typography-t-20sb-family); font-size: var(--typography-t-20sb-size); font-weight: var(--typography-t-20sb-weight); line-height: var(--typography-t-20sb-line-height); letter-spacing: var(--typography-t-20sb-letter-spacing); }
.t-18sb { font-family: var(--typography-t-18sb-family); font-size: var(--typography-t-18sb-size); font-weight: var(--typography-t-18sb-weight); line-height: var(--typography-t-18sb-line-height); letter-spacing: var(--typography-t-18sb-letter-spacing); }
.t-16sb { font-family: var(--typography-t-16sb-family); font-size: var(--typography-t-16sb-size); font-weight: var(--typography-t-16sb-weight); line-height: var(--typography-t-16sb-line-height); letter-spacing: var(--typography-t-16sb-letter-spacing); }
.t-14sb { font-family: var(--typography-t-14sb-family); font-size: var(--typography-t-14sb-size); font-weight: var(--typography-t-14sb-weight); line-height: var(--typography-t-14sb-line-height); letter-spacing: var(--typography-t-14sb-letter-spacing); }
.t-16r  { font-family: var(--typography-t-16r-family);  font-size: var(--typography-t-16r-size);  font-weight: var(--typography-t-16r-weight);  line-height: var(--typography-t-16r-line-height);  letter-spacing: var(--typography-t-16r-letter-spacing); }
.t-14r  { font-family: var(--typography-t-14r-family);  font-size: var(--typography-t-14r-size);  font-weight: var(--typography-t-14r-weight);  line-height: var(--typography-t-14r-line-height);  letter-spacing: var(--typography-t-14r-letter-spacing); }

.mincho { font-family: var(--typography-t-16sb-family); }
.gothic { font-family: var(--typography-t-16r-family); }

/* --- Layout --- */
.l-container {
  width: var(--x-container);
  margin-inline: auto;
}

.l-section { position: relative; }

/* --- 見出し（セクション共通） ---
   構成: 和文リード（小） → 欧文大見出し
   例) ドクター紹介 / DOCTOR */
.c-heading { text-align: center; }
.c-heading__lead {
  display: block;
  font-family: var(--typography-t-14sb-family);
  font-size: 14px;
  font-weight: var(--typography-t-14sb-weight);
  letter-spacing: .28em;
  line-height: 1.7;
  color: var(--color-t-txt01);
}
.c-heading__en {
  display: block;
  margin-top: 8px;
  font-family: var(--typography-t-28sb-family);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .06em;
  color: var(--color-t-main01);
}
.c-heading--wh .c-heading__lead,
.c-heading--wh .c-heading__en { color: var(--color-wh); }

/* --- ボタン（Figma: btn01_pc = 280x64 相当。TOPでは幅可変で使用） --- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 280px;
  height: 64px;
  padding: 0 48px;
  font-family: var(--typography-t-16sb-family);
  font-size: var(--typography-t-16sb-size);
  font-weight: var(--typography-t-16sb-weight);
  letter-spacing: .12em;
  color: var(--color-wh);
  background: var(--color-t-main01);
}
.c-btn::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.c-btn:hover { opacity: 1; background: #0a6b62; }
.c-btn--gold { background: var(--color-t-ac02); }
.c-btn--gold:hover { background: #cfa54a; }
/* 濃緑背景の上に置くボタン（CASEセクション） */
.c-btn--outline { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .5); }
.c-btn--outline:hover { background: rgba(255, 255, 255, .18); }

/* --- 小さい丸/角の矢印ボタン（NEWS・BLOG行末） --- */
.c-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-t-main01);
  flex: none;
}
.c-arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-wh);
  border-right: 1px solid var(--color-wh);
  transform: rotate(45deg) translate(-1px, 1px);
}

/* --- タグ（PICK UP MENU の枠付きラベル） --- */
.c-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border: 1px solid var(--color-t-ac02);
  color: var(--color-t-ac02);
  font-family: var(--typography-t-14r-family);
  font-size: 13px;
  line-height: 1;
  letter-spacing: .04em;
}

/* --- アクセシビリティ --- */
.u-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  z-index: 999;
  padding: 8px 16px;
  background: var(--color-t-main01);
  color: var(--color-wh);
}
.skip-link:focus { top: 0; }
