/* ============================================================
   Viage 共通スタイル（全ページ共通）
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  background-color: #f9f3ef;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}

a { color: inherit; }

/* ========== HEADER ========== */
header {
  background: #fff;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
  gap: 8px;
}

.logo { padding: 18px 0; flex-shrink: 0; }
.logo-img { height: 56px; width: auto; display: block; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.logo-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -1px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.logo-text em { font-style: italic; font-size: 42px; }
.logo-flower { font-size: 28px; color: #1a1a1a; }

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

nav { display: flex; gap: 0; flex-wrap: wrap; }

nav a {
  text-decoration: none;
  color: #333;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-bottom: 2px solid #ccc;
  transition: border-color 0.2s;
}

nav a:hover,
nav a.active { border-bottom-color: #333; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.phone { font-size: 13px; letter-spacing: 1px; color: #333; text-decoration: none; }

.btn-reserve {
  background: #333;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 6px 16px;
  text-decoration: none;
  border: 1px solid #333;
  transition: background 0.2s;
}
.btn-reserve:hover { background: #555; }

.btn-line {
  background: #fff;
  color: #333;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 6px 14px;
  text-decoration: none;
  border: 1px solid #ccc;
  transition: background 0.2s;
}
.btn-line:hover { background: #f5f5f5; }

.icon-instagram { font-size: 20px; color: #333; text-decoration: none; }

/* ========== MAIN ========== */
main {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== HERO ========== */
.hero { position: relative; display: flex; align-items: stretch; }

.hero-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 13px;
  letter-spacing: 6px;
  color: #666;
  padding: 40px 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hero-photo { flex: 1; height: 460px; overflow: hidden; position: relative; }

.hero-photo .ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-photo .ph p {
  color: rgba(255,255,255,0.5);
  font-size: 13px; letter-spacing: 3px;
  position: relative; z-index: 1;
}

/* ========== ページ共通の中身エリア ========== */
.page-section { padding: 70px 80px 80px; }

.section-label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #999;
  margin-bottom: 28px;
}

.page-section h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin: 40px 0 14px;
}
.page-section h3:first-child { margin-top: 0; }

.page-section p { font-size: 14px; color: #444; margin-bottom: 14px; }

.lead {
  font-size: 16px;
  letter-spacing: 1px;
  color: #1a1a1a;
  line-height: 2;
  margin-bottom: 24px;
}

/* ========== MENU（料金表） ========== */
.menu-cat { margin-bottom: 48px; }

.menu-cat-title {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-style: italic;
  letter-spacing: 2px;
  color: #b8967e;
  border-bottom: 1px solid #e8ddd5;
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed #eee;
}

.menu-item-main { flex: 1; }
.menu-item-name { font-size: 15px; color: #1a1a1a; margin-bottom: 4px; }
.menu-item-desc { font-size: 12px; color: #999; line-height: 1.7; }
.menu-item-price { font-size: 15px; color: #333; white-space: nowrap; }

.menu-note {
  margin-top: 30px;
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
  text-align: center;
}

/* ========== RECRUIT（求人） ========== */
.recruit-table { width: 100%; border-collapse: collapse; margin: 10px 0 30px; }
.recruit-table tr { border-bottom: 1px solid #eee; }
.recruit-table th {
  text-align: left;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
  padding: 14px 16px 14px 0;
  width: 160px;
  vertical-align: top;
}
.recruit-table td { font-size: 13px; color: #333; padding: 14px 0; line-height: 1.8; }

.flow-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}
.flow-num {
  flex: 0 0 44px;
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-style: italic;
  color: #b8967e;
}
.flow-text { font-size: 13px; color: #444; }

/* ========== NEWS（お知らせ） ========== */
.news-item { padding: 24px 0; border-bottom: 1px solid #eee; }
.news-date { font-size: 12px; color: #b8967e; letter-spacing: 2px; }
.news-title { font-size: 16px; color: #1a1a1a; margin: 6px 0 12px; }
.news-body { font-size: 13px; color: #555; line-height: 1.9; }

/* ========== B HAPPY ========== */
.bhappy-hero {
  text-align: center;
  background: linear-gradient(135deg, #f3e9e2, #e6d3c8);
  padding: 50px 20px;
  margin-bottom: 30px;
}
.bhappy-hero h3 { font-size: 26px; margin: 0 0 10px; }
.coupon {
  display: inline-block;
  border: 2px dashed #b8967e;
  color: #a86d4e;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 16px 30px;
  margin: 16px 0;
}

/* ========== INSTAGRAM FEED（styleページ用） ========== */
.feed-section { padding: 60px 80px 80px; }

.feed-profile { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 30px; }
.feed-avatar {
  flex: 0 0 84px; width: 84px; height: 84px;
  border-radius: 50%;
  border: 1px solid #e0d8d0;
  background: linear-gradient(160deg, #e8ddd5 0%, #c4b0a4 100%);
  overflow: hidden;
}
.feed-avatar img { width: 100%; height: 100%; object-fit: cover; }
.feed-profile-text h2 { font-size: 22px; font-weight: 400; letter-spacing: 2px; color: #1a1a1a; margin-bottom: 8px; }
.feed-profile-text p { font-size: 12px; color: #666; line-height: 1.9; }

.feed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feed-item {
  position: relative; aspect-ratio: 1 / 1;
  overflow: hidden; background: #e8e4e0;
  display: block; text-decoration: none;
}
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.feed-item:hover img { transform: scale(1.05); }
.feed-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.feed-placeholder span { font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.feed-multi { position: absolute; top: 10px; right: 10px; width: 18px; height: 18px; z-index: 2; opacity: 0.9; }
.feed-multi::before, .feed-multi::after {
  content: ""; position: absolute; width: 12px; height: 12px;
  border: 1.5px solid #fff; border-radius: 3px;
}
.feed-multi::before { top: 0; right: 0; }
.feed-multi::after { bottom: 0; left: 0; background: rgba(0,0,0,0.05); }

.feed-buttons { display: flex; justify-content: center; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.feed-btn {
  font-size: 12px; letter-spacing: 1px; padding: 12px 28px;
  text-decoration: none; border: 1px solid #ccc; color: #333; background: #fff;
  transition: background 0.2s;
}
.feed-btn:hover { background: #f5f5f5; }
.feed-btn.primary { background: #333; color: #fff; border-color: #333; }
.feed-btn.primary:hover { background: #555; }

.ig-embed-slot {
  border: 1px dashed #d8cfc6; background: #faf6f2;
  padding: 40px 20px; text-align: center; color: #b0a499;
  font-size: 12px; letter-spacing: 1px; line-height: 2; display: none;
}

/* ========== ACCESS（salon data / map / calendar） ========== */
.salon-section { display: flex; gap: 60px; padding: 80px 80px 80px 100px; align-items: flex-start; }
.salon-image { flex: 0 0 420px; height: 540px; overflow: hidden; }
.salon-image > div { width: 100%; height: 100%; }
.salon-data { flex: 1; padding-top: 10px; }
.salon-data h2 { font-size: 22px; font-weight: 400; letter-spacing: 4px; margin-bottom: 36px; color: #1a1a1a; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table tr { border-bottom: 1px solid #e8e8e8; }
.data-table th {
  text-align: left; font-weight: 400; font-size: 11px; letter-spacing: 2px;
  color: #999; padding: 14px 0; width: 120px; vertical-align: top;
}
.data-table td { font-size: 13px; color: #333; padding: 14px 0; line-height: 1.7; }

.map-section { padding: 0 80px 80px; }
.map-section h3 { font-size: 13px; font-weight: 400; letter-spacing: 4px; color: #999; margin-bottom: 20px; }
.map-container { width: 100%; height: 400px; background: #e8e4e0; overflow: hidden; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

.calendar-section { padding: 60px 80px 80px; border-top: 1px solid #eee; }
.calendar-section h3 { font-size: 13px; font-weight: 400; letter-spacing: 4px; color: #999; margin-bottom: 30px; }
.calendar { max-width: 500px; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.calendar-header span { font-size: 14px; letter-spacing: 2px; color: #333; }
.calendar-nav { background: none; border: none; font-size: 16px; color: #666; cursor: pointer; padding: 4px 10px; }
.calendar-grid { width: 100%; border-collapse: collapse; }
.calendar-grid th { font-size: 11px; color: #999; font-weight: 400; text-align: center; padding: 8px 0; letter-spacing: 1px; }
.calendar-grid th:first-child { color: #c0392b; }
.calendar-grid th:last-child { color: #2980b9; }
.calendar-grid td { text-align: center; padding: 8px 4px; font-size: 13px; color: #333; cursor: pointer; }
.calendar-grid td:first-child { color: #c0392b; }
.calendar-grid td:last-child { color: #2980b9; }
.calendar-grid td.closed { color: #ccc; text-decoration: line-through; }
.calendar-grid td.today { background: #333; color: #fff; border-radius: 50%; }
.calendar-grid td.other-month { color: #ddd; }

/* ========== FOOTER ========== */
footer { background: #1a1a1a; color: #999; padding: 60px 80px 40px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-logo { font-family: 'Georgia', 'Times New Roman', serif; font-size: 28px; color: #fff; font-style: italic; }
.footer-info { font-size: 12px; line-height: 2; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: #999; text-decoration: none; font-size: 11px; letter-spacing: 2px; transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-copy { border-top: 1px solid #333; padding-top: 20px; font-size: 11px; text-align: center; letter-spacing: 1px; }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  background: #333; color: #fff; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 18px; opacity: 0.7; transition: opacity 0.2s;
}
.back-to-top:hover { opacity: 1; }

/* ========== レスポンシブ（スマホ） ========== */
@media (max-width: 768px) {
  header { padding: 0 16px; }
  nav a { padding: 8px 10px; font-size: 11px; letter-spacing: 1px; }
  .page-section, .feed-section, .map-section, .calendar-section { padding: 40px 20px 50px; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .salon-section { flex-direction: column; padding: 40px 20px; gap: 30px; }
  .salon-image { flex: none; width: 100%; height: 320px; }
  .recruit-table th { width: 110px; }
  footer { padding: 40px 24px 30px; }
}
