@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: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  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;
}

@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: #333;
  color: #fff;
  width: 128px;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
}

/* フルスクリーンメニュー */
.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: 18px;
  font-weight: 700;
  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: 18px;
  justify-content: center;
  display: grid;
  grid-template-columns: 20px auto;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  background-color: #333;
  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/665;
  background-image: url(assets/images/cta_area.png);
}
.cta .cta_btn {
  width: 345px;
  position: absolute;
  translate: -50% 0;
  left: 50%;
  bottom: 64px;
  transition: all 0.4s;
}

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

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

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

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

.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;
}
.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;
}
.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/785;
  background-image: url(assets/images/gym.png);
}

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

.price {
  margin-top: -180px;
  aspect-ratio: 375/3582;
  background-image: url(assets/images/plan.png);
}

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

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

.qa_wrapper {
  display: grid;
  gap: 4px;
  width: 345px;
  margin-inline: auto;
}
.qa_wrapper .faq-item {
  padding: 16px;
  background-color: #333;
  color: #fff;
}
.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%;
}

@media screen and (max-width: 980px) {
  .sp_wrapper {
    max-width: 400px;
    margin-inline: auto;
  }
  .floating_btn {
    max-width: 400px;
  }
  .price {
    margin-top: -120px;
  }
}
@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 */