body {
  margin: 0;
  font-family: sans-serif;
  background: #f8f9fa;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: bold;
}

.nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
}

.hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #333;

  background: 
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url("../img/hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero p {
  opacity: 0.8;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-weight: 500;
  margin-bottom: 20px;
}

.section-text {
  line-height: 1.8;
}

.info-box {
  margin-top: 20px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  line-height: 1.8;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  border: 1px solid #ddd;
  padding: 10px;
}

.footer {
  background: #fff;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #ddd;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.section-light {
  background: #ffffff;
}

.payment-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.payment-icons img {
  height: 40px;
  object-fit: contain;
  background: #fff;
  padding: 5px 10px;
  border: 1px solid #eee;
}

.map-box {
  margin-top: 30px;
}

.map-box iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* =========================
   DIFFERENTIATION PATCH (Accessory / Editorial)
   style.css の末尾に追記（上書き）
========================= */

:root{
  --bg: #fbfaf7;                 /* 生成り */
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --line: rgba(40,40,40,.12);

  --primary: #1a1a1a;             /* 黒は締め色 */
  --accent: #b89a5a;              /* シャンパンゴールド */
  --accent2:#d8c79f;              /* 薄金 */
  --shadow: 0 18px 50px rgba(0,0,0,.08);

  --radius: 14px;                /* 角丸を少しだけ（※嫌なら 0 に） */
}

/* 背景に “布っぽい” 柔らかさ（コーポレート感を消す） */
body{
  background:
    radial-gradient(800px 480px at 15% 0%, rgba(184,154,90,.14), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(31,138,128,.10), transparent 62%),
    linear-gradient(180deg, var(--bg), #ffffff 55%, #ffffff);
}

/* ヘッダー：sticky感を弱めて “店っぽく” */
.site-header{
  position: static;              /* ←これで regina感がかなり抜ける */
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
}

/* ナビ：四角いボタン感を減らす */
.nav a{
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}
.nav a:hover{
  background: rgba(184,154,90,.10);
}

/* Hero：金味＋“柔らかい” 透過。右肩上がりのグラデで差別化 */
.hero::before{
  background:
    linear-gradient(
      115deg,
      rgba(255,255,255,0.94) 0%,
      rgba(255,255,255,0.86) 45%,
      rgba(255,255,255,0.70) 100%
    ),
    radial-gradient(700px 460px at 20% 30%, rgba(184,154,90,.18), transparent 60%),
    url("../img/hero.png") center/cover no-repeat;
}

/* 見出し：アクセサリーっぽく “余白＆字間” */
.hero h1, .hero h2{
  letter-spacing: .06em;
  font-weight: 800;
}
.kicker{
  background: rgba(184,154,90,.10);
  border: 1px solid rgba(184,154,90,.22);
  color: #3b2f1a;
}

/* セクション見出し：下線を金に（テンプレ感を変える） */
.section-title{
  position: relative;
  padding-bottom: 10px;
}
.section-title::after{
  content:"";
  display:block;
  width:72px;
  height:2px;
  background: linear-gradient(90deg, var(--accent), rgba(184,154,90,.25));
  margin-top: 10px;
}

/* カード：境界を薄金にして “ショップ感” */
.card{
  border: 1px solid rgba(216,199,159,.55);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.card:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* 支払いロゴ：並びを “整然” に（ブランドっぽく） */
.payment-icons{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  align-items:center;
  margin-top: 16px;
}
.payment-icons img{
  height: 34px;
  padding: 6px 10px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(216,199,159,.65);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
}

/* 表：罫線を生成りに */
.table th{
  background: rgba(184,154,90,.06);
}
.table, .table th, .table td{
  border-color: rgba(40,40,40,.10);
}

/* =========================
   Header Center Logo + Nav
   style.css の末尾に追記でOK
========================= */

.header-inner.header-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0 14px;
  gap: 10px;
}

.nav.nav-center{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav.nav-center a{
  margin-left: 0;              /* 既存の margin を打ち消し */
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}

/* “リンクそのまま感” を消す：ボタンをちゃんとボタンに */
.hero-actions{
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

/* btn が既存に無い場合に備えて定義（あっても上書きしない程度） */
.btn{
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}

.btn.btn-primary{
  padding: 12px 18px;
  border: 1px solid rgba(184,154,90,.55);
  background: rgba(184,154,90,.16);
  color: #1a1a1a;
  font-weight: 800;
  letter-spacing: .04em;
}

.btn.btn-primary:hover{
  background: rgba(184,154,90,.22);
}

/* Hero の “テキストリンクっぽさ” を減らす */
.hero a{
  text-decoration: none;
}


/* =========================
   WAFU POTTERY THEME (override)
   Add at end of style.css
========================= */

:root{
  --wafu-bg: #fbf8f1;          /* washi/ivory */
  --wafu-surface: #ffffff;
  --wafu-text: #1f1a14;        /* sumi */
  --wafu-muted: #6f655a;
  --wafu-line: rgba(31,26,20,.14);

  --wafu-indigo: #1f3a5f;      /* indigo */
  --wafu-clay: #b48a6a;        /* clay */
  --wafu-gold: #b89a5a;        /* champagne gold */
  --wafu-gold-weak: rgba(184,154,90,.22);

  --wafu-shadow: 0 18px 55px rgba(31,26,20,.10);
}

body{
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP","Times New Roman",serif;
  color: var(--wafu-text);
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(180,138,106,.18), transparent 62%),
    radial-gradient(900px 520px at 88% 12%, rgba(31,58,95,.12), transparent 62%),
    linear-gradient(180deg, var(--wafu-bg), #ffffff 60%);
}

/* Header: center logo + under-nav, with a thin gold line */
.header{
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--wafu-line);
}

.logo{
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: none;
}

/* Nav pills -> quiet, wafu */
.nav.nav-center a{
  border: 1px solid transparent;
  background: transparent;
  color: var(--wafu-text);
}

.nav.nav-center a:hover{
  border-color: var(--wafu-gold-weak);
  background: rgba(184,154,90,.10);
  color: var(--wafu-text);
}

/* Hero: washi overlay + brush-like diagonal highlight */
.hero{
  color: var(--wafu-text);
}

.hero::before{
  /* If your base CSS already uses ::before, this will override it safely */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.88) 45%,
      rgba(255,255,255,0.72) 100%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(31,26,20,.03) 0px,
      rgba(31,26,20,.03) 2px,
      transparent 2px,
      transparent 10px
    ),
    url("../img/hero.png") center/cover no-repeat;
}

/* Ensure hero text above overlay */
.hero .container, .hero .hero-single{
  position: relative;
  z-index: 1;
}

.kicker{
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--wafu-gold-weak);
  background: rgba(255,255,255,.65);
  color: var(--wafu-muted);
  letter-spacing: .08em;
}

.hero h1, .hero h2{
  font-weight: 800;
  letter-spacing: .08em;
}

.hero p{
  color: var(--wafu-muted);
}

/* Section title: brush underline */
.section-title{
  position: relative;
  padding-bottom: 10px;
  letter-spacing: .06em;
}
.section-title::after{
  content:"";
  display:block;
  width: 84px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--wafu-indigo), rgba(31,58,95,.15));
}

/* Cards / boxes -> wafu border */
.info-box{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--wafu-line);
  box-shadow: 0 12px 30px rgba(31,26,20,.06);
}

.spec-table th{
  background: rgba(180,138,106,.10);
  color: var(--wafu-text);
}
.spec-table th, .spec-table td{
  border-color: var(--wafu-line);
}

/* Payment icons: framed like labels */
.payment-icons img{
  border: 1px solid var(--wafu-line);
  background: rgba(255,255,255,.85);
}

/* Buttons: indigo focus */
.btn.btn-primary{
  border: 1px solid rgba(31,58,95,.35);
  background: rgba(31,58,95,.10);
  color: var(--wafu-text);
}
.btn.btn-primary:hover{
  background: rgba(31,58,95,.16);
}

/* Footer */
.footer{
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--wafu-line);
}
.footer-links a:hover{
  color: var(--wafu-indigo);
}


/* Form */
.form-row{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 14px;
}
.form-row label{
  font-weight: 700;
  letter-spacing: .04em;
}
.form-row input,
.form-row textarea{
  font-family: inherit;
  font-size: 16px;
  padding: 12px 12px;
  border: 1px solid var(--wafu-line);
  background: rgba(255,255,255,.88);
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus{
  border-color: rgba(31,58,95,.35);
  box-shadow: 0 0 0 3px rgba(31,58,95,.10);
}
.form-actions{
  margin-top: 10px;
  display:flex;
  justify-content:flex-start;
}
.note{ color: var(--wafu-muted); font-size: 14px; line-height: 1.8; }
.mt-24{ margin-top: 24px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px 40px;
  margin-top: 60px;
}

.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-bottom: 20px;
}

.gallery-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.gallery-item .desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.gallery-item .price {
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* =========================
   Yohaku Brand Strong Header
========================= */

.header-inner.header-center{
  padding: 50px 0 25px;  /* 上を大きく取る */
  gap: 30px;
}

.brand{
  display:flex;
  justify-content:center;
}

.brand-logo{
  width: 300px;  /* ← かなり大きく */
  height: auto;
}

/* ナビは少し控えめに */
.nav.nav-center{
  gap: 28px;
}

.nav.nav-center a{
  font-size: 16px;
  letter-spacing: 0.06em;
  opacity: 0.8;
  transition: all .3s ease;
}

.nav.nav-center a:hover{
  opacity: 1;
}

@media (max-width: 520px){

  .header-inner.header-center{
    padding: 40px 0 20px;
    gap: 22px;
  }

  .brand-logo{
    width: 240px;  /* ← スマホでも主役 */
  }

  .nav.nav-center{
    flex-wrap: wrap;
    gap: 18px;
  }

}

/* =========================
   LOGO SIZE BOOST (no design break)
   style.css の末尾に追記
========================= */

/* ロゴは画面幅に応じて自動で気持ちよく大きくする */
.brand-logo{
  width: clamp(240px, 62vw, 360px);
  height: auto;
  display: block;
}

/* ロゴ周りの“格”を出す（余白を増やして主役化） */
.header-inner.header-center{
  padding: 44px 0 20px;
  gap: 22px;
}

/* ナビが強すぎるので少しだけ落とす（ロゴが勝つ） */
.nav.nav-center a{
  font-size: 15px;
  letter-spacing: 0.05em;
  opacity: 0.78;
}

/* スマホ：ロゴは大きく、ナビは読みやすく2段で整列 */
@media (max-width: 520px){
  .header-inner.header-center{
    padding: 38px 0 18px;
    gap: 18px;
  }

  .nav.nav-center{
    gap: 14px 18px;
  }

  .nav.nav-center a{
    font-size: 16px;
    opacity: 0.82;
  }
}

/* =========================
   SHOP VISUAL（外観・内観）
========================= */

.shop-visual{
  display: grid;
  grid-template-columns: 1fr; /* デフォルトは1列（スマホ） */
  gap: 40px;
  margin-top: 40px;
}

/* PCだけ2カラムにする */
@media (min-width: 768px){
  .shop-visual{
    grid-template-columns: 1fr 1fr;
  }
}

.shop-visual-item img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--wafu-line);
  background: #fff;
}

/* キャプション（余白っぽく静かに） */
.shop-visual-item .caption{
  margin-top: 10px;
  font-size: 14px;
  color: var(--wafu-muted);
  letter-spacing: 0.04em;
}

/* =========================
   横長 店舗写真（3枚目）
========================= */

.shop-visual-wide{
  margin-top: 40px;
}

.shop-visual-wide img{
  width: 100%;
  height: 420px;          /* PCでしっかり横長に見せる */
  object-fit: cover;
  border: 1px solid var(--wafu-line);
  background: #fff;
}

/* スマホは少し低くする */
@media (max-width: 768px){
  .shop-visual-wide img{
    height: 260px;
  }
}
