/* ============================================================
   suite foot - style.css
   参考: Urara Skin Clinic デザインを丸パクリ
   トンマナ: ゴールド(#b89a5e) / ダークオリーブ(#4a4228) / クリーム(#f9f6f0)
   ============================================================ */

:root {
  --f-jp: "Noto Serif JP", serif;
  --f-sans: "Noto Sans JP", sans-serif;
  --f-en: "Playfair Display", serif;
  --main-color: #4a4228;
  --clr1: #5a5040;
  --clr2: #ccc;
  --cl-hv1: #8a6d3b;
  --gold: #b89a5e;
  --gold-light: #d4b87a;
  --cream: #f9f6f0;
  --cream2: #f2ede4;
  --dark: #2c2416;
  --ttl_size: 30px;
  --wrapper: 80px;
  --line-height-p: 2.25;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: #ffffff;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.1em;
  color: var(--clr1);
  font-family: var(--f-jp);
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4,h5,h6,input,button,textarea,select,p,li,dt,dd {
  font-size: 100%;
  -webkit-text-size-adjust: none;
  margin: 0;
  padding: 0;
}

header,section,footer,aside,nav,main,article,figure,picture {
  display: block;
  padding: 0;
  margin: 0;
}

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

a { color: inherit; text-decoration: none; transition: opacity 0.3s ease; }
a:hover { opacity: 0.7; }

ul { list-style: none; margin: 0; padding: 0; }

p { line-height: var(--line-height-p); letter-spacing: inherit; word-wrap: break-word; margin-bottom: 15px; }
p:last-child { margin-bottom: 0; }

.flex { display: flex; flex-wrap: wrap; justify-content: space-between; }
.pc_only { display: block; }
.sp_only { display: none; }

/* WRAPPER */
.wrapper { position: relative; z-index: 1; background-color: #fff; }
.wrapper::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, #faf8f4 0%, #fff 30%);
  pointer-events: none;
}

/* INNER */
.inner_big { max-width: 1280px; margin: 0 auto; padding: 0 var(--wrapper); }
.inner_max { max-width: 1560px; margin: 0 auto; padding: 0 var(--wrapper); }

/* ============================================================ HEADER */
#header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,154,94,0.2);
  transition: all 0.3s;
}

.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 92px;
}

.logo img { width: 248px; height: auto; object-fit: contain; }

.gnav ul { display: flex; gap: 40px; }
.gnav ul li a {
  font-family: var(--f-en);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--main-color);
  position: relative;
}
.gnav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.gnav ul li a:hover::after { width: 100%; }
.gnav ul li a:hover { opacity: 1; }

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

.btn_reserve_header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 44px;
  padding: 0;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 44px;
  box-sizing: border-box;
  vertical-align: top;
  transition: all 0.3s;
}
.btn_reserve_header:hover { background: var(--gold-light); border-color: var(--gold-light); color: #fff; opacity: 1; }

.btn_line_header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 180px;
  height: 44px;
  padding: 0;
  background: #06C755;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 44px;
  border: 1px solid #06C755;
  box-sizing: border-box;
  vertical-align: top;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn_line_header svg { flex-shrink: 0; width: 14px; height: 14px; display: block; }
.btn_line_header:hover { background: #05a847; opacity: 1; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--main-color); transition: all 0.3s; }

.mobile_nav { display: none; position: fixed; top: 92px; left: 0; width: 100%; background: rgba(255,255,255,0.98); z-index: 999; padding: 20px 0; border-bottom: 1px solid rgba(184,154,94,0.2); }
.mobile_nav.open { display: block; }
.mobile_nav ul { padding: 0 40px; }
.mobile_nav ul li { border-bottom: 1px solid rgba(184,154,94,0.2); }
.mobile_nav ul li a { display: block; padding: 14px 0; font-size: 14px; color: var(--main-color); }

/* ============================================================ KEY / HERO */
.home_page .key {
  position: relative;
  z-index: 1;
  --height: 75vw;
  --min-height: 650px;
  --max-height: 1080px;
  height: var(--height);
  min-height: var(--min-height);
  max-height: var(--max-height);
  font-size: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.home_page .key .key_text { position: relative; width: 38%; flex-shrink: 0; overflow: hidden; z-index: 2; background-color: var(--bg-cream); height: 100%; }

.home_page .key .key_text .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.home_page .key .inner {
  position: relative;
  width: 100%;
}

.home_page .key .catch {
  display: block;
  padding-top: calc(var(--wrapper) + 40px);
  padding-left: 8%;
  padding-right: 8%;
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 3;
}

.home_page .key h2 {
  color: var(--main-color);
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: 0.56em;
  font-size: 4.2em;
  line-height: 1.6;
  font-family: var(--f-jp);
}

.home_page .key p.en {
  font-family: var(--f-en);
  font-size: 2em;
  letter-spacing: -0.02em;
  line-height: 1.333;
  color: var(--gold);
  font-style: italic;
}

.home_page .key .br_auto { display: block; }

.home_page .key .scroll-down {
  position: absolute;
  right: 12em;
  top: -7.5em;
  z-index: 1;
  width: 9.8em;
  height: 9.8em;
  border-radius: 50%;
  border: 1px solid rgba(184,154,94,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.home_page .key .scroll-down::after {
  content: "scroll";
  font-family: var(--f-en);
  font-size: 1em;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.home_page .key .scroll-down:hover { background: rgba(184,154,94,0.1); opacity: 1; }

/* ============================================================ FV LOGO ANIMATION */
.home_page .key .fv_logo_anim {
  margin-bottom: 32px;
}

.home_page .key .fv_logo_img {
  display: block;
  width: auto;
  max-width: 280px;
  height: auto;
  opacity: 0;
  animation: fvFadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

.home_page .key .fv_logo_text {
  display: block;
  font-family: var(--f-en);
  font-size: 5.2em;
  font-style: italic;
  font-weight: 400;
  color: var(--main-color);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 10px;
  overflow: hidden;
}

/* 1文字ずつのアニメーション */
.home_page .key .fv_char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: fvCharIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.08s * var(--i) + 0.3s);
}

.home_page .key .fv_space {
  width: 0.3em;
}

@keyframes fvCharIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* タグラインのフェードイン */
.home_page .key .fv_tagline {
  display: block;
  font-family: var(--f-en);
  font-size: 1.3em;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.12em;
  opacity: 0;
  animation: fvTaglineIn 1s ease forwards;
  animation-delay: 1.2s;
}

@keyframes fvTaglineIn {
  0% { opacity: 0; transform: translateX(-16px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* キャッチコピーのフェードイン */
.home_page .key .fv_catch_text {
  opacity: 0;
  animation: fvFadeUp 0.9s ease forwards;
  animation-delay: 1.5s;
}

.home_page .key .fv_sub_text {
  opacity: 0;
  animation: fvFadeUp 0.9s ease forwards;
  animation-delay: 1.8s;
}

/* FV 営業時間・アクセス情報バー */
.home_page .key .fv_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4em 2.2em;
  margin-top: 2.6em;
  opacity: 0;
  animation: fvFadeUp 0.9s ease forwards;
  animation-delay: 2.1s;
}
.home_page .key .fv_info_item {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--f-jp);
  font-size: 1.5em;
  letter-spacing: 0.08em;
  color: var(--main-color);
  white-space: nowrap;
}
.home_page .key .fv_info_icon {
  color: var(--gold);
  flex-shrink: 0;
  width: 1.4em;
  height: 1.4em;
}

@keyframes fvFadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FV画像グリッドレイアウト
   左１／３: テキストエリア
   右２／３: 3カラムの写真グリッド
   左カラム: 縦長+横長の上下2枚
   中央カラム: 全高の1枚大きな縦長
   右カラム: 横長+縦長の上下2枚
============================================================ */

.home_page .key .key_pic {
  position: relative;
  z-index: 0;
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 6px;
  padding: 0;
  pointer-events: none;
  overflow: hidden;
  align-self: stretch;
}

.home_page .key .key_pic .kp_col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  height: 100%;
}

.home_page .key .key_pic .kp_col_center {
  flex: 1.3;
}

.home_page .key .key_pic .item_pic {
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  display: block;
  min-height: 0;
}

.home_page .key .key_pic .item_pic picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home_page .key .key_pic .item_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}

.home_page .key .key_pic .item_pic:hover img { transform: scale(1.05); }

/* 女性2人写真は引きで全体表示 */
.home_page .key .key_pic .item_pic.kp_team {
  background-color: #efe7d8;
}
.home_page .key .key_pic .item_pic.kp_team img {
  object-fit: contain;
  object-position: center 30%;
}
.home_page .key .key_pic .item_pic.kp_team:hover img { transform: none; }

/* 左カラム: 上60% + 下40% */
.home_page .key .key_pic .kp_col_left .kp_tall { flex: 3 1 0; min-height: 0; }
.home_page .key .key_pic .kp_col_left .kp_short { flex: 2 1 0; min-height: 0; }

/* 中央カラム: 全高100% */
.home_page .key .key_pic .kp_col_center .kp_full { flex: 1 1 0; min-height: 0; }

/* 右カラム: 上40% + 下60% */
.home_page .key .key_pic .kp_col_right .kp_short { flex: 2 1 0; min-height: 0; }
.home_page .key .key_pic .kp_col_right .kp_tall { flex: 3 1 0; min-height: 0; }

/* PC: SP用スライドショーを非表示 */
.sp_slideshow { display: none; }

/* ============================================================ H3 HEADINGS */
.home_page h3, h3.home_page {
  position: relative;
  margin-bottom: 35px;
  color: var(--main-color);
  font-family: var(--f-jp);
  font-size: 20px;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.home_page h3 .en, h3.home_page .en {
  display: block;
  margin-bottom: 14px;
  color: var(--main-color);
  letter-spacing: 0;
  font-family: var(--f-en);
  font-size: min(5.5vw, 75px);
  line-height: 1;
  font-style: italic;
  font-weight: 400;
}

.home_page h3 .en::first-letter, h3.home_page .en::first-letter { text-transform: uppercase; }
.home_page h3.white, h3.home_page.white { color: #fff; }
.home_page h3.white .en, h3.home_page.white .en { color: #fff; }

/* ============================================================ BUTTONS */
.btn { display: inline-block; }

.btn.style01 a, .btn.style02 a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-family: var(--f-en);
  transition: all 0.3s;
}

.btn.style01 a { border: 1px solid var(--gold); color: var(--main-color); background: transparent; }
.btn.style01 a::after { content: "→"; font-size: 12px; transition: transform 0.3s; }
.btn.style01 a:hover { background: var(--gold); color: #fff; opacity: 1; }
.btn.style01 a:hover::after { transform: translateX(4px); }

.btn.style02 a { border: 1px solid rgba(255,255,255,0.6); color: #fff; }
.btn.style02 a:hover { background: rgba(255,255,255,0.2); opacity: 1; }

.btn-group { margin-top: 40px; }
.center_btn { text-align: center; margin-top: 60px; }

/* ============================================================ NEWS */
.idx_news { padding: 56px 0 100px; }
.idx_news h3 { margin-bottom: 3.7em; font-size: 16px; }
.idx_news h3 .en { margin-bottom: 0.54em; font-size: 2.25em; color: var(--gold); letter-spacing: 0; }

.idx_news .box_news {
  --size-width-date: 95px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 80px 110px;
  margin-left: 80px;
}

.idx_news .box_news::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0; top: 0;
  width: 100vw; height: 100%;
  background-color: rgba(249,246,240,0.85);
}

.idx_news .box_news .box_title { width: 137px; }
.idx_news .box_news .box_list { padding-left: 81px; width: calc(100% - 137px); }
.idx_news .box_news .box_list li { border-bottom: 1px solid rgba(115,113,113,0.3); }
.idx_news .box_news .box_list li:first-child { border-top: 1px solid rgba(115,113,113,0.3); }

.idx_news .box_news .box_list li a {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 28px 30px 28px 0;
  font-size: 15px;
  color: var(--clr1);
  transition: all 0.3s;
}

.idx_news .box_news .box_list li a::after {
  content: "›";
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--gold);
  transition: right 0.3s;
}

.idx_news .box_news .box_list li a:hover { color: var(--cl-hv1); opacity: 1; }
.idx_news .box_news .box_list li a:hover::after { right: 5px; }

.idx_news .box_news .box_list li a .date { width: var(--size-width-date); font-family: var(--f-en); color: var(--gold); letter-spacing: 0; }
.idx_news .box_news .box_list li a .title { width: calc(100% - var(--size-width-date)); padding-left: 43px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================================================ ACCESS */
.idx02 { padding: 50px 0 134px; }
.idx02 .inner_big { max-width: 1480px; padding: 0; }
.idx02 .idx02_box { justify-content: flex-start; }
.idx02 .idx02_box > .left { position: relative; width: 50%; max-width: 706px; }
.idx02 .idx02_box > .right { margin-left: 109px; width: calc(50% - 109px); max-width: 462px; padding: 50px 0; }

.idx02 .idx_map { width: 100%; height: 600px; }
.idx02 .idx_map iframe { width: 100%; height: 100%; border: 0; }

.idx02 .idx_logo { margin-bottom: 40px; }
.idx02 .address { margin-bottom: 13px; line-height: 1.75; font-size: 14px; }
.idx02 .tel { font-size: 18px; margin-bottom: 40px; font-family: var(--f-en); color: var(--main-color); }
.idx02 .tel a { color: var(--main-color); }
.idx02 .details { margin-bottom: 50px; }
.idx02 .details dl { display: grid; grid-template-columns: 80px 1fr; gap: 8px 16px; font-size: 14px; line-height: 1.75; }
.idx02 .details dl dt { font-family: var(--f-en); font-size: 13px; color: var(--gold); letter-spacing: 0.05em; }

/* ============================================================ MESSAGE */
.idx03 {
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fffdf8 0%, #faf6ed 100%);
}
/* 光が差し込んだような柔らかな陰影 */
.idx03::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 92% -8%, rgba(212,184,122,0.22) 0%, rgba(212,184,122,0) 60%),
    linear-gradient(118deg, transparent 38%, rgba(255,251,240,0.85) 52%, rgba(255,251,240,0) 68%),
    linear-gradient(118deg, transparent 60%, rgba(212,184,122,0.10) 70%, transparent 80%);
}
.idx03 .inner_big { position: relative; z-index: 1; }

.idx03 h3 .en {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.idx03 h3 .en .note {
  margin-left: 3.3em;
  padding-top: 0.7em;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-style: normal;
  font-family: var(--f-jp);
}

.idx03 h3 { margin-left: -4px; margin-bottom: 85px; }
.idx03 .idx_box { justify-content: space-between; align-items: flex-start; gap: 60px; }

.idx03 .idx_box .box_content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  width: calc(55% - 30px);
  max-width: 560px;
}

.idx03 .idx_box .box_content .content p { margin-bottom: 28px; font-size: 14px; line-height: 2; }

.idx03 .box_name { margin-top: 36px; display: flex; align-items: center; gap: 16px; }
.idx03 .box_name .name { display: flex; align-items: center; gap: 16px; }
.idx03 .box_name .name .txt-sm { font-size: 12px; letter-spacing: 0.1em; color: var(--gold); }
.idx03 .box_name .name .txt-big { font-size: 22px; letter-spacing: 0.2em; color: var(--main-color); }

.idx03 .idx_box .box_img { position: relative; z-index: 1; width: 66%; max-width: 763px; }
.idx03 .idx_box .box_img .img01 { position: relative; z-index: 2; margin-left: auto; margin-right: 28px; width: 60%; }
.idx03 .idx_box .box_img .img02 { position: relative; z-index: 1; margin: -30px 0 50px auto; width: 85%; }
.idx03 .idx_box .box_img .img03 { margin-left: 0; margin-right: auto; width: 70%; }
.idx03 .idx_box .box_img img { width: 100%; height: auto; object-fit: cover; display: block; }

/* 代表写真 */
.idx03 .idx_box .owner_img { width: 32%; max-width: 320px; flex-shrink: 0; display: flex; align-items: flex-start; justify-content: center; }
.idx03 .idx_box .owner_img .img01 { width: 100%; margin: 0; border-radius: 4px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.idx03 .idx_box .owner_img img { width: 100%; height: auto; object-fit: cover; display: block; border-radius: 4px; }

/* ============================================================ CONCEPT DARK */
.idx04 {
  padding: 140px 0 134px;
  background: linear-gradient(135deg, #fbf8f2 0%, #f4ede1 55%, #fcf7ee 100%);
  position: relative;
  overflow: hidden;
}

.idx04::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 25% 30%, rgba(255,255,255,0.9) 0%, transparent 55%),
                    radial-gradient(ellipse at 75% 70%, rgba(212,184,122,0.12) 0%, transparent 55%),
                    radial-gradient(circle at 60% 20%, rgba(255,255,255,0.7) 0%, transparent 40%);
  pointer-events: none;
}

.idx04 p { color: var(--clr1); }
/* 本文コンテンツを装飾レイヤー（::before の白グロー / ::after の透かし）より前面に出し、
   上部テキストが白グローで薄く見えるのを防止して全段落を均一な濃さにする */
.idx04 .inner_big { position: relative; z-index: 1; }
.idx04 .idx_box { align-items: center; }
.idx04 .idx_box > .left, .idx04 .idx_box > .right { width: calc(50% - 15px); }
.idx04 .idx_box > .right { padding-top: 40px; max-width: 463px; }

/* === 新コンセプトレイアウト：タイトル→丸→テキスト 縦並び中央揃え === */
.idx04 .idx04_title { text-align: center; margin-bottom: 50px; }

/* 円の周りの装飾ステージ */
.idx04 .circle_stage {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto 30px;
  padding: 40px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.idx04 .circle_gr { position: relative; z-index: 3; margin: 0; }

/* 装飾：添付SVG（コンセプト用ボタニカル・縁が円に沿う配置） */
.idx04 .circle_stage .deco_concept {
  position: absolute !important;
  top: 80% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 420px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  user-select: none;
  -webkit-user-drag: none;
}

/* 背景アーク */
.idx04 .deco_arc {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  animation: deco_arc_rotate 60s linear infinite;
}
@keyframes deco_arc_rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 輝き（スパークル） */
.idx04 .deco_sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle, #e2c98a 0%, rgba(226,201,138,0) 70%);
  border-radius: 50%;
  opacity: 0.85;
}
.idx04 .deco_sparkle::before {
  content: "";
  position: absolute;
  inset: -8px;
  background:
    linear-gradient(to bottom, transparent 40%, #e2c98a 50%, transparent 60%) center / 1px 100% no-repeat,
    linear-gradient(to right, transparent 40%, #e2c98a 50%, transparent 60%) center / 100% 1px no-repeat;
  opacity: 0.7;
}
.idx04 .deco_sparkle--1 { top: 14%; left: 18%; animation: deco_twinkle 3s ease-in-out infinite; }
.idx04 .deco_sparkle--2 { top: 22%; right: 22%; animation: deco_twinkle 3.4s ease-in-out infinite 0.6s; }
.idx04 .deco_sparkle--3 { bottom: 36%; left: 8%; animation: deco_twinkle 2.8s ease-in-out infinite 1.1s; width: 4px; height: 4px; }
.idx04 .deco_sparkle--4 { bottom: 30%; right: 10%; animation: deco_twinkle 3.2s ease-in-out infinite 1.8s; width: 4px; height: 4px; }
.idx04 .deco_sparkle--5 { top: 50%; right: 38%; animation: deco_twinkle 2.6s ease-in-out infinite 0.3s; width: 5px; height: 5px; }
@keyframes deco_twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* タグライン下のスペーサー（リース下の余白調整） */
.idx04 .circle_stage { margin-bottom: 50px; }

/* === メイン円（足元から全身へ）をゴールド塗りに === */
.idx04 .circle.circle01 {
  background: radial-gradient(circle at 35% 30%, rgba(255,247,225,0.95) 0%, rgba(226,201,138,0.85) 60%, rgba(184,154,94,0.65) 100%) !important;
  border-color: rgba(184,154,94,0.7) !important;
  box-shadow: 0 12px 36px rgba(184,154,94,0.28);
}
.idx04 .circle.circle01 .ttl {
  color: #6b5a2e;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}
.idx04 .circle.circle01::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(184,154,94,0.5);
  pointer-events: none;
}

.idx04 .concept_text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.idx04 .concept_text p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--clr1);
  margin-bottom: 32px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.idx04 .concept_text p:last-child { margin-bottom: 0; }

/* 強調フレーズ（"足元から全身へ広がる心地よさ" / "堕ちる感覚"） */
.idx04 .concept_em {
  color: var(--cl-hv1);
  font-weight: 600;
  font-size: 1.12em;
  letter-spacing: 0.04em;
}

.idx04 .concept_btn { text-align: center; margin-top: 50px; display: flex; justify-content: center; }

.circle_gr { position: relative; width: 420px; height: 420px; }

.circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px; height: 210px;
  border: 1px solid rgba(184,154,94,0.45);
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.85) 0%, rgba(249,246,240,0.55) 70%);
  box-shadow: 0 8px 28px rgba(184,154,94,0.12);
  transition: all 0.5s ease;
  cursor: pointer;
}

.circle.active { background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95) 0%, rgba(212,184,122,0.22) 100%); border-color: var(--gold); }

.circle .ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--clr1);
  transition: all 0.5s ease;
}

.circle.active .ttl { color: var(--cl-hv1); }

/* 「足元から全身へ」を強調 */
.circle01 .ttl { font-size: 21px; font-weight: 600; color: var(--main-color); letter-spacing: 0.12em; }
.circle01.active .ttl { color: var(--cl-hv1); }

.circle01 { left: 20px; top: 110px; }
.circle02 { right: 20px; top: 20px; }
.circle03 { bottom: 20px; right: 60px; }

.idx04 .content p { font-size: 14px; line-height: 2; color: var(--clr1); margin-bottom: 20px; }

/* コンセプト本文内「足元から全身へ。」を大きく目立たせる */
.idx04 .content .concept_lead {
  font-size: 1.55em;
  font-weight: 600;
  color: var(--cl-hv1);
  letter-spacing: 0.04em;
}

/* ============================================================ GALLERY */
.idx05 {
  padding: 331px 0 176px;
  position: relative;
  overflow: hidden;
}

.idx05 h3 { font-size: calc(var(--ttl_size) + 10px); text-align: center; }
.idx05 h3 .en { margin-bottom: 8px; font-size: 12px; letter-spacing: 0.05em; font-style: normal; }
.idx05 .inner_max { position: relative; z-index: 1; }

@keyframes fvbg {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.idx05 .txt_slide {
  position: absolute;
  top: -7.3em;
  left: calc(50% - 50vw);
  z-index: -1;
  font-size: min(0.9vw, 10px);
  overflow: hidden;
  white-space: nowrap;
  width: 200vw;
}

.idx05 .txt_slide .txt {
  animation: fvbg 30s linear 0s infinite;
  display: inline-block;
  font-family: var(--f-en);
  font-size: min(12vw, 160px);
  color: rgba(184,154,94,0.06);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.idx05 .img_gr {
  position: absolute;
  z-index: -1;
  top: -16.3em; left: 0;
  width: 100%; height: 70.5em;
  font-size: min(0.7vw, 10px);
}

.idx05 .img_gr .img_item { position: absolute; overflow: hidden; }
.idx05 .img_gr .img_item img { width: 100%; height: 100%; object-fit: cover; }

.idx05 .img_gr .img01 { top: 0; left: -8.8em; width: 45.9em; height: 39em; }
.idx05 .img_gr .img02 { bottom: 0; left: 7.2em; width: 21.8em; height: 24em; }
.idx05 .img_gr .img03 { right: -0.9em; bottom: 9.4em; width: 37.9em; height: 28em; }

.idx05 .idx_box { position: relative; z-index: 1; text-align: center; max-width: 600px; margin: 0 auto; }
.idx05 .idx_box .content p { text-align: center; font-size: 14px; line-height: 2; }

/* ============================================================ MENU */
.idx06 { padding: 100px 0 120px; background: var(--cream); }
.idx06 h3 { margin-bottom: 60px; }

.idx06 .btn-group.flex_gr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 0;
}

.menu_item { background: #fff; transition: all 0.3s; position: relative; display: flex; flex-direction: column; }
.menu_item::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s ease; }
.menu_item:hover::after { width: 100%; }

.menu_inner { padding: 40px 32px; position: relative; overflow: hidden; display: flex; flex-direction: column; flex: 1; text-align: center; align-items: center; }

.menu_num { font-family: var(--f-en); font-size: 72px; font-weight: 400; color: rgba(184,154,94,0.1); position: absolute; top: 10px; right: 16px; line-height: 1; margin: 0; }

.menu_item h4 { font-size: 16px; letter-spacing: 0.15em; color: var(--main-color); margin-bottom: 16px; font-weight: 500; font-family: var(--f-jp); position: relative; z-index: 1; }
.menu_desc { font-size: 13px; line-height: 1.8; color: var(--clr1); margin-bottom: 20px; position: relative; z-index: 1; }
.menu_price { font-family: var(--f-en); font-size: 20px; color: var(--gold); letter-spacing: 0.05em; margin: 0; position: relative; z-index: 1; }

/* ============================================================ HOW TO USE */
.idx_flow {
  padding: 100px 0 120px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.idx_flow::before {
  content: "Flow";
  position: absolute;
  top: -10px;
  right: -20px;
  font-family: var(--f-en);
  font-size: clamp(80px, 12vw, 180px);
  font-style: italic;
  color: rgba(184,154,94,0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.idx_flow .inner_big { position: relative; z-index: 1; }
.idx_flow h3 { margin-bottom: 60px; }
.flow_steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto 60px;
}
.flow_step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: #fff;
  padding: 36px 40px;
  border: 1px solid rgba(184,154,94,0.22);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(74,66,40,0.04);
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
.flow_step:hover {
  box-shadow: 0 10px 32px rgba(184,154,94,0.18);
  border-color: rgba(184,154,94,0.55);
  transform: translateX(4px);
}
.flow_step_num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(184,154,94,0.32);
  flex-shrink: 0;
  min-width: 64px;
}
.flow_step_body { flex: 1; padding-top: 6px; }
.flow_step_title {
  font-size: 17px;
  font-weight: 500;
  color: var(--main-color);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184,154,94,0.2);
}
.flow_step_desc {
  font-size: 14px;
  line-height: 1.95;
  color: var(--clr1);
  opacity: 0.85;
  margin: 0;
}
.flow_arrow {
  text-align: center;
  color: var(--gold);
  font-size: 18px;
  padding: 14px 0;
  opacity: 0.5;
}

/* ============================================================ THERAPIST */
.idx07 { padding: 100px 0 120px; }
.idx07 h3 { margin-bottom: 60px; }
.idx07 .idx_box { align-items: flex-start; gap: 80px; }
.idx07 .box_img { width: 45%; max-width: 516px; overflow: hidden; }
.idx07 .box_img img { width: 100%; height: auto; object-fit: cover; transition: transform 0.6s ease; }
.idx07 .box_img:hover img { transform: scale(1.03); }
.idx07 .box_content { width: calc(55% - 80px); padding-top: 60px; }
.idx07 .box_content .content p { font-size: 14px; line-height: 2; margin-bottom: 24px; }

/* ============================================================ RECRUIT */
.idx_recruit {
  padding: 100px 0 120px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.idx_recruit::before {
  content: "Recruit";
  position: absolute;
  font-family: var(--f-en);
  font-size: 200px;
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.idx_recruit h3 { color: #fff; }
.idx_recruit h3 .en { color: #fff; }
.idx_recruit .recruit_box { align-items: center; gap: 80px; justify-content: center; }
.idx_recruit .recruit_content { width: 100%; max-width: 720px; margin: 0 auto; text-align: center; }
.idx_recruit .recruit_content .recruit_list { display: inline-block; text-align: left; margin: 0 auto 24px; }
.idx_recruit .recruit_content .btn-group { justify-content: center; }

.idx_recruit .recruit_catch { font-size: 24px; letter-spacing: 0.1em; color: var(--gold-light); margin-bottom: 32px; line-height: 1.6; font-weight: 400; }
.idx_recruit .recruit_content p { font-size: 14px; line-height: 2; color: rgba(255,255,255,0.75); margin-bottom: 16px; }

.idx_recruit .recruit_list { margin: 24px 0 40px; }
.idx_recruit .recruit_list li { font-size: 13px; color: rgba(255,255,255,0.7); padding: 10px 0 10px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; }
.idx_recruit .recruit_list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

.idx_recruit .recruit_img { width: calc(50% - 40px); overflow: hidden; }
.idx_recruit .recruit_img img { width: 100%; height: auto; object-fit: cover; transition: transform 0.6s ease; }
.idx_recruit .recruit_img:hover img { transform: scale(1.03); }

/* Recruitセクション内のボタンは白文字 */
.idx_recruit .btn.style01 a { color: #fff; border-color: rgba(255,255,255,0.6); }
.idx_recruit .btn.style01 a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ============================================================ CONTACT */
.idx_contact { padding: 100px 0 120px; background: var(--cream); }
.idx_contact h3 { margin-bottom: 60px; }
/* ---- Reserve (HotPepper) ---- */
.reserve_hotpepper { text-align: center; padding: 20px 0 40px; }
.reserve_lead {
  font-size: 15px;
  line-height: 2;
  color: var(--clr1);
  margin-bottom: 48px;
  letter-spacing: 0.1em;
}
.reserve_btn_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

/* LINE Button */
.btn_line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  padding: 18px 40px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  font-family: var(--f-jp);
  border: 2px solid #06C755;
}
.btn_line:hover {
  background: #fff;
  color: #06C755;
  opacity: 1;
}

.btn_hotpepper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  background: #e2001a;
  color: #fff;
  font-family: var(--f-jp);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid #e2001a;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(226,0,26,0.18);
  min-width: 280px;
}
.btn_hotpepper:hover {
  background: #fff;
  color: #e2001a;
}
.btn_hotpepper svg { flex-shrink: 0; }
.btn_line_reserve {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  background: #06C755 !important;
  color: #fff !important;
  font-family: var(--f-jp);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid #06C755 !important;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(6,199,85,0.18);
  min-width: 280px;
}
.btn_line_reserve:hover {
  background: #fff !important;
  color: #06C755 !important;
  opacity: 1;
}
.btn_line_reserve svg { fill: currentColor; flex-shrink: 0; }
.reserve_note {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.08em;
}

/* ============================================================ FOOTER */
footer { background: #fff; border-top: 1px solid rgba(184,154,94,0.2); }
.footer_inner { max-width: 1480px; margin: 0 auto; }
.footer_top { align-items: stretch; }
.footer_left { width: 50%; }
.footer_map { width: 100%; height: 400px; }
.footer_map iframe { width: 100%; height: 100%; border: 0; }
.footer_right { width: 50%; padding: 60px 80px; }
.ft_logo { margin-bottom: 32px; }
.ft_logo img { width: 70px; object-fit: contain; }
.ft_address { font-size: 13px; line-height: 1.75; margin-bottom: 16px; }
.ft_tel { font-family: var(--f-en); font-size: 16px; color: var(--main-color); margin-bottom: 32px; }
.ft_tel a { color: var(--main-color); }
.ft_open dl { display: grid; grid-template-columns: 70px 1fr; gap: 8px 16px; font-size: 13px; }
.ft_open dt { font-family: var(--f-en); font-size: 12px; color: var(--gold); }

.footer_nav { padding: 60px 80px; border-top: 1px solid rgba(184,154,94,0.15); gap: 60px; justify-content: flex-start; }
.ft_nav_ttl { font-family: var(--f-en); font-size: 13px; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 20px; font-style: italic; }
.footer_nav_col ul li { margin-bottom: 10px; }
.footer_nav_col ul li a { font-size: 13px; color: var(--clr1); letter-spacing: 0.05em; }
.footer_nav_col ul li a:hover { color: var(--gold); opacity: 1; }

.footer_bottom { padding: 24px 80px; border-top: 1px solid rgba(184,154,94,0.15); text-align: center; }
.copyright { font-family: var(--f-en); font-size: 12px; color: var(--gold); letter-spacing: 0.1em; margin: 0; }

/* ============================================================ FIXED RESERVE BUTTON */
.circle-bn-gr { position: fixed; bottom: 40px; right: 40px; z-index: 100; }

.circle_bn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(74,66,40,0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  text-align: center;
  transition: all 0.3s;
}

.circle_bn:hover { background: var(--gold); transform: scale(1.05); opacity: 1; }
.circle_bn_inner { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.circle_bn_txt { font-family: var(--f-en); font-size: 11px; letter-spacing: 0.05em; line-height: 1.4; }
.circle_bn_arr { font-size: 14px; transition: transform 0.3s; }
.circle_bn:hover .circle_bn_arr { transform: translateX(3px); }

/* ============================================================ SCROLL ANIMATION */
.scroll_img { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.scroll_img.visible { opacity: 1; transform: translateY(0); }

/* ============================================================ RESPONSIVE */
@media only screen and (max-width: 1280px) and (min-width: 769px) {
  .home_page .key { font-size: 0.8vw; --min-height: 520px; }
  .idx_news .box_news { padding: clamp(40px, 6.3vw, 80px); margin-left: clamp(60px, 4.7vw, 60px); }
  .idx02 .idx02_box { gap: min(5vw, 60px); }
  .idx06 .btn-group.flex_gr { grid-template-columns: repeat(2, 1fr); }
}

@media only screen and (max-width: 768px) {
  :root { --wrapper: 20px; }
  .pc_only { display: none !important; }
  .sp_only { display: block !important; }
  .hamburger { display: flex; }
  .gnav { display: none; }
  .btn_reserve_header { display: none; }
  .btn_line_header { display: none; }
  .header_top { padding: 0 20px; height: 76px; }
  .logo img { width: 196px; }

  /* SP: FV全体をフルスクリーンスライドショーに */
  .home_page .key {
    position: relative;
    height: 100svh;
    min-height: 500px;
    max-height: none;
    flex-direction: row;
    padding-top: 0;
    overflow: hidden;
  }

  /* SP: key_textをスライドショーの上にオーバーレイ */
  .home_page .key .key_text {
    position: absolute;
    inset: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
  }
  .home_page .key .key_text ul { list-style: none; margin: 0; padding: 0; width: 100%; }
  .home_page .key .key_text .item { min-height: auto; background: transparent; width: 100%; }
  .home_page .key .key_text .inner { width: 100%; }
  .home_page .key .catch {
    padding: 0 24px 48px;
    background: transparent;
  }

  /* SP: FV内のロゴは非表示（ヘッダーにロゴがあるため重複を避ける） */
  .home_page .key .fv_logo_anim { display: none; }
  .home_page .key h2 { font-size: 7.5vw; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
  .home_page .key p.en { font-size: 3.5vw; color: rgba(255,255,255,0.85); }
  .home_page .key .fv_info {
    margin-top: 18px;
    gap: 10px 20px;
  }
  .home_page .key .fv_info_item {
    font-size: 13px;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  }
  .home_page .key .fv_info_icon { color: var(--gold-light); }

  /* SP: key_picをフルスクリーン背景に */
  .home_page .key .key_pic {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    flex: none;
    z-index: 1;
    display: block;
    padding: 0;
    pointer-events: none;
  }

  /* SP: PC用カラムを非表示 */
  .home_page .key .key_pic .kp_col { display: none; }

  /* SP: スライドショーをフルスクリーンで表示 */
  .sp_slideshow {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  /* スライドショーの上に暗いグラデーションオーバーレイ（テキスト可読性向上） */
  .sp_slideshow::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
  }
  .sp_slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #efe7d8;
  }
  /* 女性2人の写真は引き表示（全体表示） */
  .sp_slide.sp_slide_team {
    background-size: contain;
    background-position: center 30%;
    background-color: #efe7d8;
  }
  .sp_slide.active { opacity: 1; z-index: 2; }
  .sp_slide_dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
  }
  .sp_dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    padding: 0;
  }
  .sp_dot.active { background: #fff; }

  /* SP: FV中央ロゴオーバーレイ */
  .sp_fv_logo_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* ロゴ背後のラジアルグラデーション暗がりは削除 */
  .sp_fv_logo_overlay::before { display: none; }
  .sp_fv_logo {
    width: min(85vw, 480px);
    max-width: none;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6)) drop-shadow(0 6px 22px rgba(0,0,0,0.6));
    animation: fadeInLogo 1.2s ease 0.5s both;
  }
  @keyframes fadeInLogo {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }

  .home_page .key .scroll-down { display: none; }

  .idx_news .box_news { padding: 40px 20px; margin-left: 0; flex-direction: column; }
  .idx_news .box_news .box_title { width: 100%; margin-bottom: 24px; }
  .idx_news .box_news .box_list { width: 100%; padding-left: 0; }
  .idx_news .box_news .box_list li a .title { padding-left: 16px; }

  .idx02 .inner_big { padding: 0; }
  .idx02 .idx02_box { flex-direction: column; }
  .idx02 .idx02_box > .left { width: 100%; }
  .idx02 .idx02_box > .right { width: 100%; margin-left: 0; padding: 40px 20px; }
  .idx02 .idx_map { height: 300px; }

  .idx03 .idx_box { flex-direction: column-reverse; }
  .idx03 .idx_box .box_content { width: 100%; margin-right: 0; padding-top: 40px; }
  .idx03 .idx_box .box_img { width: 100%; }
  .idx03 .idx_box .owner_img { width: 75%; max-width: 280px; margin: 0 auto; }
  .idx03 h3 { margin-bottom: 40px; }
  .idx03 h3 .en .note { display: none; }

  .idx04 { padding: 80px 20px; }
  .idx04 .idx_box { flex-direction: column; }
  .idx04 .idx_box > .left, .idx04 .idx_box > .right { width: 100%; }
  .idx04 .idx04_title { margin-bottom: 40px; }
  .idx04 .concept_text p { font-size: 15px; line-height: 2.05; margin-bottom: 26px; }
  .idx04 .concept_em { font-size: 1.1em; }
  .idx04 .concept_btn { margin-top: 36px; }
  .idx04 .circle_stage { padding: 30px 0 10px; max-width: 380px; }
  .idx04 .circle_stage .deco_concept { width: 300px; top: 80% !important; }
  .idx04 .deco_arc { width: 360px; height: 360px; }
  .idx04 .circle_stage { margin-bottom: 36px; }
  .circle_gr { width: 300px; height: 300px; margin: 0 auto 40px; }
  .circle { width: 150px; height: 150px; }
  .circle .ttl { font-size: 13px; }
  .circle01 { left: 10px; top: 75px; }
  .circle02 { right: 10px; top: 10px; }
  .circle03 { bottom: 10px; right: 40px; }

  .idx05 { padding: 80px 0; }
  .idx05 .txt_slide { display: none; }
  .idx05 .img_gr { display: none; }

  .idx06 { padding: 80px 20px; }
  .idx06 .btn-group.flex_gr { grid-template-columns: 1fr; gap: 16px; }

  .idx_flow { padding: 80px 0; }
  .flow_step { padding: 22px 16px; gap: 14px; border-radius: 6px; }
  .flow_step_num { width: 44px; height: 44px; min-width: 44px; font-size: 15px; }
  .flow_step_title { font-size: 15px; margin-bottom: 10px; padding-bottom: 10px; }
  .flow_step_desc { font-size: 13px; letter-spacing: 0.02em; }
  .flow_arrow { font-size: 16px; padding: 10px 0; }
  .idx07 { padding: 80px 20px; }
  .idx07 .idx_box { flex-direction: column; gap: 40px; }
  .idx07 .box_img { width: 100%; }
  .idx07 .box_content { width: 100%; padding-top: 0; }

  .idx_recruit { padding: 80px 20px; }
  .idx_recruit .recruit_box { flex-direction: column; gap: 40px; }
  .idx_recruit .recruit_content { width: 100%; }
  .idx_recruit .recruit_img { width: 100%; }

  .idx_contact { padding: 80px 20px; }
  .reserve_btn_wrap { flex-direction: column; align-items: center; gap: 14px; }
  .btn_hotpepper,
  .btn_line_reserve { width: 100%; max-width: 360px; padding: 18px 24px; font-size: 14px; }

  .footer_top { flex-direction: column; }
  .footer_left { width: 100%; }
  .footer_map { height: 250px; }
  .footer_right { width: 100%; padding: 40px 20px; }
  .footer_nav { padding: 40px 20px; flex-direction: column; gap: 32px; }
  .footer_bottom { padding: 20px; }

  .circle-bn-gr { bottom: 20px; right: 20px; }
  .circle_bn { width: 80px; height: 80px; }
  .circle_bn_txt { font-size: 9px; }

  .inner_big { padding: 0 20px; }
  .inner_max { padding: 0 20px; }
  .home_page h3 .en { font-size: 40px; }
  .home_page h3 { font-size: 16px; }
}

/* ============================================================
   DESIGN ENHANCEMENTS LAYER
   既存スタイルを尊重しつつ、装飾性・視認性を向上
============================================================ */

/* ---------- セクションタイトルのオーナメント ---------- */
.home_page h3 .en, h3.home_page .en {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.home_page h3 .en::after, h3.home_page .en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.7;
}
.idx_recruit h3 .en::after {
  background: linear-gradient(90deg, var(--gold-light) 0%, transparent 100%);
}

/* ---------- 共通: セクション内オーナメント（◇）---------- */
.section_ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 24px;
  max-width: 200px;
  color: var(--gold);
  opacity: 0.55;
}
.section_ornament::before,
.section_ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.section_ornament_mark {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

/* ---------- NEWS: 装飾的な左バー ---------- */
.idx_news .box_news::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 56%;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.55;
}
.idx_news .box_news .box_list li a .date::before {
  content: "—";
  margin-right: 6px;
  color: var(--gold);
  opacity: 0.5;
}

/* ---------- MESSAGE: オーナー画像にゴールド枠フレーム ---------- */
.idx03 .idx_box .owner_img { position: relative; }
.idx03 .idx_box .owner_img::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  border-radius: 4px;
}
.idx03 .idx_box .owner_img .img01 { position: relative; z-index: 1; }

/* ---------- CONCEPT: 円形装飾の強化 ---------- */
.idx04 { position: relative; }
.idx04::after {
  content: "Concept";
  position: absolute;
  bottom: 24px;
  right: 40px;
  font-family: var(--f-en);
  font-style: italic;
  font-size: clamp(80px, 11vw, 180px);
  color: rgba(184,154,94,0.12);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.circle_gr::before {
  content: "";
  position: absolute;
  inset: -30px;
  border: 1px dashed rgba(184,154,94,0.3);
  border-radius: 50%;
  animation: rotate_slow 60s linear infinite;
  pointer-events: none;
}
@keyframes rotate_slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color 0.5s ease;
}
.circle.active::after { border-color: rgba(184,154,94,0.35); }

/* ---------- MENU: カード装飾の強化 ---------- */
.menu_item {
  border: 1px solid rgba(184,154,94,0.15);
  overflow: hidden;
}
.menu_item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(184,154,94,0.0) 0%, rgba(184,154,94,0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.menu_item:hover::before { opacity: 1; }
.menu_item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(74,66,40,0.08); }
.menu_inner { padding: 44px 32px 36px; }
.menu_item h4 { padding-bottom: 12px; border-bottom: 1px solid rgba(184,154,94,0.2); }
.menu_price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  position: relative;
  font-family: 'Lato', 'Noto Sans JP', sans-serif !important;
  letter-spacing: 0;
  justify-content: center;
}
.menu_price .menu_min {
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.menu_price .menu_unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-right: 6px;
}
.menu_price .menu_price_amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.menu_item--pickup .menu_price .menu_min,
.menu_item--pickup .menu_price .menu_price_amount {
  color: var(--cl-hv1);
}

/* ---------- MENU: 施術内容リスト（アイコングリッド） ---------- */
.menu_includes {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(184,154,94,0.3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 6px;
}
.menu_includes li {
  font-family: var(--f-jp);
  font-size: 10.5px;
  line-height: 1.35;
  color: var(--clr1);
  background: transparent;
  border: none;
  padding: 0;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.menu_includes .micon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(184,154,94,0.4);
  background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(249,246,240,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89a5e;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.menu_includes .micon svg {
  width: 29px;
  height: 29px;
  display: block;
}
.menu_item:hover .menu_includes .micon {
  border-color: rgba(184,154,94,0.7);
  background: linear-gradient(135deg, rgba(255,247,225,0.9) 0%, rgba(226,201,138,0.3) 100%);
  transform: translateY(-2px);
}
.menu_includes .mlabel {
  font-size: 12px;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
}
/* 「肩・デコルテ」を1行に保つ（・での折返し防止） */
.menu_includes .mlabel .mlabel_nw { white-space: nowrap; }
/* イチオシ（03）はピンクトーン */
.menu_item--pickup .menu_includes .micon {
  color: var(--cl-hv1);
  border-color: rgba(201,117,133,0.4);
}

/* ---------- MENU 04: Bespoke Experience ---------- */
.menu_item--bespoke .menu_desc--bespoke {
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.menu_item--bespoke .bespoke_em {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 1.05em;
  margin-top: 4px;
}
.menu_item--bespoke .menu_inner::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,154,94,0.5), transparent);
  margin: 0 auto 14px;
}
.menu_item--bespoke .menu_price {
  margin-top: 22px;
}

/* ---------- MENU: コース写真 ---------- */
.menu_photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.menu_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.menu_item:hover .menu_photo img { transform: scale(1.05); }

/* ---------- MENU: イチオシカード ---------- */
.menu_item--pickup {
  border-color: var(--gold) !important;
  box-shadow: 0 12px 34px rgba(184,154,94,0.22);
}
.menu_item--pickup .menu_inner { padding-top: 44px; }
.menu_item--pickup .menu_includes li {
  background: rgba(184,154,94,0.14);
  border-color: rgba(184,154,94,0.3);
}
.menu_badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  font-family: var(--f-jp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 8px 18px;
  box-shadow: 0 4px 14px rgba(184,154,94,0.35);
}
.menu_badge::before {
  content: "★";
  font-size: 11px;
  line-height: 1;
}

/* ---------- FLOW: 矢印周りの装飾線 ---------- */
.flow_arrow {
  position: relative;
}
.flow_arrow::before,
.flow_arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.flow_arrow::before { left: calc(50% - 56px); }
.flow_arrow::after { right: calc(50% - 56px); }

/* ---------- SALON GALLERY: 装飾フレーム ---------- */
.idx05 .img_gr .img_item { position: relative; }
.idx05 .img_gr .img_item::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  z-index: 1;
  pointer-events: none;
  transition: inset 0.5s ease;
}
.idx05 .img_gr .img_item:hover::before { inset: 14px; }

/* ---------- THERAPIST: 画像にラインフレーム ---------- */
.idx07 .box_img { position: relative; }
.idx07 .box_img::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

/* ---------- RECRUIT: リストアイコンを線+ドットに ---------- */
.idx_recruit .recruit_list li {
  padding-left: 28px;
  transition: padding-left 0.3s, color 0.3s;
}
.idx_recruit .recruit_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.idx_recruit .recruit_list li:hover { color: rgba(255,255,255,0.95); padding-left: 36px; }
.idx_recruit .recruit_list li:hover::before { width: 26px; }
.idx_recruit .recruit_catch {
  position: relative;
  padding-bottom: 28px;
}
.idx_recruit .recruit_catch::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

/* ---------- RESERVE: ヘッダーセクションを際立たせる ---------- */
.idx_contact { position: relative; overflow: hidden; }
.idx_contact::before {
  content: "Reserve";
  position: absolute;
  top: 40px;
  right: -10px;
  font-family: var(--f-en);
  font-style: italic;
  font-size: clamp(80px, 12vw, 200px);
  color: rgba(184,154,94,0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.idx_contact .inner_big { position: relative; z-index: 1; }
.reserve_btn_wrap { gap: 20px; }

/* ---------- FOOTER: 装飾の改善 ---------- */
.ft_logo img { width: 200px; }
.footer_right {
  position: relative;
  padding: 60px 80px;
}
.footer_right::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ---------- 固定予約ボタン: 装飾リング ---------- */
.circle_bn {
  position: relative;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.circle_bn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(184,154,94,0.5);
  animation: pulse_ring 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse_ring {
  0% { opacity: 0.8; transform: scale(0.95); }
  50% { opacity: 0.3; transform: scale(1.08); }
  100% { opacity: 0.8; transform: scale(0.95); }
}

/* ---------- スクロールアニメーション微調整 ---------- */
.scroll_img { transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }

/* ---------- RECRUIT PAGE: 強化 ---------- */
.target_item {
  border: 1px solid rgba(184,154,94,0.12);
}
.target_item:hover {
  background: linear-gradient(180deg, #fff 0%, rgba(184,154,94,0.04) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74,66,40,0.06);
}
.target_item_num::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-top: 8px;
  opacity: 0.6;
}
.rc_job_item { transition: transform 0.3s, background 0.3s, box-shadow 0.3s; }
.rc_job_item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(184,154,94,0.1); }
.env_item { position: relative; overflow: hidden; }
.env_item::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}
.env_item:hover::after { width: 60%; }
.rc_flow_step { position: relative; }

/* ---------- SP対応: 拡張要素 ---------- */
@media only screen and (max-width: 768px) {
  .idx03 .idx_box .owner_img::before { display: none; }
  .idx07 .box_img::after { top: -10px; left: -10px; right: 10px; bottom: 10px; }
  .circle_gr::before { inset: -16px; }
  .flow_arrow::before, .flow_arrow::after { display: none; }
  .footer_right::before { left: 20px; }
  .ft_logo img { width: 160px; }
}

/* ============================================================
   日本語の改行ルール（全ブラウザ対応・iOS Safari含む）
   ・word-break: keep-all で語中改行を防止
   ・<wbr> タグや句読点(、。・)で改行する
   ・overflow-wrap で長すぎる場合のみ保険的に折り返し
   ・flexboxの子要素には min-width:0 で縮小を許可
============================================================ */
.fv_catch_text,
.fv_sub_text,
.home_page h3, h3.home_page,
.idx03 h3 .note,
.menu_item h4, .menu_desc,
.flow_step_title, .flow_step_desc,
.reserve_lead,
.idx_recruit .recruit_catch,
.idx_recruit .recruit_list li,
.rc_message_catch,
.rc_cta_lead,
.rc_work_lead, .rc_job_lead, .rc_flow_lead,
.rc_flow_title, .rc_flow_desc,
.target_item_text,
.number_label,
.content p,
.rc_message_body p,
.idx02 .address,
.idx03 .idx_box .box_content .content p,
.idx04 .content p,
.idx05 .idx_box .content p,
.idx07 .box_content .content p,
.idx_recruit .recruit_content p,
.rc_table_td,
.rc_table_th_ja,
.env_item_title,
.env_item_text,
.rc_work_cond li,
.rc_work_desc,
.menu_includes li,
.ft_address {
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: break-word;
}

.rc_job_item p {
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: break-word;
}

/* flexboxの子要素が縮まらず溢れるのを防ぐ */
.flow_step_body,
.flow_step,
.rc_message_left,
.rc_message_right,
.menu_item,
.target_item,
.env_item,
.rc_job_item,
.rc_flow_step { min-width: 0; }

/* ============================================================
   スマホ最適化（メタ広告流入＝モバイル主体）
   ・可読性向上（文字サイズ/字間/行間）
   ・CTAボタンのサイズ統一
============================================================ */
@media only screen and (max-width: 768px) {
  /* 本文の字間を少し詰めて折り返しと可読性を改善 */
  body { letter-spacing: 0.04em; line-height: 1.85; }

  /* 見出しの英字を少し抑えて折り返しを防ぐ */
  .home_page h3 .en, h3.home_page .en { font-size: 36px; }

  /* ----- CTAボタンをSPで全幅・同一サイズに統一 ----- */
  .btn.style01, .btn.style02 { display: block; width: 100%; }
  .btn.style01 a,
  .btn.style02 a,
  .btn_hotpepper,
  .btn_line,
  .btn_line_reserve {
    display: flex !important;
    width: 100%;
    max-width: 420px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    min-height: 56px;
    padding: 15px 20px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.45;
    border-radius: 8px;
  }
  .btn.style01 a::after { content: none; }
  .btn-group { margin-top: 28px; text-align: center; }

  /* ----- 可読性: 小さめテキストの底上げ ----- */
  .idx03 .idx_box .box_content .content p,
  .idx04 .content p,
  .idx05 .idx_box .content p,
  .idx07 .box_content .content p { font-size: 15px; line-height: 2.05; }
  .menu_desc { font-size: 14px; line-height: 1.85; }
  .menu_includes li { font-size: 12.5px; }
  .flow_step_desc { font-size: 13px; line-height: 1.9; letter-spacing: 0.02em; }
  .reserve_lead { font-size: 14px; line-height: 2.05; }
  .idx_recruit .recruit_content p { font-size: 14px; }
  .idx_recruit .recruit_list li { font-size: 13.5px; }
  .ft_address, .footer_nav_col ul li a { font-size: 13.5px; }

  /* ----- セクション間の余白をやや詰めてスクロール量を軽減 ----- */
  .idx06, .idx_flow, .idx07, .idx_recruit, .idx_contact { padding-top: 64px; padding-bottom: 64px; }

  /* ----- NEWSの全幅背景が右に20pxはみ出すのを修正（横スクロール防止） ----- */
  .idx_news .box_news::before { left: -20px; }
}

/* 念のため横方向のはみ出しを抑止 */
html, body { overflow-x: hidden; }

/* ============================================================
   SP下部固定CTAバー（WEB予約・電話・LINE）
   PCでは非表示、SPでのみ画面下部に固定表示
============================================================ */
.sp_cta_bar { display: none; }

@media only screen and (max-width: 768px) {
  .sp_cta_bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 300;
    gap: 6px;
    padding: 7px 8px;
    padding-bottom: calc(7px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(184,154,94,0.28);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  }
  .sp_cta_btn {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 2px;
    min-height: 52px;
    border-radius: 8px;
    font-family: var(--f-jp);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
  }
  .sp_cta_btn:hover { opacity: 1; color: #fff; }
  .sp_cta_btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .sp_cta_hp { background: var(--gold); }
  .sp_cta_tel { background: var(--main-color); }
  .sp_cta_line { background: #06C755; }

  /* 固定バー分の余白を本文下に確保 */
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }

  /* SPではNewsセクションを非表示 */
  .idx_news { display: none; }
}

/* ============================================================
   見出しの英字と日本語を縦に分けて読みやすく
   （装飾追加時に .en が inline-block になり、日本語が英字の
    直後に詰まって「Detail求人詳細」のように見えていたのを解消）
============================================================ */
.home_page h3 .en, h3.home_page .en {
  display: block;
}
/* 日本語ラベルを少し見やすく（英字の下に余白＋字間） */
.home_page h3, h3.home_page {
  letter-spacing: 0.18em;
  line-height: 1.5;
}
.home_page h3 .en, h3.home_page .en {
  margin-bottom: 10px;
}
/* Message見出しだけは英字＋補足ノートを横並びに保つ */
.idx03 h3 .en {
  display: flex;
}

/* ============================================================
   2026/05 クライアント修正対応
   ①ハンバーガー色変更 + モバイルナビの予約ボタン色付け
   ②見出し（Concept/Message 等）を中央寄せ
   ③/⑨ メニューを見る・求人詳細を見るを主役級CTAボタンへ
   ⑤画像の保存・ドラッグ・長押し抑止
   ⑥コース内容の表示をチェックリスト形式へ
   ⑧ホットペッパー予約の色を赤→ブランドゴールドへ
   ⑩フッターSPアコーディオン
   ⑪SPセクション間余白の詰め
   ⑫求人ページの英字見出しに紺色の差し色
============================================================ */

/* --- ②見出しを中央寄せ（全ページ・全セクション） --- */
.home_page h3, h3.home_page {
  text-align: center;
}
.home_page h3 .en, h3.home_page .en {
  text-align: center;
}
.home_page h3 .en::after, h3.home_page .en::after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  width: 64px;
}
.idx03 h3 .en { justify-content: center; }
.idx03 h3 { margin-left: 0; }
.idx05 h3 { font-size: var(--ttl_size); }

/* --- ①ハンバーガーをゴールドの円形ボタンに --- */
.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184,154,94,0.08);
  border: 1px solid rgba(184,154,94,0.35);
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: all 0.3s;
}
.hamburger:hover { background: var(--gold); border-color: var(--gold); }
.hamburger span {
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transition: all 0.3s;
}
.hamburger:hover span { background: #fff; }

/* --- ①モバイルナビ内：予約ボタンを色付きで --- */
.mobile_nav ul li.li_cta { border-bottom: none !important; padding: 0; }
.mobile_nav ul li.li_cta + li.li_cta { margin-top: 0; }
.mobile_nav a.nav_cta_hp,
.mobile_nav a.nav_cta_line {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 0;
  padding: 15px 20px !important;
  border-radius: 8px;
  color: #fff !important;
  font-family: var(--f-jp);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: opacity 0.3s, transform 0.3s;
}
.mobile_nav a.nav_cta_hp { background: var(--gold); }
.mobile_nav a.nav_cta_line { background: #06C755; }
.mobile_nav a.nav_cta_hp:hover,
.mobile_nav a.nav_cta_line:hover { transform: translateY(-2px); opacity: 1; }

/* --- ③⑨ 主役級CTAボタン（メニューを見る / 求人詳細を見る） --- */
.btn.btn--menu, .btn.btn--recruit {
  display: inline-block;
}
.btn.btn--menu a, .btn.btn--recruit a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 19px 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff !important;
  border: none !important;
  font-family: var(--f-jp);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.14em;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(184,154,94,0.3);
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.btn.btn--menu a::after, .btn.btn--recruit a::after {
  content: "→";
  font-size: 15px;
  transition: transform 0.3s;
}
.btn.btn--menu a:hover, .btn.btn--recruit a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(184,154,94,0.4);
  opacity: 1;
}
.btn.btn--menu a:hover::after, .btn.btn--recruit a:hover::after {
  transform: translateX(5px);
}
/* 求人セクション（暗背景）でも対比が出るよう影を強める */
.idx_recruit .btn.btn--recruit a { box-shadow: 0 10px 30px rgba(184,154,94,0.45); }

/* 求人セクションのボタン幅・高さを統一 */
.idx_recruit .btn.btn--recruit a,
.idx_recruit .btn_line {
  min-width: 280px;
  height: 64px;
  padding: 0 32px;
  justify-content: center;
  box-sizing: border-box;
  font-size: 16px;
}

/* --- ⑧ホットペッパー予約をブランドゴールド配色に --- */
.btn_hotpepper {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 4px 18px rgba(184,154,94,0.28);
}
.btn_hotpepper:hover {
  background: #fff !important;
  color: var(--gold) !important;
}

/* --- ⑥メニューのコース内容：アイコングリッド --- */
.menu_includes {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-rows: 112px !important;
  gap: 18px 0 !important;
  align-items: stretch;
  justify-items: stretch;
  list-style: none;
  padding: 24px 0 12px !important;
  margin: 0 auto 22px !important;
  max-width: 100%;
  width: 100%;
  border-top: 1px dashed rgba(184,154,94,0.3) !important;
  border-bottom: none;
}
.menu_includes li {
  position: relative;
  text-align: center;
  font-family: var(--f-jp) !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  color: var(--clr1) !important;
  letter-spacing: 0.02em !important;
  padding: 0 4px !important;
  background: none !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.4 !important;
  white-space: normal !important;
  overflow: visible;
  display: grid !important;
  grid-template-rows: 50px 50px;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 8px;
  align-items: center;
  justify-items: center;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  height: 112px;
  transition: color 0.3s ease;
}
.menu_includes li::before,
.menu_includes li::after { content: none; }
.menu_includes li:hover {
  color: var(--cl-hv1);
}
.menu_includes li:hover .micon {
  border-color: rgba(184,154,94,0.7);
  background: linear-gradient(135deg, rgba(255,247,225,0.9) 0%, rgba(226,201,138,0.3) 100%);
  transform: translateY(-2px);
}

/* イチオシ（90分）カード：アイコンをピンクトーンに */
.menu_item--pickup .menu_includes li {
  border-bottom: none;
}
.menu_item--pickup .menu_includes .micon {
  color: var(--cl-hv1);
  border-color: rgba(201,117,133,0.4);
}

/* --- ⑤画像の保存抑止（ドラッグ/長押し/選択不可。100%防止ではない） --- */
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

/* --- ⑫求人ページ専用：英字見出しに紺色の差し色 --- */
html.recruit_page .home_page h3 .en,
html.recruit_page h3.home_page .en,
html.recruit_page .rc_message_en,
html.recruit_page .rc_cta_en {
  color: #c97585;
}
/* ヒーローのRecruitは画像背景に被るので白を維持 */
html.recruit_page .page_hero_en { color: #fff; }
html.recruit_page .home_page h3 .en::after,
html.recruit_page h3.home_page .en::after {
  background: linear-gradient(90deg, transparent 0%, #c97585 50%, transparent 100%) !important;
}
html.recruit_page .rc_message_ja,
html.recruit_page .rc_cta_ja,
html.recruit_page .rc_table_th { color: #c97585; }
html.recruit_page .rc_badges li {
  color: #c97585;
  background: linear-gradient(135deg, rgba(201,117,133,0.08) 0%, rgba(201,117,133,0.16) 100%);
  border-color: rgba(201,117,133,0.4);
}
html.recruit_page .rc_badges li::before { color: #c97585; }
html.recruit_page .rc_emphasis { color: #c97585; }
html.recruit_page .rc_work_tag {
  background: linear-gradient(135deg, #c97585 0%, #e3b3c0 100%);
}
html.recruit_page .rc_work_income_num { color: #c97585; }
html.recruit_page .number_big { color: #c97585; }
html.recruit_page .number_unit { color: #e3b3c0; }
html.recruit_page .number_card--accent {
  background: linear-gradient(180deg, #fff 0%, rgba(201,117,133,0.08) 100%);
  border-color: #c97585;
  box-shadow: 0 8px 24px rgba(201,117,133,0.18);
}
html.recruit_page .rc_work_card--accent {
  border-color: #c97585;
  background: linear-gradient(180deg, #fff 0%, rgba(201,117,133,0.08) 100%);
  box-shadow: 0 10px 28px rgba(201,117,133,0.18);
}
html.recruit_page .rc_salary_highlight { color: #c97585; }
html.recruit_page .rc_inexperienced {
  background: linear-gradient(135deg, #c97585 0%, #e3b3c0 100%);
}
html.recruit_page .env_item_icon { color: #c97585; }
html.recruit_page .env_item:hover {
  background: linear-gradient(180deg, #fff 0%, rgba(201,117,133,0.06) 100%);
}
html.recruit_page .env_item::after { background: #c97585; }
html.recruit_page .rc_flow_num {
  background: linear-gradient(135deg, #c97585 0%, #e3b3c0 100%);
  box-shadow: 0 4px 14px rgba(201,117,133,0.32);
}
html.recruit_page .target_item::after { background: #c97585; }
html.recruit_page .target_item_num::after { background: #c97585; }
html.recruit_page .rc_job_item { border-left-color: #c97585; }
html.recruit_page .rc_job_diamond { color: #c97585; }
html.recruit_page .rc_flow_step { border-left-color: #c97585; }
html.recruit_page .rc_table_wrap { border-top-color: rgba(201,117,133,0.25); }
html.recruit_page .rc_table_row { border-bottom-color: rgba(201,117,133,0.18); }

/* --- ⑪SP: セクション間余白を全体的に詰める --- */
@media only screen and (max-width: 768px) {
  .home_page .key { min-height: 460px; }
  .idx03 { padding: 50px 0 54px; }
  .idx04 { padding: 56px 20px 60px; }
  .idx05 { padding: 56px 0 60px; }
  .idx06 { padding: 52px 20px 56px; }
  .idx_news { padding: 36px 0 52px; }
  .idx_flow, .idx07, .idx_recruit, .idx_contact { padding-top: 56px; padding-bottom: 56px; }
  .idx03 h3, .idx06 h3, .idx_flow h3, .idx07 h3, .idx_recruit h3, .idx_contact h3 { margin-bottom: 28px; }
  .idx03 .idx_box .box_content { padding-top: 24px; }
  /* メニューのカード間隔も詰める */
  .idx06 .btn-group.flex_gr { gap: 14px; }
  /* Numbersのカード隙間を詰める */
  .numbers_grid { gap: 10px !important; }
  .number_card { padding: 28px 14px !important; }
}

/* --- ⑩フッターアコーディオン（SPのみ） --- */
@media only screen and (max-width: 768px) {
  .footer_nav { flex-direction: column !important; gap: 0 !important; padding: 0 20px 12px !important; }
  .footer_nav_col {
    width: 100%;
    border-bottom: 1px solid rgba(184,154,94,0.22);
  }
  .footer_nav_col:first-child { border-top: 1px solid rgba(184,154,94,0.22); }
  .footer_nav_col .ft_nav_ttl {
    position: relative;
    margin: 0;
    padding: 18px 36px 18px 4px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
  }
  .footer_nav_col .ft_nav_ttl::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s;
  }
  .footer_nav_col.is-open .ft_nav_ttl::after {
    transform: translateY(-30%) rotate(-135deg);
  }
  .footer_nav_col ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
  }
  .footer_nav_col.is-open ul {
    max-height: 600px;
    padding: 4px 0 18px 4px;
  }
  .footer_nav_col ul li { margin-bottom: 8px; }
}

/* --- ③⑨ SP: 主役級ボタンも全幅・大きめ字を維持 --- */
@media only screen and (max-width: 768px) {
  .btn.btn--menu, .btn.btn--recruit { display: block; width: 100%; }
  .btn.btn--menu a, .btn.btn--recruit a {
    display: flex;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    justify-content: center;
    padding: 17px 22px;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}

/* --- ⑥SP・タブレット: チェックリストは1列で詰めて表示 --- */
@media only screen and (max-width: 900px) {
  .menu_includes { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; grid-auto-rows: 112px !important; gap: 18px 2px !important; padding-top: 20px !important; margin-bottom: 22px !important; }
  .menu_includes li { font-size: 11px !important; padding: 0 1px !important; letter-spacing: 0 !important; white-space: normal !important; grid-template-rows: 50px 50px !important; grid-template-columns: minmax(0, 1fr) !important; gap: 8px !important; height: 112px !important; }
  .menu_includes .micon { width: 50px; height: 50px; }
  .menu_includes .micon svg { width: 29px; height: 29px; }
  .menu_includes .mlabel { font-size: 11.5px !important; line-height: 1.4 !important; }
}

/* ============================================================
   代表者名（橘 ゆき）
============================================================ */
.owner_name {
  margin-top: 32px;
  text-align: right;
  font-family: var(--f-jp);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--main-color);
}
.owner_name_jp {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-left: 8px;
}
@media only screen and (max-width: 768px) {
  .owner_name { font-size: 13px; margin-top: 24px; }
  .owner_name_jp { font-size: 17px; }
}

/* ============================================================
   指名料セクション
============================================================ */
.nomination_fee {
  max-width: 720px;
  margin: 60px auto 0;
  padding: 32px 40px;
  background: #fff;
  border: 1px solid rgba(184,154,94,0.3);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(74,66,40,0.05);
}
.nomination_title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--main-color);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(184,154,94,0.4);
}
.nomination_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nomination_list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  font-family: var(--f-jp);
}
.nomination_label {
  font-size: 15px;
  color: var(--main-color);
  letter-spacing: 0.08em;
}
.nomination_label small {
  display: inline-block;
  font-size: 12px;
  color: var(--clr1);
  opacity: 0.7;
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.nomination_price {
  font-family: var(--f-en);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .nomination_fee {
    margin: 40px 20px 0;
    padding: 24px 20px;
  }
  .nomination_title {
    font-size: 16px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }
  .nomination_list li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .nomination_label { font-size: 14px; text-align: left; }
  .nomination_label small { display: block; margin-left: 0; margin-top: 2px; }
  .nomination_price { font-size: 18px; }
}

/* ============================================================
   フッターSNSリンク
============================================================ */
.ft_sns {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.ft_sns_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(184,154,94,0.4);
  border-radius: 4px;
  color: var(--main-color);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
  font-family: var(--f-jp);
}
.ft_sns_link svg { flex-shrink: 0; color: var(--gold); }
.ft_sns_link:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  opacity: 1;
}
.ft_sns_link:hover svg { color: #fff; }
@media only screen and (max-width: 768px) {
  .ft_sns { gap: 10px; margin-top: 16px; }
  .ft_sns_link { padding: 8px 14px; font-size: 11px; }
  .ft_sns_link svg { width: 18px; height: 18px; }
}

/* ========================================================
   全ページ・基本テキスト中央揃え（PC/SP共通）
   ======================================================== */
.home_page .idx04 .content,
.home_page .idx05 .content,
.home_page .idx05 .idx_box,
.home_page .idx05 .idx_box .content p,
.home_page .idx06 .menu_inner,
.home_page .idx06 .menu_desc,
.home_page .idx06 .menu_desc--bespoke,
.home_page .idx07 .content,
.home_page .idx07 .box_content,
.home_page .idx07 .box_content .content,
.home_page .idx07 .box_content .content p,
.home_page .idx_flow .flow_step_body,
.home_page .idx_flow .flow_step_title,
.home_page .idx_flow .flow_step_desc,
.home_page .idx_contact .reserve_hotpepper,
.home_page .idx_contact .reserve_lead,
.home_page .idx_recruit .recruit_content,
.home_page .idx_recruit .recruit_catch,
.home_page .nomination_fee,
.home_page .nomination_list,
.home_page .news_item,
.home_page .news_item_text,
.home_page .access_text,
.home_page .access_info,
.home_page .access_info p,
.idx_news .box_news,
.idx_news .news_text,
.footer p, footer p {
  text-align: center !important;
}

/* セラピストセクションの2カラムを中央配置に */
.home_page .idx07 .idx_box.flex {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home_page .idx07 .box_img {
  margin: 0 auto 30px;
  max-width: 460px;
}
.home_page .idx07 .box_content {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

/* Salonセクションも中央揃え */
.home_page .idx05 .idx_box .content { max-width: 720px; margin: 0 auto; }
.home_page .idx05 .btn-group { display: flex; justify-content: center; }

/* Flowセクションのステップも中央揃え */
.home_page .flow_step { text-align: center; }
.home_page .flow_step_num { margin: 0 auto; }
.home_page .flow_step_body { width: 100%; }

/* Recruit teaserのリストインラインブロックを中央化 */
.home_page .idx_recruit .recruit_content .recruit_list {
  display: inline-block;
  text-align: left;
  margin: 0 auto 24px;
}

@media only screen and (max-width: 900px) {
  .home_page .idx07 .box_img { max-width: 100%; }
}
