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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #4A3F35;
  background-color: #ffffff;
  line-height: 1.8;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 共通タイトル */
.section-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #4A3F35;
}

/* =========================
   ヘッダー
========================= */

.site-header {
  position: absolute;         
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
}

.header-inner {
  width: 100%;      
  height: 70px;
  margin: 0;        
  padding: 0 40px 0 0;  
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo img {
  height: 70px;
}

/* PCナビ */
.main-nav {
  margin-left: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.main-nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #4A3F35;
}

/* PC電話 */
.header-tel {
  margin-left: 24px;
}

.header-tel a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #4A3F35;
}

.header-tel-icon {
  width: 18px;
  height: auto;
}

/* SP ハンバーガー（デフォルト非表示） */
.hamburger {
  display: none;
  margin-left: 12px;
  width: 28px;
  height: 22px;
  border: none;
  background: transparent;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #4A3F35;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* =========================
   SP ナビ
========================= */

.sp-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  z-index: 9998;
}

.sp-nav.open {
  display: flex;
}

.sp-nav-inner {
  width: 100%;
  max-width: 420px;
  background: #F5F0E6;
  padding: 40px 30px 60px;
  position: relative;
  min-height: 100vh;
}

/* ナビ内ロゴは非表示（HTMLからも削除済み） */

/* 閉じるボタン */
.sp-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #4A3F35;
  cursor: pointer;
}

/* メニュー */
.sp-nav-list {
  list-style: none;
  margin: 40px 0 60px;
  text-align: center;
}

.sp-nav-list li {
  margin: 30px 0;
}

.sp-nav-list a {
  font-size: 20px;
  letter-spacing: 0.18em;   
  color: #4A3F35;
  display: inline-block;
}

/* 電話番号（ナビ内） */
.sp-nav-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  letter-spacing: 0.25em;
  color: #4A3F35;
  margin-bottom: 40px;
}

.sp-tel-icon {
  width: 22px;
}

/* LINE予約（ナビ内） */
.sp-nav-linebtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 250px;
  height: 80px;
  background: rgba(74, 63, 53, 0.7);  /* 4A3F35 70% */
  border-radius: 8px;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin: 0 auto;
}

.line-btn-icon {
  width: 48px;
}

/* =========================
   ヒーロー
========================= */

.hero-section {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.hero-section img {
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
}

/* =========================
   コンセプト
========================= */

.concept-section {
  padding: 100px 20px;     
  justify-content: center;
  align-items: center;
}

.concept-text {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  line-height: 2.8;       
}


/* =========================
   SALON
========================= */

.salon-section {
  margin: 20px 0;
  border-top: 0.7px solid #4A3F35;
  border-bottom: 0.7px solid #4A3F35;
}

.salon-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 80px;
  align-items: center;   
}

/* 左テキスト */
.salon-text {
  flex: 1;
  max-width: 520px;
  padding: 40px 0;      
}

.salon-desc {
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.03em;
}


.salon-image {
  flex: 1;
  display: flex;
}

.salon-image img {
  width: 100%;
  object-fit: cover;
}

/* =========================
   DESIGNER
========================= */

.designer-section {
  padding: 80px 0;
}

.designer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}

.designer-photo {
  flex: 0 0 260px;
}

.designer-photo img {
  width: 100%;
  border-radius: 6px;
}

.designer-text {
  flex: 1;
  max-width: 520px;
}

.designer-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.designer-sub {
  font-size: 13px;
  letter-spacing: 0.05em;
}

.designer-name {
  font-size: 20px;
  margin: 16px 0 6px;
}

.designer-name-en {
  font-size: 13px;
  letter-spacing: 0.05em;
}

.designer-desc {
  font-size: 15px;
  line-height: 26px;
}

/* =========================
   MENU
========================= */

.menu-section {
  background: #ffffff;
}

.menu-header-bg {
  background: #F5F0E6;
  padding: 60px 0 50px;
  text-align: center;
}

.menu-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
}

.menu-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px 20px;
}

.menu-block {
  margin-bottom: 60px;
}

.menu-block-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #4A3F35;
  margin-bottom: 14px;
  border-bottom: 1px solid #4A3F35;
  padding-bottom: 4px;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin: 4px 0;
}

.menu-list li span {
  font-size: 12px;
}

.menu-note {
  font-size: 10px;
  margin-top: 6px;
  opacity: 0.7;
}

.menu-footer-bg {
  background: #F5F0E6;
  height: 60px;
}

/* =========================
   LINE 予約ボタン
========================= */

.line-reserve-section {
  text-align: center;
  margin: 40px 0 60px;
}

.line-more-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 200px;
  height: 85px;
  background-color: rgba(74, 63, 53, 0.7);
  border-radius: 5px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
}

.line-more-icon {
  width: 48px;
}

/* =========================
   INSTAGRAM
========================= */

.instagram-section {
  padding-bottom: 60px;
}

.insta-header-bg {
  background: #F5F0E6;
  padding: 50px 0;
  text-align: center;
}

.insta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.insta-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 25px;
}

.insta-profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.insta-profile-name {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* LightWidget 埋め込み */
.insta-widget {
  margin-top: 10px;
}

.insta-frame {
  width: 100%;
  min-height: 600px;
  border: none;
}

.insta-more-wrapper {
  text-align: center;
  margin: 40px 0 60px;
}

.insta-more-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 200px;
  height: 85px;
  background-color: #f3eee6;
  border-radius: 5px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.15);
  font-weight: 500;
  font-size: 18px;
}

.insta-more-icon {
  width: 48px;
}

/* =========================
   ACCESS
========================= */

.access-section {
  background: #F8F5EF;
}


.access-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: stretch;
  padding: 0; 
}

.access-map {
  flex: 0 0 60%;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;   
}


.access-info {
  flex: 0 0 40%;
  padding: 80px 40px;  
}

.access-item {
  margin-bottom: 24px;
}

.access-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  display: block;
}

.access-text {
  font-size: 14px;
  line-height: 23px;
}

/* =========================
   FOLLOW BAR（PC）
========================= */

.follow-bar {
  background: rgba(74, 63, 53, 0.7);  
  padding: 20px 0;
}

.follow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.follow-box {
  background: #F5F0E6;
  border: 1px solid #4A3F35;
  border-radius: 10px;
  width: 150px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.follow-insta img,
.follow-line img {
  width: 48px;
}

.follow-tel {
  width: 400px;
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tel-icon {
  width: 24px;
}

.tel-number {
  font-size: 24px;
  letter-spacing: 0.15em;
}

/* =========================
   フッター
========================= */

.site-footer {
  background: #ffffff;
  padding: 20px 0 10px;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 0.15em;
}

/* =========================
   SP 追従バー（スマホ用）
========================= */

.sp-follow-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(74, 63, 53, 0.6);
  padding: 6px 0;
  display: none; 
  justify-content: center;
  gap: 10px;
  z-index: 300;
}

.sp-box {
  background: #F5F0E6;
  border: 1px solid #4A3F35;
  border-radius: 10px;
  width: 100px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp-box img {
  width: 34px;
}

.sp-tel {
  width: 150px;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp-tel-icon {
  width: 16px !important;
}

.sp-tel-number {
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* =========================
   レスポンシブ（スマホ）
========================= */
@media (max-width: 900px) {

  /* スマホのヘッダー */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    z-index: 9999;
  }

  /* ナビ内の × ボタンを消す */
  .sp-close {
    display: none;
  }

  body {
    padding-bottom: 80px;
  }

  .access-info {
    margin-top: -20px;
  }

  .main-nav,
  .header-tel {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .hero-section {
    margin-top: 70px;
  }

  .salon-inner,
  .designer-inner {
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px;
  }

  .designer-photo {
    width: 100%;
    max-width: 260px;
  }

  .access-inner {
    flex-direction: column;
    padding: 40px 20px 60px;
  }

  .follow-bar {
    display: none; /* PCの追従バーはSPで消す */
  }

  .sp-follow-bar {
    display: flex; /* SPだけ表示 */
  }

  .menu-inner {
    padding: 40px 20px 20px;
  }

  .concept-section {
    padding: 40px 20px 50px;
  }


/* iOSのタップ時ハイライトを無効化 */
.sp-nav a {
  -webkit-tap-highlight-color: transparent;
}
/* スマホ ナビ内の謎の枠を消す（LINEボタンは除外） */
.sp-nav a:not(.sp-nav-linebtn),
.sp-nav button {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
/* ::before / ::after で出てる場合も消す */
.sp-nav a::before,
.sp-nav a::after {
  content: none;
}
} 


/* =========================
   レスポンシブ（PC）
========================= */
@media (min-width: 901px) {

  .follow-bar {
    position: static !important; /* ← PCでは固定しない */
  }
}
/* SPナビ内のLINE予約ボタンを茶色で固定 */
.sp-nav-linebtn {
  background: rgba(74, 63, 53, 0.7);  /* 4A3F35 の70% */
  color: #ffffff;
}