
:root {
  --befre-primary: #E4007F;
  --befre-primary-light: #FF5CAD;
  --befre-primary-pale: #FFF0F7;
  --befre-primary-dark: #B80066;
  --befre-accent: #C9A87E;
  --befre-accent-pale: #FAF5EE;
  --befre-campaign: #D10070;
  --befre-campaign-bg: #FFF0F6;
  --befre-campaign-dark: #A30058;
  --befre-text: #2D2226;
  --befre-text-secondary: #6E5E64;
  --befre-text-light: #A8959A;
  --befre-bg: #FFFBFD;
  --befre-bg-section: #FDF7F9;
  --befre-border: #F0E4E8;
  --befre-border-light: #F7EEF2;

  /* --- Font Stacks ---*/
  --befre-font-catch: 'フォーク R', 
    'ヒラギノ丸ゴ ProN', 'Hiragino Maru Gothic ProN',
    'Rounded Mplus 1c', sans-serif;
  --befre-font-catch-bold: 'フォーク B', 
    'ヒラギノ丸ゴ ProN', 'Hiragino Maru Gothic ProN',
    'Rounded Mplus 1c', sans-serif;
  --befre-font-heading: 'A1ゴシック', 
    'ヒラギノ丸ゴ ProN', 'Hiragino Maru Gothic ProN',
    'Rounded Mplus 1c', sans-serif;
  --befre-font-body:
    'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN',
    'メイリオ', Meiryo, 'Noto Sans JP', sans-serif;
  --befre-font-accent: 'Georgia', 'Times New Roman', serif;
}

/* --- Base --- */
body {
  font-family: var(--befre-font-body);
  color: var(--befre-text);
  background: var(--befre-bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.section-en {
  font-family: var(--befre-font-accent);
  font-size: 0.875rem; /* 14px */ font-weight: 500;
  color: var(--befre-primary);
  letter-spacing: 3px; text-transform: uppercase;
}
.section-title {
  font-family: var(--befre-font-heading);
  font-size: 1.625rem; /* 26px */ font-weight: 500; letter-spacing: 1px;
}
.section-desc {
  font-size: 0.875rem; /* 14px */ color: var(--befre-text-secondary);
}
.section-header { margin-bottom: 48px; }
.check { color: var(--befre-primary); }

.section-title-h3 {
  font-family: var(--befre-font-heading);
  font-size: 1.25rem; /* 20px */
  font-weight: 500; 
  letter-spacing: 0.5px;
}

/* --- Buttons --- */
.btn-befre {
  display: inline-block;
  background: var(--befre-primary); color: #fff;
  border: none; border-radius: 50px;
  padding: 12px 32px; font-size: 0.875rem; /* 14px */ font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-befre:hover,
.btn-befre:focus {
  background: var(--befre-primary-dark); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(100,40,70,0.12);
  text-decoration: none;
}
.btn-befre-secondary {
  display: inline-block;
  background: var(--befre-accent); color: #fff;
  border: none; border-radius: 50px;
  padding: 12px 32px; font-size: 0.875rem; /* 14px */ font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-befre-secondary:hover,
.btn-befre-secondary:focus {
  background: #b5956d; color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-lg {
  padding: 14px 36px; font-size: 0.9375rem; /* 15px */
}
.btn-sm {
  padding: 6px 18px; font-size: 0.75rem; /* 12px */
}
/* --- Section backgrounds --- */
.befre-section { padding: 100px 0; }
.befre-bg-alt  { background: var(--befre-bg-section); }
.befre-bg-gradient {
  background: linear-gradient(135deg, var(--befre-primary-pale) 0%, #f9edeb 50%, var(--befre-accent-pale) 100%);
}

.border-0      { border: 0 !important; }
.border-bottom { border-bottom: 1px solid var(--befre-border-light) !important; }
.rounded       { border-radius: .25rem !important; }


/* ==========================================================
   HEADER / NAVBAR (alpha.5にNavbar未搭載のため全てカスタム)
   ========================================================== */
.navbar-befre {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  background: rgba(255,252,251,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--befre-border-light);
  min-height: 72px;
}
.navbar-befre .navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px;
}
.navbar-befre .navbar-brand img {
  height: 42px; width: auto;
}
.navbar-befre .navbar-toggle {
  display: none; border: none; background: none;
  padding: 8px; cursor: pointer;
}
.navbar-befre .navbar-toggle .toggle-bar {
  display: block; width: 22px; height: 2px;
  background: var(--befre-text); margin: 5px 0;
  transition: all 0.3s;
}
.navbar-befre .navbar-menu {
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.navbar-befre .navbar-menu li { margin-left: 4px; }
.navbar-befre .nav-link {
  display: inline-block;
  font-size: 0.75rem; /* 12px */ font-weight: 500;
  letter-spacing: 1.5px; color: var(--befre-text-secondary);
  padding: 8px 10px; text-decoration: none;
  transition: color 0.3s;
}
.navbar-befre .nav-link:hover { color: var(--befre-primary); text-decoration: none; }
.navbar-befre .nav-link:hover { color: var(--befre-primary); text-decoration: none; }
.navbar-befre .nav-cta { margin-left: 8px; }
 
/* SP Navbar */
@media (max-width: 767px) {
  .navbar-befre {min-height: 56px;}
  .navbar-befre .navbar-inner {min-height: 56px;}
  .navbar-befre .navbar-toggle { display: block; }
  .navbar-befre .navbar-menu {
    display: none; flex-direction: column;
    position: absolute; top: 56px; left: 0; right: 0;
    background: rgba(255,252,251,0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 20px; border-bottom: 1px solid var(--befre-border-light);
  }
  .navbar-befre .navbar-menu.is-open { display: flex; }
  .navbar-befre .navbar-menu li { margin: 0; }
  .navbar-befre .nav-link { display: block; padding: 12px 0; font-size: 0.8125rem; /* 13px */ }
  .navbar-befre .nav-cta { margin: 8px 0 0; }
  .navbar-befre .nav-cta .btn-befre-outline,
  .navbar-befre .nav-cta .btn-befre-secondary {
    display: block; text-align: center; margin-bottom: 8px;
  }
}
/* ==========================================================
   HERO
   ========================================================== */
.hero-befre {
  position: relative; min-height: 600px; height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.1);
}
.hero-bg-img {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('/image/atrio/befre_img_main01.png') center/cover;
  opacity: 0.6; mix-blend-mode: multiply;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,252,251,0.05) 0%, rgba(255,252,251,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-catch {
  font-family: var(--befre-font-catch-bold);
  font-size: 2.625rem; /* 42px */ font-weight: 500;
  color: var(--befre-primary-dark); line-height: 1.5;
  letter-spacing: 3px;
}
.hero-sub {
  font-size: 0.9375rem; /* 15px */ color: var(--befre-primary-dark);
  letter-spacing: 0.5px; line-height: 2;
}
.hero-badge {
  font-family: var(--befre-font-heading);
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.75rem; /* 12px */ color: var(--befre-primary-dark); font-weight: 500;
  border: 1px solid rgba(228,0,127,0.15);
  display: inline-block;
}
/* ==============================================
   FEATURES (cards)
   ============================================== */
.feature-card {
  border: 1px solid var(--befre-border-light) !important;
  border-radius: 20px !important; overflow: hidden;
  transition: all 0.3s ease; height: 100%;
}
.feature-card .card-img-top {
  aspect-ratio: 16/10; object-fit: cover;
}
.feature-tag {
  font-size: 0.6875rem; /* 11px */ font-weight: 500;
  color: var(--befre-primary); letter-spacing: 1px; text-transform: uppercase;
}

.gym-section {
  background: linear-gradient(135deg, #faf2f5 0%, #f3e8e0 100%);
}
.gym-img {
  width: 100%; height: 100%; min-height: 480px;
  object-fit: cover; display: block;
}
.gym-content {
  padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%;
}
.gym-sub-title {
  font-family: var(--befre-font-heading); /* A1ゴシック */
  color: var(--befre-primary); font-size: 0.875rem; /* 14px */
  font-weight: normal;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--befre-border-light);
}

.btn-schedule-dl {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--befre-primary);
  color: var(--befre-primary-dark); padding: 12px 28px; border-radius: 50px;
  font-size: 0.875rem; /* 14px */ font-weight: 500; text-decoration: none;
  transition: all 0.3s ease;
}
.btn-schedule-dl:hover,
.btn-schedule-dl:focus {
  background: var(--befre-primary-pale); color: var(--befre-primary-dark);
  text-decoration: none;
}
 
/* ==========================================================
   PRICE
   ========================================================== */
.price-card {
  border-radius: 20px !important;
  border: 1px solid var(--befre-border-light) !important;
  transition: all 0.3s ease; height: 100%;
}
.price-card.featured {
  border: 2px solid var(--befre-primary) !important;
  background: var(--befre-primary-pale);
}
.badge-featured {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--befre-primary); color: #fff;
  padding: 4px 16px; border-radius: 50px;
  font-size: 0.6875rem; /* 11px */ font-weight: 500; white-space: nowrap;
}
.plan-price-num {
  font-family: var(--befre-font-accent);
  font-size: 2rem; font-weight: 600;
  color: var(--befre-primary-dark); line-height: 1;
}
.info-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--befre-border-light);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.info-label { font-size: 0.75rem; /* 12px */ color: var(--befre-text-secondary); margin-bottom: 2px; }
/* CTA見出し */
.cta-catch {
  font-family: var(--befre-font-catch); /* フォーク R */
  font-weight: normal;
}
 
.info-women-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--befre-primary-pale); color: var(--befre-primary-dark);
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.8125rem; /* 13px */ font-weight: 500;
}
.info-map-wrap {
  border-radius: 20px; overflow: hidden; aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f0e4ea, #e6dcd4);
} 

/* ==========================================================
   FAQ (Bootstrap alpha.5 Collapse override)
   alpha.5では .in が表示クラス (.show ではない)
   ========================================================== */
#faqAccordion .card {
  border: none !important;
  border-bottom: 1px solid var(--befre-border-light) !important;
  border-radius: 0 !important;
}
#faqAccordion .card-header {
  background: none; border: none; padding: 0;
}
#faqAccordion .faq-toggle {
  display: flex; align-items: center; width: 100%;
  padding: 20px 0; font-size: 0.9375rem; /* 15px */ font-weight: 400;
  color: var(--befre-text); text-decoration: none;
  background: none; border: none; cursor: pointer;
  text-align: left;
}
#faqAccordion .faq-toggle:hover { color: var(--befre-primary); }
#faqAccordion .q-mark {
  color: var(--befre-primary); font-family: var(--befre-font-accent);
  font-size: 1.125rem; /* 18px */ font-weight: 600; margin-right: 12px; flex-shrink: 0;
}
#faqAccordion .q-toggle {
  margin-left: auto; font-size: 1.25rem; /* 20px */ color: var(--befre-text-light);
  transition: transform 0.3s;
}
#faqAccordion .card-block {
  padding: 0 0 20px 30px; font-size: 0.875rem; /* 14px */
  color: var(--befre-text-secondary); line-height: 1.8;
}

  /* ==========================================================
   FIXED SP CTA
   ========================================================== */
.fixed-sp-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1050; padding: 12px 20px;
  background: rgba(255,252,251,0.95);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--befre-border-light);
}


/* --- Tablet (768px未満) --- */
@media (max-width: 767px) {
  .hero-befre { height: 70vh; min-height: 520px;padding-top: 56px; }
  .hero-catch { font-size: 1.625rem; /* 26px */ letter-spacing: 1px; }
  .hero-sub { font-size: 0.8125rem; /* 13px */ line-height: 1.4; }
  .befre-section { padding: 50px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.375rem; /* 22px */ }
  .gym-img { min-height: 240px !important; }
  .gym-content { padding: 24px 20px; }
  .fixed-sp-cta { display: flex; gap: 8px; }
  .fixed-sp-cta .btn-befre,
  .fixed-sp-cta .btn-befre-secondary { flex: 1; text-align: center; padding: 10px 8px; }
  body { padding-bottom: 70px; }
}
/* --- Small desktop (1099px以下) --- */
@media (max-width: 1099px) {
.hero-catch { font-size: 2rem; /* 32px */ }
.gym-img { min-height: 320px; }
}


/* top-info */
.top-info {top: -30px !important;margin-bottom: 0 !important;}
.top-info-header {
  background-color: #E4007F;
  border-radius: 5px 0 0 5px;
  color: #fff;
}
.top-info-body > ul li .ic {
  color: #E4007F;
}

@media (min-width: 768px){
.top-info-header:after {border-color: transparent transparent transparent #E4007F;}
	}

/* top-bg-carousel */
.top-bg-carousel {
  background: #f0bdc6;
  padding: 20px 0;
}

.top-bg-carousel-club {
  padding: 25px 0;
}
@media (min-width: 768px) {
  .top-bg-carousel-club {
    padding: 45px 0 50px;
  }
}
.top-bg-carousel-club .owl-carousel {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
 
.top-carousel-club .owl-carousel-mv-wrapper {
  padding-top: 0;
}
.top-carousel-club .owl-carousel .owl-item {
  float: none;
}
.top-carousel-club .owl-stage {
  display: flex;
  flex-direction: row;
}
.top-carousel-club .owl-item {
  background: #fff;
  display: flex;
}
@media (min-width: 768px) {
  .top-carousel-club .owl-item {
    min-width: 480px;
    max-width: 480px;
  }
}
.top-carousel-club .owl-item .item {
  font-size: 13px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  width: 242px;
  position: relative;
}
@media (min-width: 768px) {
  .top-carousel-club .owl-item .item {
    font-size: 18px;
    width: 100%;
  }
}
.top-carousel-club .owl-item .item a {
  color: #333;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .top-carousel-club .owl-item .item a {
    transition: 0.3s;
  }
}
.top-carousel-club .owl-item .item a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .top-carousel-club .owl-item .item a:hover .pic:after {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .top-carousel-club .owl-item .item a:hover .pic > img {
    transform: scale(1.1);
  }
}
.top-carousel-club .owl-item .item .pic {
  display: block;
  position: relative;
  overflow: hidden;
}
.top-carousel-club .owl-item .item .pic:before {
  content: "";
  display: block;
  padding-top: 61.575%;
}
@media (min-width: 768px) {
  .top-carousel-club .owl-item .item .pic:before {
    padding-top: 61.46%;
  }
}
.top-carousel-club .owl-item .item .pic:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@media (min-width: 768px) {
  .top-carousel-club .owl-item .item .pic:after {
    transition: 0.3s;
  }
}
.top-carousel-club .owl-item .item .pic > img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .top-carousel-club .owl-item .item .pic > img {
    transition: 0.3s;
  }
}
.top-carousel-club .owl-item .item .cat {
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
  background: #f6ad31;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  padding: 5px;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
  top: 149px;
  right: 12px;
}
@media (min-width: 768px) {
  .top-carousel-club .owl-item .item .cat {
    font-size: 15px;
    width: 78px;
    height: 78px;
    margin-top: -39px;
    top: 64.273%;
    right: 24px;
  }
}
.top-carousel-club .owl-item .item .desc {
  display: block;
  flex: 1 0 auto;
  padding: 25px 20px 20px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .top-carousel-club .owl-item .item .desc {
    padding: 40px;
  }
}
.top-carousel-club .owl-dots {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .top-carousel-club .owl-dots {
    height: 15px;
  }
}
@media (min-width: 768px) {
  .top-carousel-club .owl-dots {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .top-carousel-club .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 10px;
  }
}
 
.owl-carousel-mv-wrapper .owl-dots .owl-dot.active span,
.owl-carousel-mv-wrapper .owl-dots .owl-dot:hover span,
.mdl-carousel .owl-dot.active > span {
  background-color: #E4007F;
}
 
.mdl-carousel-item {
  position: relative;
}
 
.mdl-carousel-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0.5em;
}
 
@media (max-width: 767px) {
  .mdl-carousel-caption {
    font-size: 0.85rem;
  }
}
 
.owl-carousel .owl-item img {
  height: auto;
}





