.elementor-kit-7{--e-global-color-primary:#8E7D5C;--e-global-color-secondary:#D4C4A8;--e-global-color-text:#333333;--e-global-color-accent:#BF9F62;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* --- 共通フォント読み込み --- */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@300;400;500&family=Cormorant+Garamond:wght@400;600&display=swap');

:root {
  --color-main: #8E7D5C;   /* アンティークゴールド */
  --color-sub: #D4C4A8;    /* サンドベージュ */
  --color-text: #333333;   /* ダークグレー */
  --color-accent: #BF9F62; /* ブライトゴールド */
  --color-bg: #F9F9F9;     /* 背景色 */
  --color-white: #FFFFFF;
  --c-brown-dark: #3E2723;
  --font-heading: 'Shippori Mincho', serif;
  --font-body: 'Zen Kaku Gothic New', sans-serif;
  --font-en: 'Cormorant Garamond', serif;
}

/* --- 基本設定 --- */
html, body {
  background-color: var(--color-bg)!important;
  margin: 0;
  padding: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.8;
}
.detail-wrapper,.menu-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-bg);
  padding-bottom: 60px;
}
* { box-sizing: border-box; }

/* --- ヘッダーエリア --- */
.site-header-wrapper {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  position: relative;
  z-index: 9999;
  width: 100%;
}
.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
/* ロゴ */
.header-logo a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-en {
  font-family: var(--font-en);
  font-size: 26px;
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.logo-jp {
  font-size: 10px;
  color: #888;
  letter-spacing: 0.1em;
}
/* ナビゲーション（PC） */
.desktop-nav {
  display: flex;
  gap: 25px;
  height: 100%;
  align-items: center;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-link {
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 5px;
  color: var(--color-sub);
}
.nav-item:hover.nav-link { color: var(--color-main); }
/* ドロップダウン */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-top: 3px solid var(--color-main);
  z-index: 10000;
  border-radius: 0 0 4px 4px;
}
.dropdown-menu.wide {
  min-width: 450px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  gap: 0 20px;
}
.nav-item:hover.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: #555;
  font-size: 13px;
  transition: background 0.3s, color 0.3s;
  border-bottom: 1px dashed #f0f0f0;
  line-height: 1.4;
}
.dropdown-link:last-child { border-bottom: none; }
.dropdown-link:hover {
  background-color: #faf9f6;
  color: var(--color-main);
  padding-left: 20px;
}
/* ヘッダー右側 */
.header-cta { display: flex; align-items: center; gap: 20px; }
.tel-box { text-align: right; display: none; }
@media (min-width: 992px) {.tel-box { display: block; } }
.tel-label { font-size: 10px; color: #888; display: block; }
.tel-number { font-family: var(--font-en); font-size: 20px; font-weight: 600; color: var(--color-text); line-height: 1; }
.btn-reserve-nav {
  background-color: var(--color-main);
  color: #fff;
  padding: 12px 25px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: background 0.3s;
  white-space: nowrap;
}
.btn-reserve-nav:hover { background-color: var(--c-brown-dark); }
/* スマホメニュー */
.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11000;
  padding: 0;
}
.menu-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s;
}
/* スマホドロワー */
.mobile-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #fff;
  overflow-y: auto;
  z-index: 10000;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  box-shadow: inset 0 5px 10px rgba(0,0,0,0.05);
}
.mobile-drawer.active { transform: translateX(0); }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-item { border-bottom: 1px solid #eee; }
.mobile-nav-link {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
}
.mobile-nav-link.has-submenu::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
  color: var(--color-sub);
}
.mobile-submenu {
  display: none;
  list-style: none;
  padding: 0 0 15px 15px;
  background-color: #fafafa;
}
.mobile-sub-link {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  border-bottom: 1px dashed #ddd;
}

/* --- トップページ用スタイル --- */
.home-hero {
  height: 90vh;
  min-height: 600px;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-left: 10%;
}
.home-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.hero-catch { position: relative; z-index: 2; color: #fff; max-width: 600px; text-align: left; }
.hero-sub-text { font-family: var(--font-en); font-size: 1.1rem; letter-spacing: 0.3em; color: var(--c-gold); display: block; margin-bottom: 20px; text-transform: uppercase; }
.hero-main-text { font-family: var(--font-heading); font-size: 3.8rem; line-height: 1.4; margin-bottom: 40px; text-shadow: 0 5px 15px rgba(0,0,0,0.3); font-weight: 500; }
.hero-main-text span { font-size: 0.6em; display: block; margin-bottom: 10px; font-weight: 400; }
/* 共感セクション */
.empathy-section { padding: 100px 20px; background-color: #fff; text-align: center; }
.empathy-box { max-width: 800px; margin: 0 auto; padding: 60px; background-color: #fcfbf9; border: 1px solid #f0e6db; position: relative; }
.empathy-lead { font-family: var(--font-heading); font-size: 1.6rem; line-height: 2; color: var(--color-main); margin-bottom: 30px; }
.empathy-text { font-size: 1.05rem; line-height: 2.2; color: #555; text-align: justify; }
/* メソッドセクション */
.method-section { padding: 120px 0; background-color: #fdfcfb; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 60px auto 0; padding: 0 20px; }
.method-card { text-align: center; padding: 50px 30px; background: #fff; border: 1px solid #eee; transition: all 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.method-card:hover { border-color: var(--c-gold); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(191, 159, 98, 0.2); }
.method-num { font-family: var(--font-en); font-size: 3rem; color: #e0d8cc; line-height: 1; margin-bottom: 10px; }
.method-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-main); margin-bottom: 15px; }
.btn-large-gold { display: inline-block; background-color: var(--c-gold); color: #fff; padding: 20px 80px; font-size: 1.3rem; border-radius: 50px; text-decoration: none; font-family: var(--font-heading); letter-spacing: 0.1em; transition: all 0.3s; box-shadow: 0 10px 20px rgba(191, 159, 98, 0.3); }
.btn-large-gold:hover { background-color: var(--c-brown-light); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(191, 159, 98, 0.4); }
/* 年代別事例 */
.age-nav-section { padding: 100px 0; background-color: #f7f3e8; color: var(--color-text); }
.age-nav-section.h2-title { color: var(--color-main); }
.age-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; max-width: 1200px; margin: 50px auto 0; padding: 0 15px; }
.age-panel { position: relative; height: 350px; overflow: hidden; border-radius: 4px; text-decoration: none; background-color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.age-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.age-panel:hover img { transform: scale(1.1); }
.age-label { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(142, 125, 92, 0.9), rgba(142, 125, 92, 0.6)); text-align: center; z-index: 2; }
.age-num { font-family: var(--font-en); font-size: 2.8rem; color: #fff; display: block; line-height: 1; }
.age-text { font-size: 0.85rem; color: #fff; letter-spacing: 0.1em; font-weight: bold; }
/* 店舗情報 */
.salon-info-section { padding: 80px 0; background-color: #fff; }
.info-flex { display: flex; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; border: 1px solid #ddd; }
.info-map { flex: 1; min-width: 300px; min-height: 450px; }
.info-text { flex: 1; min-width: 300px; padding: 50px; background-color: #fdfbf7; }
.hours-table { width: 100%; margin-top: 20px; font-size: 0.9rem; border-collapse: collapse; }
.hours-table th,.hours-table td { padding: 12px 10px; border-bottom: 1px solid #e0e0e0; text-align: left; }
.hours-table th { color: var(--color-main); font-weight: normal; width: 30%; }

/* --- フッター --- */
.site-footer-wrapper { background-color: var(--c-brown-dark); color: #fff; padding: 60px 0 20px; font-size: 13px; font-family: var(--font-body); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-family: var(--font-en); font-size: 18px; color: var(--color-accent); margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; letter-spacing: 0.05em; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s; display: block; font-size: 13px; }
.footer-links a:hover { color: var(--color-accent); padding-left: 5px; }
.f-info p { color: #ccc; line-height: 1.6; margin-bottom: 15px; }
.f-tel { font-size: 24px; font-family: var(--font-en); color: #fff; display: block; margin-bottom: 10px; }
.copyright { text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 11px; color: rgba(255,255,255,0.5); font-family: var(--font-en); }

/* レスポンシブ対応 */
@media (max-width: 991px) {
 .desktop-nav { display: none; }
 .mobile-menu-trigger { display: flex; }
 .footer-container { grid-template-columns: 1fr; gap: 30px; }
 .home-hero { padding-left: 0; justify-content: center; height: 80vh; }
 .hero-catch { text-align: center; padding: 20px; }
 .hero-main-text { font-size: 2.2rem; }
 .empathy-box { padding: 40px 20px; border: none; background: #fcfbf9; }
 .empathy-box::before { display: none; }
 .method-section { padding: 60px 0; }
 .method-grid { grid-template-columns: 1fr; margin-top: 30px; }
 .btn-large-gold { padding: 15px 40px; font-size: 1.1rem; width: 90%; text-align: center; }
 .age-nav-section { padding: 60px 0; }
 .age-grid { grid-template-columns: repeat(2, 1fr); }
 .age-panel:last-child { grid-column: span 2; height: 200px; }
 .age-panel { height: 200px; }
 .info-text { padding: 30px; }
}/* End custom CSS */