/* ============================================================
   fashion gallery MUSASHI-YA — スタイルシート
   対象：40〜80代女性向け リデザイン版
   ============================================================ */

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

:root {
  /* カラーパレット：温かみのある上品なトーン */
  --color-bg:          #fefcf8;
  --color-white:       #ffffff;
  --color-text:        #3a3028;
  --color-text-light:  #7a6a60;
  --color-accent:      #b87a65;       /* テラコッタローズ */
  --color-accent-dark: #956050;
  --color-accent-light:#f7ede8;
  --color-sage:        #7a8f78;       /* セージグリーン */
  --color-sage-light:  #edf2ec;
  --color-border:      #e8d8ce;
  --color-success:     #5a8a6a;
  --font-serif:  'Noto Serif JP', 'Playfair Display', serif;
  --font-sans:   'Noto Sans JP', sans-serif;
  --radius:      4px;
  --shadow-sm:   0 2px 12px rgba(58,48,40,.07);
  --shadow-md:   0 8px 32px rgba(58,48,40,.12);
  --shadow-lg:   0 20px 60px rgba(58,48,40,.18);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
iframe { display: block; }

.container { width: min(1100px, 92%); margin-inline: auto; }

/* ============================================================
   ボタン
   ============================================================ */
.btn {
  display: inline-block;
  padding: .9em 2em;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,122,101,.3);
}
.btn-outline {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-tel {
  background: var(--color-sage);
  color: var(--color-white);
  border: 2px solid var(--color-sage);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.btn-tel:hover {
  background: #5a7258;
  border-color: #5a7258;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122,143,120,.3);
}
.btn-full { width: 100%; text-align: center; }

/* ============================================================
   セクション共通
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .28em;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: .7rem;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: .3rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: .8rem;
  color: var(--color-text);
}
.section-desc { color: var(--color-text-light); font-size: .9rem; }

/* ============================================================
   お知らせバー
   ============================================================ */
.topbar {
  background: var(--color-text);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .78rem;
  letter-spacing: .06em;
}
.topbar a {
  color: #f0c8b0;
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================================
   ヘッダー
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254,252,248,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .9rem 5%;
  max-width: 1300px;
  margin-inline: auto;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  flex-shrink: 0;
}
.logo-sub {
  font-size: .58rem;
  letter-spacing: .2em;
  color: var(--color-accent);
  font-weight: 400;
  line-height: 1;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: .12em;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
}
.nav { margin-left: auto; }
.nav-list { display: flex; gap: 2rem; }
.nav-link {
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--color-text);
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-tel {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--color-sage);
  color: white;
  padding: .5em 1.1em;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.header-tel:hover { background: #5a7258; }
.tel-icon { font-size: .9rem; }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 82vw);
  height: 100dvh;
  background: var(--color-white);
  z-index: 200;
  transition: right var(--transition);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: 1.8rem;
  color: var(--color-text);
  line-height: 1;
}
.mobile-menu-inner {
  padding: 4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.mobile-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: .15em;
  color: var(--color-text);
  margin-bottom: 2rem;
}
.mobile-nav-list { width: 100%; margin-bottom: 2rem; }
.mobile-nav-list li {
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: .95rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: .06em;
}
.mobile-tel {
  display: block;
  background: var(--color-sage);
  color: white;
  padding: .9em 2em;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
  width: 100%;
  text-align: center;
}
.mobile-hours {
  font-size: .78rem;
  color: var(--color-text-light);
}
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.overlay.active { opacity: 1; pointer-events: all; }

/* ============================================================
   ヒーロー
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #f7ede6 0%, #ede4d8 40%, #e0d0c0 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 4rem 5rem 8%;
}
.hero-catch {
  font-family: var(--font-serif);
  font-size: .85rem;
  letter-spacing: .18em;
  color: var(--color-accent);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}
.hero-title span {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text);
}
.hero-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}
.hero-deco {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 3rem;
  opacity: 0;
  animation: fadeIn 1.2s .5s forwards;
}
.hero-deco-img {
  width: 92%;
  height: 72vh;
  max-height: 580px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.hero-deco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 商品写真 */
.product-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.product-card:hover .product-img-photo { transform: scale(1.03); }

/* 店舗写真ギャラリー */
.shop-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.shop-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .shop-photos { grid-template-columns: 1fr; }
}

/* ============================================================
   安心ポイントバー
   ============================================================ */
.trust-bar {
  background: var(--color-text);
  padding: 1.4rem 0;
}
.trust-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  letter-spacing: .06em;
}
.trust-icon { color: #f0c8b0; font-size: .9rem; }

/* ============================================================
   シーン別セクション
   ============================================================ */
.scenes { padding: 5.5rem 0; background: var(--color-white); }
.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.scene-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: var(--color-bg);
}
.scene-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.scene-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.scene-casual  { background: linear-gradient(135deg,#f9e8e0,#f0d4c4); }
.scene-formal  { background: linear-gradient(135deg,#e8eee0,#d4e0c4); }
.scene-travel  { background: linear-gradient(135deg,#e0e8f4,#c8d4e8); }
.scene-season  { background: linear-gradient(135deg,#e8e4d4,#d4ccb4); }
.scene-body { padding: 1.2rem 1.2rem 1.4rem; }
.scene-body h3 {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: .4rem;
}
.scene-body p { font-size: .8rem; color: var(--color-text-light); line-height: 1.7; margin-bottom: .7rem; }
.scene-link { font-size: .78rem; color: var(--color-accent); font-weight: 500; }

/* ============================================================
   コレクション
   ============================================================ */
.collection { padding: 5.5rem 0; }

.category-tabs {
  display: flex;
  gap: .6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  padding: .6em 1.4em;
  font-size: .82rem;
  letter-spacing: .06em;
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-light);
  background: var(--color-white);
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.tab-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card.hidden { display: none; }
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.product-img {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s ease;
}
.product-card:hover .product-img { transform: scale(1.03); }
.product-icon { font-size: 4.5rem; pointer-events: none; }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(58,48,40,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-view-btn {
  padding: .7em 1.6em;
  font-size: .82rem;
  letter-spacing: .06em;
  font-weight: 500;
  background: var(--color-white);
  color: var(--color-text);
  border-radius: var(--radius);
  transform: translateY(8px);
  transition: transform var(--transition);
}
.product-card:hover .quick-view-btn { transform: translateY(0); }
.product-badge {
  position: absolute;
  top: .8rem; left: .8rem;
  padding: .3em .85em;
  font-size: .68rem;
  letter-spacing: .08em;
  font-weight: 700;
  border-radius: 2px;
}
.product-badge.new  { background: var(--color-accent); color: white; }
.product-badge.sale { background: #c06060; color: white; }
.product-info { padding: 1.2rem 1.3rem 1.4rem; }
.product-category { font-size: .7rem; letter-spacing: .12em; color: var(--color-accent); margin-bottom: .3rem; }
.product-name { font-size: 1rem; font-weight: 500; margin-bottom: .4rem; line-height: 1.5; }
.product-price { font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem; }
.tax { font-size: .72rem; color: var(--color-text-light); font-weight: 400; }
.product-size { font-size: .78rem; color: var(--color-text-light); }

.view-more-wrap { text-align: center; margin-top: 3rem; }
.view-more-note {
  font-size: .88rem;
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* ============================================================
   スタッフ提案
   ============================================================ */
.staff-picks {
  padding: 5.5rem 0;
  background: var(--color-accent-light);
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.staff-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.staff-img {
  background: linear-gradient(135deg,#f0e4d8,#e0ccc0);
  padding: 2rem;
  text-align: center;
  font-size: 3.5rem;
}
.staff-body { padding: 1.5rem; }
.staff-theme {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: .7rem;
  letter-spacing: .06em;
}
.staff-text { font-size: .88rem; color: var(--color-text-light); line-height: 1.9; }

/* ============================================================
   こだわりセクション
   ============================================================ */
.features { padding: 5.5rem 0; background: var(--color-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-item {
  text-align: center;
  padding: 2rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  transition: var(--transition);
}
.feature-item:hover { box-shadow: var(--shadow-sm); border-color: var(--color-accent); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-item h3 {
  font-family: var(--font-serif);
  font-size: .98rem;
  font-weight: 500;
  margin-bottom: .7rem;
  line-height: 1.5;
}
.feature-item p { font-size: .85rem; color: var(--color-text-light); line-height: 1.85; }

/* ============================================================
   店舗情報
   ============================================================ */
.shop { padding: 5.5rem 0; background: var(--color-sage-light); }
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}
.shop-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.shop-table tr { border-bottom: 1px solid var(--color-border); }
.shop-table th, .shop-table td { padding: 1.1rem .5rem; text-align: left; font-size: .95rem; }
.shop-table th {
  width: 80px;
  font-weight: 500;
  color: var(--color-sage);
  font-size: .8rem;
  letter-spacing: .1em;
  white-space: nowrap;
}
.shop-table td a { color: var(--color-sage); font-weight: 600; }
.shop-table td a:hover { text-decoration: underline; }
.access-note {
  padding: 1.4rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.access-title {
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--color-sage);
  font-weight: 600;
  margin-bottom: .5rem;
}
.access-note p:last-child { font-size: .88rem; color: var(--color-text-light); line-height: 1.9; }
.tel-cta {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  text-align: center;
}
.tel-cta p { font-size: .88rem; color: var(--color-text-light); margin-bottom: 1rem; line-height: 1.8; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 360px;
}
.map-wrap iframe { height: 100%; min-height: 360px; }

/* ============================================================
   お問い合わせ
   ============================================================ */
.contact { padding: 5.5rem 0; }
.contact-wrap { max-width: 780px; margin-inline: auto; }

/* 電話のみ表示時：カードを中央寄せ・大きく */
.contact-wrap--tel-only {
  display: flex;
  justify-content: center;
}
.contact-tel-card {
  background: var(--color-text);
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  text-align: center;
}
.contact-tel-card--large {
  max-width: 520px;
  width: 100%;
  padding: 3.5rem 3rem;
}
.contact-tel-label {
  font-size: .78rem;
  letter-spacing: .15em;
  opacity: .75;
  margin-bottom: .8rem;
}
.contact-tel-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #f0c8b0;
  margin-bottom: .6rem;
  text-decoration: none;
}
.contact-tel-num:hover { text-decoration: underline; }
.contact-tel-hours {
  font-size: .85rem;
  opacity: .75;
  margin-bottom: 1.5rem;
}
.contact-tel-items {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin: 0 auto 1.5rem;
  font-size: .88rem;
  opacity: .9;
  line-height: 2.2;
}
.contact-tel-note { font-size: .85rem; opacity: .8; line-height: 1.8; }

.contact-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}
.contact-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--color-border);
}
.contact-divider span {
  position: relative;
  background: var(--color-bg);
  padding: 0 1.2rem;
  font-size: .82rem;
  color: var(--color-text-light);
}

/* フォーム */
.form-intro {
  font-size: .9rem;
  color: var(--color-text-light);
  margin-bottom: 1.8rem;
  text-align: center;
}
.contact-form {
  background: var(--color-white);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: .5rem;
}
.required {
  font-size: .65rem;
  background: var(--color-accent);
  color: white;
  padding: .15em .5em;
  border-radius: 2px;
  margin-left: .4rem;
  vertical-align: middle;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85em 1em;
  font-family: var(--font-sans);
  font-size: .95rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #c06060; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6a60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.error-msg { display: block; font-size: .75rem; color: #c06060; margin-top: .3rem; min-height: 1em; }
.checkbox-group { display: flex; flex-direction: column; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .88rem;
  cursor: pointer;
  font-weight: 400;
}
.checkbox-label input { width: 18px; height: 18px; accent-color: var(--color-accent); flex-shrink: 0; }
.checkbox-label a { color: var(--color-accent); text-decoration: underline; }
.form-submit { margin-top: .5rem; }

.form-success {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-success);
  color: white;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-family: var(--font-serif); font-weight: 500; margin-bottom: .8rem; font-size: 1.2rem; }
.form-success p { font-size: .9rem; color: var(--color-text-light); line-height: 2; }

/* ============================================================
   フッター
   ============================================================ */
.footer { background: var(--color-text); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-sub {
  font-size: .6rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
  margin-bottom: .2rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: .15em;
  color: white;
  margin-bottom: .8rem;
}
.footer-addr { font-size: .82rem; margin-bottom: .3rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .9rem; text-align: right; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom { padding: 1.4rem 0; text-align: center; font-size: .72rem; letter-spacing: .05em; }

/* ============================================================
   モーダル
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal.open { opacity: 1; pointer-events: all; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 700px;
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  transform: scale(.95) translateY(8px);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal.open .modal-content { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: .8rem; right: .8rem;
  z-index: 10;
  width: 34px; height: 34px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  color: var(--color-text);
  transition: background var(--transition);
}
.modal-close:hover { background: var(--color-border); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.modal-img-wrap { aspect-ratio: 3/4; }
.modal-img {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.modal-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .6rem;
}
.modal-category { font-size: .72rem; letter-spacing: .15em; color: var(--color-accent); }
.modal-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; }
.modal-price { font-size: 1.2rem; font-weight: 700; }
.modal-desc { font-size: .88rem; color: var(--color-text-light); line-height: 1.9; }
.modal-actions { display: flex; flex-direction: column; gap: .7rem; margin-top: .5rem; }

/* ============================================================
   トップへ戻るボタン
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 52px;
  padding: .6rem .4rem;
  background: var(--color-accent);
  color: white;
  font-size: .9rem;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(184,122,101,.4);
  z-index: 50;
}
.back-to-top span { font-size: .58rem; letter-spacing: .1em; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--color-accent-dark); transform: translateY(-2px); }

/* ============================================================
   アニメーション
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav, .header-tel { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 4rem 8% 3rem; }
  .hero-deco { display: none; }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 300px; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-img-wrap { aspect-ratio: 16/9; max-height: 220px; }
}

@media (max-width: 600px) {
  html { font-size: 16px; }
  .topbar { font-size: .72rem; padding: .5rem .8rem; }
  .hero-content { padding: 3rem 5% 2.5rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .trust-list { gap: 1.2rem; flex-direction: column; align-items: center; }
  .scene-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .contact-tel-num { font-size: 1.8rem; }
  .footer-inner { flex-direction: column; }
  .footer-links ul { text-align: left; }
  .back-to-top { bottom: 1.2rem; right: 1.2rem; }
}

@media (max-width: 400px) {
  .scene-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
}
