/*
 * 全design共通のレイアウト骨格・コンポーネント構造。
 * 色・フォント・余白などの見た目の値はここに直書きせず、
 * design.css で定義した CSS変数（--color-main 等）を var() 経由で参照すること。
 * このファイルは案件・デザインを問わず共通なので、案件フォルダ内でも基本編集しない。
 * ただし「掲載コンテンツ」部分は案件ごとに index.php へ直書きし、
 * 必要なスタイルもこのファイルの末尾に追記してよい。
 */

/*
 * html/body に overflow-x: hidden は付けない。
 * position: sticky はhtml/bodyのoverflowが visible 以外だと壊れることがあるため、
 * 横スクロール対策が必要な要素は個別に overflow: hidden を当てること。
 */
body {
  font-family: var(--font-base, sans-serif);
  font-size: var(--font-size-base, 16px);
  color: var(--color-text, #333);
  background: var(--color-bg, #fff);
}

.util-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.lay-section {
  padding: clamp(40px, 10vw, var(--space-section, 64px)) 20px;
  max-width: var(--container-width, 1080px);
  margin: 0 auto;
}

.lay-section--tint {
  max-width: none;
  background: var(--color-tint-bg, #f5f5f2);
  color: var(--color-surface-text, inherit);
}

.lay-section--tint > * {
  max-width: var(--container-width, 1080px);
  margin-left: auto;
  margin-right: auto;
}

/* カルーセルなど、セクション内の一部だけを画面幅いっぱいに広げたい時に使う */
.lay-section--flush {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.lay-section--flush > .mod-heading {
  padding-left: 20px;
  padding-right: 20px;
}

.mod-heading {
  font-family: var(--font-heading, inherit);
  font-size: var(--font-size-xl, 28px);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.6;
}

.mod-heading--left {
  text-align: left;
}

.mod-heading--left::after {
  display: none;
}

.mod-button {
  display: inline-block;
  padding: 15px 32px;
  border-radius: var(--radius-base, 8px);
  font-weight: bold;
  text-align: center;
  border: 1.5px solid transparent;
  font-size: 14px;
  white-space: nowrap;
}

.mod-button--sm {
  padding: 9px 20px;
  font-size: 13px;
}

.mod-button--primary {
  background: var(--color-main, #333);
  color: var(--color-white, #fff);
}

.mod-button--line {
  background: #06c755;
  color: #ffffff;
}

.mod-button--tel {
  border-color: var(--color-main, #333);
  color: var(--color-main, #333);
  padding: 8px 18px;
  font-size: 14px;
}

.mod-button--ghost {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

/* ==========================================================
   header（共通部品）
   ========================================================== */
.mod-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg, #fff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mod-header__inner {
  max-width: var(--container-width, 1080px);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mod-header__logo {
  flex: 0 0 auto;
  white-space: nowrap;
}

.mod-header__logo a {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.mod-header__logo img {
  max-height: 44px;
  width: auto;
  display: block;
}

.mod-header__logoName {
  font-family: var(--font-heading, inherit);
  font-size: var(--font-size-lg, 20px);
  font-weight: bold;
}

.mod-header__logoTagline {
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.6;
}

.mod-header__burger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.mod-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text, #333);
}

.mod-header__drawer {
  position: fixed;
  inset: 65px 0 0 0;
  background: var(--color-bg, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mod-header__drawer.state-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mod-header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  text-align: center;
}

.mod-header__menu a {
  white-space: nowrap;
}

.mod-header__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

/* ==========================================================
   hero
   ========================================================== */
.mod-hero {
  max-width: var(--container-width, 1080px);
  margin: 0 auto;
  padding: clamp(40px, 10vw, var(--space-section, 64px)) 20px;
}

.mod-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.mod-hero__body,
.mod-hero__image {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.mod-hero__image {
  order: -1;
}

.mod-hero__title {
  font-family: var(--font-heading, inherit);
  font-size: var(--font-size-xl, 32px);
  margin-bottom: 20px;
  line-height: 1.5;
}

.mod-hero__lead {
  font-weight: bold;
  margin-bottom: 12px;
}

.mod-hero__text {
  margin-bottom: 32px;
  line-height: 2;
  opacity: 0.85;
}

.mod-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mod-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-base, 8px);
}

/* ==========================================================
   私たちのこだわり（アイコン3項目）
   ========================================================== */
.mod-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.mod-iconBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 22px;
  background: var(--color-tint-bg, #f2f2ee);
  color: var(--color-main, #333);
}

.mod-iconBadge svg {
  width: 26px;
  height: 26px;
}

.mod-iconBadge--sm {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.mod-iconBadge--sm svg {
  width: 20px;
  height: 20px;
}

.mod-values__title {
  font-weight: bold;
  margin-bottom: 10px;
}

.mod-values__text {
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.8;
}

/* ==========================================================
   2カラムレイアウト（about 等で使用）
   ========================================================== */
.lay-2col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.lay-2col__image,
.lay-2col__body {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.lay-2col__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-base, 8px);
}

.mod-about__text {
  line-height: 2.1;
  opacity: 0.85;
}

/* ==========================================================
   ご利用の流れ（4ステップ）
   ========================================================== */
.mod-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: none;
  list-style: none;
}

.mod-flow__item {
  position: relative;
  text-align: center;
}

.mod-flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-main, #333);
  color: var(--color-white, #fff);
  font-family: var(--font-heading, inherit);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.mod-flow__title {
  font-weight: bold;
  margin-bottom: 8px;
}

.mod-flow__text {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.75;
}

/* ==========================================================
   よくある質問（アコーディオン）
   ========================================================== */
.mod-faq {
  max-width: 800px;
  margin: 0 auto;
}

.mod-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mod-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-weight: bold;
  cursor: pointer;
  list-style: none;
}

.mod-faq__question::-webkit-details-marker {
  display: none;
}

.mod-faq__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--color-main, #333);
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.mod-faq__item[open] .mod-faq__icon {
  transform: rotate(0deg);
}

.mod-faq__answer {
  padding: 0 4px 22px;
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.8;
}

/* ==========================================================
   実績・事例カルーセル（自動ループ・JS不要）
   画像配列を2周分HTMLに並べ、track を -50% までスクロールさせて継ぎ目なくループする
   ========================================================== */
.mod-carousel {
  overflow: hidden;
}

.mod-carousel__track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 0 20px;
  animation: mod-carousel-scroll 30s linear infinite;
}

.mod-carousel:hover .mod-carousel__track,
.mod-carousel:focus-within .mod-carousel__track {
  animation-play-state: paused;
}

.mod-carousel__item {
  flex: 0 0 auto;
  width: 320px;
}

.mod-carousel__compare {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mod-carousel__photo {
  position: relative;
  flex: 1;
  min-width: 0;
}

.mod-carousel__photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-base, 8px);
  display: block;
}

.mod-carousel__tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
}

.mod-carousel__tag--after {
  background: var(--color-main, #333);
}

.mod-carousel__item figcaption {
  text-align: center;
  font-size: 13px;
}

@keyframes mod-carousel-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mod-carousel__track {
    animation: none;
    overflow-x: auto;
  }
}

/* ==========================================================
   安全への取り組み（アイコン5項目）
   ========================================================== */
.mod-safety {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 20px;
  text-align: center;
}

.mod-safety__title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}

.mod-safety__text {
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.72;
}

/* ==========================================================
   サービス（2項目）
   ========================================================== */
.mod-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.mod-services__item {
  background: var(--color-white, #fff);
  color: var(--color-surface-text, inherit);
  overflow: hidden;
  border-radius: var(--radius-base, 8px);
}

.mod-services__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mod-services__body {
  padding: 24px;
}

.mod-services__title {
  font-family: var(--font-heading, inherit);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.mod-services__text {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 22px;
  opacity: 0.85;
}

/* ==========================================================
   NEWS
   ========================================================== */
.mod-news {
  background: var(--color-news-bg, var(--color-footer-bg, #222));
  color: var(--color-news-text, var(--color-footer-text, #fff));
  padding: 22px 20px;
}

.mod-news__inner {
  max-width: var(--container-width, 1080px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  font-size: 13px;
}

.mod-news__label {
  font-family: var(--font-heading, inherit);
  font-weight: bold;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}

.mod-news__date {
  opacity: 0.75;
}

.mod-news__tag {
  border: 1px solid currentColor;
  padding: 2px 10px;
  font-size: 11px;
  border-radius: var(--radius-base, 4px);
}

.mod-news__title {
  flex: 1;
}

.mod-news__more {
  color: inherit;
  opacity: 0.85;
  white-space: nowrap;
}

/* ==========================================================
   CTA
   ========================================================== */
.mod-cta {
  display: flex;
  flex-direction: column;
  background: var(--color-tint-bg, #f5f5f2);
  color: var(--color-surface-text, inherit);
}

.mod-cta__body {
  flex: 1;
  width: 100%;
  padding: clamp(40px, 10vw, var(--space-section, 64px)) 20px;
  text-align: center;
}

.mod-cta__text {
  margin-bottom: 28px;
  line-height: 1.9;
}

.mod-cta__hours {
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.75;
}

.mod-cta .mod-hero__actions {
  justify-content: center;
}

/* ==========================================================
   footer（共通部品）
   ========================================================== */
.mod-footer {
  background: var(--color-footer-bg, #222);
  color: var(--color-footer-text, #fff);
  padding: clamp(40px, 10vw, var(--space-section, 64px)) 20px 24px;
}

.mod-footer__top {
  max-width: var(--container-width, 1080px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mod-footer__brand {
  order: 2;
}

.mod-footer__name {
  font-family: var(--font-heading, inherit);
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 4px;
}

.mod-footer__tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.65;
  margin-bottom: 18px;
}

.mod-footer__address,
.mod-footer__tel {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 6px;
}

.mod-footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.mod-footer__sns a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mod-footer__sns svg {
  width: 15px;
  height: 15px;
}

.mod-footer__navGrid {
  order: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
  flex: 1;
}

.mod-footer__navTitle {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.mod-footer__navCol ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.mod-footer__navCol a {
  font-size: 13px;
  opacity: 0.75;
}

.mod-footer__bottom {
  max-width: var(--container-width, 1080px);
  margin: 0 auto;
  padding-top: 22px;
  text-align: center;
  font-size: 11px;
  opacity: 0.55;
}

/* ページトップに戻るボタン（共通部品） */
.mod-scrollTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white, #fff);
  border: 1px solid var(--color-main, #333);
  color: var(--color-main, #333);
  border-radius: var(--radius-base, 8px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mod-scrollTop.state-shown {
  opacity: 1;
  pointer-events: auto;
}

.mod-scrollTop:hover {
  background: var(--color-main, #333);
  color: var(--color-white, #fff);
}

.mod-scrollTop svg {
  width: 16px;
  height: 16px;
}

/* タブレット以上でのレイアウト切り替え */
@media (min-width: 768px) {
  .mod-header__burger {
    display: none;
  }

  .mod-header__drawer {
    position: static;
    inset: auto;
    background: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mod-header__menu {
    flex-direction: row;
    gap: 18px;
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .mod-header__actions {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
  }

  .lay-2col {
    flex-direction: row;
  }

  .mod-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .mod-safety {
    grid-template-columns: repeat(4, 1fr);
  }

  .mod-services {
    grid-template-columns: repeat(3, 1fr);
  }

  .mod-flow {
    grid-template-columns: repeat(4, 1fr);
  }

  .mod-flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(50% + 40px);
    width: calc(100% - 56px);
    height: 1px;
    background: currentColor;
    opacity: 0.25;
  }

  .mod-cta__body {
    max-width: 560px;
    margin: 0 auto;
  }

  .mod-footer__top {
    flex-direction: row;
    justify-content: space-between;
  }

  .mod-footer__brand {
    order: 0;
  }

  .mod-footer__navGrid {
    order: 0;
    grid-template-columns: repeat(4, 1fr);
    flex: 0 0 auto;
    width: 60%;
  }
}

/* ==========================================================
   ここから本案件（TOP ARTMAKE）専用の追加コンポーネント
   top-artmake.html（デザイン提案）のマークアップ・CSSを移植したもの。
   色・フォントの生値は design.css の #design02 トークン（--color-accent 等）を var() 経由で参照する。
   ========================================================== */

/* ---- ベース調整（body装飾・スクロール挙動・ユーティリティ） ---- */
html {
  scroll-behavior: smooth;
}

body {
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  background:
    radial-gradient(ellipse 70% 50% at 12% 6%, rgba(214, 193, 155, .20), transparent 60%),
    radial-gradient(ellipse 60% 45% at 88% 28%, rgba(226, 208, 175, .16), transparent 58%),
    radial-gradient(ellipse 80% 40% at 40% 74%, rgba(210, 188, 150, .14), transparent 62%),
    var(--color-bg, #fff);
  padding-bottom: 74px;
}

@media (min-width: 820px) {
  body {
    padding-bottom: 0;
  }
}

.inner {
  max-width: var(--container-width, 1080px);
  margin: 0 auto;
  padding-inline: var(--container-gutter, clamp(18px, 4.4vw, 60px));
}

.rule-gold {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--color-accent-light) 12%, var(--color-accent) 50%, var(--color-accent-light) 88%, transparent);
}

/* ---- header: topbar ---- */
.affil-strip {
  background: var(--color-accent-pale);
  border-bottom: 1px solid var(--color-border);
}

.affil-in {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 7px;
}

.ra-mini {
  flex: none;
  width: 26px;
  height: 26px;
  border: 1px solid var(--color-text-primary);
  border-radius: 3px;
  display: grid;
  place-content: center;
}

.ra-mini .rl {
  font-family: var(--font-heading-en);
  font-size: 11px;
  letter-spacing: .02em;
  position: relative;
}

.ra-mini .rl sup {
  font-size: 6.5px;
  position: absolute;
  top: -1px;
  right: -6px;
}

.affil-in p {
  font-size: clamp(9.5px, 2.3vw, 11px);
  letter-spacing: .18em;
  color: #6B6055;
  line-height: 1.6;
}

.topbar-main {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.tb-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 48px);
  padding-block: 14px;
}

.brand {
  display: block;
  flex: none;
}

.brand-name {
  display: block;
  font-family: var(--font-heading-en);
  font-size: clamp(21px, 5.6vw, 31px);
  letter-spacing: .22em;
  line-height: 1.3;
  color: var(--color-text-primary);
}

.brand-sub {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(10px, 2.4vw, 12px);
  letter-spacing: .2em;
  color: #6B6055;
  margin-top: 6px;
}

.topbar-burger {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.topbar-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 34px);
  font-family: var(--font-heading);
  font-size: clamp(12.5px, 3vw, 14px);
  letter-spacing: .14em;
}

.topbar-nav a {
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  color: var(--color-text-primary);
  transition: color .35s ease;
}

.topbar-nav a:not(.topbar-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width .4s cubic-bezier(.2, .7, .2, 1);
}

.topbar-nav a:hover,
.topbar-nav a:focus-visible {
  color: var(--color-accent);
}

.topbar-nav a:not(.topbar-nav__cta):hover::after,
.topbar-nav a:not(.topbar-nav__cta):focus-visible::after {
  width: 100%;
}

/* CTA項目（config.phpのnavで 'cta' => true を付けたもの）はボタン風に目立たせる */
.topbar-nav a.topbar-nav__cta {
  padding: 8px 24px;
  background: var(--color-cta);
  color: #fff;
  border-radius: 999px;
  transition: background .35s ease, transform .35s ease;
}

.topbar-nav a.topbar-nav__cta:hover,
.topbar-nav a.topbar-nav__cta:focus-visible {
  background: var(--color-cta-hover);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 819px) {
  .topbar-burger {
    display: flex;
  }

  .topbar-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 28px var(--container-gutter) 32px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    min-height: calc(100vh - 100%);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .topbar-nav.state-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

section[id],
.hero {
  scroll-margin-top: 92px;
}

/* ---- hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: #EFE7DC;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(500px, 86svh, 820px);
}

@media (min-width: 820px) {
  .hero-media {
    align-items: center;
  }
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, #E9DCCC 0%, #DAC6B1 34%, #F1E8DB 62%, #D6C1AA 100%) 50% 28%/cover no-repeat;
}

/* hero.jpg は人物が右寄りの構図のため、縦長になるスマホ幅ではフォーカス位置を右へ寄せて見切れを防ぐ */
@media (max-width: 819px) {
  .hero-photo {
    background-position: 75% 22%;
  }
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 58% 66% at 27% 46%, rgba(190, 153, 120, .42), transparent 72%);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, transparent 26%, rgba(253, 251, 247, .60) 100%, rgba(253, 251, 247, .90) 82%);
}

@media (max-width: 819px) {
  .hero-veil {
    background: linear-gradient(180deg, rgba(253, 251, 247, .10) 24%, rgba(253, 251, 247, .80) 60%, rgba(253, 251, 247, .96) 86%);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.hero-copy .lines {
  width: max-content;
  max-width: 100%;
}

@media (min-width: 820px) {
  .hero-copy .lines {
    max-width: var(--container-width, 1080px);
  }
}

@media (max-width: 819px) {
  .hero-copy .lines {
    padding-bottom: clamp(76px, 17vw, 110px);
  }
}

.hero h1 {
  margin: 0;
}

.hero .wm {
  display: block;
  font-family: var(--font-heading-en);
  font-weight: 400;
  font-size: clamp(13px, 3.2vw, 19px);
  letter-spacing: .42em;
  color: var(--color-accent);
  margin-bottom: clamp(20px, 3.4vw, 32px);
}

.hero .wm::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--color-accent);
  margin-top: 14px;
}

.hero .catch {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.5rem, 5.6vw, 3.15rem);
  line-height: 1.95;
  letter-spacing: .2em;
  color: #33291F;
}

.hero .sub {
  margin-top: clamp(22px, 3.6vw, 34px);
  font-size: clamp(11px, 2.6vw, 13px);
  letter-spacing: .26em;
  color: #5C5248;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero .sub::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--color-accent);
  flex: none;
}

.hero-script {
  position: absolute;
  /* .hero-copy .lines と同じ基準（コンテナ幅 var(--container-width) を中央寄せ＋左パディング var(--container-gutter)）で左端を揃える */
  left: max(calc((100% - var(--container-width)) / 2), 0px);
  bottom: clamp(4px, 1.6vw, 22px);
  z-index: 3;
  width: max-content;
  font-family: var(--font-script);
  font-size: clamp(2.9rem, 12vw, 7rem);
  line-height: 1;
  background: linear-gradient(96deg, #A87F44, #F3E3C0 34%, #C29B5E 58%, #F5E9CE 78%, #B08D57);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-left: var(--container-gutter);
  padding-right: clamp(10px, 4vw, 40px);
  white-space: nowrap;
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  bottom: 0;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-family: var(--font-heading-en);
  font-size: 10px;
  letter-spacing: .34em;
  color: var(--color-accent);
  padding-bottom: 70px;
}

@media (min-width: 820px) {
  .scroll-cue {
    display: flex;
  }
}

.scroll-cue::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 0;
  width: 1px;
  height: 58px;
  background: linear-gradient(var(--color-accent), transparent);
}

/* ---- basics ---- */
.basics {
  padding: clamp(26px, 4.5vw, 42px) 0 clamp(22px, 4vw, 34px);
}

.basics dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.basics .row {
  display: flex;
  gap: clamp(8px, 2vw, 18px);
  align-items: baseline;
  flex-wrap: wrap;
}

.basics dt {
  font-family: var(--font-heading);
  font-size: clamp(12px, 2.6vw, 15px);
  letter-spacing: .18em;
  color: var(--color-text-primary);
  white-space: nowrap;
  position: relative;
  padding-left: 16px;
}

.basics dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 1px;
  background: var(--color-accent);
}

.basics dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(13px, 3vw, 17px);
  letter-spacing: .14em;
}

/* ---- coupons ---- */
.coupons {
  padding: clamp(24px, 4vw, 36px) 0;
}

.coupon-grid {
  display: grid;
  gap: 14px;
  margin: clamp(20px, 3.4vw, 30px) 0;
}

@media (min-width: 760px) {
  .coupon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

/* .coupon-card は各デザインで図形の外枠そのものになったり（F/H/I）、
   単なるコンテナのままだったりする（E/G）。common.css側は装飾なしの
   安全な既定表示のみを持ち、図形そのものは各 #designXX ブロックに委ねる。 */
.coupon-card {
  position: relative;
}

.coupon-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.coupon-badge svg {
  display: none;
}

.badge-label {
  display: block;
  text-align: center;
}

.badge-en {
  display: block;
  font-family: var(--font-heading-en);
  font-size: 9.5px;
  letter-spacing: .3em;
  color: var(--color-accent);
}

.badge-jp {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(15px, 3.6vw, 19px);
  letter-spacing: .14em;
  margin-top: 7px;
  color: var(--color-text-primary);
}

.coupon-body {
  text-align: center;
}

.coupon-body h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(14px, 3vw, 16px);
  letter-spacing: .12em;
  line-height: 1.9;
  color: var(--color-text-primary);
}

.coupon-body .off {
  display: block;
  font-family: var(--font-heading-en);
  color: var(--color-accent);
  font-size: clamp(18px, 4vw, 23px);
  letter-spacing: .08em;
  margin-top: 6px;
}

.coupon-note {
  font-size: 11.5px;
  color: var(--color-text-muted);
  letter-spacing: .1em;
  line-height: 2;
}

/* ---- cta ---- */
.cta-row {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 4.5vw, 40px) 0;
}

@media (min-width: 640px) {
  .cta-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 18px;
  font-family: var(--font-heading);
  font-size: clamp(16px, 3.6vw, 20px);
  letter-spacing: .24em;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease;
}

.btn-primary {
  background: var(--color-cta);
  color: #fff;
  box-shadow: 0 6px 22px rgba(226, 163, 152, .34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 133, 119, .36);
}

.btn-ghost {
  background: #fff;
  color: var(--color-text-primary);
  border-color: var(--color-accent-light);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--color-accent-pale);
  transform: translateY(-2px);
}

/* ---- profile ---- */
.profile {
  padding: clamp(56px, 9vw, 104px) 0;
}

.profile .grid {
  display: grid;
  gap: clamp(24px, 4.5vw, 48px);
}

@media (min-width: 760px) {
  .profile .grid {
    grid-template-columns: 300px 1fr;
    align-items: start;
  }
}

.portrait {
  position: relative;
}

.portrait .frame {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--color-accent-light);
  padding: 9px;
  background: #fff;
}

.portrait .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portrait::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 64%;
  height: 36%;
  border-right: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  pointer-events: none;
}

.profile .name {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.profile h2 {
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  letter-spacing: .28em;
  font-family: var(--font-heading);
}

.profile .role {
  font-family: var(--font-heading-en);
  font-size: 11.5px;
  letter-spacing: .3em;
  color: var(--color-accent);
}

.profile .bio {
  margin-top: 26px;
  font-size: 14px;
  line-height: 2.5;
  color: #4A423A;
}

.profile .career {
  margin-top: 30px;
  border-top: 1px solid var(--color-border);
  padding-top: 6px;
}

.profile .career div {
  display: flex;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 12.5px;
  letter-spacing: .1em;
}

.profile .career dt {
  flex: none;
  width: 6.5em;
  color: var(--color-accent);
  font-family: var(--font-heading-en);
  font-size: 11.5px;
  letter-spacing: .18em;
}

.profile .career dd {
  margin: 0;
  color: #4A423A;
}

/* ---- menu ---- */
.menu {
  padding: clamp(52px, 8vw, 92px) 0;
  background: var(--color-surface-tint);
}

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.sec-head h2 {
  font-family: var(--font-heading-en);
  font-weight: 400;
  font-size: clamp(1.5rem, 4.4vw, 2.2rem);
  letter-spacing: .2em;
  color: var(--color-text-primary);
}

.sec-head .jp {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--color-accent);
}

.price-list {
  display: grid;
  gap: 0;
}

@media (min-width: 760px) {
  .price-list {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(36px, 6vw, 80px);
  }
}

.price-list .item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.price-list .nm {
  font-family: var(--font-heading);
  font-size: clamp(14px, 3.2vw, 16px);
  letter-spacing: .14em;
  white-space: nowrap;
}

.price-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-accent-light);
  transform: translateY(-4px);
}

.price-list .pr {
  font-family: var(--font-heading-en);
  font-size: clamp(15px, 3.6vw, 18px);
  letter-spacing: .06em;
  color: var(--color-accent);
  white-space: nowrap;
}

.price-list .item:first-child,
.price-list .item:nth-child(2) {
  border-top: 1px solid var(--color-border);
}

@media (max-width: 759px) {
  .price-list .item:nth-child(2) {
    border-top: 0;
  }
}

.menu-note {
  margin-top: 22px;
  font-size: 11.5px;
  color: var(--color-text-muted);
  letter-spacing: .1em;
  line-height: 2.1;
}

/* ---- gallery ---- */
.gallery {
  padding: clamp(52px, 8vw, 92px) 0;
}

.ba-carousel {
  position: relative;
}

.ba-carousel::before,
.ba-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(20px, 6vw, 70px);
  z-index: 2;
  pointer-events: none;
}

.ba-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-surface), transparent);
}

.ba-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-surface), transparent);
}

.ba-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: auto;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.ba-track::-webkit-scrollbar {
  display: none;
}

.ba-track.is-drag {
  cursor: grabbing;
}

.ba {
  flex: 0 0 clamp(238px, 74vw, 296px);
  margin-right: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.ba h3 {
  font-size: 12.5px;
  letter-spacing: .16em;
  padding: 15px 16px 0;
  font-family: var(--font-heading);
}

.ba .pair {
  padding: 12px 16px 0;
}

.ba figure {
  margin: 0;
  position: relative;
}

.ba figure + figure {
  margin-top: 8px;
}

.ba .shot {
  aspect-ratio: 4 / 3;
  display: grid;
  place-content: center;
  background: linear-gradient(135deg, #F1E5DA, #E3D0C0 60%, #EFE2D6);
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(70, 58, 46, .5);
}

.ba figure img.shot {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.ba figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(44, 39, 35, .62);
  color: #fff;
  font-family: var(--font-heading-en);
  font-size: 10.5px;
  letter-spacing: .22em;
  padding: 4px 12px;
}

.ba dl {
  margin: 14px 0 0;
  padding: 14px 16px 18px;
  border-top: 1px solid var(--color-border);
  font-size: 10.5px;
  line-height: 1.95;
  letter-spacing: .06em;
}

.ba dt {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: .14em;
  margin-top: 8px;
}

.ba dt:first-child {
  margin-top: 0;
}

.ba dd {
  margin: 2px 0 0;
  color: var(--color-text-muted);
}

/* ---- link band ---- */
.linkband {
  padding: clamp(46px, 7vw, 80px) 0;
  background: linear-gradient(100deg, #EDDFC3 0%, #DFC9A3 26%, #F2E7D2 48%, #D8BE93 72%, #EADCBE 100%);
}

.linkband .grid {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

@media (min-width: 820px) {
  .linkband .grid {
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
  }
}

.linkband h2 {
  font-family: var(--font-heading-en);
  font-weight: 400;
  font-size: clamp(1.4rem, 4.2vw, 2rem);
  letter-spacing: .16em;
  color: #3A3128;
}

.linkband .pay {
  margin-top: 18px;
  font-size: 12.5px;
  letter-spacing: .12em;
  line-height: 2.2;
  color: #4A3E2E;
}

.linkband .pay strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .2em;
  margin-bottom: 4px;
}

.pills {
  display: grid;
  gap: 14px;
}

@media (min-width: 520px) {
  .pills--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .pills--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pill {
  background: var(--color-cta);
  color: #fff;
  border-radius: 999px;
  text-align: center;
  padding: 20px 10px;
  display: grid;
  gap: 5px;
  place-items: center;
  transition: transform .35s ease, background .35s ease;
}

.pill:hover,
.pill:focus-visible {
  background: var(--color-cta-hover);
  transform: translateY(-3px);
}

.pill .lb {
  font-family: var(--font-heading-en);
  font-size: 10px;
  letter-spacing: .26em;
  opacity: .9;
}

.pill .nm {
  font-family: var(--font-heading);
  font-size: clamp(14px, 3.4vw, 17px);
  letter-spacing: .2em;
}

.pill svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ---- notice ---- */
.notice {
  padding: clamp(52px, 8vw, 92px) 0;
}

.acc {
  border-top: 1px solid var(--color-border);
}

.acc details {
  border-bottom: 1px solid var(--color-border);
}

.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 34px 20px 0;
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(13.5px, 3vw, 15.5px);
  letter-spacing: .14em;
}

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

.acc summary::after,
.acc summary::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  background: var(--color-accent);
  transition: transform .3s ease, opacity .3s ease;
}

.acc summary::before {
  width: 13px;
  height: 1px;
  margin-top: 0;
}

.acc summary::after {
  width: 1px;
  height: 13px;
  margin-top: -6px;
  right: 12px;
}

.acc details[open] summary::after {
  opacity: 0;
  transform: rotate(90deg);
}

.acc .bd {
  padding: 0 0 24px;
  font-size: 12.5px;
  line-height: 2.3;
  color: #4A423A;
}

.acc .bd ul {
  margin: 10px 0 0 10px;
  padding-left: 1.4em;
  list-style: disc;
}

.acc .bd li {
  margin-bottom: 4px;
}

.acc .bd h4 {
  font-size: 12.5px;
  letter-spacing: .14em;
  color: var(--color-accent);
  margin: 18px 0 4px;
  font-family: var(--font-heading);
}

/* ---- footer: site-foot / dock ---- */
.site-foot {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: clamp(44px, 6vw, 72px) 0 30px;
}

.foot-brand {
  text-align: center;
  padding-bottom: clamp(28px, 4vw, 42px);
  border-bottom: 1px solid var(--color-border);
}

.fb-affil {
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--color-text-muted);
}

.fb-name {
  font-family: var(--font-heading-en);
  font-size: clamp(22px, 6vw, 32px);
  letter-spacing: .26em;
  margin: 10px 0 8px;
}

.fb-sub {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .24em;
  color: #5C5248;
}

.foot-grid {
  display: grid;
  gap: 28px;
  padding-top: clamp(28px, 4vw, 42px);
}

@media (min-width: 700px) {
  .foot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-foot h4 {
  font-size: 11.5px;
  letter-spacing: .26em;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.site-foot p,
.site-foot li {
  font-size: 11.5px;
  line-height: 2.2;
  color: var(--color-text-muted);
  letter-spacing: .1em;
}

.site-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-foot ul a {
  border-bottom: 1px solid transparent;
  transition: border-color .35s ease, color .35s ease;
}

.site-foot ul a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent-light);
}

.foot-caution {
  margin-top: clamp(28px, 4vw, 42px);
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 11px;
  line-height: 2.1;
  color: var(--color-text-muted);
  letter-spacing: .08em;
}

.foot-caution a {
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent-light);
}

.copy {
  max-width: var(--container-width);
  margin: 30px auto 0;
  padding: 16px var(--container-gutter) 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-heading-en);
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--color-text-muted);
}

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border-top: 1px solid var(--color-border);
}

@media (min-width: 820px) {
  .dock {
    display: none;
  }
}

.dock a {
  padding: 16px 6px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: .2em;
}

.dock .d1 {
  background: var(--color-cta);
  color: #fff;
}

.dock .d2 {
  background: #fff;
  color: var(--color-text-primary);
}

/* ---- motion ---- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: .01ms !important;
    animation: none !important;
  }
}
