@charset "UTF-8";
/*
 * AYATO Profile / 公開サイトスタイル
 *
 * 元のHTMLデザインはすべてインラインstyleで書かれていた。
 * PHP化にあたり、値を一切変えずにクラスへ移している。
 * 数値・色・イージングを変更する場合はデザイン全体への影響を確認すること。
 *
 * 元デザインではレスポンシブ切り替えをJSで行っていたが（window.innerWidth < 860）、
 * 同じ結果になるメディアクエリへ置き換えている。JS無効でも崩れないようにするため。
 */

/* ------------------------------------------------------------------
   ベース
   ------------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #FCFAF6;
  color: #33302B;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #8C6E3E;
  text-decoration: none;
}

a:hover {
  color: #3F9AA6;
}

::selection {
  background: #DCEFDD;
}

img {
  max-width: 100%;
}

.site {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: #FCFAF6;
  color: #33302B;
  overflow-x: hidden;
}

/* 画面には出さず、スクリーンリーダーにだけ渡すテキスト */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------------
   スクロール表示アニメーション
   ------------------------------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s cubic-bezier(.22, .7, .2, 1), transform 1.1s cubic-bezier(.22, .7, .2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* JS無効時・アニメーション抑制設定時は最初から表示する */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ------------------------------------------------------------------
   ヘッダー / ナビゲーション
   ------------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  height: 88px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: height .5s cubic-bezier(.22, .7, .2, 1), background .5s ease, border-color .5s ease;
}

.header.is-scrolled {
  height: 62px;
  background: rgba(252, 250, 246, 0.9);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(140, 110, 62, 0.14);
}

.header__inner {
  width: 100%;
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.34em;
  color: #33302B;
  text-transform: uppercase;
}

.header__logo:hover {
  color: #33302B;
}

.gnav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.gnav__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.24em;
  color: #6B6560;
}

.gnav__link:hover {
  color: #8C6E3E;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1px;
  background: #33302B;
}

/* ------------------------------------------------------------------
   モバイル用ドロワー
   ------------------------------------------------------------------ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: #FCFAF6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: 0 34px;
  transition: opacity .45s ease, transform .5s cubic-bezier(.22, .7, .2, 1);
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

.drawer.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.drawer__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 22px;
  color: #6B6560;
  cursor: pointer;
}

.drawer__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: 0.2em;
  color: #33302B;
}

.drawer__link:hover {
  color: #33302B;
}

.drawer__link span {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #9A938B;
  margin-top: 6px;
}

/* ------------------------------------------------------------------
   ボタン
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.16em;
}

.btn--solid {
  background: #33302B;
  color: #FCFAF6;
}

.btn--solid:hover {
  background: #8C6E3E;
  color: #FCFAF6;
}

.btn--ghost {
  border: 1px solid rgba(51, 48, 43, 0.28);
  color: #33302B;
  background: rgba(252, 250, 246, 0.6);
}

.btn--ghost:hover {
  border-color: #8C6E3E;
  color: #8C6E3E;
}

/* CONTACT セクションのボタンだけ一回り大きい */
.btn--lg {
  min-height: 54px;
  padding: 0 38px;
}

.btn--lg.btn--ghost {
  border-color: rgba(51, 48, 43, 0.26);
  background: rgba(252, 250, 246, 0.55);
}

.btn--lg.btn--ghost:hover {
  border-color: #8C6E3E;
}

/* ------------------------------------------------------------------
   HERO
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 24px 90px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, #E6F4E5 0%, #F7F6F0 46%, #DCE8F8 100%);
  opacity: 0.85;
}

.hero__circle--top {
  position: absolute;
  top: -14%;
  right: -18%;
  width: 62vw;
  height: 62vw;
  max-width: 760px;
  max-height: 760px;
  border-radius: 50%;
  background: #FCFAF6;
  opacity: 0.72;
}

.hero__circle--bottom {
  position: absolute;
  bottom: -22%;
  left: -16%;
  width: 46vw;
  height: 46vw;
  max-width: 560px;
  max-height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(140, 110, 62, 0.22);
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.hero__rule {
  display: block;
  width: 46px;
  height: 1px;
  background: #8C6E3E;
}

.hero__role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: #8C6E3E;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 11vw, 116px);
  line-height: 0.94;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #33302B;
}

.hero__catch {
  margin: 34px 0 0;
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: #3D3934;
  text-wrap: pretty;
}

.hero__sub {
  margin: 26px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.24em;
  color: #857E76;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}

.hero__figure {
  position: relative;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 260px 260px 18px 18px;
  overflow: hidden;
  background-color: #EFEDE6;
  background-image: repeating-linear-gradient(135deg, rgba(140, 110, 62, 0.09) 0 1px, transparent 1px 11px);
  box-shadow: 0 40px 90px -50px rgba(51, 48, 43, 0.45);
}

.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__visual-note {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #8B8479;
  white-space: nowrap;
}

.hero__badge {
  position: absolute;
  left: -26px;
  bottom: 46px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(252, 250, 246, 0.94);
  border: 1px solid rgba(140, 110, 62, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.hero__badge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: #8C6E3E;
}

.hero__badge-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #857E76;
}

/* ------------------------------------------------------------------
   セクション共通
   ------------------------------------------------------------------ */
.section {
  padding: 120px 24px;
}

.section--light {
  background: #FCFAF6;
}

.section--beige {
  background: #F5F3EC;
}

.section--strength {
  background: linear-gradient(150deg, #EAF3E8 0%, #F6F4EE 52%, #E1EAF7 100%);
}

.section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section__inner--wide {
  max-width: 1200px;
}

.section__head {
  margin-bottom: 62px;
}

.section__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 6vw, 62px);
  letter-spacing: 0.16em;
  color: #33302B;
}

.section__subtitle {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: #9A938B;
}

/* STRENGTH の背景は色が濃いため、サブタイトルだけ濃度を上げている */
.section__subtitle--dark {
  color: #857E76;
}

/* 2カラムレイアウト（ABOUT / SERVICE） */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.two-col--service {
  gap: 56px;
}

/* ------------------------------------------------------------------
   ABOUT
   ------------------------------------------------------------------ */
.about__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background-color: #F2F0E9;
  background-image: repeating-linear-gradient(135deg, rgba(140, 110, 62, 0.08) 0 1px, transparent 1px 11px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 26px;
  overflow: hidden;
}

.about__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__photo-note {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #8B8479;
}

.about__text {
  margin: 0;
  font-size: 17px;
  line-height: 2.15;
  letter-spacing: 0.045em;
  color: #4A4540;
  text-wrap: pretty;
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 52px;
  background: rgba(140, 110, 62, 0.16);
}

.facts__item {
  background: #FCFAF6;
  padding: 24px 22px;
}

.facts__label {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #8C6E3E;
  text-transform: uppercase;
}

.facts__value {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: #3D3934;
}

/* ------------------------------------------------------------------
   EXPERIENCE
   ------------------------------------------------------------------ */
.exp__lead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 28px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(140, 110, 62, 0.2);
}

.exp__lead-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: #8C6E3E;
}

.exp__lead-years {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(64px, 13vw, 132px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #33302B;
}

.exp__lead-note {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #6B6560;
}

.timeline {
  margin-top: 58px;
  display: grid;
  gap: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 130px 1px minmax(0, 1fr);
  gap: 0 28px;
  align-items: start;
}

.timeline__year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #8C6E3E;
  padding-bottom: 40px;
}

.timeline__line {
  justify-self: center;
  width: 1px;
  height: 100%;
  background: rgba(140, 110, 62, 0.24);
  position: relative;
}

.timeline__dot {
  position: absolute;
  top: 10px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8C6E3E;
}

.timeline__body {
  padding-bottom: 40px;
}

.timeline__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: #33302B;
}

.timeline__text {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #6B6560;
}

/* ------------------------------------------------------------------
   WORKS
   ------------------------------------------------------------------ */
.works__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 58px;
}

.works__note {
  margin: 0;
  max-width: 380px;
  font-size: 13px;
  line-height: 2;
  color: #857E76;
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px 34px;
}

/* 実績が未登録でも空白だけにならないようにする */
.works__empty {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #8B8479;
}

/* ボタン要素の既定スタイルを打ち消し、元のカード見た目に合わせる */
.work {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.work__thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background-color: #F1EFE8;
  background-image: repeating-linear-gradient(135deg, rgba(140, 110, 62, 0.08) 0 1px, transparent 1px 11px);
}

.work__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work__slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #8B8479;
}

.work__overlay {
  position: absolute;
  inset: 0;
  background: rgba(51, 48, 43, 0.06);
  opacity: 0;
}

.work:hover .work__overlay,
.work:focus-visible .work__overlay {
  opacity: 1;
}

.work__body {
  display: block;
  padding: 20px 2px 0;
}

.work__title {
  display: block;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  letter-spacing: 0.1em;
  color: #33302B;
}

.work__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
}

.work__category {
  margin: 0;
  font-size: 14px;
  color: #6B6560;
}

.work__year {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #A29B92;
}

/* ------------------------------------------------------------------
   WORKS モーダル
   ------------------------------------------------------------------ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(38, 36, 32, 0.44);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(3px);
}

.modal.is-open {
  display: flex;
}

.modal__panel {
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #FCFAF6;
  border-radius: 16px;
  box-shadow: 0 50px 110px -50px rgba(38, 36, 32, 0.6);
}

.modal__media {
  aspect-ratio: 16 / 9;
  background-color: #F1EFE8;
  background-image: repeating-linear-gradient(135deg, rgba(140, 110, 62, 0.08) 0 1px, transparent 1px 11px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal__media iframe,
.modal__media img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

.modal__media-note {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #8B8479;
}

.modal__body {
  padding: 32px 34px 36px;
}

.modal__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #33302B;
}

.modal__meta {
  margin: 8px 0 0;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #8C6E3E;
}

.modal__text {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 2;
  color: #4A4540;
}

.modal__close {
  margin-top: 28px;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(51, 48, 43, 0.24);
  background: transparent;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #33302B;
  cursor: pointer;
}

.modal__close:hover {
  border-color: #8C6E3E;
  color: #8C6E3E;
}

/* ------------------------------------------------------------------
   STRENGTH
   ------------------------------------------------------------------ */
.strengths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(140, 110, 62, 0.18);
}

.strength {
  background: rgba(252, 250, 246, 0.86);
  padding: 44px 34px 48px;
}

.strength__no {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #8C6E3E;
}

.strength__title-en {
  margin: 22px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 0.14em;
  color: #33302B;
}

.strength__title {
  margin: 12px 0 0;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #33302B;
}

.strength__text {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 2;
  color: #4A4540;
  text-wrap: pretty;
}

/* ------------------------------------------------------------------
   SERVICE
   ------------------------------------------------------------------ */
.service__lead-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 34px;
  letter-spacing: 0.12em;
  color: #33302B;
}

.service__lead-subtitle {
  margin: 12px 0 0;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #8C6E3E;
}

.service__lead-text {
  margin: 26px 0 0;
  font-size: 15px;
  line-height: 2.1;
  color: #4A4540;
}

.service__list {
  display: grid;
  gap: 0;
}

.service__item {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 22px 4px;
  border-top: 1px solid rgba(140, 110, 62, 0.18);
}

.service__no {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #A29B92;
  min-width: 26px;
}

.service__title {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #33302B;
}

.service__title-en {
  margin: 6px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #857E76;
}

.service__text {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #6B6560;
}

.service__note {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.9;
  color: #9A938B;
}

/* ------------------------------------------------------------------
   PROCESS
   ------------------------------------------------------------------ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
}

.process__item {
  padding-top: 22px;
  border-top: 1px solid rgba(140, 110, 62, 0.28);
}

.process__no {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: #8C6E3E;
}

.process__title-en {
  margin: 16px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: #33302B;
}

.process__title {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #6B6560;
}

.process__text {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.9;
  color: #857E76;
}

/* ------------------------------------------------------------------
   MESSAGE
   ------------------------------------------------------------------ */
.message {
  padding: 130px 24px;
  background: #FCFAF6;
}

.message__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.message__label {
  margin: 0 0 44px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: #8C6E3E;
}

.message__body {
  margin: 0;
  font-size: clamp(17px, 2.4vw, 21px);
  font-weight: 300;
  line-height: 2.45;
  letter-spacing: 0.06em;
  color: #3D3934;
  text-wrap: pretty;
}

.message__signature {
  margin: 46px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.3em;
  color: #857E76;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------------ */
.contact {
  padding: 0 24px 24px;
  background: #FCFAF6;
}

.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  padding: clamp(64px, 9vw, 120px) 32px;
  background: linear-gradient(120deg, #E7F3E6 0%, #F6F4EE 50%, #DFE9F7 100%);
  text-align: center;
}

.contact__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 8vw, 84px);
  letter-spacing: 0.14em;
  color: #33302B;
}

.contact__text {
  margin: 26px 0 0;
  font-size: 16px;
  line-height: 2.1;
  color: #4A4540;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 48px;
}

.contact__note {
  margin: 34px 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #8B8479;
}

/* ------------------------------------------------------------------
   フッター
   ------------------------------------------------------------------ */
.footer {
  padding: 86px 24px 46px;
  background: #FCFAF6;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 44px;
  border-top: 1px solid rgba(140, 110, 62, 0.2);
}

.footer__name {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.32em;
  color: #33302B;
  text-transform: uppercase;
}

.footer__role {
  margin: 12px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #857E76;
}

.footer__tagline {
  margin: 4px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #857E76;
}

.footer__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #6B6560;
}

.footer__link:hover {
  color: #8C6E3E;
}

.footer__copyright {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #A29B92;
}

/* ------------------------------------------------------------------
   レスポンシブ
   元デザインのJSは window.innerWidth < 860 を境界にしていた
   ------------------------------------------------------------------ */
@media (max-width: 859px) {
  .gnav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero__inner,
  .two-col {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .timeline__item {
    grid-template-columns: 76px 1px minmax(0, 1fr);
  }
}
