@charset "UTF-8";
/* ==================================================================
 * top.css — トップページ固有スタイル
 *
 *   構造（レイアウト・スペーシング・タイポグラフィ）はテンプレ共通として
 *   残してあります。ブランド差し替え時の主な作業は:
 *     - common_*.css の --brand-* / フォントトークンの値変更
 *     - 背景画像 url() の差し替え
 *     - 細かい装飾（box-shadow / 派手な gradient 等）はブランドごとに追記
 *
 *   ENBOX 固有のゴールドグラデ・固有画像 mix-blend-mode などの装飾は
 *   除外済み（必要なら top.css のこのファイル内で追加してください）。
 *
 *   共通基盤は common_*.css 側にあります:
 *     - リセット / フォントトークン / デザイントークン
 *     - サイトヘッダー(.site_header) / フッター(.footer_main) / SPメニュー(.sp_menu)
 *     - 共通CTA(.cta_common) / セクション見出し(.section_title / .section_title_sub)
 *     - reveal アニメーション (.reveal_up / .reveal_left / .reveal_right)
 *     - SP/PC出し分け (.is_sp_only / .is_pc_only)
 *     - ショップタグ(.shop_tags) / 店舗エリア表示(p.shop_area)
 * ================================================================== */

main { width: 100%; overflow: hidden; }
.shop_accordion_summary::-webkit-details-marker { display: none; }

.section_title_sub span {
  font-size: calc((100vw / var(--vw-sp)) * 19);
  padding-right: calc((100vw / var(--vw-sp)) * 4);
}
@media (min-width: 801px) {
  .section_title_sub {
    font-size: calc((100vw / var(--vw-pc)) * 26);
  }
  .section_title_sub span {
    font-size: calc((100vw / var(--vw-pc)) * 31);
  }
}

/* ==================================================================
 * HEADER — ロゴのスクロール切り替え
 *   MV 上（初期）: logo.webp（白バージョン）
 *   MV 通過後   : logo_isolation.webp（ブランド色バージョン）
 *   切り替えは body[data-past-mv] を基準に opacity で滑らかにクロスフェード。
 *
 *   高さは通常フローのデフォルト画像が決め、スクロール画像はその枠に
 *   絶対配置で重ねて揃える（2枚は同じロゴ＝同じアスペクト比の想定）。
 * ================================================================== */
.site_header_logo { position: relative; }
.site_header_logo a {
  position: relative;
  display: block;
}
.site_header_logo img { transition: opacity 0.3s ease; }
/* デフォルト画像が通常フローで高さを確保 */
.site_header_logo .site_header_logo_default {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
/* スクロール画像はデフォルトと同じ枠に重ねる */
.site_header_logo .site_header_logo_scrolled {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  opacity: 0;
  pointer-events: none;
}
body[data-past-mv] .site_header_logo .site_header_logo_default {
  opacity: 0;
}
body[data-past-mv] .site_header_logo .site_header_logo_scrolled {
  opacity: 1;
}
/* メニューを開いている間は、スクロール位置に関わらず常に
   logo.webp（default）を表示する。data-past-mv の指定を上書きするため後に記述。 */
body[data-spmenu-open] .site_header_logo .site_header_logo_default {
  opacity: 1;
}
body[data-spmenu-open] .site_header_logo .site_header_logo_scrolled {
  opacity: 0;
}

/* ==================================================================
 * HERO
 * ================================================================== */
.hero { position: relative; padding: 0; }
.hero_inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero_image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* h1（テキスト）を画像に重ねる ------------------------------- */
.hero_title {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0 calc((100vw / var(--vw-sp)) * 23);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-base);
  font-family: var(--font-basic);
  font-weight: 700;
  z-index: 2;
  text-align: center;
  font-feature-settings: "halt" 1;
}

/* tags: キックボクシング × マシンジム ------------------------ */
.hero_tags {
  display: inline-flex;
  align-items: center;
  gap: calc((100vw / var(--vw-sp)) * 7);
}
.hero_tag {
  display: inline-block;
  background: var(--brand-primary);
  color: #fff;
  font-size: calc((100vw / var(--vw-sp)) * 20);
  font-weight: 700;
  padding: calc((100vw / var(--vw-sp)) * 2) calc((100vw / var(--vw-sp)) * 8);
  line-height: 1.4;
  transform: skewX(-10deg);
}
.hero_tag:last-child {
  background: var(--text-base);
}
.hero_tags_x {
  color: var(--text-base);
  font-size: calc((100vw / var(--vw-sp)) * 16);
  font-weight: 700;
  line-height: 1;
}

/* メインコピー ----------------------------------------------- */
.hero_catch {
  position: relative;
  font-size: calc((100vw / var(--vw-sp)) * 46);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.hero_catch .accent { color: var(--brand-primary); }
.hero_catch .small {
  font-size: calc((100vw / var(--vw-sp)) * 37);
}
.hero_catch .box {
  transform: skewX(-10deg);
}
/* Enjoy Training（英語装飾）は疑似要素で画像 ---------------- */
.hero_catch::after {
  content: "";
  display: block;
  width: calc((100vw / var(--vw-sp)) * 182);
  height: calc((100vw / var(--vw-sp)) * 70);
  background: url("../img/hero_enjoy_training.webp") center/contain no-repeat;
  position: absolute;
  right: calc((100vw / var(--vw-sp)) * -13);
  bottom: calc((100vw / var(--vw-sp)) * -50);
  mix-blend-mode: hard-light;
}

/* リード文 --------------------------------------------------- */
.hero_lead {
  display: block;
  font-size: calc((100vw / var(--vw-sp)) * 13);
  line-height: 1.7;
  font-weight: 500;
  align-self: flex-end;
  text-align: right;
  color: var(--text-base);
  margin-top: calc((100vw / var(--vw-sp)) * 47);
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 1), 0px 0px 13px rgba(255, 255, 255, 1);
  letter-spacing: 0.05em;
}

@media (min-width: 801px) {
  .hero_inner { aspect-ratio: 2561 / 1321; }
  .hero_image { height: 100%; }
  .hero_title {
    padding: 0 5%;
    margin-top: calc((100vw / var(--vw-pc)) * 65);
  }
  .hero_tags {
    gap: calc((100vw / var(--vw-pc)) * 7);
  }
  .hero_tag {
    font-size: calc((100vw / var(--vw-pc)) * 32);
    padding: 2px 10px;
  }
  .hero_tags_x { font-size: 18px; }
  .hero_catch { font-size: calc((100vw / var(--vw-pc)) * 80); }
  .hero_catch .small {
    font-size: calc((100vw / var(--vw-pc)) * 58);
  }
  .hero_catch::after { 
    width: 260px;
    height: 100px;
    margin-top: 0;
    bottom: -67px;
    right: calc((100vw / var(--vw-pc)) * -78);
  }
  .hero_lead {
    font-size: calc((100vw / var(--vw-pc)) * 27);
    text-align: center;
    align-self: center;
    margin-top: calc((100vw / var(--vw-pc)) * 100);
    letter-spacing: 0.1em;
  }
}

/* ==================================================================
 * TOPICS
 * ================================================================== */
.topics_inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc((100vw / var(--vw-sp)) * 20);
}
.topics_title {
  margin-bottom: calc((100vw / var(--vw-sp)) * 28);
  position: relative;
}
.topics_title:after {
  content: '';
  display: block;
  width: calc((100vw / var(--vw-sp)) * 35);
  height: calc((100vw / var(--vw-sp)) * 2);
  background: var(--brand-primary);
  position: absolute;
  top: calc((100vw / var(--vw-sp)) * 40);
  left: 0;
  right: 0;
  margin: auto;
}
.topics_slider { width: 100%; margin: 0 auto; max-width: 600px; }
.topics_banner_link { display: block; width: 100%; cursor: pointer; }
.topics_banner_image { display: block; width: 100%; height: auto; object-fit: contain; }
.topics_pagination.swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: calc((100vw / var(--vw-sp)) * 16);
}
.topics_pagination .swiper-pagination-bullet {
  display: inline-block;
  width: calc((100vw / var(--vw-sp)) * 5);
  height: calc((100vw / var(--vw-sp)) * 5);
  border-radius: 50%;
  background: #333333;
  cursor: pointer;
  padding: 0;
  border: none;
  outline: 0;
  transition: background-color .3s;
  flex-shrink: 0;
}
.topics_pagination .swiper-pagination-bullet-active { background: var(--brand-primary); }
@media (min-width: 801px) {
  .topics_inner { max-width: 800px; padding: 0; }
  .topics_title { margin-bottom: 46px; letter-spacing: .05em; }
  .topics_title:after {
    top: calc((100vw / var(--vw-pc)) * 55);
    width: calc((100vw / var(--vw-pc)) * 72);
    height: calc((100vw / var(--vw-pc)) * 4);
  }
  .topics_pagination .swiper-pagination-bullet { width: 6px; height: 6px; }
}

/* ==================================================================
 * ABOUT
 *   - 「鍛える × 燃やす」バッジブロック
 *   - 4つのサービスカード（画像 + タイトル + 説明）
 * ================================================================== */
.about {
  background-color: var(--bg-grey);
}
.about_inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc((100vw / var(--vw-sp)) * 20);
}
.about_title { margin-bottom: calc((100vw / var(--vw-sp)) * 40); }
@media (min-width: 801px) {
  .about_title {
     margin-bottom: 45px;
  }
}

/* --- concept badges --- */
.about_concept {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((100vw / var(--vw-sp)) * 7);
  margin-bottom: calc((100vw / var(--vw-sp)) * 40);
  font-weight: 500;
}
.about_concept_lead,
.about_concept_footer {
  font-size: calc((100vw / var(--vw-sp)) * 17.5);
  text-align: center;
}
.about_concept_lead span {
  font-size: calc((100vw / var(--vw-sp)) * 23);
}
.about_concept_badges {
  display: flex;
  align-items: center;
  gap: calc((100vw / var(--vw-sp)) * 10);
}
.about_concept_x {
  font-size: calc((100vw / var(--vw-sp)) * 20);
  font-weight: 500;
  color: var(--text-base);
}
.about_badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc((100vw / var(--vw-sp)) * 110);
  height: calc((100vw / var(--vw-sp)) * 110);
  border-radius: 50%;
  color: #fff;
  font-size: calc((100vw / var(--vw-sp)) * 23);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  padding-bottom: calc((100vw / var(--vw-sp)) * 10);
}
.about_badge::before {
  content: "";
  position: absolute;
  inset: calc((100vw / var(--vw-sp)) * 4);
  border-radius: 50%;
  border: 1px solid #fff;
  pointer-events: none;
}
.about_badge img {
  width: calc((100vw / var(--vw-sp)) * 32);
  height: calc((100vw / var(--vw-sp)) * 32);
  object-fit: contain;
}
.about_badge > span {
  display: inline-block;
  transform: skewX(-10deg);
}
.about_badge_train { background-color: #333333; }
.about_badge_burn  { background-color: var(--brand-primary); }
.about_badge_strong { font-size: calc((100vw / var(--vw-sp)) * 34); }

/* --- service cards --- */
.about_services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc((100vw / var(--vw-sp)) * 15);
}
.about_service {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFF;
  border-bottom-left-radius: calc((100vw / var(--vw-sp)) * 3);
  border-bottom-right-radius: calc((100vw / var(--vw-sp)) * 3);
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 5%);
}
.about_service_image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: calc((100vw / var(--vw-sp)) * 3);
  border-top-right-radius: calc((100vw / var(--vw-sp)) * 3);
}
.about_service_body {
  width: 100%;
  padding: calc((100vw / var(--vw-sp)) * 7) calc((100vw / var(--vw-sp)) * 17) calc((100vw / var(--vw-sp)) * 13);
}
.about_service_title {
  color: var(--brand-primary);
  font-size: calc((100vw / var(--vw-sp)) * 20);
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}
.about_service_text {
  font-size: calc((100vw / var(--vw-sp)) * 13);
  line-height: 1.7;
  color: var(--text-base);
  font-weight: 500;
  font-feature-settings: "halt" 1;
  text-align: justify;
}

@media (min-width: 801px) {
  .about_inner { max-width: 800px; padding: 0; }
  .about_title { margin-bottom: calc((100vw / var(--vw-pc)) * 56); letter-spacing: .05em; }

  .about_concept { gap: 0; margin-bottom: calc((100vw / var(--vw-pc)) * 52); }
  .about_concept_lead,
  .about_concept_footer { font-size: calc((100vw / var(--vw-pc)) * 27); }
  .about_concept_lead span {
    font-size: calc((100vw / var(--vw-pc)) * 55);
  }
  .about_concept_badges { gap: calc((100vw / var(--vw-pc)) * 20); }
  .about_concept_x {
    font-size: calc((100vw / var(--vw-pc)) * 60);
    font-weight: 100;
  }
  .about_badge {
    width: calc((100vw / var(--vw-pc)) * 177);
    height: calc((100vw / var(--vw-pc)) * 177);
    font-size: calc((100vw / var(--vw-pc)) * 40);
  }
  .about_badge::before {
    inset: calc((100vw / var(--vw-pc)) * 3);
    border: calc((100vw / var(--vw-pc)) * 4) solid #fff;
  }
  .about_badge img {
    width: calc((100vw / var(--vw-pc)) * 67);
    height: calc((100vw / var(--vw-pc)) * 57);
  }
  .about_badge_strong {         font-size: calc((100vw / var(--vw-pc)) * 57); }

  .about_services {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 20px;
    max-width: 650px;
    margin: 0 auto;
  }
  .about_service { width: calc((100% - 24px) / 2); }
  .about_service_body { padding: calc((100vw / var(--vw-pc)) * 15) calc((100vw / var(--vw-pc)) * 25) calc((100vw / var(--vw-pc)) * 25); }
  .about_service_title { font-size: 20px; }
  .about_service_text { font-size: 14px; }
}
@media (min-width: 1000px) {
  .about_services {
    max-width: 800px;
    justify-content: space-between;
  }
}

/* ==================================================================
 * WHY
 *   - 5 ブロックの繰り返しレイアウト
 *   - PC では偶数ブロックを row-reverse で左右交互配置
 * ================================================================== */
.why {
  position: relative;
  background-color: #FFF;
}
.why .why_point:nth-child(2){
  margin-top: calc((100vw / var(--vw-sp)) * 20);
}
.why .section_title {
  font-size: calc((100vw / var(--vw-sp)) * 30);
  letter-spacing: 0.05em;
}
.why_inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc((100vw / var(--vw-sp)) * 20);
}
.why_title .section_title_sub {
  letter-spacing: .1em;
  color: var(--text-base);
  margin-top: calc((100vw / var(--vw-sp)) * 20);
}
.why_point {
  padding: 0;
  display: flex;
  flex-direction: column;
  margin-top: calc((100vw / var(--vw-sp)) * 45);
}
.why_point_layout {
  display: flex;
  flex-direction: column;
  gap: calc((100vw / var(--vw-sp)) * 38);
  max-width: 100%;
  margin: 0 auto;
}
.why_point_image {
  position: absolute;
  max-width: 100%;
  margin: 0 auto;
}
.why_point_image_box,
.why_point_image_box img { width: 100%; }
.why_point_body {
  position: relative;
  padding-top: calc((100vw / var(--vw-sp)) * 110);
}
.why .why_point:nth-child(2) .why_point_body {
  padding-top: calc((100vw / var(--vw-sp)) * 85);
}
.why_point_body_inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc((100vw / var(--vw-sp)) * 20);
}
.why_point_title {
  margin: 0 0 calc((100vw / var(--vw-sp)) * 8);
  font-size: calc((100vw / var(--vw-sp)) * 19.5);
  line-height: 1.4;
  font-weight: 600;
  color: var(--brand-primary);
}
.why_point_title small { font-size: calc((100vw / var(--vw-sp)) * 10); }
.why_point_title small.marker {
  font-size: calc((100vw / var(--vw-sp)) * 17);
  color: #FFF;
  background: var(--brand-primary);
  border-radius: 50px;
  padding: 0 calc((100vw / var(--vw-sp)) * 10);
  margin-right: calc((100vw / var(--vw-sp)) * 5);
}
.why_point_title strong {
  font-size: calc((100vw / var(--vw-sp)) * 80);
  font-family: var(--font-display-light);
  font-weight: 100;
  line-height: .8;
  display: block;
  padding-bottom: calc((100vw / var(--vw-sp)) * 10);
  mix-blend-mode: hard-light;
}
.why .why_point:nth-child(2) .why_point_title strong  {
  font-size: calc((100vw / var(--vw-sp)) * 95);
}
.why_point_title strong span {
  font-size: calc((100vw / var(--vw-sp)) * 24);
  font-family: var(--font-display);
  letter-spacing: .05em;
  font-weight: 700;
  padding-left: calc((100vw / var(--vw-sp)) * 5);
}
.why_point_text {
  text-align: justify;
  line-height: 1.4;
  font-weight: 500;
}
.why_point_text small { font-size: calc((100vw / var(--vw-sp)) * 10); }
@media (min-width: 801px) {
  .why .section_title {
    font-size: calc((100vw / var(--vw-pc)) * 36);
  }
  .why_title .section_title_sub {
    margin-top: 28px;
  }
  .why_inner { max-width: 800px; padding: 0; }
  .why_title { margin-bottom: 0; }
  .why_point,
  .why_point + .why_point { margin-top: 90px; }
  /* PC で偶数番目は row-reverse（左右交互配置） */
  .why > .why_point:nth-of-type(2n) .why_point_layout { flex-direction: row-reverse; }
  .why_point_layout {
    flex-direction: row;
    gap: 32px;
    max-width: 800px;
    align-items: center;
  }
  .why_point_image { max-width: 800px; padding: 0; position: static; }
  .why_point_image_box {
    width: 327px;
    height: auto;
    border-radius: 20px;
  }
  .why_point_body { padding-top: 0; }
  .why .why_point:nth-child(2) .why_point_body {
    padding-top: 0;
  }
  .why_point_body_inner { max-width: 385px; padding: 0; }
  .why_point_title { margin-bottom: 8px; font-size: 20px; }
  .why_point02 .why_point_title {
    letter-spacing: -0.03em;
  }
  .why_point_title strong {
    font-size: 53px;
    padding-bottom: calc((100vw / var(--vw-pc)) * 10);
    mix-blend-mode: normal;
  }
  .why .why_point:nth-child(2) .why_point_title strong {
    font-size: calc((100vw / var(--vw-pc)) * 80);
  }
  .why_point_title strong span { font-size: 13px; padding-left: 4px; }
  .why_point_text small { font-size: 12px; display: inline-block; margin-top: 15px; }
  .why_point_title small.marker {
    font-size: 16px;
    padding: 0 10px 2px;
    margin-right: 8px;
  }
}
@media (min-width: 1000px) {
  .why .why_point:nth-child(2) .why_point_title strong {
    font-size: calc((100vw / var(--vw-pc)) * 55);
  }
}

/* ==================================================================
 * PLAN
 *   - 3 カード縦積み（SP・PC共通）
 *   - カード上部: アイコン + プラン名 + 通い放題バッジ
 *   - カード下部: 利用可能エリアタグ + 価格（旧→新）
 *   - 中央カードは「★おすすめ」フラグ付き（.plan_card_recommend）
 * ================================================================== */
.plan {
  background-color: #fef7f2;
  padding-top: 0;
  position: relative;
  z-index: 0;
}
.plan_bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.plan_inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc((100vw / var(--vw-sp)) * 20);
}
.plan_title {
  padding-top: calc((100vw / var(--vw-sp)) * 32);
  margin-bottom: calc((100vw / var(--vw-sp)) * 26);
  color: #FFF;
}
.plan_title .section_title_sub {
  color: #FFF;
}
.plan_list {
  display: flex;
  flex-direction: column;
  gap: calc((100vw / var(--vw-sp)) * 20);
}
.plan_card {
  position: relative;
  background: #fff;
  border-radius: calc((100vw / var(--vw-sp)) * 5);
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 5%);
  padding: calc((100vw / var(--vw-sp)) * 10) calc((100vw / var(--vw-sp)) * 10) calc((100vw / var(--vw-sp)) * 15);
  border: 1px solid var(--brand-primary);
}
.plan_card_recommend_flag {
  display: inline-block;
  background: var(--text-base);
  color: #FFF;
  font-size: calc((100vw / var(--vw-sp)) * 12);
  font-weight: 700;
  padding: calc((100vw / var(--vw-sp)) * 2) calc((100vw / var(--vw-sp)) * 14) calc((100vw / var(--vw-sp)) * 2) calc((100vw / var(--vw-sp)) * 7);
  position: absolute;
  top: calc((100vw / var(--vw-sp)) * -15);
  left: calc((100vw / var(--vw-sp)) * -1);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.plan_card_header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: calc((100vw / var(--vw-sp)) * 7);
  margin-bottom: calc((100vw / var(--vw-sp)) * 5);
}
.plan_card_icon {
  width: calc((100vw / var(--vw-sp)) * 33);
  height: calc((100vw / var(--vw-sp)) * 33);
  flex-shrink: 0;
  background: #fce8dc;
  border-radius: calc((100vw / var(--vw-sp)) * 50);
  padding: calc((100vw / var(--vw-sp)) * 5);
}
.plan_card_icon img { width: 100%; height: 100%; object-fit: contain; }
.plan_card_name {
  margin: 0;
  font-size: calc((100vw / var(--vw-sp)) * 15);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-base);
}
.plan_card_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  color: var(--brand-primary);
  font-size: calc((100vw / var(--vw-sp)) * 11);
  font-weight: 700;
  padding: 0 calc((100vw / var(--vw-sp)) * 6);
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0;
}
.plan_card_area_label {
  font-size: calc((100vw / var(--vw-sp)) * 10);
  font-weight: 500;
  color: var(--text-base-light);
  margin-bottom: calc((100vw / var(--vw-sp)) * 5);
}
.plan_card_tags {
  display: flex;
  flex-wrap: wrap;
  gap: calc((100vw / var(--vw-sp)) * 6);
  list-style: none;
  margin-bottom: calc((100vw / var(--vw-sp)) * 10);
  margin-top: 0;
  padding: 0;
  border-bottom: 1px solid var(--text-base-light);
  padding-bottom: calc((100vw / var(--vw-sp)) * 10);
}
.plan_card_tags li {
  border: 1px solid;
  border-radius: calc((100vw / var(--vw-sp)) * 50);
  font-size: calc((100vw / var(--vw-sp)) * 11);
  font-weight: 500;
  color: var(--text-base-light);
  padding: 0 calc((100vw / var(--vw-sp)) * 5);
}
.plan_card_price {
  display: flex;
  flex-direction: column;
  gap: calc((100vw / var(--vw-sp)) * 4);
  padding-left: calc((100vw / var(--vw-sp)) * 10);
}
.plan_card_price_label {
  font-size: calc((100vw / var(--vw-sp)) * 10);
  font-weight: 700;
  color: var(--text-base-light);
}
.plan_card_price_row {
  display: flex;
  gap: calc((100vw / var(--vw-sp)) * 6);
  align-items: flex-end;
  justify-content: space-between;
}

.plan_card_price_old {
  font-size: calc((100vw / var(--vw-sp)) * 14);
  color: var(--text-base-light);
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: calc((100vw / var(--vw-sp)) * 2);
}
.plan_card_price_old .text_eng {
  font-size: calc((100vw / var(--vw-sp)) * 20);
  position: relative;
}
.plan_card_price_old .text_eng:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--brand-primary);
  position: absolute;
  transform: rotate(345deg);
  top: calc((100vw / var(--vw-sp)) * 15);
}
.plan_card_price_old small {
  font-size: calc((100vw / var(--vw-sp)) * 9);
  padding-left: calc((100vw / var(--vw-sp)) * 2);
}
.plan_card_arrow {
  position: relative;
  margin-bottom: calc((100vw / var(--vw-sp)) * 20);
  width: calc((100vw / var(--vw-sp)) * 20);
}
.plan_card_arrow span {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.plan_card_arrow span:first-child {
  left: calc((100vw / var(--vw-sp)) * -7);
  border-top: 2px solid #f7bd9a;
  border-right: 2px solid #f7bd9a;
}
.plan_card_arrow span:nth-child(2) {
  left: calc((100vw / var(--vw-sp)) * 0);
  border-top: 2px solid #f18b4e;
  border-right: 2px solid #f18b4e;
}
.plan_card_arrow span:last-child {
  left: calc((100vw / var(--vw-sp)) * 7);
  border-top: 2px solid var(--brand-primary);
  border-right: 2px solid var(--brand-primary);
}
.plan_card_price_new {
  color: var(--brand-primary);
  font-size: calc((100vw / var(--vw-sp)) * 20);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  position: relative;
}
.plan_card_price_new strong {
  font-family: var(--font-display);
  font-size: calc((100vw / var(--vw-sp)) * 42);
  font-weight: 400;
  line-height: 1;
  vertical-align: baseline;
  letter-spacing: -0.02em;
  padding-right: calc((100vw / var(--vw-sp)) * 3);
}
.plan_card_price_new small {
  font-size: calc((100vw / var(--vw-sp)) * 9);
  font-weight: 500;
  vertical-align: super;
  margin-left: calc((100vw / var(--vw-sp)) * 1);
  position: absolute;
  top: calc((100vw / var(--vw-sp)) * 8);
  right: calc((100vw / var(--vw-sp)) * -3);
  color: var(--text-base);
}
.plan_card_price_note {
  font-size: calc((100vw / var(--vw-sp)) * 10);
  color: var(--text-base-light);
  margin-top: calc((100vw / var(--vw-sp)) * 4);
  text-align: right;
}
.plan_note {
  text-align: left;
  color: var(--text-base-light);
  font-weight: 500;
  font-size: calc((100vw / var(--vw-sp)) * 11);
  line-height: 1.6;
  margin-top: calc((100vw / var(--vw-sp)) * 10);
}
@media (min-width: 801px) {
  .plan_inner { max-width: 800px; padding: 0; }
  .plan_title { margin-bottom: 56px; letter-spacing: .05em; }
  .plan_list { gap: 8px; flex-direction: row; justify-content: center;}
  .plan_card {
    width: 260px;
    border-radius: 10px;
    padding: 15px 10px 9px;
  }
  .plan_card_recommend_flag {
    font-size: 12px;
    padding: 2px 15px 4px 7px;
    top: -9px;
    left: -1px;
  }
  .plan_card_header {
    gap: 9px;
    grid-template-columns: auto;
    justify-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .plan_card_icon {
    width: 45px;
    height: 45px;
    padding: 6px;
  }
  .plan_card_name { font-size: 18px; }
  .plan_card_name span {
    letter-spacing: -0.1em;
  }
  .plan_card_badge { font-size: 12px; padding: 0px 10px 2px; }
  .plan_card_body { padding-top: 16px; }
  .plan_card_area_label { font-size: 13px; margin-bottom: 10px; }
  .plan_card_tags { gap: 5px; margin-bottom: 20px; padding-bottom: 20px; }
  .plan_card_tags li { 
    font-size: 12px;
    padding: 0px 6px 2px;
    border-radius: 50px;
    letter-spacing: -0.05em;
  }
  .plan_card_tags li span {
    letter-spacing: -0.15em;
  }
  .plan_list .plan_card:first-child .plan_card_body {
    padding-top: 39px;
  }
  .plan_list .plan_card:last-child .plan_card_body {
    padding-top: 39px;
  }
  .plan_list .plan_card:first-child .plan_card_tags {
    padding-bottom: 48px;
  }
  .plan_card_price { gap: 0; padding-left: 0; }
  .plan_card_price_label { font-size: 10px; padding-bottom: 10px;}
  .plan_card_price_row { gap: 0; }
  .plan_card_price_old_wrap {
    line-height: 0;
  }
  .plan_card_price_old { font-size: 12px; padding-bottom: 6px; text-align: right; }
  .plan_card_price_old small { 
    font-size: 10px;
    padding-left: 0;
    margin-left: auto;
    display: block;
  }
  .plan_card_price_old .text_eng {
    font-size: 17px;
    letter-spacing: -0.05em;
    padding-right: 2px;
  }
  .plan_card_price_old .text_eng:before {
    top: 12px;
  }
  .plan_card_price_arrow { font-size: 22px; padding-bottom: 6px; }
  .plan_card_arrow {
    margin-bottom: 15px;
    width: 8px;
  }
  .plan_card_arrow span {
    width: 8px;
    height: 8px;
  }
  .plan_card_arrow span:first-child {
    left: calc((100vw / var(--vw-sp)) * -3);
  }
  .plan_card_arrow span:last-child {
    left: calc((100vw / var(--vw-sp)) * 3);
  }
  .plan_card_price_new { font-size: 18px; }
  .plan_card_price_new strong { font-size: 39px; letter-spacing: -0.05em; padding-right: 5px; }
  .plan_card_price_new small { font-size: 10px; margin-left: 2px; top: 7px; }
  .plan_card_price_note { font-size: 11px; }
  .plan_note { font-size: 12px; margin-top: 15px; text-align: center; }
}

/* ==================================================================
 * TRIAL
 *   - STEP 縦リスト（SP）／ 横並びカード（PC）
 *   - 番号縦に縦線を引いて流れを示す構造を維持
 * ================================================================== */
.trial {
  position: relative;
  background-color: var(--color-gray-100);
}
.trial_inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc((100vw / var(--vw-sp)) * 20);
}
.trial_header { width: 100%; }
.trial_title { margin-bottom: calc((100vw / var(--vw-sp)) * 20); }
.trial_steps {
  display: flex;
  flex-direction: column;
  gap: calc((100vw / var(--vw-sp)) * 20);
}
.trial_step { display: flex; }
.trial_step_num {
  position: relative;
  width: calc((100vw / var(--vw-sp)) * 40);
  margin-right: calc((100vw / var(--vw-sp)) * 20);
  color: var(--brand-primary);
}
.trial_step_num::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw / var(--vw-sp)) * 19);
  display: block;
  width: 1px;
  height: calc(100% - 4.6em);
  margin-top: auto;
  margin-bottom: 0;
  background-color: var(--brand-primary);
}
.trial_step:last-of-type .trial_step_num::before { display: none; }
.trial_step_num_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100vw / var(--vw-sp)) * 35);
  padding-bottom: calc((100vw / var(--vw-sp)) * 5);
  font-family: var(--font-display-light);
  font-size: calc((100vw / var(--vw-sp)) * 49);
  line-height: 0.8;
  font-weight: 100;
}
.trial_step_num_text small {
  display: block;
  margin-bottom: calc((100vw / var(--vw-sp)) * 3);
  font-family: var(--font-display);
  font-size: calc((100vw / var(--vw-sp)) * 12);
  font-weight: 600;
  letter-spacing: .3em;
  padding-left: calc((100vw / var(--vw-sp)) * 6);
}
.trial_step_body { flex: 1; padding-right: 0; }
.trial_step_body_inner {
  overflow: hidden;
  border-radius: calc((100vw / var(--vw-sp)) * 20);
  background-color: #FFFFFF;
}
.trial_step_image { height: auto; line-height: 0; }
.trial_step_image img { width: 100%; height: auto; }
.trial_step_detail {
  min-height: auto;
  padding: calc((100vw / var(--vw-sp)) * 10) calc((100vw / var(--vw-sp)) * 19) calc((100vw / var(--vw-sp)) * 20);
}
.trial_step_title {
  margin: 0 0 calc((100vw / var(--vw-sp)) * 8);
  color: var(--brand-primary);
  font-size: calc((100vw / var(--vw-sp)) * 18);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}
.trial_step_text {
  margin: 0;
  font-size: calc((100vw / var(--vw-sp)) * 13);
  line-height: 1.5;
  font-weight: 500;
  text-align: justify;
  font-feature-settings: "halt" 1;
}
.trial_step_note {
  display: block;
  color: var(--text-mute);
  font-size: calc((100vw / var(--vw-sp)) * 10);
  line-height: 1.2;
  padding-top: calc((100vw / var(--vw-sp)) * 5);
}
.trial .notes {
  color: var(--text-base-light);
  text-align: center;
  border: 1px solid;
  margin-top: calc((100vw / var(--vw-sp)) * 20);
}
@media (min-width: 801px) {
  .trial_inner { max-width: 800px; padding: 0; }
  .trial_header { margin-bottom: 44px; }
  .trial_steps { flex-direction: row; justify-content: flex-start; gap: 10px; }
  .trial_step { flex: 1; display: block; }
  .trial_step_num {
    width: auto;
    margin-right: 0;
    margin-bottom: 15px;
    padding-left: 13px;
  }
  .trial_step_num::before {
    top: auto;
    bottom: 15px;
    left: auto;
    right: 0;
    width: calc(100% - 3.8em);
    height: 1px;
    margin: 0;
  }
  .trial_step:last-of-type .trial_step_num::before { display: block; }
  .trial_step_num_text {
    flex-direction: column;
    width: 35px;
    padding-bottom: 0;
    font-size: 39px;
    letter-spacing: -.01em;
  }
  .trial_step_num_text small { margin-bottom: 3px; font-size: 11px; padding-left: 5px; }
  .trial_step_body_inner { border-radius: 10px; }
  .trial_step_image img { width: 100%; height: 100%; object-fit: cover; }
  .trial_step_detail { padding: 10px 12px 15px; min-height: 130px; }
  .trial_step_title { margin-bottom: 8px; font-size: 16px;         letter-spacing: -0.05em; }
  .trial_step_text { font-size: 13px; }
  .trial_step_note { font-size: 10px; }
  .trial .notes {
    font-size: 12px;
    display: block;
    margin: 30px auto 0;
    width: 125px;
    padding-bottom: 2px;
  }
}

/* ==================================================================
 * VOICE
 *   - 上部に背景画像（voice_bg）
 *   - タイトル + Swiperスライダー（6枚）
 *   - 各カード: 画像 + ★評価 + タイトル + 本文（<mark>で黄色ハイライト）
 * ================================================================== */
.voice {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.voice_bg { position: absolute; top: 0; left: 0; width: 100%; z-index: 0; }
.voice_bg img { width: 100%; height: auto; display: block; }

.voice_inner_bg { position: relative; z-index: 1; }
.voice_inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc((100vw / var(--vw-sp)) * 20);
}
.voice_inner h2 {
  margin-top: calc((100vw / var(--vw-sp)) * 165);
}
.voice_title {
  text-align: center;
  margin-bottom: calc((100vw / var(--vw-sp)) * 30);
}
.voice_title .section_title_sub {
  margin-top: calc((100vw / var(--vw-sp)) * 12);
}

/* --- スライダー本体 --- */
/* .voice_slider_wrap は矢印の配置基準（クリップしない）。
   .voice_slider 側だけを overflow:hidden にできるよう、矢印はこの wrap 直下に置く。 */
.voice_slider_wrap {
  position: relative;
  width: 100%;
  max-width: calc((100vw / var(--vw-sp)) * 320);
  margin: 0 auto;
}
.voice_slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}
.voice_slider .swiper-wrapper { align-items: stretch; }
.voice_slide { height: auto; display: flex; }

/* --- カード --- */
.voice_card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--brand-primary);
  border-radius: calc((100vw / var(--vw-sp)) * 8);
  padding: calc((100vw / var(--vw-sp)) * 24) calc((100vw / var(--vw-sp)) * 20) calc((100vw / var(--vw-sp)) * 20);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 calc((100vw / var(--vw-sp)) * 4) calc((100vw / var(--vw-sp)) * 12) rgba(0, 0, 0, 0.04);
}
.voice_card_image {
  width: calc((100vw / var(--vw-sp)) * 110);
  aspect-ratio: 1;
  border-radius: calc((100vw / var(--vw-sp)) * 10);
  overflow: hidden;
  margin-bottom: calc((100vw / var(--vw-sp)) * 16);
  flex-shrink: 0;
}
.voice_card_image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voice_card_stars {
  color: var(--brand-primary);
  font-size: calc((100vw / var(--vw-sp)) * 16);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: calc((100vw / var(--vw-sp)) * 12);
  align-self: flex-start;
}
.voice_card_star_empty { color: #f4c9ae; }
.voice_card_title {
  margin: 0 0 calc((100vw / var(--vw-sp)) * 14);
  font-size: calc((100vw / var(--vw-sp)) * 18);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-base);
  align-self: flex-start;
  text-align: left;
}
.voice_card_text {
  margin: 0;
  font-size: calc((100vw / var(--vw-sp)) * 13);
  line-height: 1.7;
  font-weight: 500;
  color: var(--text-base);
  text-align: left;
}
.voice_card_text mark {
  background: linear-gradient(transparent 60%, #fff176 60%);
  color: inherit;
  padding: 0;
}

/* --- ナビゲーション矢印（左右のオレンジ丸ボタン） --- */
.voice_prev,
.voice_next {
  position: absolute;
  top: calc((100vw / var(--vw-sp)) * 90);
  width: calc((100vw / var(--vw-sp)) * 32);
  height: calc((100vw / var(--vw-sp)) * 32);
  border: none;
  border-radius: 50%;
  background: var(--brand-primary);
  cursor: pointer;
  z-index: 10;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.voice_prev { left: calc((100vw / var(--vw-sp)) * -8); }
.voice_next { right: calc((100vw / var(--vw-sp)) * -8); }
.voice_prev::before,
.voice_next::before {
  content: "";
  display: block;
  width: calc((100vw / var(--vw-sp)) * 8);
  height: calc((100vw / var(--vw-sp)) * 8);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.voice_prev::before { transform: translateX(2px) rotate(-135deg); }
.voice_next::before { transform: translateX(-2px) rotate(45deg); }
.voice_prev:hover,
.voice_next:hover { opacity: 0.85; }
.voice_prev.swiper-button-disabled,
.voice_next.swiper-button-disabled { opacity: 0.35; cursor: default; }

.voice_note {
  margin-top: calc((100vw / var(--vw-sp)) * 20);
  font-size: calc((100vw / var(--vw-sp)) * 11);
  line-height: 1.4;
  text-align: center;
  color: var(--text-mute);
  font-weight: 500;
}

@media (min-width: 801px) {
  .voice_inner h2 { margin-top: calc((100vw / var(--vw-pc)) * 300); }
  .voice_inner { max-width: 800px; padding: 0; }
  .voice_title { margin-bottom: 46px; }
  .voice_title .section_title_sub { margin-top: 16px; }

  /* PC は3枚だけを綺麗に見せる。はみ出す4枚目以降は .voice_slider の
     overflow:hidden でカット。矢印は wrap（クリップしない）の外側に配置する。 */
  .voice_slider_wrap { max-width: 800px; margin: 0 auto; }
  .voice_slider { max-width: 800px; padding: 0; overflow: hidden; }
  .voice_slider .swiper-wrapper {
    display: flex;
  }

  .voice_card { padding: 10px 15px 10px; border-radius: 10px; }
  .voice_card_image { width: 86px; border-radius: 12px; margin-bottom: 15px; letter-spacing: -0.05em;}
  .voice_card_stars { font-size: 15px; margin-bottom: 14px; }
  .voice_card_title { font-size: 18px; margin-bottom: 10px; }
  .voice_card_text { font-size: 14px; line-height: 1.6; }

  .voice_prev,
  .voice_next {
    top: 75px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
  }
  /* 矢印はスライダーの外（左右の外側）へ。wrap 基準の負値で外側に出す。 */
  .voice_prev { left: -15px; }
  .voice_next { right: -15px; }
  .voice_prev::before,
  .voice_next::before { width: 10px; height: 10px; }

  .voice_note { margin-top: 30px; font-size: 12px; }
}

/* ==================================================================
 * THOUGHT
 *   - ブランドメッセージセクション
 *   - ENBOX 固有のピンク gradient 背景は削除済み（var(--brand-primary) のソリッドに置換）
 * ================================================================== */
.thought {
  background: #EB4200;
  background: linear-gradient(0deg, rgba(235, 66, 0, 1) 0%, rgba(238, 114, 40, 1) 100%);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.thought_inner { padding-top: 0; }
.thought_title {
  color: #fff;
  position: relative;
  padding-bottom: calc((100vw / var(--vw-sp)) * 55);
}
.thought_title .section_title_sub { color: #fff; }
.thought_title .section_title_sub:before {
  background: #FFF;
}
.thought_body_title {
  color: #fff;
  text-align: center;
  font-size: calc((100vw / var(--vw-sp)) * 24);
  font-family: var(--font-basic);
  margin-bottom: calc((100vw / var(--vw-sp)) * -5);
  font-feature-settings: "halt" 1;
}
.thought_features01,
.thought_features02,
.thought_features03 {
  position: relative;
  height: auto;
}
.thought_features01:after,
.thought_features02:after,
.thought_features03:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
}
.thought_features01:after {
  background: url("../img/thought-img-01_line-sp.webp") 100% 0 / 100% no-repeat;
}
.thought_features02:after {
  background: url("../img/thought-img-02_line-sp.webp") 100% 0 / 100% no-repeat;
}
.thought_features03:after {
  background: url("../img/thought-img-03_line-sp.webp") 100% 0 / 100% no-repeat;
}
.thought_body_text {
  text-align: center;
  color: #fff;
  font-size: calc((100vw / var(--vw-sp)) * 18);
  line-height: 1.7em;
}
.thought_inner_box { position: relative; }
.thought_inner_box .thought_features02 {
  margin-left: auto;
}
.thought_inner_box .thought_features03 {
  position: absolute;
  top: calc((100vw / var(--vw-sp)) * 260);
}
.thought_body_text_bottom {
  padding-top: calc((100vw / var(--vw-sp)) * 215);
  padding-bottom: 0;
}
@media (min-width: 801px) {
  .thought {
    padding-bottom: 110px;
  }
  .thought_inner { padding-top: 0; }
  .thought_title { padding-bottom: 55px; margin-bottom: 0; }
  .thought_body_title { font-size: 28px; margin-bottom: 40px; }
  .thought_features01 { width: 800px; margin: 0 auto; }
  .thought_features01:after {
    background: url("../img/thought-img-01_line-pc.webp") 100% 0 / 100% no-repeat;
    top: 50px;
  }
  .thought_body_text { font-size: 18px; }
  .thought_body_text_top { padding-top: 30px; }
  .thought_inner_box { width: 800px; margin: 0 auto; }
  .thought_inner_box .thought_features02 { width: 400px; }
  .thought_features02:after {
    background: url(../img/thought-img-02_line-pc.webp) 100% 0 / 100% no-repeat;
    width: 354px;
    left: -47px;
  }
  .thought_inner_box .thought_features03 {
    top: calc((100vw / var(--vw-pc)) * 170);
    width: 400px;
  }
  .thought_features03:after {
    background: url(../img/thought-img-03_line-pc.webp) 100% 0 / 100% no-repeat;
    width: 338px;
    top: 175px;
    left: 57px;
  }
  .thought_body_text_bottom {
    padding-top: 100px;
    line-height: 2.2;
    padding-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .thought_inner_box .thought_features03 { top: calc((100vw / var(--vw-pc)) * 130); }
}

/* ==================================================================
 * STUDIO
 *   - 1店舗のみ表示（アコーディオンなし）
 * ================================================================== */
.studio_inner { padding-top: 0; }
.shop_wrap { padding-top: calc((100vw / var(--vw-sp)) * 45); }
.shop_card {
  border-top: .5px solid #d7d7d7;
  padding: 0 calc((100vw / var(--vw-sp)) * 20) calc((100vw / var(--vw-sp)) * 20);
}
.shop_header { padding: calc((100vw / var(--vw-sp)) * 20) 0 0; }
.shop_title_wrap { display: flex; justify-content: space-between; }
.shop_name {
  font-size: calc((100vw / var(--vw-sp)) * 18);
  font-weight: 500;
  margin-bottom: calc((100vw / var(--vw-sp)) * 7);
}
.shop_image { 
  width: 80%;
  margin-top: calc((100vw / var(--vw-sp)) * 15);
  margin-left: calc((100vw / var(--vw-sp)) * 25);
}
.shop_details .detail_item {
  position: relative;
  padding-left: calc((100vw / var(--vw-sp)) * 60);
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: calc((100vw / var(--vw-sp)) * 14);
  margin-top: 0;
}
/* 詳細項目のアイコン（ENBOX固有画像）。ブランドごとに差し替え or 削除可。 */
.shop_details .detail_item::before {
  content: "";
  display: block;
  width: calc((100vw / var(--vw-sp)) * 44);
  height: calc((100vw / var(--vw-sp)) * 44);
  position: absolute;
  top: 0;
  left: 0;
}
.shop_details .detail_item_address::before { background: url("../img/shop_icon_address.webp") 100% 0 / 100% no-repeat; }
.shop_details .detail_item_access::before  { background: url("../img/shop_icon_access.webp")  100% 0 / 100% no-repeat; }
.shop_details .detail_item_hours::before   { background: url("../img/shop_icon_hours.webp")   100% 0 / 100% no-repeat; }
.shop_details .detail_item:last-child { border-bottom: none; }
.shop_details .detail_item dt {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: calc((100vw / var(--vw-sp)) * 12);
  letter-spacing: .05em;
  font-weight: 700;
}
.shop_details .detail_item dd {
  text-align: justify;
  margin-left: 0;
}
.shop_details .detail_item dd p {
  font-weight: 400;
  font-size: calc((100vw / var(--vw-sp)) * 13);
  font-feature-settings: "halt" 1;
}
.detail_item_hours .hours_row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: calc((100vw / var(--vw-sp)) * 12);
  margin: 0;
  font-size: calc((100vw / var(--vw-sp)) * 14);
  font-weight: 500;
}
.detail_item_hours .hours_row + .hours_row { margin-top: calc((100vw / var(--vw-sp)) * 8); }
.hours_label { flex-shrink: 0; white-space: nowrap; }
.hours_value { text-align: right; white-space: nowrap; }
.shop_content { overflow: hidden; }
.shop_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 80%;
}
.shop_map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- shop CTA（店舗ごとの体験予約ボタン。SPベース）
 *   デザイン: オレンジ塗り + 外側に淡いピーチのリング（枠線）+ 右端に > シェブロン
 * ------------------------------------------------------------ */
.shop_cta_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: calc((100vw / var(--vw-sp)) * 30) auto 0;
  width: 100%;
  border: calc((100vw / var(--vw-sp)) * 4) solid #f5b998;
  border-radius: 9999px;
}
.shop_cta_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc((100vw / var(--vw-sp)) * 55);
  padding: 0 calc((100vw / var(--vw-sp)) * 24);
  box-sizing: border-box;
  border-radius: 9999px;
  background-color: var(--brand-primary);
  border: 1px solid #FFF;
  color: #ffffff;
  font-size: calc((100vw / var(--vw-sp)) * 17);
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
/* 右端の > シェブロン */
.shop_cta_btn .chevron {
  position: absolute;
  right: calc((100vw / var(--vw-sp)) * 22);
  top: 50%;
  width: calc((100vw / var(--vw-sp)) * 9);
  height: calc((100vw / var(--vw-sp)) * 9);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 801px) {
  .studio_inner { padding-top: 0; }
  .studio_header { padding-bottom: 60px; }
  .shop_wrap { padding-top: 0; border-top: .5px solid #d7d7d7; }
  .shop_card { max-width: 800px; margin: 0 auto; padding: 0 40px 40px; }
  .shop_card:first-of-type { border-top: none; }
  .shop_header { padding-top: 40px; }
  .shop_name { font-size: 18px; margin-bottom: 5px; }
  .shop_title_wrap {
    flex-direction: column;
  }
  .shop_tags_wrap { flex: 1; }
  .shop_tags li { font-size: 10px; padding: 2px 10px; }
  p.shop_area { margin-top: 0; font-size: 14px; }
  .shop_content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    align-items: flex-start;
  }
  .shop_image { margin-top: 30px; flex: 0 0 346px; margin-left: 0; }
  .shop_details { margin-top: 30px; flex: 1 1 0; min-width: 0; }
  .shop_details .detail_item::before { width: 45px; height: 45px; }
  .shop_details .detail_item { padding-left: 65px; margin-top: 0; padding-bottom: 10px; }
  .shop_details .detail_item dt { font-size: 12px; }
  .shop_details .detail_item dd p { font-size: 14px; line-height: 1.6; }
  .detail_item_hours .hours_row { font-size: 14px; gap: 16px; }
  .detail_item_hours .hours_row + .hours_row { margin-top: 10px; }
  .shop_map {
    padding-top: 50%;
  }
  .shop_cta_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
    width: 100%;
    max-width: 380px;
  }
  .shop_cta_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 380px;
    height: 55px;
    padding: 0 32px;
    border-radius: 9999px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  }
  .shop_cta_btn:hover {
    background-color: #d84f00;
    border-color: #f0a985;
  }
  .shop_cta_btn .chevron {
    position: absolute;
    right: 28px;
    top: 50%;
    width: 11px;
    height: 11px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
  }
}
@media (min-width: 1024px) {
  .shop_card { padding: 0 0 40px; }
}
