/* ============================================
   ハダノコトサロン 公式サイト v4
   和モダン・静かで上質
   生成り × 墨色 × 金茶(くすんだゴールド)
   参考:余白に浮かぶ写真カード・中央揃え見出し+短い罫線・
   縦書きcontent番号・詩組み・写真カード・枠線ボタン
   ============================================ */

:root {
  --bg: #F7F4EE;
  --ink: #2B2B2B;
  --ink-soft: #55524C;
  --accent: #A6803C;
  --accent-dark: #8C6B30;
  --line-green: #06C755;      /* LINE公式ブランドカラー */
  --line-green-dark: #05A94A;
  --line: #DCD6C8;
  --serif: "Shippori Mincho", "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --en-serif: "Cormorant Garamond", "Shippori Mincho", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
}

/* 和紙のようなごく薄いノイズテクスチャ(自作SVG) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

/* ---------- ヘッダー(細い固定ナビ) ---------- */

.site-header {
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--ink);
  transition: opacity 0.25s;
}

.brand:hover {
  opacity: 0.7;
}

.brand img {
  width: 44px;
  height: auto;
}

/* 白背景のJPGロゴを生成り背景に馴染ませる */
.brand img,
.footer-logo {
  mix-blend-mode: multiply;
}

.brand-name {
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

/* ナビ */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
  transition: 0.3s;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.site-nav a {
  display: block;
  padding: 4px 0;
  color: var(--ink);
  transition: 0.25s;
}

/* 日本語のみのナビ表記(主見出しとして機能する大きさ) */
.site-nav a .ja {
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-nav a:hover .ja,
.site-nav a[aria-current="page"] .ja {
  color: var(--accent-dark);
}

/* ヘッダー行には収まらないため既定では非表示。ハンバーガーメニュー内でのみ表示 */
.nav-copy {
  display: none;
  font-family: var(--en-serif);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* 7項目のナビが1行に収まる最小幅(実測1000px)を下回ったらハンバーガーメニューに切替 */
@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0 12px;
  }
  .site-nav li {
    text-align: center;
  }
  .site-nav a {
    padding: 11px 0;
  }
  .site-nav a .ja {
    font-weight: 600;
  }
  .nav-copy {
    display: block;
    text-align: center;
    padding: 0 0 16px;
  }
}

/* ---------- セクション(背景は全ページ均一の生成り。区切りは余白で) ---------- */

/* 上下非対称にし、隣接セクション間の二重余白(旧:96+96=192px)を解消 */
.band {
  padding: 72px 24px 40px;
}

.band--head {
  padding: 72px 24px 40px;
}

.inner {
  max-width: 720px;
  margin: 0 auto;
}

.inner--wide {
  max-width: 960px;
}

/* ---------- 見出しシステム(中央揃え+金茶の短い罫線+縦書き番号) ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.sec-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 52px;
}

/* content番号は縦書きでセクション左肩(本文外側の余白)に */
.sec-num {
  position: absolute;
  left: -18px;
  top: 0.2em;
  writing-mode: vertical-rl;
  font-family: var(--en-serif);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--accent);
}

/* 見出しと重なる幅では非表示 */
@media (max-width: 480px) {
  .sec-num {
    display: none;
  }
}

/* 日本語見出しを主見出しとして使用(英語見出し+添え書き型は廃止) */
.sec-head .ja {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.25em;
  color: var(--ink);
}

/* 見出し直下の短い水平線(金茶・幅24px) */
.sec-head::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
  margin-top: 22px;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

p + p {
  margin-top: 1.3em;
}

.note {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.catch {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  letter-spacing: 0.25em;
  line-height: 2.1;
  text-align: center;
  margin-bottom: 28px;
}

/* 詩組み(短い理念文。中央揃え・意味の切れ目で改行) */
.poem {
  text-align: center;
  line-height: 2.3;
}

.poem p + p {
  margin-top: 1.8em;
}

/* ---------- ファーストビュー(余白に浮かぶ写真カード) ---------- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 24px 64px;
}

.hero-card {
  position: relative;
  width: min(720px, 100%);
  border-radius: 24px;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: min(80vh, 820px);
  min-height: 520px;
  object-fit: cover;
}

/* 写真全面に白いヴェールを均一に重ね、サイトの淡いトーンに馴染ませる */
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* 下部は文字の可読性用にごく薄く墨を敷く */
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(30, 28, 24, 0.42), rgba(30, 28, 24, 0));
  pointer-events: none;
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 34px 24px 30px;
}

.hero-logo {
  width: min(270px, 66%);
  filter: brightness(0) invert(1);
}

.hero-copy {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  letter-spacing: 0.3em;
  line-height: 2.1;
  color: #fff;
  text-shadow: 0 1px 18px rgba(20, 18, 14, 0.45);
  margin: auto 0;
  padding-top: 8vh;
}

/* 円形の下向き矢印(金茶の細線・ゆっくり上下) */
.hero-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(247, 244, 238, 0.28);
  animation: float 2.8s ease-in-out infinite;
}

.hero-arrow svg {
  width: 14px;
  height: 16px;
  stroke: var(--accent);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

.hero-caption {
  width: min(720px, 100%);
  margin-top: 14px;
  font-family: var(--en-serif);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--accent);
}

/* ---------- スクロール連動フェードイン ---------- */

.js .fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .fade.is-visible {
  opacity: 1;
  transform: none;
}

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

/* ---------- 写真 ---------- */

.photo {
  border-radius: 16px;
  overflow: hidden;
  margin: 26px 0;
}

.photo img {
  width: 100%;
  object-fit: cover;
}

/* 白いヴェール(全体18%)を写真全面に重ね、サイトの淡いトーンに馴染ませる */
.photo--veil {
  position: relative;
}

.photo--veil::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
}

.photo--wide img {
  aspect-ratio: 16 / 9;
}

/* サイズを一回り抑えた写真(メイン)。中央寄せ */
.photo--md {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* メインより一段階小さいサブ写真。中央寄せ */
.photo--sm {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

/* ギャラリー(大小のリズム) */

.gallery {
  display: grid;
  gap: 18px;
}

.gallery .photo {
  margin: 0;
}

.gallery .photo:first-child img {
  aspect-ratio: 16 / 10;
}

.gallery .photo:last-child {
  width: 68%;
  margin-left: auto;
}

.gallery .photo:last-child img {
  aspect-ratio: 4 / 3;
}

@media (max-width: 560px) {
  .gallery .photo:last-child {
    width: 82%;
  }
}

/* ---------- 3つの柱(写真カード) ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}

.pillar-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: #fff;
}

.pillar-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pillar-card:hover img {
  transform: scale(1.04);
}

/* 白いヴェール(全体18%)を写真全面に重ね、サイトの淡いトーンに馴染ませる。
   その上に、文字のかかる下55%だけ暗くする縦グラデーションを重ねて可読性を確保する
   (背景を先に書くと下、後に書くほど手前に重なる。ヴェール→暗transition の順)。
   上45%: 白ヴェールのみ(淡く霞んだ質感) / 下55%: 白ヴェール+暗グラデーション(可読性優先) */
.pillar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0.2) 58%,
      rgba(0, 0, 0, 0.62) 100%),
    rgba(255, 255, 255, 0.18);
}

.pillar-num {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  writing-mode: vertical-rl;
  font-family: var(--en-serif);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.pillar-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 0 20px 22px;
  text-align: center;
}

.pillar-title {
  display: block;
  min-height: 3.6rem;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 8px;
}

/* 「（バイオウォーミーパック）」等の補足表記。
   親(.pillar-title)に対する相対単位(em)で指定するため、画面幅が何であっても
   常に親の0.65倍で確定し、親より確実に小さくなる(ブレークポイントごとの
   px直書きは行わない)。761px幅(3カラムで最も窮屈・カード内側幅約183px)で
   実測した安全上限(約11.7px)より0.65emの実寸(約11.0px)が下回ることを
   確認済みで、この1本の値が全画面幅で安全に収まる。 */
.pillar-title-sub {
  font-size: 0.8em;
  white-space: nowrap;
}

.pillar-sub {
  display: block;
  min-height: 2.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 760px) {
  .pillars {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  .pillar-card {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- 料金表(メニュー名=濃く太く/価格=大きく/説明=薄く小さく) ---------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 10px;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 16px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.price-table th {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.price-table .price,
.price-list .price {
  white-space: nowrap;
  font-family: var(--en-serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.price-table .desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* スマホはカード型:1行目=メニュー名+価格/2行目=説明 */
@media (max-width: 620px) {
  .price-table,
  .price-table tbody {
    display: block;
  }
  .price-table tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0 16px;
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
  }
  .price-table th,
  .price-table td {
    display: block;
    border-bottom: none;
    padding: 0;
  }
  .price-table th {
    white-space: normal;
    font-size: 1.02rem;
  }
  .price-table .desc {
    flex-basis: 100%;
    margin-top: 6px;
  }
}

/* 料金リスト(マツヤニページ用) */

.price-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}

.price-list li > span:first-child {
  font-weight: 700;
}

/* 料金リストの項目名に添える部位詳細等の小さな補足 */
.parts-detail {
  display: inline-block;
  margin-top: 0.2em;
  font-weight: 400;
  font-size: 0.76rem;
  color: var(--ink-soft);
}

/* 料金リストが連続する場合(WOMEN/MEN等)の見出し間隔 */
.price-list + h3 {
  margin-top: 40px;
}

/* ---------- こだわりリスト ---------- */

.feature-list {
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 11px 0 11px 26px;
  border-bottom: 1px dotted var(--line);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---------- SHOP情報(罫線なし・行間ゆったり) ---------- */

.shop-info {
  margin: 8px 0 30px;
}

.shop-info > div {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.shop-info > div + div {
  margin-top: 30px;
}

.shop-info dt {
  width: 108px;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  padding-top: 3px;
}

.shop-info dd {
  margin: 0;
  font-size: 0.94rem;
}

@media (max-width: 560px) {
  .shop-info > div {
    flex-direction: column;
    gap: 4px;
  }
  .shop-info dt {
    width: auto;
  }
}

/* Google map リンク(金茶下線) */
.map-link {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

/* LINEテキストリンク(店舗情報表用) */
.line-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--line-green);
  border-bottom: 1px solid var(--line-green);
  padding-bottom: 2px;
}

.line-text-link img {
  width: 22px;
  height: 22px;
}

/* Instagramテキストリンク(店舗情報表用・公式グラデーションカラー) */
.instagram-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 1px solid #d6249f;
  padding-bottom: 2px;
}

.instagram-text-link img {
  width: 22px;
  height: 22px;
}

/* ---------- 予約の帯(写真+白い枠線ボタン・全ページ共通CTA) ---------- */

.cta-band {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.cta-band > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 墨色45%オーバーレイ(写真より上・文字より下)。白ヴェールを墨色の下に重ねる
   (1層目=墨色45%が最前面で可読性を確保、2層目=白ヴェールが写真側。
   単純な2色指定はbackground-colorは最終レイヤーにしか指定できないため、
   1層目はグラデーション記法で単色を表現している) */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(43, 43, 43, 0.45), rgba(43, 43, 43, 0.45)),
    rgba(255, 255, 255, 0.18);
}

.cta-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  padding: 24px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 3.6vw, 1.3rem);
  letter-spacing: 0.25em;
  line-height: 1.7;
}

.cta-title-sub {
  display: block;
  font-size: 0.9em;
  letter-spacing: 0.14em;
}

.cta-note {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
}

/* 白い枠線だけのピル型ボタン(hoverで白背景・墨色文字に反転) */
.btn-outline {
  display: inline-block;
  padding: 15px 52px;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  background: transparent;
  transition: background 0.35s ease, color 0.35s ease;
}

.btn-outline:hover {
  background: #fff;
  color: var(--ink);
}

/* ---------- 植物の線画(自作SVG) ---------- */

.sprig {
  margin: 0 auto 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* よもぎの小枝(ページ見出し用・金茶) */
.sprig--yomogi {
  width: 48px;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 46' fill='none' stroke='%23A6803C' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 44 C 25 31, 26 18, 28 3'/%3E%3Cpath d='M23.5 33 C 14 31, 9 24.5, 11 17.5 C 17.5 20.5, 21.5 26.5, 23.5 33 Z'/%3E%3Cpath d='M25.5 23 C 34 21, 39 15, 37 8.5 C 30.5 11, 26.5 16.5, 25.5 23 Z'/%3E%3Cpath d='M24.5 38 C 30 37, 33.5 33.5, 33 29 C 28.5 30.5, 25.5 34, 24.5 38 Z'/%3E%3C/svg%3E");
}

/* ---------- ロゴの透かし ---------- */

.wm {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.wm::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -60px;
  width: 380px;
  height: 280px;
  background: url("../img/hadanokologojpg.jpg") center / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.04;
  pointer-events: none;
}

/* テキストブロック(中央720px)と重なる幅では非表示 */
@media (max-width: 1240px) {
  .wm::before {
    content: none;
  }
}

/* ---------- 地図 ---------- */

.map-wrap {
  margin: 10px 0 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ---------- フッター ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 24px 46px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.footer-left {
  text-align: center;
}

.footer-logo {
  width: 104px;
  margin: 0 auto 10px;
}

.footer-name {
  font-family: var(--en-serif);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
}

/* 住所(金茶・小さく) */
.footer-address {
  min-width: 0;
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  line-height: 2.1;
  color: var(--accent);
  text-align: right;
}

/* 円形の上向き矢印(page top・金茶細線) */
.page-top {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s ease;
}

.page-top svg {
  width: 14px;
  height: 16px;
  stroke: var(--accent);
}

.page-top:hover {
  background: rgba(166, 128, 60, 0.1);
}

/* SNSアイコン(横一列・中央揃え・©の上) */
.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
}

.footer-sns a {
  display: block;
  width: 30px;
  height: 30px;
  transition: opacity 0.25s;
}

.footer-sns a:hover {
  opacity: 0.65;
}

.footer-sns img {
  width: 100%;
  height: 100%;
}

.copyright {
  margin-top: 20px;
  text-align: center;
  font-family: var(--en-serif);
  font-size: 0.76rem;
  color: #9A958A;
  letter-spacing: 0.22em;
}

@media (max-width: 620px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-address {
    text-align: center;
  }
}

/* ---------- 固定LINEボタン(LINEブランド緑・例外) ---------- */

.line-fixed {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: var(--line-green);
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(43, 43, 43, 0.14);
  transition: background 0.4s;
}

.line-fixed:hover {
  background: var(--line-green-dark);
}
