@charset "utf-8";

/* ==================================================
   beauty_salon04 LP - PC styles
   デザインコンセプト: ウォームブラウン × ベージュゴールド（index.htmlに合わせたカラー）
   ================================================== */

/* ---------- Variables ---------- */
:root {
  --bs2-green:    #322b2b;
  --bs2-green2:   #4a3c3c;
  --bs2-gold:     #bea37d;
  --bs2-gold2:    #a8936a;
  --bs2-cream:    #f9f9f9;
  --bs2-beige:    #f5ede3;
  --bs2-white:    #ffffff;
  --bs2-text:     #322b2b;
  --bs2-text2:    #666666;
  --bs2-border:   #e8ddd0;
  --font-en:      "Cormorant Garamond", serif;
  --font-base:    "Noto Sans JP", sans-serif;
  --font-serif:   "Noto Serif JP", serif;
  --bs2-tr:       0.3s ease;
}

/* ---------- Base ---------- */
.bs2-page {
  font-family: var(--font-base);
  color: var(--bs2-text);
  background: var(--bs2-white);
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.bs2-page *,
.bs2-page *::before,
.bs2-page *::after {
  box-sizing: border-box;
}

/* ---------- Inner ---------- */
.bs2-inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  /* border-bottom: 1px solid rgba(190, 163, 125, 0.3); */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
}

.page-title-area {
  
    background: url(../images/beauty_salon/hero.jpg) no-repeat center center / cover;

}


.logo a {
  /* font-family: var(--font-en); */
  /* font-size: 1.5rem; */
  /* font-weight: 400; */
  /* color: var(--bs2-text); */
  /* text-decoration: none; */
  /* letter-spacing: 0.15em; */
}

.logo-sub {
  /* font-family: var(--font-base); */
  /* font-size: 1.2rem; */
  /* margin-left: 4px; */
  /* letter-spacing: 0.1em; */
  /* color: var(--bs2-gold); */
}

.gnav-pc ul {
  /* display: flex; */
  /* gap: 6px; */
  /* list-style: none; */
  /* margin: 0; */
  /* padding: 0; */
}

.gnav-pc ul li a {
  /* display: block; */
  /* color: rgba(50, 43, 43, 0.8); */
  /* text-decoration: none; */
  /* font-size: 1.1rem; */
  /* letter-spacing: 0.05em; */
  /* padding: 6px 10px; */
  /* transition: color var(--bs2-tr); */
}

.gnav-pc ul li a:hover {
  color: var(--bs2-gold);
}

.btn-reserve-header {
  display: inline-block;
  background: var(--bs2-text);
  color: var(--bs2-white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  text-decoration: none;
  transition: background var(--bs2-tr), color var(--bs2-tr);
  border: 1px solid var(--bs2-text);
}

.btn-reserve-header:hover {
  background: var(--bs2-gold);
  border-color: var(--bs2-gold);
  color: var(--bs2-white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  /* display: block; */
  /* width: 26px; */
  /* height: 2px; */
  /* background: var(--bs2-text); */
  /* transition: var(--bs2-tr); */
}

/* Mobile Nav */
.mobile-nav {
  /* display: none; */
  /* position: fixed; */
  /* top: 68px; */
  /* left: 0; */
  /* width: 100%; */
  /* background: var(--bs2-green); */
  /* z-index: 999; */
  /* padding: 24px 0 32px; */
  /* border-top: 1px solid rgba(190,163,125,0.2); */
  /* transform: translateY(-20px); */
  /* opacity: 0; */
  /* pointer-events: none; */
  /* transition: transform 0.3s ease, opacity 0.3s ease; */
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  /* max-width: 480px; */
  /* margin: 0 auto; */
  padding: 0 24px;
}

.mobile-nav-inner ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.mobile-nav-inner ul li {
  /* border-bottom: 1px solid rgba(190,163,125,0.15); */
}

.mobile-nav-inner ul li a {
  /* display: block; */
  /* color: rgba(255,255,255,0.9); */
  /* text-decoration: none; */
  /* font-size: 1.2rem; */
  /* padding: 14px 4px; */
  /* letter-spacing: 0.08em; */
  /* transition: color var(--bs2-tr); */
}

.mobile-nav-inner ul li a:hover {
  color: var(--bs2-gold);
}

.btn-reserve-mobile {
  display: block;
  /* text-align: center; */
  /* background: var(--bs2-gold); */
  /* color: var(--bs2-white); */
  /* font-weight: 700; */
  /* font-size: 1.4rem; */
  /* letter-spacing: 0.1em; */
  /* padding: 14px; */
  /* text-decoration: none; */
  /* margin-top: 8px; */
}

/* ============================================================
   HERO
   ============================================================ */
.bs2-hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  max-height: 800px;
  overflow: hidden;
  margin-top: 68px;
}

.bs2-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.bs2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 43, 43, 0.80) 0%,
    rgba(50, 43, 43, 0.45) 60%,
    rgba(50, 43, 43, 0.20) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8% 80px;
}

.bs2-hero-label {
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.35em;
  color: var(--bs2-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.bs2-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 400;
  color: var(--bs2-white);
  line-height: 1.55;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.bs2-hero-sub {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
  line-height: 1.8;
}

.bs2-hero-line {
  width: 48px;
  height: 1px;
  background: var(--bs2-gold);
  margin-bottom: 36px;
}

.bs2-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.bs2-hero-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: var(--bs2-tr);
  border: 1px solid;
}

.bs2-hero-btn-primary {
  background: var(--bs2-gold);
  color: var(--bs2-white);
  border-color: var(--bs2-gold);
}

.bs2-hero-btn-primary:hover {
  background: transparent;
  color: var(--bs2-gold);
}

.bs2-hero-btn-secondary {
  background: transparent;
  color: var(--bs2-white);
  border-color: rgba(255,255,255,0.6);
}

.bs2-hero-btn-secondary:hover {
  border-color: var(--bs2-gold);
  color: var(--bs2-gold);
}

.bs2-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 1.0rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bs2-hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; }
}

/* ============================================================
   COURSE STRIP
   ============================================================ */
.bs2-strip {
  background: var(--bs2-green);
  padding: 18px 0;
  overflow: hidden;
}

.bs2-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bs2-strip-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.bs2-strip-list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.bs2-strip-item {
  font-size: 1.2rem;
  color: var(--bs2-white);
  letter-spacing: 0.08em;
  padding: 0 20px;
  border-right: 1px solid rgba(190,163,125,0.3);
}

.bs2-strip-item:last-child { border-right: none; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.bs2-section {
  padding: 96px 0;
}

.bs2-section-bg {
  background: var(--bs2-cream);
}

.bs2-section-dark {
  background: var(--bs2-green);
}

.bs2-section-beige {
  background: var(--bs2-beige);
}

/* ---------- Section Heading ---------- */
.bs2-section-head {
  margin-bottom: 56px;
}

.bs2-section-head-center {
  text-align: center;
}

.bs2-section-en {
  display: block;
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--bs2-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bs2-section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bs2-text);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.bs2-section-title.on-dark {
  color: var(--bs2-white);
}

.bs2-gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--bs2-gold);
  margin-bottom: 20px;
}

.bs2-gold-line-center {
  margin-left: auto;
  margin-right: auto;
}

.bs2-section-lead {
  font-size: 1.5rem;
  color: var(--bs2-text2);
  line-height: 1.9;
  margin-top: 12px;
}

.bs2-section-lead.on-dark {
  color: rgba(255,255,255,0.75);
}

/* Inview animation */
.bs2-inview {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.bs2-inview.bs2-visible {
  opacity: 1;
  transform: translateY(0);
}

.bs2-inview.bs2-delay1 { transition-delay: 0.1s; }
.bs2-inview.bs2-delay2 { transition-delay: 0.2s; }
.bs2-inview.bs2-delay3 { transition-delay: 0.3s; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.bs2-problem-intro {
  font-size: 1.5rem;
  line-height: 1.95;
  color: var(--bs2-text2);
  margin-bottom: 48px;
  padding-left: 20px;
  border-left: 2px solid var(--bs2-gold);
}

.bs2-reason-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bs2-reason-card {
  background: var(--bs2-cream);
  padding: 40px 32px;
  border-top: 3px solid var(--bs2-gold);
  position: relative;
}

.bs2-reason-num {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(190, 163, 125, 0.25);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  letter-spacing: -0.02em;
}

.bs2-reason-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--bs2-green);
}

.bs2-reason-text {
  font-size: 1.4rem;
  color: var(--bs2-text2);
  line-height: 1.9;
}

/* ============================================================
   APPROACH
   ============================================================ */
.bs2-approach-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bs2-approach-card {
  border: 1px solid var(--bs2-border);
  background: var(--bs2-white);
  overflow: hidden;
}

.bs2-approach-head {
  background: var(--bs2-green);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bs2-approach-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--bs2-gold);
  color: var(--bs2-gold);
  font-size: 1.0rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  font-family: var(--font-base);
}

.bs2-approach-head-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--bs2-white);
  letter-spacing: 0.08em;
}

.bs2-approach-body {
  padding: 28px 32px;
}

.bs2-approach-text {
  font-size: 1.45rem;
  color: var(--bs2-text2);
  line-height: 1.95;
}

/* ============================================================
   RECOMMEND / BENEFIT - Number List
   ============================================================ */
.bs2-num-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bs2-num-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: var(--bs2-white);
  border-left: 0px;
  transition: background var(--bs2-tr);
}

.bs2-section-dark .bs2-num-item {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bs2-num-item:hover {
  background: var(--bs2-cream);
}

.bs2-section-dark .bs2-num-item:hover {
  background: rgba(255,255,255,0.08);
}

.bs2-num-circle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--bs2-gold);
  color: var(--bs2-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.4rem;
  letter-spacing: 0;
}

.bs2-num-text {
  font-size: 1.5rem;
  color: var(--bs2-text);
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.bs2-section-dark .bs2-num-text {
  color: rgba(255,255,255,0.88);
}

/* ============================================================
   GALLERY
   ============================================================ */
.bs2-section-gallery {
  background: var(--bs2-green);
}

.bs2-gallery-masonry {
  column-count: 3;
  column-gap: 12px;
}

.bs2-gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  display: block;
}

.bs2-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0.9;
}

.bs2-gallery-item:hover img {
  transform: scale(1.04);
  opacity: 1;
}

/* ============================================================
   FLOW - Alternating layout
   ============================================================ */
.bs2-flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bs2-flow-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  border-bottom: 1px solid var(--bs2-border);
}

.bs2-flow-item:last-child {
  border-bottom: none;
}

.bs2-flow-item.bs2-flow-reverse {
  direction: rtl;
}

.bs2-flow-item.bs2-flow-reverse > * {
  direction: ltr;
}

.bs2-flow-img {
  overflow: hidden;
  background: var(--bs2-beige);
}

.bs2-flow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.bs2-flow-item:hover .bs2-flow-img img {
  transform: scale(1.03);
}

.bs2-flow-body {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bs2-white);
}

.bs2-flow-num-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bs2-flow-num {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--bs2-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bs2-flow-step-label {
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  color: var(--bs2-text2);
  text-transform: uppercase;
}

.bs2-flow-step {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--bs2-green);
  line-height: 1.55;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.bs2-flow-text {
  font-size: 1.5rem;
  color: var(--bs2-text2);
  line-height: 1.95;
}

/* ============================================================
   MENU / PRICING
   ============================================================ */
.bs2-menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--bs2-border);
}

.bs2-menu-card {
  padding: 48px 36px;
  border-right: 1px solid var(--bs2-border);
  position: relative;
}

.bs2-menu-card:last-child {
  border-right: none;
}

.bs2-menu-featured {
  background: var(--bs2-green);
}

.bs2-menu-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--bs2-gold);
  color: var(--bs2-white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 14px;
}

.bs2-menu-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--bs2-text);
  letter-spacing: 0.05em;
}

.bs2-menu-featured .bs2-menu-name {
  color: var(--bs2-white);
}

.bs2-menu-price-area {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bs2-border);
}

.bs2-menu-featured .bs2-menu-price-area {
  border-bottom-color: rgba(190,163,125,0.3);
}

.bs2-menu-price-old {
  font-size: 1.3rem;
  color: var(--bs2-text2);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.bs2-menu-featured .bs2-menu-price-old {
  color: rgba(255,255,255,0.5);
}

.bs2-menu-price {
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--bs2-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bs2-menu-price span {
  font-family: var(--font-base);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--bs2-text2);
  margin-left: 4px;
}

.bs2-menu-featured .bs2-menu-price span {
  color: rgba(255,255,255,0.6);
}

.bs2-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bs2-menu-list li {
  font-size: 1.35rem;
  color: var(--bs2-text2);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}

.bs2-menu-featured .bs2-menu-list li {
  color: rgba(255,255,255,0.8);
}

.bs2-menu-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 1px;
  background: var(--bs2-gold);
}

.bs2-menu-note {
  font-size: 1.2rem;
  color: var(--bs2-text2);
  margin-top: 20px;
  text-align: right;
}

/* ============================================================
   VOICE / RESULTS GRID
   ============================================================ */
.bs2-result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.bs2-result-item {
  overflow: hidden;
  aspect-ratio: 6/5;
  background: var(--bs2-beige);
}

.bs2-result-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.bs2-result-item:hover img {
  transform: scale(1.05);
}

/* ============================================================
   CTA
   ============================================================ */
.bs2-cta {
  background: var(--bs2-green);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.bs2-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: rgba(190,163,125,0.4);
}

.bs2-cta-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--bs2-white);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.bs2-cta-lead {
  text-align: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 56px;
  line-height: 1.95;
}

.bs2-cta-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.bs2-cta-block {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(190,163,125,0.2);
  padding: 36px 24px;
}

.bs2-cta-block-label {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--bs2-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family: var(--font-en);
}

.bs2-cta-btn {
  display: block;
  padding: 14px 20px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: var(--bs2-tr);
  margin-bottom: 12px;
  border: 1px solid var(--bs2-gold);
  color: var(--bs2-white);
  background: var(--bs2-gold);
}

.bs2-cta-btn:hover {
  background: transparent;
  color: var(--bs2-gold);
}

.bs2-btn-line {
  background: #06c755;
  border-color: #06c755;
  color: #fff;
}

.bs2-btn-line:hover {
  background: transparent;
  color: #06c755;
  border-color: #06c755;
}

.bs2-cta-tel {
  display: block;
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--bs2-gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  transition: color var(--bs2-tr);
}

.bs2-cta-tel:hover {
  color: var(--bs2-white);
}

.bs2-cta-note {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================================================
   ACCESS
   ============================================================ */
.bs2-access-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.bs2-access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.45rem;
}

.bs2-access-table tr {
  border-bottom: 1px solid var(--bs2-border);
}

.bs2-access-table th {
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: var(--bs2-green);
  padding: 14px 0;
  width: 80px;
  vertical-align: top;
  white-space: nowrap;
}

.bs2-access-table td {
  font-size: 1.45rem;
  color: var(--bs2-text2);
  padding: 14px 0 14px 16px;
  line-height: 1.7;
}

.bs2-access-table td a {
  color: var(--bs2-gold2);
  text-decoration: none;
}

.bs2-access-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(20%);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  /* background: var(--bs2-green); */
  /* border-top: 1px solid rgba(190,163,125,0.2); */
  /* padding: 48px 0 28px; */
}

.footer-inner {
  /* max-width: 960px; */
  /* margin: 0 auto; */
  /* padding: 0 32px; */
}

.footer-logo {
  /* font-family: var(--font-en); */
  /* font-size: 2.2rem; */
  /* font-weight: 400; */
  /* color: var(--bs2-white); */
  /* letter-spacing: 0.15em; */
  /* margin-bottom: 20px; */
}

.footer-logo span {
  /* font-family: var(--font-base); */
  /* font-size: 1.2rem; */
  /* color: var(--bs2-gold); */
  /* margin-left: 6px; */
}

.footer-info {
  /* font-size: 1.4rem; */
  /* color: rgba(255,255,255,0.65); */
  /* line-height: 1.8; */
  /* margin-bottom: 24px; */
}

.footer-info a {
  /* color: rgba(255,255,255,0.65); */
  /* text-decoration: none; */
}

.footer-nav {
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* gap: 6px 24px; */
  /* margin-bottom: 32px; */
}

.footer-nav a {
  /* font-size: 1.2rem; */
  /* color: rgba(255,255,255,0.55); */
  /* text-decoration: none; */
  /* letter-spacing: 0.05em; */
  /* transition: color var(--bs2-tr); */
}

.footer-nav a:hover {
  color: var(--bs2-gold);
}

.copy {
  /* display: block; */
  /* font-size: 1.1rem; */
  /* color: rgba(255,255,255,0.35); */
  /* letter-spacing: 0.05em; */
  /* border-top: 1px solid rgba(255,255,255,0.08); */
  /* padding-top: 20px; */
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.bs2-float-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  display: flex;
  gap: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.bs2-float-cta.show {
  transform: translateY(0);
}

.bs2-float-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 16px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
  transition: opacity var(--bs2-tr);
}

.bs2-float-btn:hover { opacity: 0.88; }

.bs2-float-web { background: var(--bs2-gold); color: var(--bs2-white); }
.bs2-float-line { background: #06c755; }
.bs2-float-tel  { background: var(--bs2-green2); }



/* ==================================================
   beauty_salon04 LP - SP styles (max-width: 767px)
   ================================================== */

@media screen and (max-width: 767px) {

  /* Header */
  .gnav-pc { display: none; }
  .btn-reserve-header { display: none; }
  .hamburger { display: flex; }

  .mobile-nav {/* display: block; */}

  .header-inner {
    padding: 0 20px;
    height: 56px;
  }

  /* Hero */
  .bs2-hero {
    height: 90vh;
    min-height: 500px;
    max-height: 700px;
    margin-top: 56px;
  }

  .bs2-hero-overlay {
    padding: 0 6% 70px;
    background: linear-gradient(
      160deg,
      rgba(50, 43, 43, 0.85) 0%,
      rgba(50, 43, 43, 0.55) 70%
    );
  }
  .page-title-area {
    background: url(../images/beauty_salon/hero_sp.png) no-repeat center center / cover;
}

  .bs2-hero-title {
    font-size: 1.5rem;
  }

  .bs2-hero-sub {
    font-size: 1.4rem;
  }

  .bs2-hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .bs2-section-lead {
    /* text-align: left; */
}

  .bs2-hero-btn {
    padding: 13px 24px;
    font-size: 1.2rem;
    text-align: center;
  }

  /* Strip */
  .bs2-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 20px;
  }

  .bs2-strip-list {
    flex-direction: column;
    gap: 6px;
  }

  .bs2-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(190,163,125,0.2);
    padding: 6px 0;
    font-size: 1.1rem;
  }

  .bs2-strip-item:last-child { border-bottom: none; }

  /* Sections */
  .bs2-section { padding: 64px 0; }
  .bs2-inner { width: 92%; }
  .bs2-section-head { margin-bottom: 36px; }

  /* Problem */
  .bs2-reason-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bs2-reason-card {
    padding: 28px 24px;
  }

  .bs2-reason-num {
    font-size: 3rem;
    top: 14px;
    right: 16px;
  }

  /* Approach */
  .bs2-approach-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bs2-approach-head {
    padding: 18px 20px;
  }

  .bs2-approach-body {
    padding: 20px 20px;
  }

  /* Num list */
  .bs2-num-item {
    padding: 18px 20px;
    gap: 16px;
  }

  .bs2-num-circle {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  /* Gallery */
  .bs2-gallery-masonry {
    column-count: 2;
    column-gap: 8px;
  }

  .bs2-gallery-item { margin-bottom: 8px; }

  /* Flow */
  .bs2-flow-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bs2-flow-item.bs2-flow-reverse { direction: ltr; }

  .bs2-flow-img {
    height: 75vw;
  }

  .bs2-flow-body {
    padding: 28px 24px;
  }

  .bs2-flow-num {
    font-size: 2.2rem;
  }

  /* Menu */
  .bs2-menu-cards {
    grid-template-columns: 1fr;
    border: 1px solid var(--bs2-border);
  }

  .bs2-menu-card {
    border-right: none;
    border-bottom: 1px solid var(--bs2-border);
    padding: 36px 24px;
  }

  .bs2-menu-card:last-child { border-bottom: none; }

  .bs2-menu-price {
    font-size: 2.4rem;
  }

  .bs2-result-item {
   
    aspect-ratio: 6 / 5;

}

  /* Results */
  .bs2-result-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  /* CTA */
  .bs2-cta { padding: 64px 0 100px; }

  .bs2-cta-blocks {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 4%;
  }

  .bs2-cta-block { padding: 28px 20px; }

  /* Access */
  .bs2-access-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bs2-access-map iframe { height: 280px; }

  /* Footer */
  .footer-inner { padding: 0 20px; }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  /* Float CTA */
  .bs2-float-btn {
    padding: 14px 8px;
    font-size: 1.0rem;
    flex-direction: column;
    gap: 3px;
  }
}

@media screen and (max-width: 374px) {
  .bs2-hero-title { font-size: 1.3rem; }
  .bs2-gallery-masonry { column-count: 1; }
  .bs2-result-grid { grid-template-columns: 1fr; }
}
