@charset "UTF-8";
/* ============================================
   care & nail blanc 公式サイト
   白×ベージュ / 上品・清潔感・心の余白
   ============================================ */

:root {
  --white: #ffffff;
  --ivory: #faf7f2;
  --beige: #f1e9dd;
  --beige-deep: #e4d6c4;
  --line: #ddcfbc;
  --brown: #4a3830;
  --brown-dark: #2e211b;
  --accent: #a3846a;
  --accent-soft: #c4ab94;
  --font-serif: "Shippori Mincho", "Yu Mincho", serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 2;
  color: var(--brown);
  background: var(--white);
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.sp-only { display: inline; }
.pc-only { display: none; }

/* ---------- 見出し ---------- */
.section { padding: 88px 0; position: relative; overflow: hidden; }

/* ---------- 線画の花・葉の装飾 ---------- */
.deco {
  position: absolute;
  pointer-events: none;
  color: var(--accent-soft);
  z-index: 0;
}
.deco-flower { aspect-ratio: 120 / 140; }
.deco-branch { aspect-ratio: 200 / 90; }
.deco use { color: inherit; }

.deco-hero { width: 110px; top: 62px; right: -12px; opacity: 0.4; }
.deco-worry { width: 150px; bottom: -8px; right: -34px; opacity: 0.45; transform: scaleX(-1); }
.deco-concept { display: none; width: 150px; bottom: 44px; right: 36px; opacity: 0.5; transform: rotate(-10deg); }
.deco-menu { width: 130px; top: 42px; right: -28px; opacity: 0.4; }
.deco-profile { width: 100px; top: 46px; left: -14px; opacity: 0.45; transform: rotate(12deg) scaleX(-1); }
.deco-contact { width: 140px; bottom: 14px; left: -30px; opacity: 0.45; }

.section-label {
  font-family: "Shippori Mincho", serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.28em;
  color: var(--accent-soft);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--brown-dark);
  margin-bottom: 48px;
}

.section-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--accent-soft);
  margin: 26px auto 0;
}

.section-title-sub {
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-top: 8px;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 16px 36px;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.btn:hover { opacity: 0.82; transform: translateY(-2px); }

.btn-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(74, 56, 48, 0.22);
}
.btn-line {
  background: var(--white);
  color: var(--brown);
  border: 1px solid var(--line);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--brown);
}
.btn-large { width: 100%; max-width: 420px; padding: 18px 24px; }

.text-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 2px;
  font-size: 15px;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(46, 33, 27, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
}
.header-logo-text {
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}

.name-kana {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-left: 7px;
}

.header-logo-text .name-kana {
  font-size: 10px;
  margin-left: 5px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.footer-name .name-kana { color: rgba(255, 255, 255, 0.65); font-size: 12px; }

.header-nav { display: none; margin-left: auto; gap: 30px; }
.header-nav a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.08em;
}
.header-nav a:hover { color: var(--accent-soft); }

.header-cta {
  display: none;
  margin-left: auto;
  background: var(--white);
  color: var(--brown-dark);
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

/* ---------- 1. ヒーロー ---------- */
.hero {
  padding: 130px 0 70px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-place {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-copy {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 16.5px;
  line-height: 2.1;
  color: var(--brown);
  margin-bottom: 28px;
}

.hero-badges { display: flex; gap: 10px; margin-bottom: 36px; }
.hero-badges span {
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--brown);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 18px;
}

.hero-cta { display: flex; flex-direction: column; gap: 14px; max-width: 340px; }

.hero-photo { position: relative; max-width: 420px; }
.hero-photo img {
  border-radius: 200px 200px 16px 16px;
  box-shadow: 0 18px 40px rgba(74, 56, 48, 0.14);
}

/* ---------- 2. 共感チェックリスト ---------- */
.worry { background: var(--white); }

.worry-list {
  max-width: 560px;
  margin: 0 auto 56px;
  background: var(--ivory);
  border: 1px solid var(--beige);
  border-radius: 14px;
  padding: 34px 30px;
}

.worry-list li {
  position: relative;
  padding: 10px 0 10px 40px;
  font-size: 16.5px;
  border-bottom: 1px dashed var(--line);
}
.worry-list li:last-child { border-bottom: none; }

.worry-list li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--white);
  background: var(--accent-soft);
  border-radius: 50%;
}

.worry-photo {
  max-width: 560px;
  margin: 0 auto 52px;
}
.worry-photo img {
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(74, 56, 48, 0.1);
}

.worry-message { text-align: center; }
.worry-message p { margin-bottom: 30px; }
.worry-message p:last-child { margin-bottom: 0; }

.worry-message-strong {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 2.2;
  color: var(--brown-dark);
}

/* ---------- 3. コンセプト ---------- */
.concept { background: var(--ivory); }

.concept-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-bottom: 56px;
}

.concept-tategaki {
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: 21px;
  letter-spacing: 0.42em;
  color: var(--accent);
  height: max-content;
  padding: 14px 18px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.concept-text { max-width: 640px; }
.concept-text p { margin-bottom: 26px; text-align: center; }
.concept-text p:last-child { margin-bottom: 0; }

.concept-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 56px;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.pillar-char {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-soft);
  border-radius: 50%;
}

.pillar p { font-size: 15.5px; line-height: 1.9; }

/* ---------- 写真+キャプション共通 ---------- */
.concept-photo,
.flow-photos figure,
.profile-dance {
  margin: 0;
}
.concept-photo img,
.flow-photos img,
.profile-face,
.profile-dance img {
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(74, 56, 48, 0.1);
  width: 100%;
}
.concept-photo figcaption,
.flow-photos figcaption,
.profile-dance figcaption {
  font-size: 13px;
  color: var(--accent);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.08em;
}

.concept-photo {
  max-width: 760px;
  margin: 0 auto;
}

.flow-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  max-width: 720px;
  margin: 0 auto 52px;
}

.flow-photos img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- 写真プレースホルダー ---------- */
.photo-placeholder {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--beige);
  border: 1px dashed var(--accent-soft);
  border-radius: 14px;
}

.photo-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.photo-placeholder-portrait { aspect-ratio: 4 / 5; max-width: 320px; }

/* ---------- 4. 選ばれる理由 ---------- */
.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.reason-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 14px;
  padding: 36px 30px 32px;
  box-shadow: 0 8px 24px rgba(74, 56, 48, 0.05);
}

.reason-num {
  font-family: "Shippori Mincho", serif;
  font-style: italic;
  font-size: 30px;
  color: var(--accent-soft);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.reason-card h3 {
  font-family: var(--font-serif);
  font-size: 19.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brown-dark);
  line-height: 1.7;
  margin-bottom: 14px;
}

.reason-card p { font-size: 15.5px; line-height: 2; }

/* ---------- 5. 事例・お客様の声 ---------- */
.case { background: var(--ivory); }

.case-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  margin-bottom: 46px;
}

.case-body + .case-body {
  border-top: 1px dashed var(--line);
  padding-top: 46px;
}

.case-photo { max-width: 420px; }
.case-photo img {
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(74, 56, 48, 0.12);
}
.case-photo figcaption {
  font-size: 13px;
  color: var(--accent);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.08em;
}

.case-detail { max-width: 520px; }

.case-info { margin-bottom: 26px; }
.case-info div {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15.5px;
}
.case-info dt {
  flex-shrink: 0;
  width: 90px;
  color: var(--accent);
  font-weight: 500;
}

.case-voice {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 28px;
  position: relative;
}
.case-voice::before {
  content: "“";
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--beige-deep);
  position: absolute;
  top: -6px;
  left: 14px;
  line-height: 1;
}
.case-voice p {
  font-size: 16px;
  line-height: 2.1;
  position: relative;
}

.case-note { font-size: 13px; color: var(--accent); margin-top: 16px; text-align: center; }

.case-gallery { margin-bottom: 46px; }

.case-gallery-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.12em;
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 10px;
}

.case-gallery-lead {
  font-size: 14px;
  color: var(--accent);
  text-align: center;
  margin-bottom: 26px;
}

.case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.case-gallery-grid img {
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(74, 56, 48, 0.1);
}

.case-review {
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.case-review p { font-size: 16px; margin-bottom: 12px; letter-spacing: 0.08em; }

.review-score {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--accent);
  margin-right: 12px;
}

/* ---------- 6. メニュー ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 14px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(74, 56, 48, 0.05);
}

.menu-card-featured { border: 1.5px solid var(--accent-soft); }

.menu-tag {
  align-self: flex-start;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--white);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 18px;
}
.menu-card-featured .menu-tag { background: var(--brown); }

.menu-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 14px;
}

.menu-desc { font-size: 15px; line-height: 2; margin-bottom: 22px; }

.menu-price {
  margin-top: auto;
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  border-top: 1px dashed var(--line);
  padding-top: 20px;
}

.menu-time {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

.menu-tax { font-size: 14px; margin-left: 6px; color: var(--brown); }

.menu-note {
  text-align: center;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 26px;
}

/* ---------- 7. ご来店の流れ ---------- */
.flow { background: var(--ivory); }

.flow-lead { text-align: center; margin-bottom: 52px; }

.flow-steps {
  max-width: 720px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 14px;
  padding: 32px 30px 30px 84px;
  margin-bottom: 34px;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 1px;
  height: 22px;
  background: var(--accent-soft);
}

.flow-num {
  position: absolute;
  left: 26px;
  top: 32px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--white);
  background: var(--accent-soft);
  border-radius: 50%;
}

.flow-step h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.flow-step p { font-size: 15.5px; line-height: 2; }

.flow-promise {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 2.4;
  color: var(--brown-dark);
  letter-spacing: 0.1em;
}

/* ---------- 8. Q&A ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--beige);
  padding: 28px 6px;
}
.faq-item:first-child { border-top: 1px solid var(--beige); }

.faq-item dt {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17.5px;
  color: var(--brown-dark);
  padding-left: 42px;
  margin-bottom: 12px;
  line-height: 1.8;
}
.faq-item dt::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 1px;
  font-style: italic;
  font-size: 19px;
  color: var(--accent);
}

.faq-item dd {
  position: relative;
  font-size: 15.5px;
  line-height: 2;
  padding-left: 42px;
}
.faq-item dd::before {
  content: "A";
  position: absolute;
  left: 2px;
  top: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent-soft);
}

/* ---------- 9. プロフィール ---------- */
.profile { background: var(--ivory); }

.profile-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}

.profile-photo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.profile-dance { margin-top: 22px; }

.profile-text { max-width: 560px; }
.profile-text p { margin-bottom: 24px; }
.profile-text p:last-child { margin-bottom: 0; }

.profile-name {
  font-family: var(--font-serif);
  font-size: 25px;
  color: var(--brown-dark);
  letter-spacing: 0.14em;
  margin-bottom: 4px !important;
}

.profile-name-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.profile-name-kana {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--accent);
  margin-left: 14px;
  letter-spacing: 0.16em;
}

.profile-license {
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 26px !important;
  letter-spacing: 0.06em;
}

/* ---------- 10. サロン情報・アクセス ---------- */
.access-body {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 860px;
  margin: 0 auto;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.access-table th, .access-table td {
  text-align: left;
  padding: 18px 10px;
  border-bottom: 1px solid var(--beige);
  vertical-align: top;
  line-height: 1.9;
}

.access-table th {
  width: 110px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.address-note {
  display: block;
  font-size: 13px;
  color: var(--accent);
  line-height: 1.8;
  margin-top: 6px;
}

.access-note h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

.access-note ul { margin-bottom: 28px; }
.access-note li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 15.5px;
}
.access-note li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 7px;
  height: 1px;
  background: var(--accent);
}

/* ---------- 11. 予約・お問い合わせ ---------- */
.contact {
  background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
  padding-bottom: 110px;
}

.contact-lead {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 2.3;
  color: var(--brown-dark);
  margin-bottom: 44px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* ---------- 12. フッター ---------- */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 60px 24px 130px;
}

.footer-logo {
  width: 74px;
  margin: 0 auto 16px;
  background: var(--white);
  border-radius: 50%;
  padding: 2px;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.footer-address { font-size: 13.5px; letter-spacing: 0.08em; margin-bottom: 26px; }

.footer-copy { font-size: 12px; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.1em; }

/* ---------- スマホ追従CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 1px;
  box-shadow: 0 -6px 20px rgba(46, 33, 27, 0.16);
}

.sticky-cta a {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 17px 8px calc(17px + env(safe-area-inset-bottom, 0px));
}

.sticky-cta-main { background: var(--brown); color: var(--white); flex: 1.6; }
.sticky-cta-sub { background: var(--beige-deep); color: var(--brown-dark); }

/* ---------- フェードイン ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   タブレット・PC(768px〜)
   ============================================ */
@media (min-width: 768px) {
  body { font-size: 17.5px; }
  .sp-only { display: none; }
  .pc-only { display: inline; }

  .section { padding: 110px 0; }
  .section-title { font-size: 32px; }

  .header-nav { display: flex; }
  .header-cta { display: inline-block; margin-left: 0; }
  .header-inner { padding: 12px 28px; }

  /* 装飾 */
  .deco-hero { width: 190px; top: 100px; right: 30px; opacity: 0.5; }
  .deco-worry { width: 190px; right: -20px; }
  .deco-concept { display: block; }
  .deco-menu { width: 170px; right: -10px; }
  .deco-profile { width: 130px; left: 10px; }
  .deco-contact { width: 180px; left: 20px; }

  /* ヒーロー */
  .hero { padding: 170px 0 100px; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
  .hero-text { flex: 1.2; }
  .hero-photo { flex: 1; }
  .hero-copy { font-size: 40px; letter-spacing: 0.09em; }
  .hero-sub { font-size: 17.5px; }
  .hero-cta { flex-direction: row; max-width: none; }
  .hero-cta .btn { min-width: 220px; }

  /* コンセプト */
  .concept-body {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
  }
  .concept-tategaki { order: 2; }
  .concept-text { order: 1; }
  .concept-text p { text-align: left; }
  .concept-pillars { grid-template-columns: repeat(3, 1fr); }
  .pillar { flex-direction: column; text-align: center; gap: 16px; padding: 34px 22px; }

  /* 理由 */
  .reason-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* 事例 */
  .case-body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 56px;
  }
  .case-photo { flex-shrink: 0; }
  .case .case-body:nth-of-type(even) { flex-direction: row-reverse; }
  .case-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 720px; }

  /* メニュー */
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-card { padding: 38px 28px; }

  /* ご来店の流れ */
  .flow-photos { grid-template-columns: 1fr 1fr; }

  /* プロフィール */
  .profile-body { flex-direction: row; align-items: flex-start; gap: 60px; }
  .profile-photo { flex-shrink: 0; margin: 0; }

  /* アクセス */
  .access-body { flex-direction: row; gap: 60px; }
  .access-table { flex: 1.2; }
  .access-note { flex: 1; }

  /* 予約 */
  .contact { padding-bottom: 110px; }
  .contact-buttons { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .contact-buttons .btn { width: auto; min-width: 300px; }

  /* フッター */
  .site-footer { padding-bottom: 60px; }

  /* 追従CTAはPCでは非表示 */
  .sticky-cta { display: none; }
}
