@charset "UTF-8";
/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
@font-face {
  font-family: "din-condensed-bold";
  src: url(../assets/font/din-condensed-bold.ttf);
}
/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  font-size: 16px;
  margin: 0 auto;
  font-family: "Shippori Mincho", serif;
  font-weight: 900;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.04em;
  background-color: #f8f8f8;
  color: #333333;
}
html.menu-open,
body.menu-open {
  overflow: hidden;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
  border-radius: 10px;
}

@media screen and (min-width: 981px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 980px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 981px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .pcNone {
    display: block;
  }
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #333333;
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* ヘッダー
*--------------------------------------*/
:root {
  --header-h: 64px;
  --bg: #fff;
  --fg: #333;
  --accent: #333;
  --muted: #b8c0cc;
}

/* ヘッダー */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo img {
  display: block;
  height: 34px;
  width: auto;
}

/* ハンバーガー */
.hamburger {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
}

.hamburger .bar {
  width: 32px;
  height: 1px;
  background: #333;
  position: relative;
  transition: transform 0.25s, background 0.25s;
}

.hamburger .bar::before,
.hamburger .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 32px;
  height: 1px;
  background: #333;
  transition: transform 0.25s, top 0.25s, opacity 0.25s;
}

.hamburger .bar::before {
  top: -8px;
}

.hamburger .bar::after {
  top: 8px;
}

.header_cta_btn {
  position: absolute;
  right: 72px;
  translate: 0 -50%;
  top: 50%;
  background-color: #8C9093;
  color: #fff;
  width: 128px;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 900;
}

/* フルスクリーンメニュー */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  color: var(--fg);
  padding: 24px;
  padding-top: calc(var(--header-h) + 32px);
  transform: translateY(2%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 99;
}

.menu-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  margin-inline: auto;
  align-content: start;
  width: 100%;
  max-width: 280px;
}

.menu-links a {
  color: var(--fg);
  font-size: 16px;
  font-weight: 900;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  line-height: 1.5;
  position: relative;
}
.menu-links a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  color: #333;
}

.menu-links a:hover,
.menu-links a:focus {
  color: var(--accent);
  outline: none;
}

.menu-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 280px;
  margin: 32px auto 0;
}

.btn {
  font-size: 16px;
  justify-content: center;
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  background-color: #8C9093;
  color: #fff;
  border-radius: 100vmax;
  transition: transform 0.06s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn.line_btn {
  background-color: #53b535;
}

/* 開閉時のハンバーガー変形 */
.menu-open .hamburger .bar {
  background: transparent;
}

.menu-open .hamburger .bar::before {
  top: 0;
  transform: rotate(45deg);
  background: #111;
}

.menu-open .hamburger .bar::after {
  top: 0;
  transform: rotate(-45deg);
  background: #111;
}

/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* フッター
*--------------------------------------*/
footer {
  padding-top: 80px;
}
footer .logo {
  width: 120px;
  margin-inline: auto;
}
footer .footer_li {
  display: grid;
  gap: 24px;
  width: fit-content;
  margin: 40px auto;
}
footer .footer_li a {
  text-align: center;
  text-decoration: underline;
}
footer .instagram {
  width: 32px;
  margin-inline: auto;
}
footer .copy {
  font-size: 11px;
  text-align: center;
  padding: 64px 0;
}

/*
Theme Name: HPER
Version: 1.0.0
*/
/*--------------------------------------*
* フロント
*--------------------------------------*/
.common_section {
  background-size: cover;
  background-position: top;
}

.sp_wrapper {
  background-color: #fff;
}

.section_title {
  font-size: clamp(24px, 6.4vw, 28px);
  padding: 40px 0 24px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.07em;
}
.section_title.white {
  color: #fff;
}

.fade_slider {
  width: 310px;
}
/*
.cta {
  position: relative;
  aspect-ratio: 375 / 195;
  background-image: url(assets/images/cta_area.png);
    .cta_btn {
      width: 345px;
      position: relative;
      translate: -50% 0;
      left: 50%;
      bottom: 64px;
      transition: all 0.4s; &:hover { scale: 1.05; }
    }
  }
  .cta { .cta_btn {
    width: calc(345 / 375 * 100%);
    max-width: 440px; bottom: 108px;
    } }
  .cta {
    position: relative;
    aspect-ratio: 375/195;
    background-image: url(assets/images/cta_area.png);
  }
  .cta .cta_btn {
    width: 345px; position: relative;
    translate: -50% 0;
    left: 50%;
    bottom: 64px;
    transition: all 0.4s;
  }*/

.cta_img img {
  width: 100%;
  display: block;
}

.cta_floting_img img {
  border-radius: 10px;
}

.cta_btn_wrap {
  margin-top: 10px;
  padding-bottom: 40px;
}

.cta_btn {
  display: block;
  width: calc(345 / 375 * 80%);
  max-width: 440px;
  margin: 0 auto;
  transition: all 0.4s;
}

.cta_btn img {
  width: 100%;
  display: block;
}

.cta .cta_btn:hover {
  scale: 1.05;
}

.fv {
  aspect-ratio: 375/647;
  background-image: url(assets/images/fv.png);
}

.lead {
  aspect-ratio: 375/665;
  background-image: url(assets/images/about.png);
}

.wrong {
  aspect-ratio: 375/1018;
  background-image: url(assets/images/wrong.png);
}

/* ▼▼▼ 旧：背景画像（reason_bg.png）を固定表示するバージョン ▼▼▼
   戻す場合は、下のコメントを解除し、
   「現在：薄グレー単色」ブロックをコメントアウトしたうえで、
   index.html の <div class="reason_bg"> のコメントも解除してください。

.reason .reason_bg {
  position: sticky;
  top: 0;
  height: 100vh;
}
.reason .reason_bg img {
  object-fit: cover;
  height: 100%;
}
.reason .reason_inner {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
}

   ▲▲▲ ここまで旧バージョン ▲▲▲ */

/* ▼ 現在：料金セクション（plan_top.png）と同じ薄グレー単色 */
.reason {
  background-color: #f4f4f4;
}
.reason .reason_inner {
  position: relative;
  z-index: 2;
}
.reason .wrong_grid {
  display: grid;
  gap: 16px;
  padding-bottom: 80px;
}
.reason .wrong_grid li {
  background-color: #fff;
  width: 345px;
  margin-inline: auto;
  position: relative;
  padding: 60px 0 24px;
  border-radius: 10px;
}
.reason .wrong_grid .absolute {
  position: absolute;
  width: 68px;
  top: 16px;
  left: 16px;
}
.reason .wrong_grid .reason_title {
  font-size: 20px;
  line-height: 1.8;
  padding-bottom: 8px;
  text-align: center;
}
.reason .wrong_grid .reason_text {
  font-size: 14px;
  line-height: 1.8;
  width: 270px;
  margin-inline: auto;
}
.reason .wrong_grid .reason_text.open_text {
  overflow: hidden;
  transition: all 0.4s;
}
.reason .wrong_grid .inner_grid {
  display: grid;
  gap: 24px;
  width: 310px;
  margin-inline: auto;
}
.reason .wrong_grid .up_down_btn {
  width: fit-content;
  font-size: 14px;
  margin-inline: auto;
  cursor: pointer;
}
.reason .wrong_grid .up_down_btn .arrow {
  display: block;
  width: 24px;
  margin-inline: auto;
}

.gym {
  aspect-ratio: 375/786;
  background-image: url(assets/images/gym.png);
}

.traner {
  aspect-ratio: 750/1068;
  background-image: url(assets/images/staff.png);
}

/*.price {
  aspect-ratio: 375/2844;
  background-image: url(assets/images/plan.png);
}*/

/* 料金プラン部分のみ（高さは plan_top.png の縦横比に合わせて変更してね） */
.price {
  aspect-ratio: 375 / 1857;
  background-image: url(assets/images/plan_top.png);
}

/* 比較表セクション */
.compare {
  position: relative;
  background-color: #fff;
  padding-top: 40px;
}

/* ヘッダー3列：セクション内で sticky */
.compare_head {
  position: sticky;
  top: var(--header-h, 64px);
  z-index: 10;
  /* gridレイアウト不要 */
}

.compare_head_cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare_head_cell img {
  width: 100%;
  height: auto;
  display: block;
}

/* 表本体（行ラベル付きの1枚画像） */
.compare_body img {
  width: 100%;
  height: auto;
  display: block;
}

.ba_slider .swiper-button-next,
.ba_slider .swiper-button-prev {
  background-color: transparent;
  color: #333;
  border: none;
}

.flow {
  position: relative;
  aspect-ratio: 375/2489;
  background-image: url(assets/images/flow.png);
}

.flow_step01_cta {
  position: absolute;
  top: 18%;
  left: 55%;
  translate: -50% 0;
  width: 70%;
  display: block;
  transition: all 0.3s ease;
}
.flow_step01_cta img {
  width: 100%;
  display: block;
}
.flow_step01_cta:hover {
  scale: 1.05;
}

.qa_wrapper {
  display: grid;
  gap: 4px;
  width: 345px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.qa_wrapper .faq-item {
  padding: 16px;
  background-color: #8C9093;
  color: #fff;
  border-radius: 10px;
}
.qa_wrapper .faq-question,
.qa_wrapper .faq-answer {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  gap: 16px;
}
.qa_wrapper .faq-question {
  cursor: pointer;
  font-size: 16px;
  justify-content: space-between;
  line-height: 1.4;
  align-items: center;
}
.qa_wrapper .faq-question .faq-text {
  flex: 1;
}
.qa_wrapper .faq-label {
  font-weight: bold;
  width: 20px;
  flex-shrink: 0;
  text-align: center;
  font-size: 18px;
}
.qa_wrapper .faq-icon {
  margin-left: 8px;
  font-size: 18px;
  flex-shrink: 0;
}
.qa_wrapper .faq-answer {
  margin-top: 8px;
  display: none;
  line-height: 1.6;
  font-size: 14px;
}
.qa_wrapper .faq-item.active .faq-answer {
  display: flex;
}
.qa_wrapper .faq-item.active .faq-icon {
  transform: rotate(45deg); /* ＋ → × */
}

.floating_btn {
  position: fixed;
  z-index: 10;
  bottom: 0;
  translate: -50% 0;
  left: 50%;
  width: 100%;
}

/*--------------------------------------*
* フッター上 予約導線 完成版
*--------------------------------------*/
.footer-reserve {
  width: 100%;
  background: #8C9093;
  padding: 60px 0 60px;
}

/* ===== 上の説明 ===== */
.footer-reserve__intro {
  text-align: center;
  color: #fff;
  padding: 0 20px 40px;
}

.footer-reserve__main-title {
  font-size: clamp(24px, 6.4vw, 36px);
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-reserve__intro-text {
  font-size: 16px;
  line-height: 2;
}

/* ===== 黒パネル ===== */
.footer-reserve__panel {
  width: 92%;
  max-width: 440px;
  margin: 0 auto 28px;
  background: #8C9093;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 32px 20px 36px;
  box-sizing: border-box;
  color: #fff;
}

/* タイトル */
.footer-reserve__panel h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

/* 説明文 */
.footer-reserve__panel p {
  font-size: 14px;
  line-height: 2;
  text-align: center;
  margin-bottom: 28px;
}

/* ===== CTAボタン ===== */
.footer-reserve__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 78%;
  margin: 0 auto;
  min-height: 65px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
  border-radius: 999px;
}

.footer-reserve__cta::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
/* LINE */
.footer-reserve__cta--line::before {
  background-image: url('./assets/images/line.svg');
}
/* WEB */
.footer-reserve__cta--web::before {
  background-image: url('./assets/images/mail.svg');
}
/* TEL */
.footer-reserve__cta--tel::before {
  background-image: url('./assets/images/tel.svg');
}

/* LINE */
.footer-reserve__cta--line {
  background: #00c300;
  color: #fff;
}

/* WEB */
.footer-reserve__cta--web {
  background: #C85C5C;
  color: #fff;
}

/* TEL */
.footer-reserve__cta--tel {
  background: #777777;
  color: #fff;
}

/* ホバー */
.footer-reserve__cta:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* ===== PC（そのままスマホ風維持） ===== */
@media screen and (min-width: 981px) {

  .footer-reserve {
    padding: 80px 0 60px;
  }

  .footer-reserve__main-title {
    font-size: 32px;
  }

  .footer-reserve__intro-text {
    font-size: 17px;
  }

  .footer-reserve__panel {
    width: 92%;
    max-width: 440px;
    padding: 40px 24px 42px;
  }

  .footer-reserve__panel h3 {
    font-size: 24px;
  }

  .footer-reserve__panel p {
    font-size: 16px;
  }

  .footer-reserve__cta {
    min-height: 82px;
    font-size: 20px;
  }
}

@media screen and (min-width: 981px) {
  .footer-reserve {
    padding: 60px 0;
  }

  .footer-reserve__nav {
    width: 92%;
    max-width: 440px;
    gap: 14px;
    margin-bottom: 32px;
  }

  .footer-reserve__nav-btn {
    min-height: 86px;
    font-size: 16px;
  }

  .footer-reserve__panel {
    width: 92%;
    max-width: 440px;
    margin-bottom: 32px;
    padding: 40px 24px 40px;
  }

  .footer-reserve__panel-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .footer-reserve__panel-text {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .footer-reserve__cta {
    width: 72%;
    min-height: 60px;
    font-size: 20px;
  }
}

@media screen and (max-width: 980px) {
  .sp_wrapper {
    max-width: 400px;
    margin-inline: auto;
  }
  .floating_btn {
    max-width: 400px;
  }
}
@media screen and (min-width: 981px) {
  .sp_wrapper,
  footer {
    max-width: 560px;
    width: 38.8888888889%;
    margin: 0 11.1111111111% 0 auto;
    box-shadow: 8px 0 6px -4px rgba(0, 0, 0, 0.1), -8px 0 6px -4px rgba(0, 0, 0, 0.1);
  }
  .sp_wrapper:before, .sp_wrapper:after,
  footer:before,
  footer:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12px;
    z-index: -1;
  }
  .sp_wrapper:before,
  footer:before {
    left: -12px;
    box-shadow: 10px 0 8px rgba(0, 0, 0, 0.15); /* 左 */
  }
  .sp_wrapper {
    margin: 0 11.1111111111% -8px auto;
  }
  .floating_btn {
    max-width: 345px;
  }
  .section_title {
    padding: 64px 0 24px;
    font-size: clamp(24px, 6.4vw, 36px);
  }
  .site-header {
    display: none;
  }
  .reason .wrong_grid li {
    width: 92%;
    max-width: 440px;
  }
  .cta .cta_btn {
    width: 92%;
    max-width: 440px;
    bottom: 108px;
  }
  .pc_menu {
    position: fixed;
    translate: 0 -50%;
    top: 50%;
    left: 40px;
    width: 27.7777777778%;
    margin: 0 8.3333333333%;
  }
  .pc_menu .logo {
    width: 240px;
    margin: 0 auto 40px;
  }
  .pc_menu .cta_btn {
    margin-top: 40px;
  }
  .menu-links {
    max-width: 27.7777777778vw;
  }
  .qa_wrapper {
    width: 92%;
    max-width: 440px;
  }
}/*# sourceMappingURL=style.css.map */