/* ===================================================
   common.css - 共通スタイル
   CENTURY21ココカラ
   =================================================== */

/* ===== Variables ===== */
:root {
  --accent: #C7BA8C;
  --accent-light: #E8E2CD;
  /* CTA用アクセントカラー */
  --accent-cta: #EB6100;
  --accent-cta-hover: #cf5500;

  --bg-body: #FAFAF8;
  --bg-surface: #ffffff;
  --bg-gray: #f4f4f4;

  --text-main: #222222;
  --text-muted: #555555;

  --font-serif: "Zen Old Mincho", "Yu Mincho", serif;
  --font-sans: "Noto Sans JP", "Helvetica Neue", sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
}

/* ===== Reset & Base ===== */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1.5em; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ===== Animation Utility ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s;
  background-color: #414042;
  color: #fff;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

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

.logo {
  display: block;
  width: 250px;
  height: 22px;
  background: url('../images/logo.png') no-repeat center left / contain;
  font-size: 0;
  color: transparent;
  transition: filter 0.3s;
}
header.scrolled .logo { filter: brightness(0.133); }

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

nav a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  color: #fff;
  transition: color 0.3s;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header.scrolled nav a { color: var(--text-main); text-shadow: none; }

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
nav a:hover::after { width: 100%; }

/* ===== Mega Menu ===== */
nav > ul > li {
  position: relative;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 30px 30px 20px;
  min-width: 700px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  margin-top: 20px;
}
.mega-menu.is-right {
  left: auto;
  right: 0;
  transform: none;
}
.mega-menu.is-right2 {
  left: auto;
  right: -50px;
  transform: none;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
nav > ul > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* メガメニューヘッダー（リード文） */
.mega-menu-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.mega-menu-lead {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* メガメニューグリッド */
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* メガメニューカード（背景画像付き） */
.mega-menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 60px 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 120px;
}
.mega-menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
  border-radius: 8px;
  z-index: 1;
}
.mega-menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.mega-menu-card::after {
  display: none;
}
.mega-menu-card-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.mega-menu-card-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* お問い合わせ用カード（オレンジ背景） */
.mega-menu-card.contact-card {
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DC 100%);
  padding: 20px 15px;
  min-height: auto;
}
.mega-menu-card.contact-card::before {
  display: none;
}
.mega-menu-card.contact-card .mega-menu-card-title {
  color: var(--text-main);
}
.mega-menu-card.contact-card .mega-menu-card-desc {
  color: var(--text-muted);
}
.mega-menu-card.contact-card:hover {
  background: linear-gradient(135deg, #FFE8DC 0%, #FFD9C7 100%);
}

/* 電話カード */
.mega-menu-card.phone-card {
  cursor: default;
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DC 100%);
  padding: 20px 15px;
  min-height: auto;
}
.mega-menu-card.phone-card::before {
  display: none;
}
.mega-menu-card.phone-card .mega-menu-card-title {
  color: var(--text-main);
}
.mega-menu-card.phone-card:hover {
  transform: none;
  box-shadow: none;
}
.mega-menu-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 5px;
}
.mega-menu-phone-time {
  font-size: 10px;
  color: var(--text-muted);
}

/* 閉じるボタン（下中央） */
.mega-menu-close-wrap {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.mega-menu-close {
  background: none;
  border: 1px solid #ddd;
  font-size: 12px;
  cursor: pointer;
  color: #999;
  padding: 8px 24px;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.mega-menu-close:hover {
  background: #f5f5f5;
  color: #666;
  border-color: #ccc;
}

/* ===== SP Hamburger Menu ===== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  position: relative;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  margin: 3px 0;
}
header.scrolled .hamburger-btn span {
  background: var(--text-main);
}
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* メニュー開いた時は常に白 */
.hamburger-btn.active span {
  background: #fff;
}

/* SP Full Screen Menu */
.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #414042;
  z-index: 1050;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.sp-menu.active {
  opacity: 1;
  visibility: visible;
}
body.sp-menu-open {
  overflow: hidden;
}

.sp-menu-inner {
  padding: 100px 20px 40px;
  min-height: 100%;
}

/* SP Menu Close Button */
.sp-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.sp-menu-close span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.sp-menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sp-menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* SP CTA Grid (6 items) - PC CTA Section Style */
.sp-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}
.sp-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.sp-cta-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: var(--accent-cta);
  opacity: 1;
}
.sp-cta-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-main);
}
.sp-cta-desc {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.sp-cta-phone {
  cursor: default;
}
.sp-cta-phone:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-color: transparent;
}
.sp-cta-phone-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cta);
  margin-top: 6px;
}
.sp-cta-phone-time {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* SP Brand Info (Footer) */
.sp-brand-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.sp-brand-logo {
  display: block;
  width: 200px;
  height: 18px;
  background: url('../images/logo.png') no-repeat center left / contain;
  font-size: 0;
  color: transparent;
  margin-bottom: 15px;
}
.sp-brand-address {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.sp-brand-sns {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.sp-brand-sns a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.sp-brand-sns a:hover {
  background-color: var(--accent);
  opacity: 1;
}
.sp-brand-sns .sns-youtube { background-image: url('../images/yt_icon_white_digital.png'); background-size: 20px auto; }
.sp-brand-sns .sns-instagram { background-image: url('../images/Instagram_Glyph_White.png'); background-size: 18px auto; }

/* SP Navigation List */
.sp-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-nav-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sp-nav-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* SP Sub Menu (Accordion) */
.sp-nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
.sp-nav-toggle::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.sp-nav-toggle.active::after {
  transform: rotate(-135deg);
}
.sp-sub-menu {
  display: none;
  padding: 0 0 15px 15px;
}
.sp-sub-menu.active {
  display: block;
}
.sp-sub-link {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sp-sub-link:last-child {
  border-bottom: none;
}
.sp-sub-link:hover {
  color: var(--accent);
  opacity: 1;
}

@media (max-width: 1024px) {
  .hamburger-btn {
    display: flex;
  }
  .sp-menu {
    display: block;
  }
  header nav {
    display: none;
  }
}

/* ===== btn-primary ===== */
.btn-primary {
  padding: 12px 32px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 186, 140, 0.4);
  opacity: 1;
}

.btn-primary.outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.btn-primary.outline::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #fff;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary.outline:hover {
  color: var(--accent);
  opacity: 1;
}
.btn-primary.outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

header.scrolled .btn-primary.outline {
  border-color: var(--accent);
  color: var(--accent);
}
header.scrolled .btn-primary.outline:hover {
  color: #fff;
}
header.scrolled .btn-primary.outline::before {
  background: var(--accent);
}

.btn-primary.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
}
.btn-primary.ghost:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== Sections Common ===== */
section { padding: 120px 0; }

.section-head { text-align: center; margin-bottom: 70px; }
.section-en {
  display: block; font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.2em;
  color: var(--accent); margin-bottom: 12px; text-transform: uppercase;
  font-weight: 700; opacity: 0.8;
}
.section-desc {
  max-width: 700px; margin: 20px auto 0; text-align: center; font-size: 16px; color: var(--text-muted); font-weight: 500;
}
.section-jp {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ===== CTA Section (Renewed for 5 Items) ===== */
.cta-section {
  background: #F3F7F8;
  padding: 80px 0;
  border-top: 1px solid #eee;
}
.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* 共通カードスタイル */
.cta-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
  position: relative;
  text-decoration: none;
  color: var(--text-main);
}
.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--accent-cta);
}
.cta-card.-hasImg {
  justify-content: center;
}
.cta-card.-hasImg .cta-card-desc {
  flex-grow: 0;
}

.cta-icon-wrap {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: #FFF5F0;
  color: var(--accent-cta);
  border-radius: 50%;
}

.cta-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  font-family: var(--font-sans);
}

.cta-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.cta-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  padding: 12px 0;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.3s, background 0.3s;
  text-decoration: none;
}

/* メインアクション（オレンジ） */
.btn-orange {
  background: var(--accent-cta);
  color: #fff;
  box-shadow: 0 4px 10px rgba(235, 97, 0, 0.2);
}
.btn-orange:hover {
  background: var(--accent-cta-hover);
  opacity: 1;
}

/* サブアクション（チャット・メールなど） */
.btn-outline {
  background: #fff;
  border: 2px solid var(--accent-cta);
  color: var(--accent-cta);
}
.btn-outline:hover {
  background: var(--accent-cta);
  color: #fff;
}

/* 電話番号専用スタイル */
.cta-phone-number {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 900;
  color: var(--accent-cta);
  line-height: 1.2;
  margin-bottom: 4px;
}
.cta-phone-time {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
}

/* 縦積みのためのラッパー */
.cta-column-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.cta-column-single {
  height: 100%;
}
.cta-column-single .cta-card {
  justify-content: center;
  padding: 40px 24px;
}

/* CTA レスポンシブ (SP) */
@media (max-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .cta-column-stack {
    gap: 24px;
  }
  .cta-column-single {
    height: auto;
  }
}

.cta-container.-pc {
  display: grid;
} 
.cta-container.-sp {
  display: none;
}
@media (max-width: 1024px) {
  .cta-container.-pc {
    display: none;
  } 
  .cta-container.-sp {
    display: grid;
  }
}

/* ===== Shop Info Section ===== */
.shop-section {
  background: var(--bg-gray);
  padding: 100px 0;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.shop-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.shop-map-frame {
  width: 100%; height: 200px;
  background: #eee;
  position: relative;
}
.shop-map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(100%) sepia(10%);
}
.shop-info-body { padding: 24px; }
.shop-name { font-size: 18px; font-weight: 700; margin-bottom: 12px; font-family: var(--font-serif); }
.shop-table { width: 100%; font-size: 13px; }
.shop-table tr td { padding: 6px 0; vertical-align: top; }
.shop-table tr td:first-child { width: 60px; color: var(--text-muted); font-weight: 700; }
.shop-table tr td:last-child { color: var(--text-main); font-weight: 500; }

/* ===== Footer (Redesigned) ===== */
footer {
  background: #414042;
  color: #fff;
  padding: 80px 0 30px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 上部：ロゴとメインナビゲーションの分割 */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
  justify-content: space-between;
}

/* 左側：ブランド情報 */
.footer-brand {
  flex: 0 0 250px;
}
.footer-logo {
  display: block;
  width: 250px;
  height: 22px;
  background: url('../images/logo.png') no-repeat center left / contain;
  font-size: 0;
  color: transparent;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer-address {
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 13px;
}
.footer-sns {
  display: flex;
  gap: 16px;
}
.sns-icon {
  width: 36px; height: 36px;
  background-color: rgba(255,255,255,0.1);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.3s;
  text-decoration: none;
}
.sns-icon:hover { background-color: var(--accent); }
.sns-youtube { background-image: url('../images/yt_icon_white_digital.png'); background-size: 20px auto; }
.sns-instagram { background-image: url('../images/Instagram_Glyph_White.png'); background-size: 18px auto; }

/* 右側：サイトマップリンク */
.footer-nav-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-sans);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 10px;
  display: block;
  text-decoration: none;
}

.footer-links-group {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-group li {
  margin-bottom: 10px;
}
.footer-links-group a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s, padding 0.3s;
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
}
.footer-links-group a:hover {
  color: var(--accent);
}
.footer-links-group:not(.-area) a:hover {
  padding-left: 4px;
}

/* 第3階層以下のインデント表現 */
.footer-sub-link {
  font-size: 12px;
  color: #ddd !important;
  margin-left: 0;
}
.footer-sub-link::before {
  content: "- ";
  opacity: 0.5;
}
.footer-sub-link.highlight {
  color: var(--accent) !important;
  font-weight: 700;
}

/* SP Sub Link Highlight */
.sp-sub-link.highlight {
  color: var(--accent) !important;
}

/* エリアタグ風リンク */
.footer-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-area-tags a {
  font-size: 12px;
  background: rgba(255,255,255,0.1);
  padding: 4px 8px;
  border-radius: 4px;
  color: #ddd;
}
.footer-area-tags a:hover {
  background: var(--accent);
  color: #fff;
}

/* 下部：コピーライトとサブリンク */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: #999;
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: var(--accent);
}
.copyright {
  font-size: 11px;
  color: #777;
}
.footer-right-info {
  text-align: right;
  line-height: 1.4;
}
.footer-disclaimer {
  font-size: 11px;
  color: #777;
  margin-bottom: 2px;
}

/* ===== Responsive (Common) ===== */
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-container { grid-template-columns: 1fr; max-width: 600px; }
  .cta-chat, .cta-buttons, .cta-phone { grid-column: auto; }

  /* Footer Tablet */
  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* SP Optimization: Reduce Padding */
  section { padding: 60px 0; }
  .shop-section { padding: 60px 0; }
  footer { padding: 60px 0 20px; }

  .section-head { margin-bottom: 40px; }
  .section-jp { font-size: 26px; }

  header nav { display: none; }

  /* Footer SP */
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-brand {
    flex: auto;
    text-align: center;
  }
  .footer-sns {
    justify-content: center;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .footer-col-title {
    font-size: 13px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }
  .footer-links-group a {
    font-size: 12px;
  }
  .footer-links-group li {
    margin-bottom: 8px;
  }
  .footer-sub-link {
    font-size: 11px;
  }
  .footer-area-tags {
    gap: 6px;
  }
  .footer-area-tags a {
    font-size: 11px;
    padding: 3px 6px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .shop-grid { grid-template-columns: 1fr; }
}
