/* ==========================================================
   TRISTARIA
   デザイン指示（モックアップ）準拠：
   白地 × イエローゴールド × 黒の太明朝
   左の縦タブ／右のドット／右上のcontactバッジ／下の金バー
   セクション上部に大きな薄い欧文（ゴースト文字）
   ========================================================== */
:root {
  --gold: #dec341;
  --gold-deep: #c9a92a;
  --gold-ghost: #f6eec8;
  --ink: #202020;
  --gray: #a8b0a8;
  --gray-line: #d4d8d4;
  --dot: #efefef;
  --white: #ffffff;

  --serif: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;

  --bar-h: 14px;
  --pad-r: 24px;
  --content: 900px;
  --pad-l: max(24px, calc((100vw - var(--content)) / 2));
  --dark: #333333;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .1em;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, p, ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
i, em { font-style: normal; }
address { font-style: normal; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
::selection { background: var(--gold-ghost); }

/* ==========================================================
   固定パーツ
   ========================================================== */

/* ---------- Header（上部に追従） ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  transition: box-shadow .3s;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 12px 14px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}
.header.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.06); }
.logo { display: block; margin-right: auto; }
.logo img { display: block; width: 150px; height: auto; }
.header__nav { display: none; }
.header__contact {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 16px 0 14px;
  border-radius: 999px 999px 999px 999px;
  background: var(--gold); color: #fff;
  font-weight: 700; font-style: italic; font-size: 14px; letter-spacing: .02em;
  transition: background .3s;
}
.header__contact:hover { background: var(--gold-deep); }
.header__contact svg { width: 16px; height: 16px; }
.header__contact span { transform: skewX(-8deg); }
.menu-btn { position: relative; width: 40px; height: 40px; border: 0; padding: 0; background: none; cursor: pointer; }
.menu-btn span { position: absolute; left: 8px; width: 24px; height: 1.5px; background: var(--ink); transition: transform .35s, top .35s; }
.menu-btn span:first-child { top: 15px; }
.menu-btn span:last-child { top: 24px; }
.menu-open .menu-btn span:first-child { top: 19.5px; transform: rotate(35deg); }
.menu-open .menu-btn span:last-child { top: 19.5px; transform: rotate(-35deg); }

/* ---------- スマホ用メニュー ---------- */
.drawer {
  position: fixed; left: 0; right: 0; bottom: 0; top: 0; z-index: 55;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-102%); transition: transform .5s cubic-bezier(.2,.7,.2,1);
  overflow-y: auto;
}
.menu-open .drawer { transform: none; }
.menu-open { overflow: hidden; }
.drawer__nav { display: flex; flex-direction: column; gap: 6px; padding: 80px 40px; }
.drawer__nav a { display: grid; grid-template-columns: 44px 1fr; align-items: baseline; font-size: 30px; line-height: 1.5; color: var(--ink); letter-spacing: .04em; }
.drawer__nav a i { font-style: italic; color: var(--gold); font-size: 16px; }
.drawer__nav a span { grid-column: 2; font-size: 12px; font-weight: 700; letter-spacing: .14em; margin-top: -4px; color: #555; }
.drawer__nav a:hover { color: var(--gold); }

/* ==========================================================
   共通
   ========================================================== */
.sec {
  position: relative; overflow: hidden;
  padding: 88px var(--pad-r) 96px var(--pad-l);
}
.sec > *:not(.ghost) { position: relative; max-width: var(--content); }

/* 大きな薄い欧文 */
.ghost {
  position: absolute; top: 4px; right: -.06em; z-index: 0;
  font-size: clamp(104px, 21vw, 280px); line-height: .9; letter-spacing: -.01em;
  color: var(--gold-ghost);
  white-space: nowrap; pointer-events: none; user-select: none;
}

.en-label { color: var(--gold); font-size: 15px; letter-spacing: .06em; }

/* セクション見出し（Voice／お客様の声 型） */
.sec-head { margin-bottom: 56px; }
.sec-head__en { color: var(--gold); font-size: 17px; line-height: 1.2; letter-spacing: .04em; }
.sec-head__ja { font-weight: 500; font-size: 30px; line-height: 1.4; letter-spacing: .08em; }
.sec-head__lead { margin-top: 18px; font-weight: 700; }

/* 小見出し（Concept 理念 型） */
.hd {
  display: flex; align-items: flex-end; gap: 20px;
  width: min(100%, 460px);
  padding-bottom: 12px; margin-bottom: 24px;
  border-bottom: 1.5px solid var(--ink);
  font-weight: 400;
}
.hd__en { color: var(--gold); font-size: 34px; line-height: 1.05; letter-spacing: 0; }
.hd__ja { font-size: 12px; font-weight: 700; letter-spacing: .1em; padding-bottom: 4px; }

.bold-text { font-weight: 700; font-size: 14px; letter-spacing: .1em; line-height: 2.05; }
.bold-text.big { font-size: 1.25em; margin: 28px 0; }

/* 金の太いキャッチ */
.catch { color: var(--gold); font-weight: 900; font-size: 22px; line-height: 1.55; letter-spacing: .08em; }

.blk { margin-bottom: 64px; }
.blk:last-child { margin-bottom: 0; }
.blk--shift { margin-left: 7%; }

.list li { position: relative; padding-left: 20px; font-weight: 700; font-size: 14px; letter-spacing: .08em; line-height: 1.9; margin-bottom: 6px; }
.list li::before { content: ''; position: absolute; left: 2px; top: .8em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.note { margin-top: 64px; font-weight: 700; font-size: 14px; }
.note--left { margin-top: 24px; font-weight: 500; color: #666; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 60px; padding: 0 40px;
  background: var(--gold); color: #fff;
  font-weight: 700; letter-spacing: .12em;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(201,169,42,.3);
  transition: background .3s, transform .3s;
}
.btn::after { content: ''; border-left: 7px solid #fff; border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.btn:hover { background: var(--gold-deep); transform: translateY(-2px); }
@media (max-width: 1100px) { .contact__lead br { display: none; } }
@media (max-width: 759px) {
  .contact__lead br { display: none; }
  .sec.dome { --dome: 56px; }
  .dome::before { left: -70%; right: -70%; }
}

/* ==========================================================
   各セクション
   ========================================================== */

/* ---------- Top ---------- */
.hero { min-height: calc(100svh - 73px); display: flex; align-items: center; padding-top: 96px; }
.hero .ghost { top: 16px; }
.hero__title { margin-top: 18px; font-weight: 900; font-size: 36px; line-height: 1.5; letter-spacing: .1em; }
.hero__title em { color: var(--gold); }
.hero__lead { margin-top: 28px; font-weight: 700; font-size: 14px; letter-spacing: .08em; }
.hero__mission { margin-top: 48px; padding: 4px 0 4px 20px; border-left: 3px solid var(--gold); }
.hero__mission p:last-child { font-weight: 700; margin-top: 4px; }

/* FV：代表写真 */
.hero__inner { position: relative; width: 100%; display: flex; flex-direction: column-reverse; gap: 28px; }
@media (max-width: 759px) { .sec.hero { padding-top: 48px; } .hero .ghost { top: 8px; } .hero .hero__photo::before { left: auto; right: -12%; bottom: -6%; width: 40%; } .hero .hero__en { font-size: 12px; } .hero .hero__name { top: 2%; } }
.hero__photo { position: relative; margin: 0; align-self: flex-end; width: 64%; margin-right: 4%; }
.hero__photo::before {                    /* 金の円（ロゴの星のイメージ） */
  content: ''; position: absolute; z-index: 0;
  width: 46%; aspect-ratio: 1; border-radius: 50%;
  left: -14%; bottom: -8%; background: var(--gold); opacity: .9;
}
.hero__frame {
  position: relative; z-index: 1; overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 24px 24px;   /* 上がアーチ（ドームと同じ丸み） */
  background: linear-gradient(160deg, #fbf6e1, #f1e3a6);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.hero__ph { display: none; }
.hero__photo.is-empty .hero__ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  color: var(--gold-deep); font-size: 26px; letter-spacing: .3em;
}
.hero__ph small { font-size: 11px; letter-spacing: .1em; color: #8a7a3a; }
.hero__name {
  position: absolute; z-index: 2; left: -26%; top: 4%;
  writing-mode: vertical-rl; display: flex; gap: 8px; align-items: flex-start;
}
.hero__name span { white-space: nowrap; }
.hero__role { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: #555; }
.hero__jp { font-weight: 900; font-size: 24px; letter-spacing: .14em; }
.hero__jp b { color: var(--gold); font-weight: 900; }
.hero__en { color: var(--gold); font-style: italic; font-size: 13px; letter-spacing: .04em; }

/* ---------- Profile ---------- */
.profile__grid { position: relative; }
.profile__blocks .blk:first-child { padding-right: 84px; }
.profile__name { position: absolute; top: 0; right: 0; display: flex; flex-direction: row-reverse; align-items: flex-start; gap: 4px; margin-top: 4px; }
.vname { writing-mode: vertical-rl; font-weight: 900; font-size: 40px; line-height: 1; letter-spacing: .08em; display: flex; }
.vname .g { color: var(--gold); }
.vname .gap { height: .45em; }
.vname-en { writing-mode: vertical-rl; color: var(--gold); font-style: italic; font-size: 17px; line-height: 1; letter-spacing: .02em; margin-top: 64px; transform: skewY(8deg); }
.profile__role { display: none; }

/* ---------- Service ---------- */
.svc { margin-bottom: 80px; }
.svc:last-child { margin-bottom: 0; }
.svc--shift { margin-left: 7%; }
.svc__meta { display: flex; align-items: baseline; gap: 12px; font-size: 13px; font-weight: 700; letter-spacing: .1em; margin-bottom: 8px; }
.svc__meta i { color: var(--gold); font-style: italic; font-weight: 400; font-size: 30px; line-height: 1; display: inline-block; transform: skewX(-10deg); }
.svc .catch { padding-bottom: 14px; margin-bottom: 18px; border-bottom: 1.5px solid var(--ink); max-width: 460px; }
.svc__lead { font-weight: 700; letter-spacing: .12em; margin-bottom: 12px; }
.svc__text { font-size: 14px; letter-spacing: .08em; margin-bottom: 20px; color: #333; }

/* ---------- Voice（背景の丸み） ---------- */
.voice__item { max-width: 720px; }
.voice__item + .voice__item { margin-top: 88px; padding-top: 72px; border-top: 1.5px solid rgba(222,195,65,.45); }
.voice__item .catch { margin-bottom: 22px; }
.voice__text { font-weight: 500; font-size: 18px; line-height: 1.85; letter-spacing: .12em; }
.voice__who { margin-top: 44px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.voice__org { font-weight: 700; font-size: 15px; letter-spacing: .06em; }
.voice__name { font-weight: 900; font-size: 26px; letter-spacing: .1em; line-height: 1.5; }
.voice__name small { font-size: 13px; font-weight: 700; margin-left: 10px; }
.voice__who img { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

/* ---------- Story ---------- */
.story .catch { margin-bottom: 24px; }
.story__text p { margin-bottom: 14px; }
.story__text p:not(.bold-text) { letter-spacing: .08em; color: #333; }
.name-meaning { margin-top: 88px; }
.name-meaning__intro { font-weight: 700; font-size: 17px; margin-bottom: 40px; padding-left: 16px; border-left: 3px solid var(--gold); line-height: 1.5; }
.name-meaning .hd__en { font-size: 40px; letter-spacing: .12em; }
.mvv { margin-top: 88px; display: grid; gap: 28px; }
.mvv > div { padding: 24px 22px; border: 1.5px solid var(--gold); border-radius: 0 16px 16px 0; border-left-width: 6px; }
.mvv dt { color: var(--gold); font-size: 22px; line-height: 1.3; margin-bottom: 6px; }
.mvv dd { font-weight: 700; letter-spacing: .12em; }

/* ---------- News ---------- */
.news__list { border-top: 1.5px solid var(--ink); }
.news__list li { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; padding: 20px 0; border-bottom: 1px solid var(--gray-line); }
.news__list time { color: var(--gold-deep); font-size: 14px; letter-spacing: .08em; }
.news__list p { flex-basis: 100%; font-weight: 700; }
.tag { font-size: 11px; font-weight: 700; line-height: 1; padding: 5px 12px; border: 1px solid var(--gold); color: var(--gold-deep); border-radius: 999px; }

/* ---------- Company ---------- */
.company__dl { border-top: 1.5px solid var(--ink); }
.company__dl > div { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 18px 0; border-bottom: 1px solid var(--gray-line); }
.company__dl dt { color: var(--gold-deep); font-size: 13px; font-weight: 700; letter-spacing: .12em; }
.company__dl dd { font-weight: 700; font-size: 14.5px; }
.biz summary { list-style: none; cursor: pointer; }
.biz summary::-webkit-details-marker { display: none; }
.biz summary span { display: inline-block; margin-left: 8px; font-size: 12px; color: var(--gold-deep); border-bottom: 1px solid currentColor; line-height: 1.4; }
.biz[open] summary span { display: none; }
.biz ol { counter-reset: n; margin-top: 12px; }
.biz li { counter-increment: n; position: relative; padding-left: 2.2em; font-size: 13.5px; line-height: 1.8; margin-bottom: 4px; }
.biz li::before { content: counter(n, decimal-leading-zero); position: absolute; left: 0; color: var(--gold); font-style: italic; }

/* ---------- 丸み：上辺を大きなドーム状に（Voice・Contact） ---------- */
.sec.dome {
  --dome: clamp(70px, 11vw, 170px);
  padding-top: calc(var(--dome) + 64px);
}
.dome::before {
  content: ''; position: absolute; z-index: 0;
  top: 0; bottom: 0; left: -22%; right: -22%;
  background: var(--dome-bg, var(--dark));
  border-radius: 50% 50% 0 0 / calc(var(--dome) * 2) calc(var(--dome) * 2) 0 0;
}
.dome .ghost { top: calc(var(--dome) * .55); }

/* ---------- Voice ---------- */
.voice { --dome-bg: #fbf6e1; margin-top: 24px; }
.sec.voice { padding-bottom: 120px; }
.voice .ghost { color: rgba(222,195,65,.2); }

/* ---------- Contact ---------- */
.contact { margin-top: 40px; padding-bottom: 96px; color: #fff; }
.contact .ghost { top: calc(var(--dome) * .55); color: rgba(222,195,65,.1); }
.sec.contact { padding-left: var(--pad-r); padding-right: var(--pad-r); }
.contact > .contact__grid { position: relative; z-index: 1; max-width: 1080px; margin-inline: auto; }
.contact__grid { display: grid; gap: 56px; }
.contact__intro { display: flex; flex-direction: column; align-items: center; text-align: center; }
.contact__title { display: flex; flex-direction: row-reverse; align-items: flex-start; gap: 14px; font-weight: 500; }
.contact__ja { writing-mode: vertical-rl; font-size: 30px; letter-spacing: .18em; line-height: 1; }
.contact__en { writing-mode: vertical-rl; font-size: 12px; letter-spacing: .3em; color: var(--gold); line-height: 1; }
.contact__lead { margin-top: 48px; font-size: 14px; line-height: 2.1; letter-spacing: .08em; color: rgba(255,255,255,.88); }
.contact__link { margin-top: 44px; display: inline-flex; align-items: center; gap: 20px; font-weight: 700; letter-spacing: .12em; }
.contact__arrow {
  display: inline-grid; place-items: center;
  width: 76px; height: 46px; border-radius: 999px;
  background: #fff; color: var(--ink); font-size: 18px;
  transition: background .3s, color .3s, transform .3s;
}
.contact__link:hover .contact__arrow { background: var(--gold); color: #fff; transform: translateX(4px); }

.contact__card { background: #fff; color: var(--ink); border-radius: 18px; padding: 32px 24px 28px; }
.contact__card-title { font-weight: 900; font-size: 18px; letter-spacing: .12em; padding-bottom: 14px; margin-bottom: 8px; border-bottom: 1.5px solid var(--ink); }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 10px; padding: 16px 0; border-bottom: 1px solid var(--gray-line); }
.steps i { color: var(--gold); font-style: italic; font-size: 26px; line-height: 1.1; }
.steps b { display: block; font-size: 16px; font-weight: 900; letter-spacing: .1em; line-height: 1.6; }
.steps p { font-size: 13px; letter-spacing: .06em; line-height: 1.8; color: #555; }
.free { margin-top: 22px; text-align: center; font-weight: 900; font-size: 18px; color: var(--gold-deep); letter-spacing: .12em; }
.free::before { content: '＼ '; }
.free::after { content: ' ／'; }
.btn--block { display: flex; width: 100%; margin-top: 18px; }
.step-link { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1.5px solid var(--gold); line-height: 1.5; }
.step-link span { color: var(--gold); transition: transform .3s; }
.step-link:hover { color: var(--gold-deep); }
.step-link:hover span { transform: translateX(4px); }
.text-link { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- お問い合わせフォーム（contact.html） ---------- */
.form-page .sec-head__ja { font-size: 30px; }
.form-card {
  position: relative; max-width: 760px;
  background: #fff; border: 1.5px solid var(--gray-line); border-radius: 20px;
  padding: 32px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.field { margin-bottom: 26px; }
.field label { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; font-weight: 700; font-size: 14.5px; letter-spacing: .08em; margin-bottom: 8px; }
.field em { white-space: nowrap; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; line-height: 1; padding: 4px 8px; border-radius: 999px; background: var(--gold); color: #fff; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; letter-spacing: .04em; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--gray-line); border-radius: 12px; background: #fcfcfa;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; line-height: 1.8; min-height: 170px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(222,195,65,.18); }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer; }
.select::after { content: ''; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.is-invalid input, .is-invalid select, .is-invalid textarea { border-color: #d05050; background: #fff7f7; }
.is-invalid label::after { content: '入力してください'; white-space: nowrap; font-size: 11px; color: #d05050; font-weight: 700; margin-left: auto; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.privacy { font-size: 12.5px; line-height: 1.9; color: #555; padding: 14px 16px; background: #f7f7f4; border-radius: 12px; }
.agree { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-weight: 700; font-size: 14px; cursor: pointer; }
.agree input { width: 20px; height: 20px; accent-color: var(--gold-deep); flex-shrink: 0; }
.agree.is-invalid span { color: #d05050; }
.form__error { margin-top: 18px; padding: 12px 16px; border-radius: 12px; background: #fff3f3; color: #b33c3c; font-size: 13.5px; font-weight: 700; line-height: 1.8; }
.form .btn--block { margin-top: 24px; min-height: 64px; font-size: 16px; }
.form .btn[disabled] { opacity: .6; cursor: wait; transform: none; }
.form-done { text-align: center; padding: 24px 0 8px; outline: none; }
.form-done .catch { margin-bottom: 14px; }
.form-done p:not(.catch) { font-weight: 700; font-size: 14px; }
@media (max-width: 759px) { .form-done br, .form-page .sec-head__lead br { display: none; } }
.form-done .btn { margin-top: 28px; }
.form-page .free { text-align: left; margin-top: 40px; }
.form-page .free::before, .form-page .free::after { content: none; }

/* ---------- Footer ---------- */
.footer {
  --logo-green: #fff;
  background: var(--dark); color: rgba(255,255,255,.85);
  border-top: 1px solid rgba(255,255,255,.22);
  padding: 48px 0 0;
  font-size: 13px; letter-spacing: .06em;
}
.footer__inner { max-width: calc(1080px + var(--pad-r) * 2); margin-inline: auto; padding: 0 var(--pad-r) 32px; display: flex; flex-direction: column; gap: 32px; }
.footer__nav { display: grid; grid-template-columns: repeat(2, auto); justify-content: start; gap: 10px 36px; font-size: 13px; letter-spacing: .12em; }
.footer__nav a, .footer__sub { transition: color .3s; }
.footer__nav a:hover, .footer__sub:hover { color: var(--gold); }
.footer__bottom {
  max-width: calc(1080px + var(--pad-r) * 2); margin-inline: auto;
  padding: 20px var(--pad-r) 36px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 28px;
}
.footer__sub { font-size: 11.5px; letter-spacing: .1em; color: rgba(255,255,255,.7); }
.footer__logo { width: 200px; height: auto; display: block; }
.footer address { margin-top: 18px; line-height: 1.8; }
.footer__copy { font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.6); }

/* ==========================================================
   下層ページ・共通パーツ
   ========================================================== */
.header__nav a[aria-current="page"] { color: var(--gold-deep); }
.header__nav a[aria-current="page"]::after { transform: scaleX(1); }

/* 下層ページの見出し */
.sec.page-head { padding-bottom: 24px; }
.page-head + .sec { padding-top: 40px; }
.crumb { display: flex; gap: 10px; align-items: center; font-size: 12px; letter-spacing: .1em; color: #777; margin-bottom: 28px; }
.crumb a { color: var(--gold-deep); }
.crumb span::before { content: '/'; margin-right: 10px; color: var(--gray); }

/* 「詳しく見る」リンク */
.more { margin-top: 56px; }
.more-link { display: inline-flex; align-items: center; gap: 14px; font-weight: 700; letter-spacing: .1em; padding-bottom: 6px; border-bottom: 1.5px solid var(--ink); transition: color .3s, border-color .3s; }
.more-link span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: #fff; font-size: 14px; transition: transform .3s; }
.more-link:hover { color: var(--gold-deep); border-color: var(--gold); }
.more-link:hover span { transform: translateX(4px); }
.cta-center { text-align: center; margin-top: 64px; }

/* トップ：ボタン */
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero__actions .btn { min-height: 54px; padding: 0 30px; }
.btn--line { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); box-shadow: none; }
.btn--line::after { border-left-color: var(--gold); }
.btn--line:hover { background: var(--ink); color: #fff; }

/* トップ：代表紹介 */
.rep-note { margin-top: 64px; max-width: 720px; padding: 28px 24px; border-radius: 20px; background: #fbf6e1; }
.rep-note__title { font-weight: 900; font-size: 18px; letter-spacing: .1em; color: var(--gold-deep); margin-bottom: 10px; }
.rep-note p:not(.rep-note__title) { font-size: 14px; letter-spacing: .06em; line-height: 2; }
.rep-note p + p { margin-top: 10px; }

/* トップ：サービス要約 */
.svc-sum-list { display: grid; gap: 20px; }
.svc-sum { display: block; padding: 26px 24px 22px; border: 1.5px solid var(--gray-line); border-radius: 0 20px 20px 0; border-left: 5px solid var(--gold); transition: border-color .3s, box-shadow .3s, transform .3s; }
.svc-sum:hover { border-color: var(--gold); box-shadow: 0 10px 26px rgba(201,169,42,.14); transform: translateY(-3px); }
.svc-sum .catch { font-size: 21px; margin-bottom: 10px; }
.svc-sum__text { font-size: 14px; letter-spacing: .06em; color: #333; }
.svc-sum__more { display: inline-flex; gap: 8px; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--gold-deep); letter-spacing: .1em; }

/* トップ：ストーリーの締め */
.closing { margin-top: 56px; font-weight: 700; line-height: 2.1; letter-spacing: .1em; }
.closing em { color: var(--gold-deep); font-weight: 900; }

/* about：経歴タイムライン */
.timeline { position: relative; max-width: 720px; }
.timeline li { position: relative; padding: 0 0 36px 34px; }
.timeline li::before { content: ''; position: absolute; left: 6px; top: 14px; bottom: -10px; width: 1.5px; background: var(--gray-line); }
.timeline li:last-child::before { display: none; }
.timeline li::after { content: ''; position: absolute; left: 0; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 2px solid var(--gold); }
.timeline li.is-now::after { background: var(--gold); }
.timeline__when { font-weight: 900; font-size: 17px; letter-spacing: .1em; color: var(--gold-deep); }
.timeline li p:not(.timeline__when) { font-size: 14px; letter-spacing: .06em; color: #333; margin-top: 4px; }

/* about：大切にしていること（丸みのある帯） */
.belief-sec { --dome-bg: #fbf6e1; margin-top: 24px; }
.belief-sec .ghost { color: rgba(222,195,65,.2); }
.mvv-wrap { margin-top: 72px; }
.mvv-wrap .mvv { margin-top: 0; }
.mvv > div { background: #fff; }

/* services：ページ内リンク */
.jump { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 72px; }
.jump a { padding: 8px 18px; border: 1.5px solid var(--gold); border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .06em; transition: background .3s, color .3s; }
.jump a:hover { background: var(--gold); color: #fff; }
.service--page .svc { scroll-margin-top: 90px; }
.svc__cta { margin-top: 18px; }

/* services：講座の紹介・提供できること */
.program { margin: 4px 0 22px; padding: 20px 20px 18px; border-radius: 16px; background: #fbf6e1; }
.program__label { color: var(--gold-deep); font-style: italic; font-size: 13px; line-height: 1.4; }
.program__title { font-weight: 900; font-size: 17px; letter-spacing: .08em; line-height: 1.6; margin-bottom: 6px; }
.program__text { font-size: 13.5px; letter-spacing: .06em; line-height: 1.9; color: #333; }
.help { margin-top: 96px; }
.help__list { display: flex; flex-wrap: wrap; gap: 10px; }
.help__list li { padding: 8px 16px; border-radius: 999px; background: #f7f7f4; border: 1px solid var(--gray-line); font-size: 13.5px; font-weight: 700; letter-spacing: .06em; line-height: 1.6; }

/* about：私のゴール・SNS */
.page-head__catch { margin-top: 20px; }
.my-story .svc__meta { margin-bottom: 4px; }
.my-story .catch { margin-bottom: 18px; }
.goal { margin-top: 96px; padding: 36px 24px; border-radius: 20px; background: #fbf6e1; }
.goal .catch { margin-bottom: 20px; }
.goal .bold-text br { display: block; content: ''; margin-bottom: 8px; }
.sns { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 20px; margin-top: 24px; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.sns span { width: 100%; text-align: center; color: #666; font-weight: 500; }
.sns a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }
@media (min-width: 760px) { .goal { padding: 56px 60px; } }

/* 相談の案内ボックス */
.consult { margin-top: 80px; padding: 32px 24px; border-radius: 20px; background: #fbf6e1; text-align: center; }
.consult__title { font-weight: 900; font-size: 18px; letter-spacing: .08em; line-height: 1.7; margin-bottom: 8px; }
.consult p:not(.consult__title):not(.free) { font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.consult .free { margin: 0 0 12px; text-align: center; }
.form-page .consult { max-width: 760px; margin-top: 40px; }
.form-page .consult p:not(.free) { margin-bottom: 0; }

/* トップ：お問い合わせのキャッチ */
.contact__catch { margin-top: 36px; font-weight: 900; font-size: 20px; letter-spacing: .1em; color: var(--gold); }
.contact__catch + .contact__lead { margin-top: 20px; }

/* company：アクセス */
.access__hd { margin-top: 72px; }
.access__list { margin-top: 12px; }
.map { margin-top: 24px; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--gray-line); aspect-ratio: 4 / 3; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (min-width: 760px) {
  .svc-sum-list { gap: 24px; }
  .svc-sum { max-width: 640px; padding: 32px 36px 26px; }
  .svc-sum--shift { margin-left: 22%; }
  .svc-sum .catch { font-size: 26px; }
  .consult { padding: 44px 40px; }
  .consult__title { font-size: 22px; }
  .map { aspect-ratio: 16 / 7; }
  .contact__catch { font-size: 24px; }
}
@media (max-width: 759px) {
  .consult__title br, .closing br { display: none; }
  .contact__catch { font-size: 17px; letter-spacing: .06em; }
  .consult .btn { width: 100%; padding: 0 16px; font-size: 14px; letter-spacing: .04em; }
}

/* プライバシーポリシー */
.policy__list { counter-reset: pol; max-width: 760px; }
.policy__list > li { counter-increment: pol; padding: 28px 0; border-top: 1px solid var(--gray-line); }
.policy__list > li:last-child { border-bottom: 1px solid var(--gray-line); }
.policy__list h2 { display: flex; align-items: baseline; gap: 12px; font-size: 18px; font-weight: 900; letter-spacing: .08em; margin-bottom: 10px; }
.policy__list h2::before { content: counter(pol, decimal-leading-zero); color: var(--gold); font-style: italic; font-weight: 400; font-size: 22px; }
.policy__list p { font-size: 14px; letter-spacing: .06em; line-height: 2; }
.policy__list .list { margin-top: 10px; }
.policy__date { margin-top: 32px; font-size: 13px; color: #555; line-height: 2; }

/* ---------- 表示アニメーション ---------- */
.fx { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.fx.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fx { opacity: 1; transform: none; transition: none; }
  .drawer { transition: none; }
}

/* ==========================================================
   小さいスマホ
   ========================================================== */
@media (max-width: 360px) {
  body { font-size: 14px; }
  .hero__title { font-size: 31px; }
  .vname { font-size: 34px; }
  .catch { font-size: 23px; }
}

/* ==========================================================
   タブレット以上：同じ構成のまま拡大
   ========================================================== */
@media (min-width: 760px) {
  :root { --bar-h: 18px; --pad-r: 64px; }
  body { font-size: 16px; }
  .header { padding: 20px 40px; gap: 40px; }
  .logo img { width: 210px; }
  .header__nav { display: flex; gap: 32px; font-size: 15px; letter-spacing: .06em; }
  .header__nav a { position: relative; padding: 4px 0; }
  .header__nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
  .header__nav a:hover { color: var(--gold-deep); }
  .header__nav a:hover::after { transform: scaleX(1); }
  .header__contact { height: 48px; padding: 0 24px 0 20px; font-size: 17px; }
  .header__contact svg { width: 20px; height: 20px; }
  .menu-btn { display: none; }

  .sec { padding-top: 140px; padding-bottom: 150px; }
  .ghost { top: 20px; }
  .hero { min-height: calc(100svh - 89px); padding-top: 120px; }
  .hero .ghost { top: 24px; }
  .hero__title { font-size: clamp(40px, 4.4vw, 62px); }
  .sec.hero { padding-left: var(--pad-r); padding-right: var(--pad-r); }
  .hero > .hero__inner { max-width: 1180px; margin-inline: auto; flex-direction: row; align-items: center; justify-content: space-between; gap: clamp(40px, 6vw, 96px); }
  .hero__body { flex: 1 1 auto; min-width: 0; }
  .hero__photo { flex: 0 0 auto; align-self: center; width: clamp(300px, 36vw, 480px); }
  .hero__name { left: auto; right: -52px; top: 12%; }
  .hero__jp { font-size: 30px; }
  .hero__en { font-size: 15px; }
  .hero__role { font-size: 12px; }

  .sec-head { margin-bottom: 80px; }
  .sec-head__en { font-size: 22px; }
  .sec-head__ja { font-size: 44px; }
  .hd__en { font-size: 50px; }
  .hd__ja { font-size: 14px; }
  .hd { gap: 28px; padding-bottom: 16px; margin-bottom: 30px; }
  .catch { font-size: 36px; }
  .blk { margin-bottom: 96px; }
  .blk--shift { margin-left: 22%; }
  .svc--shift { margin-left: 22%; }
  .svc { margin-bottom: 120px; }
  .svc__meta i { font-size: 42px; }
  .list li { font-size: 15px; }

  .profile__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
  .profile__blocks { grid-column: 1; grid-row: 1; }
  .profile__blocks .blk:first-child { padding-right: 0; }
  .profile__name { position: sticky; top: 150px; grid-column: 2; grid-row: 1; gap: 10px; }
  .bold-text { font-size: 16px; letter-spacing: .14em; }
  .hero__lead { font-size: 16px; letter-spacing: .12em; }
  .vname { font-size: 72px; }
  .vname-en { font-size: 26px; margin-top: 110px; }
  .profile__role { display: block; writing-mode: vertical-rl; font-size: 13px; font-weight: 700; letter-spacing: .2em; margin-top: 220px; color: #555; }

  .voice__text { font-size: 22px; }
  .voice__name { font-size: 34px; }
  .voice__who img { width: 190px; height: 190px; }

  .mvv { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .name-meaning__intro { font-size: 20px; }

  .company__dl > div { grid-template-columns: 160px 1fr; gap: 24px; padding: 22px 0; }
  .company__dl dt { font-size: 14px; padding-top: 2px; }
  .news__list li { flex-wrap: nowrap; }
  .news__list p { flex-basis: auto; }

  .contact__grid { grid-template-columns: 5fr 7fr; align-items: center; gap: clamp(40px, 6vw, 96px); }
  .contact__ja { font-size: 40px; }
  .contact__en { font-size: 14px; }
  .contact__lead { font-size: 15px; }
  .contact__card { padding: 44px 48px 36px; border-radius: 24px; }
  .contact__card-title { font-size: 20px; }
  .form-page .sec-head__ja { font-size: 40px; }
  .form-card { padding: 56px 64px 48px; border-radius: 28px; }
  .footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer__nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 28px; }
  .footer__bottom { justify-content: flex-end; }
  .footer__logo { width: 240px; }
  .drawer__nav a { font-size: 44px; grid-template-columns: 64px 1fr; }
  .drawer__nav a i { font-size: 20px; }
  .drawer__nav a span { font-size: 13px; }
}
