@charset "UTF-8";

/* ========================================
   Beat Pilates 三田ウッディタウン店 下層ページ
   ======================================== */

:root {
  /* TOP（beat-pilates.mom）準拠 */
  --color-ink: #222;
  --color-ink-soft: #333;
  --color-muted: #666;
  --color-paper: #f2eee8;
  --color-surface: #ffffff;
  --color-line: #ddd;
  --color-accent: #9f8a6c;
  --color-accent-deep: #8a6238;
  --color-link: #0017c1;
  --color-dark: #94938f;
  --color-dark-soft: #6e6b66;
  --font-body: "Zen Kaku Gothic New", "ZenKakuGothicNew", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --space-section: clamp(4rem, 7vw, 6.5rem);
  --space-gap: clamp(1.25rem, 3vw, 2rem);
  --width-content: 90rem;
  --width-narrow: 42rem;
  --radius: 10px;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  background: #fff;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-accent-deep);
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-ink-soft);
}

p {
  margin: 0;
}

button {
  font: inherit;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ly_inner {
  max-width: 107rem;
  margin-inline: auto;
}

.ly_inner--narrow {
  width: min(100% - 2.5rem, var(--width-narrow));
}

/* ---------- Header ---------- */
.bl_header {
  position: fixed;
  top: 0;
  z-index: 100;
  height: 100px;
  width: 100%;
  background: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.bl_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 107rem;
  margin-inline: auto;
  gap: 1.5rem;
}

.bl_header_logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  width: 9rem;
  transition: opacity 0.25s var(--ease);
}

.bl_header_logo:hover {
  opacity: 0.7;
}

.bl_header_logo img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.bl_header_nav {
  display: none;
}

.bl_header_navList {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.bl_header_navList a {
  color: var(--color-ink-soft);
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  transition: color 0.25s var(--ease);
}

.bl_header_navList a:hover {
  color: var(--color-accent);
}

.bl_header_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  background: #23A203;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.4rem;
  margin-left: auto;
  transition: opacity 0.25s var(--ease);
}

.bl_header_cta .fab {
  font-size: 2.6rem;
  line-height: 1;
}

.bl_header_cta:hover {
  opacity: 0.8;
}

.bl_header_menuBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  width: 4.4rem;
  height: 4.4rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.bl_header_menuBtn_line {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background: var(--color-ink-soft);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.bl_header.is-menuOpen .bl_header_menuBtn_line:nth-child(1) {
  transform: translateY(0.75rem) rotate(45deg);
}

.bl_header.is-menuOpen .bl_header_menuBtn_line:nth-child(2) {
  opacity: 0;
}

.bl_header.is-menuOpen .bl_header_menuBtn_line:nth-child(3) {
  transform: translateY(-0.75rem) rotate(-45deg);
}

.bl_header_overlay {
  display: none;
}

@media (max-width: 899px) {
  .bl_header_inner {
    padding-inline: 1.6rem;
    gap: 1rem;
  }

  .bl_header_cta {
    margin-left: auto;
    padding: 0.7rem 1rem;
    font-size: 1.2rem;
  }

  .bl_header_cta .fab {
    font-size: 2rem;
  }

  .bl_header_cta_txt {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bl_header_nav {
    display: block;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 0 solid var(--color-line);
    transition: max-height 0.35s var(--ease), border-bottom-width 0.35s var(--ease);
  }

  .bl_header.is-menuOpen .bl_header_nav {
    max-height: 80vh;
    overflow-y: auto;
    border-bottom-width: 1px;
  }

  .bl_header_navList {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0 2rem;
  }

  .bl_header_navList a {
    display: block;
    padding: 1.6rem 2.4rem;
    font-size: 1.6rem;
    border-bottom: 1px dashed var(--color-line);
  }

  .bl_header_overlay {
    display: block;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 98;
    background: rgba(34, 34, 34, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  }

  .bl_header.is-menuOpen .bl_header_overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .bl_header_overlay[hidden] {
    display: none;
  }

  .bl_header.is-menuOpen .bl_header_overlay[hidden] {
    display: block;
  }

  body.is-menuOpen {
    overflow: hidden;
  }
}

@media (min-width: 900px) {
  .bl_header_menuBtn {
    display: none;
  }

  .bl_header_nav {
    display: block;
    margin-left: auto;
  }

  .bl_header_cta {
    margin-left: 2rem;
  }
}

/* ---------- Hero ---------- */
.bl_hero {
  position: relative;
  min-height: min(92vh, 20rem);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--color-dark-soft);
  margin-top: 100px;
}

.bl_hero_media {
  position: absolute;
  inset: 0;
}

.bl_hero_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.bl_hero_media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(100, 70, 26, 0.2) 0%, rgba(51, 51, 51, 0.45) 45%, rgba(34, 34, 34, 0.88) 100%);
}

.bl_hero_content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.bl_hero_brand {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #fff;
}

.bl_hero_brand span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  opacity: 0.9;
  margin-top: 0.75rem;
}

.bl_hero_lead {
  max-width: 36rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.12s var(--ease) both;
}

.bl_hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.9s 0.22s var(--ease) both;
}

.el_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.el_btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  background: #23A203;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.4rem;
  transition: opacity 0.25s var(--ease);
}

.el_btn--primary .fab {
  font-size: 2.6rem;
  line-height: 1;
}

.el_btn--primary:hover {
  opacity: 0.8;
  color: #fff;
}

.el_btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.el_btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Section commons ---------- */
.bl_section {
  margin: var(--space-section) 0;
}

.bl_section--dark {
  background: var(--color-dark);
  color: #fff;
}

.bl_section--dark h2,
.bl_section--dark h3,
.bl_section--dark h4 {
  color: #fff;
}

.bl_section--surface {
  background: var(--color-surface);
}

.bl_section_head {
  margin-bottom: 7rem;
  text-align: center;
}

.bl_section_en {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.65rem;
}

.bl_section--dark .bl_section_en {
  color: #d7b98e;
}

.bl_section_title {
  font-size: 25px;
  font-size: 2.5rem;
  color: var(--color-ink-soft);
}

.bl_section--dark .bl_section_title {
  color: #fff;
}

.bl_section_lead {
  color: var(--color-ink-soft);
  font-size: 1.5rem;
}

.bl_section--dark .bl_section_lead {
  color: rgba(255, 255, 255, 0.92);
}

/* ---------- Features ---------- */
.bl_reasonList {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bl_reason {
  padding: 0 0 1.5rem;
}

.bl_reason_flex {
  display: flex;
  gap: 3rem;
}

.bl_reason_media {
  width: 450px;
  min-width: 450px;
}

.bl_reason_media img {
  width: 100%;
  height: 100%;
}

.bl_reason_content {
  width: 100%;
}

.bl_reason_num {
  display: block;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

.bl_reason_title {
  font-size: 2rem;
  margin-bottom: 0.65rem;
  border-left: 4px solid #333;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.bl_reason_text {
  color: var(--color-ink-soft);
  font-size: 1.5rem;
}

.bl_featureVisual {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .bl_featureVisual {
    grid-template-columns: 1.4fr 1fr;
    gap: 0.85rem;
  }
}

.bl_featureVisual_item {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #eee;
  border-radius: var(--radius);
}

.bl_featureVisual_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Store ---------- */
.bl_store {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .bl_store {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
  }
}

.bl_store_gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  min-height: 22rem;
}

.bl_store_gallery figure {
  margin: 0;
  overflow: hidden;
  background: #eee;
  border-radius: var(--radius);
}

.bl_store_gallery figure:first-child {
  grid-row: 1 / 3;
}

.bl_store_gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl_storeInfo {
  display: grid;
  gap: 0;
  max-width: 800px;
  margin: 50px auto 0;
  border-bottom: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
}

.bl_storeInfo_row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  font-size: 1.5rem;
}

@media (min-width: 600px) {
  .bl_storeInfo_row {
    grid-template-columns: 15rem 1fr;
  }
}

.bl_storeInfo_row dt,
.bl_storeInfo_row dd {
  padding: 1.2rem 1rem;
  border-top: 1px solid var(--color-line);
}

.bl_storeInfo_row dt {
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
}

.bl_storeInfo_row dd {
  margin: 0;
  color: var(--color-ink-soft);
}

.bl_storeInfo_row dd .map {
  margin-top: 10px;
  width: 100%;
  height: 350px;
}

.bl_storeInfo_row dd .map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.bl_storeInfo_row a {
  color: var(--color-link);
}

.bl_storeInfo_access {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 800px;
  margin: 50px auto 0;
}

@media (min-width: 600px) {
  .bl_storeInfo_access {
    gap: 1.4rem;
    margin: 30px auto 0;
  }
}

.bl_storeInfo_access .bl_storeInfo_access_row_title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .bl_storeInfo_access .bl_storeInfo_access_row_title {
    font-size: 1.8rem;
  }
}

.bl_storeInfo_access .bl_storeInfo_access_row_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.bl_store_access {
  margin-top: 50px;
  color: var(--color-ink-soft);
  font-size: 1.5rem;
  text-align: center;
}

.bl_map {
  margin-top: 2.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eee;
  border-radius: var(--radius);
}

.bl_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Price ---------- */
.bl_campaign {
  max-width: 52rem;
  margin: 0 auto clamp(3.5rem, 6vw, 5rem);
  padding: clamp(2.4rem, 4vw, 3.2rem) clamp(1.6rem, 4vw, 3rem) clamp(2rem, 3vw, 2.6rem);
  background: #faf8f4;
  border: 1px solid var(--color-accent);
  box-shadow: inset 0 0 0 4px #faf8f4, inset 0 0 0 5px var(--color-accent);
  text-align: center;
}

.bl_campaign_title {
  position: relative;
  display: inline-block;
  margin: 0 0 1.4rem;
  padding: 0 2.4rem;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  line-height: 1.4;
}

.bl_campaign_title::before,
.bl_campaign_title::after {
  content: "✦";
  position: absolute;
  top: 50%;
  font-size: 1.2rem;
  color: var(--color-accent);
  transform: translateY(-50%);
}

.bl_campaign_title::before {
  left: 0;
}

.bl_campaign_title::after {
  right: 0;
}

.bl_campaign_ribbon {
  display: inline-block;
  margin: 0 0 2.2rem;
  padding: 0.7rem 2.4rem;
  background: #6e5a3f;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  clip-path: polygon(0.8rem 0, calc(100% - 0.8rem) 0, 100% 50%, calc(100% - 0.8rem) 100%, 0.8rem 100%, 0 50%);
}

.bl_campaign_list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bl_campaign_item {
  padding: 1.6rem 0;
  border-top: 1px dashed var(--color-accent);
}

.bl_campaign_item:last-child {
  border-bottom: 1px dashed var(--color-accent);
}

.bl_campaign_label {
  margin: 0 0 0.6rem;
  padding: 0;
  border: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #6e5a3f;
  letter-spacing: 0.08em;
}

.bl_campaign_priceRow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem 1rem;
  margin: 0;
  color: #6e5a3f;
  font-size: 2rem;
}

.bl_campaign_was {
  font-weight: 500;
}

.bl_campaign_arrow {
  font-weight: 700;
}

.bl_campaign_price {
  position: relative;
  font-size: clamp(3.2rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  line-height: 1.1;
  background: -webkit-linear-gradient(transparent 60%, rgba(247, 238, 140, 1) 60%);
  background: linear-gradient(transparent 60%, rgba(247, 238, 140, 1) 60%);
}

.bl_campaign_price small {
  margin-left: 0.35rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-muted);
  vertical-align: middle;
}

.bl_campaign_note {
  margin: 1.6rem 0 0;
  font-size: 1.4rem;
  color: #6e5a3f;
  line-height: 1.7;
}

@media (max-width: 520px) {
  .bl_campaign {
    padding: 2rem 1.4rem 1.8rem;
  }

  .bl_campaign_title {
    padding: 0 2rem;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
  }

  .bl_campaign_ribbon {
    padding: 0.65rem 1.8rem;
    font-size: 1.6rem;
  }

  .bl_campaign_price--zero::after {
    right: -1.6rem;
  }
}

.bl_priceBlock {
  margin: var(--space-section) 0;
}

.bl_priceBlock_title {
  position: relative;
  font-size: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.bl_priceBlock_title:after {
  content: "";
  background: var(--color-accent);
  width: 30px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;
}

.bl_block_flex {
  display: flex;
  gap: 3rem;
}

.bl_block_img {
  width: 450px;
  min-width: 450px;
}

.bl_block_img img {
  width: 100%;
  height: 100%;
}

.bl_block_content {
  width: 100%;
}

.bl_block_content p {
  color: var(--color-ink-soft);
  font-size: 1.5rem;
}

.bl_priceTableWrap {
  width: 100%;
}

.bl_priceTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
  border-left: 1px solid var(--color-line);
}

.bl_priceTable th,
.bl_priceTable td {
  padding: 1.2rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-line);
  vertical-align: top;
  border-right: 1px solid var(--color-line);
}

.bl_priceTable thead th {
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--color-accent);
  color: #fff;
}

.bl_priceTable tbody th {
  font-weight: 700;
  width: 32%;
  color: var(--color-ink-soft);
  white-space: nowrap;
}

.bl_priceTable .bl_priceTable_fee {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--color-accent-deep);
}

.bl_priceBlock_note {
  margin-top: 1rem;
}

.bl_priceNotes {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem 0 0;
  color: var(--color-ink-soft);
  font-size: 1.5rem;
}

.bl_priceNotes li {
  position: relative;
  padding-left: 1.1rem;
}

.bl_priceNotes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ---------- Trial ---------- */
.bl_trial {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .bl_trial {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.bl_trial_media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #eee;
  border-radius: var(--radius);
}

@media (min-width: 900px) {
  .bl_trial_media {
    aspect-ratio: 3 / 4;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.bl_trial_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl_trial_block {
  margin: var(--space-section) 0;
}

.bl_trial_list li,
.bl_trial_flow li {
  position: relative;
  padding: 1rem 0 1rem 1.15rem;
  color: var(--color-ink-soft);
  font-size: 1.5rem;
}

.bl_trial_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-accent);
}

.bl_trial_flow {
  counter-reset: step;
}

.bl_trial_flow li {
  padding-left: 3.5rem;
}

.bl_trial_flow li::before {
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 1rem;
  background: var(--color-accent);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bl_trial_flow strong {
  display: block;
  color: var(--color-ink);
  margin-bottom: 0.2rem;
}

.bl_trial_reserve {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  text-align: center;
}

.bl_trial_reserve h3 {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  border-left: 2px solid #333;
  padding-left: 1.2rem;
}

.bl_trial_reserve p {
  margin-bottom: 1.25rem;
  color: var(--color-ink-soft);
  font-size: 1.5rem;
}

/* ---------- FAQ ---------- */
.bl_faqGroup {
  margin: var(--space-section) 0;
}

.bl_faqGroup:last-child {
  margin-bottom: 0;
}

.bl_faqGroup_title {
  font-size: 2rem;
  border-left: 4px solid #333;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.bl_faqList {
  display: grid;
  gap: 2rem;
}

.bl_faqItem {
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  background: #fff;
}

.bl_faqItem summary {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  list-style: none;
  cursor: pointer;
  padding: 2rem 6rem 2rem 2rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-ink-soft);
  position: relative;
  transition: color 0.2s var(--ease);
}

.bl_faqItem summary::before {
  content: "Q";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.bl_faqItem summary::-webkit-details-marker {
  display: none;
}

.bl_faqItem summary::after {
  content: "+";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.bl_faqItem[open] summary::after {
  content: "−";
}

.bl_faqItem_body {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin: 0 2rem 2rem;
  padding: 2rem 0 0;
  border-top: 1px dashed var(--color-accent);
  color: var(--color-ink-soft);
  font-size: 1.5rem;
}

.bl_faqItem_body::before {
  content: "A";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.bl_faqItem_body p {
  flex: 1;
  margin: 0;
}

/* ---------- CTA band ---------- */
.bl_ctaBand {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    linear-gradient(120deg, rgba(100, 70, 26, 0.72), rgba(51, 51, 51, 0.78)),
    url("../img/sanda-woodytown-pilates-studio-blue-lighting.webp") center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.bl_ctaBand h2 {
  font-size: 2.5rem;
  margin-bottom: 0.85rem;
  color: #fff;
}

.bl_ctaBand p {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.5rem;
}

/* ---------- Footer ---------- */
.bl_footer {
  background: #F5F0EE;
  color: var(--color-ink-soft);
  padding: 3rem 0 2rem;
}

.bl_footer_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-line);
}

.bl_footer_logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  width: 12rem;
}

.bl_footer_logo img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.bl_footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.bl_footer_nav a {
  position: relative;
  color: var(--color-ink-soft);
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
}

.bl_footer_nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 2rem;
  background: var(--color-line);
  transform: translateY(-50%);
}

.bl_footer_nav a:hover {
  color: var(--color-accent);
}

.bl_footer_info {
  margin-top: 1.75rem;
  font-size: 1.4rem;
  line-height: 1.9;
}

.bl_footer_info a {
  color: var(--color-link);
}

.bl_footer_copy {
  margin-top: 1.75rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  text-align: center;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .bl_hero {
    min-height: min(92vh, 12rem);
  }
  .bl_hero_brand {
    font-size: 2.4rem;
  }
  .ly_inner {
    padding: 0 2rem;
  }
  .bl_section_head {
    margin-bottom: 5rem
  }
  .bl_priceBlock_title {
    font-size: 2.2rem;
  }
  .bl_block_flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  .bl_block_img {
    width: 100%;
    min-width: 100%;
  }
  .bl_reason_title {
    font-size: 1.8rem;
  }
  .bl_reason_num {
    font-size: 1.6rem;
  }
  .bl_reason_flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  .bl_reason_media {
    min-width: auto;
    width: 100%;
  }
  .bl_footer_logo {
    width: 10rem;
  }
  .bl_footer_nav a {
    font-size: 1.4rem;
  }

  .bl_priceTableWrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-inline: -0.5rem;
    padding-inline: 0.5rem;
  }

  /* .bl_priceTable {
    min-width: 56rem;
  } */

  .bl_faqItem summary {
    padding: 1.6rem 5rem 1.6rem 1.6rem;
    gap: 1rem;
    font-size: 1.4rem;
  }

  .bl_faqItem summary::before,
  .bl_faqItem_body::before {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.4rem;
  }

  .bl_faqItem_body {
    margin: 0 1.6rem 1.6rem;
    padding: 1.6rem;
    gap: 1rem;
    font-size: 1.4rem;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bl_hero_media img,
  .bl_hero_brand,
  .bl_hero_lead,
  .bl_hero_actions {
    animation: none;
  }

  .bl_reason:hover .bl_reason_media img {
    transform: none;
  }
}