/* ============================================================
   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: "Libre Baskerville", 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: 200px; 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; }

.btn_reserve_header {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--main-color);
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.btn_reserve_header:hover { background: var(--gold); color: #fff; opacity: 1; }

.btn_line_header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #06C755;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn_line_header svg { flex-shrink: 0; }
.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;
}

@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;
  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); }

/* 左カラム: 上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-bottom: 100px; }

.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: 40%; max-width: 400px; 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, var(--dark) 0%, #3a2e1a 60%, #4a3820 100%);
  position: relative;
  overflow: hidden;
}

.idx04::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 30% 50%, rgba(184,154,94,0.08) 0%, transparent 60%),
                    radial-gradient(ellipse at 70% 50%, rgba(184,154,94,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.idx04 p { color: rgba(255,255,255,0.8); }
.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; }

.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.3);
  transition: all 0.5s ease;
  cursor: pointer;
}

.circle.active { background: rgba(184,154,94,0.12); border-color: var(--gold); }

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

.circle.active .ttl { color: var(--gold-light); }

.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: rgba(255,255,255,0.75); margin-bottom: 20px; }

/* ============================================================ 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; }
.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; }

.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; }
.idx_recruit .recruit_content { width: calc(50% - 40px); }

.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: 160px; }

  /* 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); }

  /* 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;
  }
  .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;
  }
  .sp_fv_logo {
    width: min(80vw, 55vh);
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
    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 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%; }
  .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: 28px 24px; gap: 20px; border-radius: 6px; }
  .flow_step_num { width: 52px; height: 52px; min-width: 52px; font-size: 18px; }
  .flow_step_title { font-size: 15px; margin-bottom: 10px; padding-bottom: 10px; }
  .flow_step_desc { font-size: 13px; }
  .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;
}
.idx04 h3 .en::after,
.idx_recruit h3 .en::after,
.rc_env 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.06);
  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.15);
  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-block;
  margin-top: 8px;
  padding-top: 14px;
  position: relative;
}
.menu_price::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ---------- 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; }
}
