/* =========================
   Bloom Site Studio - Final CSS
   ========================= */

:root{
  --text: #222222;
  --muted: #6f7780;
  --line: #e4e6ea;
  --accent: #8e97a1;
  --bg-muted: #f7f7f8;
  --header-h: 84px;
}

*{
  box-sizing: border-box;
}

html,
body{
  height: 100%;
}

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

body{
  margin: 0;
  padding-top: var(--header-h);
  font-family: 'Zen Old Mincho', serif;
  color: var(--text);
  line-height: 1.8;
  background: #ffffff;
}

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

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

button,
input,
textarea,
select,
.gnav,
.footer-iconbtn,
.access-btn,
.floating-reserve{
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ===== Header ===== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0,0,0,0.03);
  z-index: 1000;
}

.header-inner{
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo{
  text-decoration: none;
  color: #2f3134;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: opacity .2s ease;
}

.logo:hover{
  opacity: .8;
}

.gnav-list{
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gnav-link{
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #2f3134;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 2px;
}

.gnav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6f7780, #b8bec5);
  opacity: 0;
  transition: opacity .2s ease;
}

.gnav-link:hover::after{
  opacity: 1;
}

/* ===== Hamburger ===== */
.nav-toggle{
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1101;
}

.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #2f3134;
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.is-open span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2){
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero{
  position: relative;
  overflow: hidden;
}

.hero-slides{
  position: relative;
  height: 620px;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.18)
  );
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-inline: 24px;
}

.hero-catch{
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: .05em;
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 64px);
  text-shadow:
    0 2px 8px rgba(0,0,0,.48),
    0 10px 22px rgba(0,0,0,.40),
    0 20px 48px rgba(0,0,0,.30),
    0 34px 78px rgba(0,0,0,.22);
  -webkit-text-stroke: 1px rgba(0,0,0,.18);
}

.hero-sub{
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.97);
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 600;
  letter-spacing: .20em;
  text-shadow:
    0 2px 6px rgba(0,0,0,.42),
    0 8px 18px rgba(0,0,0,.26);
}

/* ===== Section ===== */
.section{
  padding: 100px 0;
  position: relative;
}

.section--muted{
  background: #f7f7f8;
  border-top: 1px solid #eceef1;
  border-bottom: 1px solid #eceef1;
}

/* ===== Card-less heading ===== */
.section-heading,
.price-head{
  width: min(860px, 92%);
  margin: 0 auto 42px;
  padding: 0;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
}

.section-heading::before,
.price-head::before{
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, transparent, rgba(120,130,140,.9), transparent);
}

.section-heading::after,
.price-head::after{
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, rgba(156,165,175,0), rgba(156,165,175,.95), rgba(156,165,175,0));
}

.title,
.price-title{
  margin: 0;
  color: #6d7680;
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 700;
  letter-spacing: .10em;
  line-height: 1.45;
}

.lead,
.price-lead{
  margin: 10px 0 0;
  color: #8b939c;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .03em;
}

.section-heading .title,
.price-head .price-title{
  position: relative;
}

/* 英文ラベルだけ少し崩したニュアンス */
.section-heading .title::before,
.price-head .price-title::before{
  content: attr(data-en);
  display: block;
  margin-bottom: 10px;
  font-family: "Times New Roman", "Georgia", serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  color: #a9b1b8;
  opacity: .95;
  transform: rotate(-4deg);
}

.section-heading .title:not([data-en])::before,
.price-head .price-title:not([data-en])::before{
  display: none;
}

/* ===== Split ===== */
.split{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 68px;
  align-items: center;
}

.split-text{
  max-width: 560px;
}

.section-title{
  margin: 0 0 20px;
  font-size: clamp(24px, 2.3vw, 40px);
  line-height: 1.45;
  color: #666f79;
  font-weight: 700;
  letter-spacing: .08em;
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
}

.section-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, #a2aab3, rgba(162,170,179,0));
}

.split-media{
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.split-media::before,
.split-media::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
}

.split-media::before{
  background: #eceef1;
  transform: translate(28px, 28px);
  z-index: 0;
}

.split-media::after{
  background: #e3e7eb;
  transform: translate(14px, 14px);
  z-index: 1;
}

.split-media__img{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.split-media img{
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 22px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    0 4px 10px rgba(0,0,0,0.03);
}

.split-media--soft .split-media__img::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240,242,245,0.16);
  mix-blend-mode: multiply;
  z-index: 3;
}

/* ===== About ===== */
.stylist-eyebrow{
  margin: 0 0 10px;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8d96a0;
}

.stylist-title{
  margin-bottom: 6px;
}

.stylist-message{
  margin: 0 0 20px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.8;
  color: #35383d;
  font-weight: 700;
}

.stylist-body p{
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 2;
  color: #5f6770;
}

/* ===== Works ===== */
.catalog-grid{
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.catalog-card{
  display: block;
  text-decoration: none;
  color: inherit;
}

.catalog-thumb{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 16px 32px rgba(0,0,0,0.05),
    0 4px 10px rgba(0,0,0,0.03);
  transition: transform .28s ease, box-shadow .28s ease;
}

.catalog-thumb img{
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}

.catalog-card:hover .catalog-thumb{
  transform: translateY(-4px);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.08),
    0 8px 16px rgba(0,0,0,0.04);
}

.catalog-card:hover .catalog-thumb img{
  transform: scale(1.03);
}

.catalog-label{
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-block;
  padding: 9px 16px;
  background: rgba(35,37,39,0.92);
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* ===== Service ===== */
.menu-heading{
  margin-bottom: 38px;
}

.salon-menu-grid{
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.salon-menu-card{
  position: relative;
  min-height: 280px;
  padding: 28px 28px 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border: 1px solid rgba(70,80,90,0.08);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.04),
    0 4px 10px rgba(0,0,0,0.02);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.salon-menu-card:hover{
  transform: translateY(-6px);
  border-color: rgba(90,100,110,0.16);
  box-shadow:
    0 24px 44px rgba(0,0,0,0.06),
    0 8px 16px rgba(0,0,0,0.03);
}

.salon-menu-card__num{
  display: inline-block;
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #9aa2ab;
}

.salon-menu-card__title{
  margin: 0 0 14px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.2;
  letter-spacing: .08em;
  color: #2f3134;
}

.salon-menu-card__price{
  margin: 0 0 18px;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.1;
  font-weight: 700;
  color: #2f3134;
}

.salon-menu-card__price span{
  font-size: 16px;
  font-weight: 700;
  color: #7a828b;
  margin-left: 3px;
}

.salon-menu-card__text{
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #5f6770;
}

.salon-menu-card--featured{
  border-color: rgba(47,49,52,0.18);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    0 6px 14px rgba(0,0,0,0.03);
}

.salon-menu-badge{
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #2f3134;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.salon-menu-note{
  margin: 22px 0 0;
  text-align: center;
  font-size: 13px;
  color: #8b949d;
  line-height: 1.8;
}

/* ===== Flow ===== */
.price-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.price-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  padding: 42px 34px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(70,80,90,0.08);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.04),
    0 2px 6px rgba(0,0,0,0.02);
}

.price-card h3{
  margin: 0 0 16px;
  color: #35383d;
  letter-spacing: .06em;
}

.price-desc{
  color: #6b737b;
  font-size: 14px;
}

.is-recommend{
  position: relative;
  border: 1px solid rgba(20,20,20,0.10);
}

.price-badge{
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #222;
  border-radius: 999px;
  letter-spacing: .08em;
}

/* ===== Buttons ===== */
.access-btn,
.floating-reserve{
  display: inline-block;
  background: linear-gradient(180deg, #2f3134, #232527);
  color: #fff;
  border: 1px solid #262626;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.10),
    0 3px 8px rgba(0,0,0,0.06);
  transition: .25s ease;
}

.access-btn{
  padding: 14px 34px;
}

.floating-reserve{
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 14px 22px;
  z-index: 9998;
}

.access-btn:hover,
.floating-reserve:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
}

/* ===== Footer ===== */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: #f7f8f9;
  text-align: center;
}

.footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.footer-info{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center;
}

.footer-shop,
.footer-hours,
.footer-closed{
  width: 100%;
  text-align: center;
  margin: 0;
}

.footer-shop{
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #2f3134;
}

.footer-hours,
.footer-closed{
  font-size: 14px;
  line-height: 1.9;
  color: #6b7280;
}

.footer-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-iconbtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: .25s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.footer-iconbtn span{
  display: inline-block;
  line-height: 1;
}

.footer-iconbtn--insta{
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color: #fff;
}

.footer-iconbtn--line{
  background: #06C755;
  color: #fff;
}

.footer-iconbtn:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* ===== Floating button hide on footer ===== */
.floating-reserve{
  transition: opacity .25s ease, transform .25s ease;
}

.floating-reserve.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

/* ===== Responsive ===== */
@media (max-width: 960px){
  .catalog-grid,
  .salon-menu-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 860px){
  :root{
    --header-h: 84px;
  }

  .header-inner{
    height: 84px;
    flex-direction: row;
  }

  .nav-toggle{
    display: inline-block;
  }

  .gnav{
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    z-index: 1100;
    padding: 20px 0 24px;
  }

  .gnav.is-open{
    display: block;
  }

  .gnav-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .gnav-item{
    width: min(420px, 88%);
    list-style: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .gnav-item:last-child{
    border-bottom: none;
  }

  .gnav-link{
    display: block;
    width: 100%;
    padding: 16px 8px;
    text-align: center;
  }

  .gnav-link::after{
    display: none;
  }

  .split{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split-text{
    max-width: none;
  }

  .hero-slides{
    height: 430px;
  }

  .hero-catch{
    font-size: clamp(26px, 7vw, 42px);
    line-height: 1.28;
  }

  .hero-sub{
    margin-top: 8px;
    font-size: clamp(11px, 3.2vw, 14px);
    letter-spacing: .10em;
  }

  .section{
    padding: 72px 0;
  }

  .section-heading,
  .price-head{
    margin-bottom: 30px;
  }

  .title,
  .price-title{
    font-size: clamp(22px, 6vw, 32px);
    letter-spacing: .10em;
  }

  .lead,
  .price-lead{
    font-size: 13px;
    line-height: 1.8;
  }

  .section-heading .title::before,
  .price-head .price-title::before{
    font-size: 18px;
    transform: rotate(-2deg);
  }
}

@media (max-width: 600px){
  .catalog-grid,
  .salon-menu-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-thumb img{
    aspect-ratio: 4 / 4.8;
  }

  .floating-reserve{
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .logo{
    font-size: 21px;
  }

  .footer-iconbtn{
    min-height: 40px;
    padding: 0 16px;
    font-size: 12px;
  }

  .section-heading .title::before,
  .price-head .price-title::before{
    font-size: 17px;
    letter-spacing: .06em;
    transform: rotate(-2deg);
  }
}

/* =========================
   Bloom Site Studio
   hero最適化カラー調整
   ========================= */

:root{
  --text: #2f2b27;
  --muted: #7d746a;
  --line: #e8e1d8;
  --accent: #a59682;
  --bg-muted: #f8f4ee;
}

/* ===== body 全体の空気感 ===== */
body{
  background: #fcfbf8;
  color: var(--text);
}

/* ===== Header ===== */
.site-header{
  background: rgba(252, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
}

.logo{
  color: #342f29;
}

.gnav-link{
  color: #3a342e;
}

.gnav-link::after{
  background: linear-gradient(90deg, #a59682, #c2b6a7);
}

/* ===== Hero ===== */
.hero-overlay{
  background: linear-gradient(
    rgba(38, 30, 22, 0.26),
    rgba(38, 30, 22, 0.16)
  );
}

.hero-catch{
  text-shadow:
    0 2px 8px rgba(28,22,18,.52),
    0 10px 24px rgba(28,22,18,.42),
    0 22px 52px rgba(28,22,18,.30),
    0 36px 82px rgba(28,22,18,.20);
  -webkit-text-stroke: 1px rgba(30,22,16,.18);
}

.hero-sub{
  color: rgba(255,255,255,.97);
  text-shadow:
    0 2px 6px rgba(28,22,18,.42),
    0 8px 18px rgba(28,22,18,.24);
}

/* ===== Section background ===== */
.section--muted{
  background: var(--bg-muted);
  border-top: 1px solid #eee6dc;
  border-bottom: 1px solid #eee6dc;
}

/* ===== 見出し ===== */
.title,
.price-title{
  color: #7a6f63;
}

.lead,
.price-lead{
  color: #95897d;
}

.section-heading::before,
.price-head::before{
  background: linear-gradient(90deg, transparent, rgba(165,150,130,.95), transparent);
}

.section-heading::after,
.price-head::after{
  background: linear-gradient(90deg, rgba(165,150,130,0), rgba(165,150,130,.95), rgba(165,150,130,0));
}

.section-heading .title::before,
.price-head .price-title::before{
  color: #b7a999;
}

/* ===== About ===== */
.section-title{
  color: #766b60;
}

.section-title::after{
  background: linear-gradient(90deg, #b2a28f, rgba(178,162,143,0));
}

.stylist-eyebrow{
  color: #9a8f83;
}

.stylist-message{
  color: #3b342d;
}

.stylist-body p{
  color: #655c53;
}

/* ===== split背面の板 ===== */
.split-media::before{
  background: #efe7dd;
}

.split-media::after{
  background: #e7ddd1;
}

.split-media--soft .split-media__img::after{
  background: rgba(233, 223, 210, 0.14);
}

/* ===== Works ===== */
.catalog-thumb{
  background: #fffdfa;
  box-shadow:
    0 16px 32px rgba(68,52,40,0.05),
    0 4px 10px rgba(68,52,40,0.03);
}

.catalog-card:hover .catalog-thumb{
  box-shadow:
    0 22px 44px rgba(68,52,40,0.08),
    0 8px 16px rgba(68,52,40,0.04);
}

.catalog-label{
  background: rgba(51, 43, 35, 0.92);
}

/* ===== Service / Flow cards ===== */
.salon-menu-card,
.price-card{
  background: linear-gradient(180deg, rgba(255,252,248,0.98), rgba(255,249,243,0.92));
  border: 1px solid rgba(126,110,90,0.10);
  box-shadow:
    0 16px 36px rgba(70,52,35,0.04),
    0 4px 10px rgba(70,52,35,0.02);
}

.salon-menu-card:hover{
  border-color: rgba(150,130,108,0.20);
  box-shadow:
    0 24px 44px rgba(70,52,35,0.06),
    0 8px 16px rgba(70,52,35,0.03);
}

.salon-menu-card__num{
  color: #ab9f91;
}

.salon-menu-card__title,
.salon-menu-card__price,
.price-card h3{
  color: #39322b;
}

.salon-menu-card__price span,
.price-desc,
.salon-menu-card__text{
  color: #73695f;
}

.salon-menu-card--featured,
.is-recommend{
  border-color: rgba(75,60,45,0.14);
}

.salon-menu-badge,
.price-badge{
  background: #3b342d;
  color: #fff;
}

/* ===== Buttons ===== */
.access-btn,
.floating-reserve{
  background: linear-gradient(180deg, #4a4036, #342c25);
  border: 1px solid #3b322b;
  color: #fff;
  box-shadow:
    0 10px 24px rgba(45,35,28,0.14),
    0 3px 8px rgba(45,35,28,0.08);
}

.access-btn:hover,
.floating-reserve:hover{
  filter: brightness(1.05);
}

/* ===== Footer ===== */
.site-footer{
  background: #f7f2eb;
  border-top: 1px solid var(--line);
}

.footer-shop{
  color: #3a332d;
}

.footer-hours,
.footer-closed{
  color: #786f66;
}

/* ===== footer SNS ===== */
.footer-iconbtn{
  box-shadow: 0 10px 24px rgba(60,45,30,0.08);
}

/* ===== スマホ時もトーン維持 ===== */
@media (max-width: 860px){
  .gnav{
    background: rgba(252,250,247,0.98);
    border-top: 1px solid rgba(120,100,80,0.08);
    border-bottom: 1px solid rgba(120,100,80,0.08);
  }

  .gnav-item{
    border-bottom: 1px solid rgba(120,100,80,0.08);
  }
}

.contact-section {
  text-align: center;
  padding: 100px 20px;
}

.contact-lead {
  font-size: 18px;
  margin-top: 16px;
  color: #666;
  letter-spacing: 0.05em;
}

.contact-text {
  margin-top: 20px;
  font-size: 14px;
  color: #888;
  line-height: 1.9;
}

.contact-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background: #222;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.contact-btn:hover {
  opacity: 0.85;
}

/* =========================
   Section Title（統一）
========================= */
.section-title {
  font-size: 28px;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.section-title::before {
  content: attr(data-en);
  display: block;
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

/* =========================
   Contact Section
========================= */
.contact-section {
  text-align: center;
  padding: 100px 20px;
}

.contact-lead {
  font-size: 18px;
  margin-top: 16px;
  color: #666;
}

.contact-text {
  margin-top: 20px;
  font-size: 14px;
  color: #888;
  line-height: 1.9;
}

.contact-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background: #222;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.contact-btn:hover {
  opacity: 0.85;
}

/* =========================
   Contact Page
========================= */
.contact-page {
  padding: 120px 20px;
  text-align: center;
}

.contact-page-lead {
  margin-bottom: 40px;
  color: #666;
}

/* フォーム */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #999;
}

.contact-note {
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}