/* FV：CTAバナーを画像の下に表示 */
.fv.fvCtaBelow {
  margin-top: 0;
}
.fv.fvCtaBelow .fvMainImg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.fv.fvCtaBelow .fvContent.fvCtaBlock {
  position: static;
  width: 100%;
  padding: 3rem 2rem 4rem;
  box-sizing: border-box;
  text-align: center;
}
.fv.fvCtaBelow .fvContent.fvCtaBlock .fvBtnBox {
  max-width: 68.8rem;
  margin: 0 auto;
}
.fv.fvCtaBelow .fvContent.fvCtaBlock p {
  color: #333;
  margin-left: 0;
  margin-right: 0;
}

/* CTAボタン（HTML+CSSのみ・明るいグリーンベース） */
.ctaNotice {
  font-size: 2rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}
.ctaBtn {
  display: block;
  position: relative;
  width: 100%;
  max-width: 68.8rem;
  margin: 0 auto;
  padding: 2rem 3rem 2.4rem;
  box-sizing: border-box;
  background-color: #199342;
  border-radius: 1.2rem;
  text-decoration: none;
  overflow: hidden; /* 光の帯をボタン内にクリップ */
  box-shadow: none;
}
/* ラッパー：ストライプの影を右下にはみ出させる */
.ctaBtnWrap {
  position: relative;
  overflow: visible;
  max-width: 68.8rem;
  margin: 0 auto;
}
.ctaBtnWrap--small { max-width: 50rem; }
/* 背面：右下にズレた斜めストライプの影 */
.ctaBtnWrap::after {
  content: '';
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  right: -0.8rem;
  bottom: -0.8rem;
  background: repeating-linear-gradient(
    -45deg,
    #158035,
    #158035 0.25rem,
    #0f6b2a 0.25rem,
    #0f6b2a 0.5rem
  );
  border-radius: 1.2rem;
  z-index: -1;
}
.ctaBtn {
  position: relative;
  z-index: 1;
}
.ctaBtn .ctaBtnLabel {
  display: block;
  width: fit-content;
  margin: 0 auto 0.8rem;
  padding: 0.5rem 1.5rem;
  background: #fff;
  border-radius: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #199342;
  line-height: 1.3;
}
.ctaBtn .ctaBtnMain {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
/* 光の帯アニメーション（::before） */
.ctaBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-25deg);
  z-index: 1;
  animation: ctaBtnShine 3.5s ease-in-out infinite;
}
@keyframes ctaBtnShine {
  0% { left: -100%; }
  20% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}
.ctaBtn:hover {
  opacity: 0.92;
}
/* 他セクション用の小さめCTA */
.ctaBtn--small {
  max-width: 50rem;
  padding: 1.5rem 2rem 1.8rem;
}
.ctaBtn--small .ctaBtnLabel {
  font-size: 1.6rem;
  padding: 0.4rem 1.2rem;
}
.ctaBtn--small .ctaBtnMain {
  font-size: 2.2rem;
}

/* 代表プロフィール（topProgram）モダン装飾・FVの清潔感に統一 */
.topProgram {
  background-color: #F8F9FA;
  background-image: none;
}
/* レイアウト：見出し → 画像 → 文章の順で重ならないように（画像を通常フローに） */
.topProgram .itemTPContent {
  padding-top: 2rem;
}
.topProgram .itemTPContent > img {
  position: static;
  width: 100%;
  max-width: 58rem;
  height: auto;
  display: block;
  margin: 0 auto 2.5rem auto;
}
.topProgram .itemTPContent > .itemTPBorder {
  padding-top: 0;
}
/* 大見出しエリア（ショルダー＋タイトル＋アンダーライン） */
.topProgram .itemTPTTBox {
  background-color: #fff;
  position: relative;
  padding: 2rem 1rem 1rem;
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.topProgram .itemTPTTBox::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24rem;
  max-width: 80%;
  height: 4px;
  background: linear-gradient(90deg, #FF8C00, #E6A800);
  border-radius: 2px;
}
.topProgram .itemTPShoulder {
  font-size: 0.85em;
  color: #FF8C00;
  text-align: center;
  margin: 0 0 0.4rem 0;
  line-height: 1.4;
}
.topProgram .itemTPTT {
  background: none;
  background-image: none;
  color: #333;
  height: auto;
  margin: 0;
  padding: 0;
}
.topProgram .titleGradient01 {
  background-color: #FFF5E5;
  background-image: none;
  color: #333;
  text-align: left;
  padding-left: 2rem;
  border-left: 5px solid #FF8C00;
  box-sizing: border-box;
}
/* メッセージブロック（小見出し＋段落） */
.topProgram .itemTPMessageBlock {
  padding-bottom: 1.5rem;
  background: transparent;
}
.topProgram .itemTPMessageLead {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  padding: 0;
}
.topProgram .itemTPMessageBlock .itemTPText {
  margin-bottom: 1.2rem;
}
.topProgram .itemTPMessageBlock .itemTPText:last-child {
  margin-bottom: 0;
}

/* 店舗一覧（STORES）：モダン見出し＋帯＋静止画 */
.lstStore02 .storeSectionHead {
  position: relative;
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  margin-bottom: 0;
}
.lstStore02 .storeSectionHeadEn {
  font-family: "Times New Roman", "Yu Mincho", "游明朝", serif;
  font-size: clamp(6.5rem, 14vw, 11.5rem);
  font-weight: 300;
  color: rgba(26, 43, 76, 0.04);
  line-height: 1;
  margin: 0;
  padding-top: 0.5rem;
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
}
.lstStore02 .storeSectionHeadJa {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  display: inline-block;
  padding: 0.35rem 2rem 0.4rem;
  background: linear-gradient(135deg, #D35400, #F39C12);
  border-radius: 10px;
  box-sizing: border-box;
  letter-spacing: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.lstStore02 .storeSectionRibbon {
  position: relative;
  max-width: 72rem;
  margin: 0 auto 3rem;
  padding: 2.2rem 2.8rem 4rem;
  background-color: #FFF9F2;
  box-sizing: border-box;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06));
}
.lstStore02 .storeSectionRibbonText {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1A2B4C;
  line-height: 1.6;
  text-align: center;
}

.storeMapStatic {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  box-sizing: border-box;
}
.storeMapStaticImg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.storeMapAnchorBtn {
  display: block;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.6rem 2rem;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #FF8C00;
  border-radius: 8px;
  color: #FF8C00;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.storeMapAnchorBtn:hover {
  background-color: #FF8C00;
  color: #fff;
}
html {
  scroll-behavior: smooth;
}

/* 実績（ACHIEVEMENT）セクション：STORESと同じ見出し＋カード型レイアウト */
.achievementSection {
  background-color: #F8F9FA;
}
/* 見出しスタイル：実績・トレーナー・設備セクションで共通利用 */
.achievementSection .storeSectionHead,
.trainer .storeSectionHead,
.facility .storeSectionHead,
.commute .storeSectionHead,
.point .storeSectionHead {
  position: relative;
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  margin-bottom: 0;
}
.achievementSection .storeSectionHeadEn,
.trainer .storeSectionHeadEn,
.facility .storeSectionHeadEn,
.commute .storeSectionHeadEn,
.point .storeSectionHeadEn {
  font-family: "Times New Roman", "Yu Mincho", "游明朝", serif;
  font-size: clamp(6.5rem, 14vw, 11.5rem);
  font-weight: 300;
  color: rgba(26, 43, 76, 0.04);
  line-height: 1;
  margin: 0;
  padding-top: 0.5rem;
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
}
.achievementSection .storeSectionHeadJa,
.trainer .storeSectionHeadJa,
.facility .storeSectionHeadJa,
.commute .storeSectionHeadJa,
.point .storeSectionHeadJa {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  display: inline-block;
  padding: 0.35rem 2rem 0.4rem;
  background: linear-gradient(135deg, #D35400, #F39C12);
  border-radius: 10px;
  box-sizing: border-box;
  letter-spacing: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.achievementSection .storeSectionRibbon {
  position: relative;
  max-width: 72rem;
  margin: 0 auto 3rem;
  padding: 2.2rem 2.8rem 4rem;
  background-color: #FFF9F2;
  box-sizing: border-box;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06));
}
.achievementSection .storeSectionRibbonText {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1A2B4C;
  line-height: 1.6;
  text-align: center;
}

.achievementCards {
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
  box-sizing: border-box;
}
.achievementCard {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 3.5rem 3.5rem 4rem;
  margin-bottom: 3.5rem;
  box-sizing: border-box;
}
.achievementCard:last-child {
  margin-bottom: 0;
}
.achievementCardHeader {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: #1A2B4C;
  margin: 0 0 2.2rem 0;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(26, 43, 76, 0.12);
  line-height: 1.5;
}
.achievementCardBody {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.achievementCardPhoto {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.achievementCardNumbers {
  flex: 1;
  min-width: 0;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.achievementMetric {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 12px;
  line-height: 1;
}
.achievementMetric::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, #ddd, #fff);
}
.achievementMetric:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.achievementMetric:last-child::after {
  display: none;
}
.achievementMetricLeft {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.achievementMetricLabel {
  font-size: 12px !important;
  font-weight: 500;
  color: #666 !important;
  margin: 0 0 2px 0 !important;
  line-height: 1 !important;
}
.achievementMetricFlow {
  font-size: 16px !important;
  font-weight: bold !important;
  color: #333 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.achievementMetricChange {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 34px !important;
  font-weight: 900 !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  line-height: 1 !important;
  letter-spacing: -1px !important;
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #B8751E 0%, #F39C12 50%, #D35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .achievementCardNumbers {
    max-width: 550px;
  }
  .achievementMetric {
    align-items: flex-end !important;
    padding-bottom: 18px;
    gap: 20px;
  }
  .achievementMetricLeft {
    padding-bottom: 0;
  }
  .achievementMetricLabel {
    font-size: 18px !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.3 !important;
  }
  .achievementMetricFlow {
    font-size: 32px !important;
    font-weight: bold !important;
    color: #333 !important;
    line-height: 1.3 !important;
  }
  .achievementMetricChange {
    font-size: 44px !important;
    line-height: 1.3 !important;
  }
}

/* 悩み（WORRIES）セクション：PC用・スマホ用で背景画像を切り替え */
.worriesSection {
  overflow: hidden;
}
/* スマホ表示：縦長画像・通常フロー・カードは文字のすぐ下から・背景なじみ */
.worriesInner {
  position: relative;
  height: auto !important;
  min-height: 0;
  padding: 2rem 1.5rem 0;
  padding-bottom: 120px;
  box-sizing: border-box;
  background-color: #f2f2f2;
  background-image: url(../img/become2_sp.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
.worriesContent {
  position: relative;
  z-index: 2;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 14vh;
  margin-left: 22%;
  padding: 0 1rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
.worriesCards {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  width: 100%;
}
.worriesCard {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 14px 18px;
  width: 78%;
  max-width: 280px;
  margin-left: auto;
  font-size: 15px !important;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}
.worriesCard::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  border: 10px solid transparent;
  border-right-color: rgba(255, 255, 255, 0.85);
  border-left: none;
  width: 0;
  height: 0;
  filter: drop-shadow(-3px 0 4px rgba(0, 0, 0, 0.1));
}
/* PC表示：2列×3行・右寄り下寄り・カード巨大化で密度と迫力を確保 */
@media (min-width: 768px) {
  .worriesInner {
    min-height: 0;
    padding: 2.5rem 1rem 56.25% 1.5rem;
    background-color: #f0f0f0;
    background-image: url(../img/become2_pc.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto !important;
  }
  .worriesContent {
    position: absolute;
    top: auto;
    left: auto;
    right: 1rem;
    bottom: 1.5rem;
    margin-top: 0;
    margin-left: 0;
    padding: 0;
    width: 68%;
    max-width: none;
    align-items: stretch;
    justify-content: flex-end;
  }
  .worriesCards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
    max-width: none;
  }
  .worriesCard {
    padding: 20px 24px;
    font-size: 18px;
    margin-left: 16px;
    background: rgba(255, 255, 255, 0.95);
  }
  .worriesCard::before {
    border-width: 10px;
    border-right-color: rgba(255, 255, 255, 0.95);
  }
}

/* interior */
/* .interior{
    margin-bottom: 100rem;
} */
.interiorImg01{
    width: 75rem;
    height: 55.8rem;
}

.interiorImg02{
    width: 75rem;
    height: 60.9rem;
    margin-top: 25rem;
}

.interiorBlock01{
    background: url(../img/interiorBlockBg01.svg) no-repeat center;
    background-size: cover;
    width: 64rem;
    top: 14rem;
    left: 5rem;
}

.interiorBlock02{
    background: url(../img/interiorBlockBg02.svg) no-repeat center;
    background-size: cover;
    width: 64rem;
    top: 3rem;
    left: 5rem;
}

.interiorBlock04{
    background: url(../img/interiorBlockBg02.svg) no-repeat center;
    background-size: contain;
    width: 64rem;
    display: block;
    margin: 0 auto;
    margin-top: -2.5rem;
    margin-bottom: 2.5rem;
}

.interiorLogo{
    width: 34.2rem;
    display: block;
    margin: 0 auto;
    padding-top: 5rem;
}

.interiorBlock01 p:first-child{
    top: 5.5rem;
    left: 6rem;
}
.interiorBlock01 p:nth-child(2){
    top: 5.5rem;
    right: 8rem;
}

.interiorBlock01 p:last-child{
    width: 52rem;
    border: .2rem solid #B68001;
    display: block;
    margin: 0 auto;
    margin-bottom: 10rem;
}

.interiorBlock03{
    background: url(../img/interiorImg03.jpg) no-repeat center;
    background-size: cover;
    width: 75rem;
    height: 77rem;
    margin-top: 37rem;
}

.interiorBlock03 h2{
/*    background: url(../img/titleGradient01.svg) no-repeat center;*/
/*    background-size: cover;*/
    bottom: 21.2rem;
    left: 14rem;
    padding-left: 7rem;
    padding-right: 7rem;
    background : -moz-linear-gradient(0% 50% 0deg,rgba(17, 17, 15, 0.4) 0%,rgba(152, 0, 0, 0.6) 100%);
    background : -webkit-linear-gradient(0deg, rgba(17, 17, 15, 0.4) 0%, rgba(152, 0, 0, 0.6) 100%);
    background : -o-linear-gradient(0deg, rgba(17, 17, 15, 0.4) 0%, rgba(152, 0, 0, 0.6) 100%);
    background : -ms-linear-gradient(0deg, rgba(17, 17, 15, 0.4) 0%, rgba(152, 0, 0, 0.6) 100%);
}

.interiorBlock03 h3{
    /*background: url(../img/titleGradient01.svg) no-repeat center;
    background-size: cover;*/
    bottom: 10.7rem;
    left: 6rem;
    padding-left: 4rem;
    padding-right: 4rem;
    background : -moz-linear-gradient(0% 50% 0deg,rgba(17, 17, 15, 0.4) 0%,rgba(152, 0, 0, 0.6) 100%);
    background : -webkit-linear-gradient(0deg, rgba(17, 17, 15, 0.4) 0%, rgba(152, 0, 0, 0.6) 100%);
    background : -o-linear-gradient(0deg, rgba(17, 17, 15, 0.4) 0%, rgba(152, 0, 0, 0.6) 100%);
    background : -ms-linear-gradient(0deg, rgba(17, 17, 15, 0.4) 0%, rgba(152, 0, 0, 0.6) 100%);
}

/* commute */
.commute img{
    width: 75rem;
}

.commuteUl{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5.5rem 2.5rem;
}

.commuteUl img{
    width: 21.7rem;
    border-radius: 1.5rem;
}

.commuteUl p{
    position: absolute;
    position: absolute;
    left: 50%;
    white-space: nowrap;
    transform: translate(-50%,0);
    line-height: 1.25;
    bottom: 2.5rem;
    min-height: 10.5rem;
    display: inline-flex;
    align-items: center;
}

/* cp */
.cp{
    background: url(../img/cpBg.png) no-repeat center;
    background-size: contain;
    width: 75rem;
    height: 78rem;
}
.cp .cp-bg-wrap {
  position: absolute;
  top: 9rem;
  left: 9rem;
  width: 57rem;
  line-height: 0;
}
.cp .cp-bg-wrap img {
  position: static;
  top: auto;
  left: auto;
  display: block;
  width: 100%;
  height: auto;
}
.cp img{
    width: 57rem;
    position: absolute;
    top: 9rem;
    left: 9rem;
}

.cp h2, h3{
    display: inline-block;
}

.cp h3{
    bottom: 16rem;
    left: 5.5rem;
}

.cp h2{
    bottom: 15rem;
    right: 3.5rem;
}
/* sh */
.sh p{
    background: url(../img/speech.png) no-repeat center;
    background-size: auto 100%;
    top: 4.5rem;
    line-height: 1.425;
    width: 100%;
    color: #fff;
}
.shTtlBg{
    width: 75rem;
    height: 17.2rem;
    margin-top: -0.5rem;
}

.shImg{
    width: 75rem;
    height: 59rem;
    margin-top: -5rem;
}

/*point*/
.pointTT {
    padding: 6rem 0 9.5rem 0;
    position: relative;
}

.pointTT a{
    position: relative;
    z-index: 1;
}

.pointTTImg {
    display: block;
    width: 42.4rem;
    margin: 0 auto;
    margin-top: 5.5rem;
    position: relative;
    z-index: 1;
}

.pointTTBg {
    position: absolute;
    width: 106rem;
    max-width: initial;
    bottom: 0;
    right: -15rem;
}

.pointBlockTtl01{
    width: 64rem;
    bottom: -14rem;
    left: 5.5rem;
}

.pointBlockTtl p{
    bottom: -7rem;
    left: 13rem;
}

.pointBlockTtl3 p{
    left: 20rem;
}

.pointBlockTtl6 p{
    bottom: -3rem;
    left: 16rem;
}

.pointBlockCtn{
    margin-top: 17rem;
}

.pointBlockCtn p{
    display: block;
}

.pointBlockPrice{
    background-color: #fff;
    background-image: linear-gradient(to right, #B37201 , #AF6101, #9B0E00);
}

.pointBlockPrice{
    position: relative;
    padding-bottom: 7.5rem;
}

.pointBlockPriceTtl img{
    width: 72rem;
    display: block;
    margin: 0 auto;
    padding-top: 7rem;
}

.pointBlockPriceCnt{
    background-color: #fff;
    border-radius: 5.3rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.tblPrice01,
.tblPrice02{
    width: 66.6rem;
    height: auto;
    display: block;
    margin: 0 auto;
}

.tblPrice01{
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
}

.tblPrice02{
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

.pointBlockPriceCntTxt img{
    width: 47.8rem;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pointBlockPriceNote{
    font-size: 2.1rem;
    font-weight: 400;
    color: #4D4D4D;
    text-align: left;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 5rem;
}

.pointCtn01{
    width: 54.7rem;
    display: block;
    margin: 0 auto;

}

.pBlockBdr{
    background: url(../img/pBlockBdr.svg) no-repeat center;
    background-size: 100% 100%;
    width: 66.6rem;
    display: block;
    margin: 7rem auto 0 auto;
    padding: 1rem 0;
}

.pointBlockCtn04 h4{
    background: url(../img/pointSpeech.png) no-repeat center;
    background-size: 85% 100%;
    line-height: 1.4;
    width: 100%;
}

.tbResult {
    display: flex;
    justify-content: space-around;
    margin-bottom: 7rem;
    color: #333333;
}

.tbResult .tbrCol {
    width: 35rem;
}

.tbResult .tbrCol .tbrTT {
    color: #FFF;
    height: 6.6rem;
    background : -moz-linear-gradient(21.89% 237.47% 45deg,rgba(182, 128, 1, 1) 0%,rgba(152, 0, 0, 1) 100%);
    background : -webkit-linear-gradient(45deg, rgba(182, 128, 1, 1) 0%, rgba(152, 0, 0, 1) 100%);
    background : -o-linear-gradient(45deg, rgba(182, 128, 1, 1) 0%, rgba(152, 0, 0, 1) 100%);
    background : -ms-linear-gradient(45deg, rgba(182, 128, 1, 1) 0%, rgba(152, 0, 0, 1) 100%);
    background : linear-gradient(45deg, rgba(182, 128, 1, 1) 0%, rgba(152, 0, 0, 1) 100%);
    border-top-left-radius: 1.75rem;
    border-top-right-radius: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tbResult .tbrCol ul {
    height: 39.5rem;
    padding: 2rem 1rem 0 5rem;
    background-image: url(../img/point03Bg01.png);
    background-size: 100% 100%;
}

.tbResult .tbrCol ul li {
    position: relative;
    font-weight: bold;
}

.tbResult .tbrCol ul li:after {
    content: '';
    position: absolute;
    background-image: url(../img/pointcheck.png);
    background-size: 100% 100%;
    width: 2.9rem;
    height: 2.9rem;
    left: -3.8rem;
    top: 50%;
    transform: translate(0,-50%);
}

.priceTB02 {
    padding: 6.5rem 0 4.5rem 0;
    color: #FFF;
    background : -moz-linear-gradient(21.89% 237.47% 45deg,rgba(182, 128, 1, 1) 0%,rgba(152, 0, 0, 1) 100%);
    background : -webkit-linear-gradient(45deg, rgba(182, 128, 1, 1) 0%, rgba(152, 0, 0, 1) 100%);
    background : -o-linear-gradient(45deg, rgba(182, 128, 1, 1) 0%, rgba(152, 0, 0, 1) 100%);
    background : -ms-linear-gradient(45deg, rgba(182, 128, 1, 1) 0%, rgba(152, 0, 0, 1) 100%);
    background : linear-gradient(45deg, rgba(182, 128, 1, 1) 0%, rgba(152, 0, 0, 1) 100%);
}

.priceTB2Img {
    width: 67.6rem;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.priceTB02_txt01 {
    margin-bottom: -6.3rem;
}

.logo02 {
    width: 49.6rem;
    display: block;
    margin: -0.5rem auto;
}

.subGym .subPink {
    background-color: #EEC7C7;
    padding: 0 3rem 3rem 3rem;
    margin-top: -0.2rem;
}

.subGym .seBlue {
    background-color: #C9E9EE;
}

.subGym .subArrow {
    background-image: url(../img/subBg.png);
    background-size: 100% 100%;
    padding: 3.5rem 5rem 10rem 5rem;
    box-sizing: border-box;
    margin-top: -5.5rem;
    position: relative;
}

.point05Lbl {
    height: 22rem;
    display: block;
    margin: 4rem auto 4.5rem auto;
}
/*end point*/

/* トレーナー紹介（LPリニューアル）：3名＋その他多数の画像構成 */
.lp-section-trainer .TTTrainer {
    margin-bottom: 4rem;
}

.lp-trainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.lp-trainer-card {
    width: 100%;
    line-height: 0;
}

.lp-trainer-card img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}

.lp-trainer-others {
    width: 100%;
    line-height: 0;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.lp-trainer-others img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}

@media (max-width: 767px) {
    .lp-trainer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .lp-section-trainer .TTTrainer {
        height: auto;
        max-height: 14rem;
        margin-bottom: 2.5rem;
    }

    .lp-trainer-others {
        padding: 0 1rem;
    }
}

/* 設備・環境（facility）セクション：統合画像＋補足テキスト */
.lp-section-facility {
  padding-bottom: 4rem;
  box-sizing: border-box;
}

.lp-facility-image {
  width: 100%;
  line-height: 0;
  margin-bottom: 3rem;
}

.lp-facility-image .lp-full-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.lp-facility-text-wrapper {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.facility-text-block {
  margin-bottom: 3rem;
}

.facility-text-block:last-child {
  margin-bottom: 0;
}

.facility-sub-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a2b4c;
  margin: 0 0 1.2rem 0;
  line-height: 1.4;
}

.facility-text-block p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* 通いやすさ（commute）セクション：1枚画像 */
.lp-section-commute {
  padding-bottom: 3rem;
  box-sizing: border-box;
}

.lp-commute-image {
  width: 100%;
  line-height: 0;
}

.lp-commute-image .lp-full-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* キャンペーン＆CTAセクション */
.lp-section-campaign {
  padding-bottom: 3rem;
  box-sizing: border-box;
}

.lp-cta-intro-image,
.lp-campaign-banner-image {
  width: 100%;
  line-height: 0;
}

.lp-cta-intro-image .lp-full-img,
.lp-campaign-banner-image .lp-full-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.lp-cta-button-wrapper {
  padding: 3rem 2rem;
  text-align: center;
  box-sizing: border-box;
}

.lp-cta-button-wrapper .ctaBtnWrap {
  max-width: 68.8rem;
  margin: 0 auto;
}

/* 選ばれる理由（point）セクション：下向きフラッグ型ワンカラムレイアウト */
.lp-section-point {
  padding-bottom: 4rem;
  box-sizing: border-box;
}

.lp-point-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.lp-point-card {
  margin-bottom: 4rem;
}

.lp-point-card:last-child {
  margin-bottom: 0;
}

/* ビジュアルエリア（はみ出しを許可する） */
.lp-point-visual {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-bottom: 50px; /* フラッグが下に飛び出す分の隙間を外側に確保 */
  overflow: visible !important; /* 絶対に切り取られないようにする */
}

.lp-point-visual .lp-point-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* ★下向きフラッグ（はみ出して尖らせる！）★ */
/* =========================================
   黒いフラッグ本体（影を落とす役割に特化）
========================================= */
.lp-point-flag {
  position: absolute;
  bottom: -40px; /* 画像の枠から下に40pxはみ出させる */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 550px;
  color: #fff;
  text-align: center;
  padding: 30px 20px 60px; /* 下部をしっかり尖らせるための深い余白 */
  box-sizing: border-box;
  /* 背景色、トップライン、切り抜き指定を本体から「削除（無効化）」する */
  background: none !important;
  border-top: none !important;
  clip-path: none !important;
  /* 親要素にdrop-shadowをかけることで、中の疑似要素の形に合わせて完璧な影が出る */
  filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.3)) !important;
  z-index: 10 !important;
}

/* =========================================
   背景・形・質感を担う疑似要素（透過＋すりガラス効果）
========================================= */
.lp-point-flag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 完全な黒ではなく、85%〜90%の半透明グラデーションにして「抜け感」を出す */
  background: linear-gradient(145deg, rgba(50, 45, 40, 0.85), rgba(15, 15, 15, 0.9)) !important;
  /* ★魔法のすりガラス効果：透けた後ろの写真をフワッとぼかす★ */
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important; /* Safari対応 */
  border-top: 3px solid #BFA35D !important;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 35px), 50% 100%, 0 calc(100% - 35px));
  z-index: -1;
}

/* フラッグ全体の中央揃えを確実に */
.lp-point-flag {
  text-align: center !important; /* 中身をすべて中央揃えに強制 */
}

/* POINTの番号バッジ（中央配置 ＆ pxでサイズ強制） */
.lp-point-num {
  display: inline-block !important; /* 横幅を文字数に合わせる */
  background-color: #BFA35D !important;
  color: #fff !important;
  font-family: "Oswald", "Noto Serif JP", serif !important;
  font-size: 24px !important; /* remをやめてpxで強制的に大きく */
  font-weight: bold !important;
  padding: 8px 24px !important;
  margin: 0 auto 15px !important; /* 上下に並べるために下の余白を取る */
  letter-spacing: 0.1em !important;
}

/* フラッグ内のメインキャッチコピー（超特大・px指定で強制） */
.lp-point-catch {
  display: block !important; /* 確実に改行させてPOINTバッジの下に配置 */
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif !important;
  font-size: 38px !important; /* PCでドーンと見える特大サイズ（px） */
  font-weight: 900 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.05em !important;
  margin: 0 auto !important;
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

.lp-point-text-area {
  padding: 2.5rem 0 0;
  box-sizing: border-box;
}

/* その下のサブタイトル（これもpxで大きく） */
.lp-point-sub {
  display: inline-block !important;
  color: #BFA35D !important;
  font-size: 28px !important; /* 本文より明確に大きく */
  font-weight: 900 !important;
  margin-bottom: 30px !important;
  padding-bottom: 15px !important;
  border-bottom: 3px dashed #eeddbb !important;
  letter-spacing: 0.05em !important;
  line-height: 1.4 !important;
}

/* 説明文はそのまま読みやすさをキープ */
.lp-point-text-area .lp-point-desc {
  font-size: 1.7rem; /* 読みやすくキープ（1.1remは小さすぎるため1.7remに） */
  line-height: 1.8;
  color: #333;
  text-align: left;
  display: block;
  max-width: 650px;
  margin: 0;
  font-weight: 500;
}

/* =========================================
   スマホ表示時の完全最適化（選ばれる理由）
========================================= */
@media screen and (max-width: 767px) {

  /* ビジュアルエリアの余白をリセットし、縦並びに */
  .lp-point-visual {
    padding-bottom: 0 !important;
    margin-bottom: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* ★ここが重要：絶対配置をやめ、画像の下から少し重ねる★ */
  .lp-point-flag {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: -40px !important; /* 画像の下端に40pxだけ重ねる */
    width: 94% !important; /* 左右の余白を少し取る */
    padding: 20px 10px 45px !important; /* 内側の余白を減らして文字スペースを確保 */
  }

  /* POINTの番号バッジ（スマホ用のサイズに） */
  .lp-point-num {
    font-size: 14px !important;
    padding: 4px 16px !important;
    margin-bottom: 10px !important;
  }

  /* メインキャッチコピー（変な改行を防ぎ、読みやすいサイズに） */
  .lp-point-catch {
    font-size: 20px !important;
    line-height: 1.4 !important;
    width: 100% !important;
  }

  /* サブタイトル */
  .lp-point-sub {
    font-size: 18px !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    border-bottom-width: 2px !important;
  }

  /* 説明文のテキスト */
  .lp-point-desc {
    font-size: 14px !important;
    line-height: 1.7 !important;
    padding: 0 10px !important;
  }
}

@media (min-width: 768px) {
  .lp-point-card {
    margin-bottom: 5rem;
  }

  .lp-point-flag {
    padding: 32px 24px 64px;
  }

  .lp-point-text-area {
    padding: 3rem 0 0;
  }

  .lp-point-text-area .lp-point-desc {
    font-size: 1.8rem;
  }
}

/* ===================================================
   PC表示時の全体スケールアップ調整（大画面・ダイナミック表示）
   =================================================== */
@media screen and (min-width: 768px) {

  /* 1枚絵の縦積みセクション（解決策、強み、コネクタ、その他多数など） */
  .solutionWrapper,
  .strengthWrapper,
  .lp-img-wrapper,
  .lp-connector,
  .lp-trainer-others {
    max-width: 1200px; /* 大幅に拡大（前のLPと同等の迫力を出す） */
    width: 100%;
    padding: 0 40px;   /* 画面端に少しだけ余白を残す */
    margin: 0 auto;
  }

  /* 設備セクションのメイン画像（下余白を維持） */
  .lp-facility-image {
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto 3rem;
  }

  /* 通いやすさセクションの画像 */
  .lp-commute-image {
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
  }

  /* キャンペーン＆CTAセクションの画像 */
  .lp-cta-intro-image,
  .lp-campaign-banner-image {
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
  }

  /* トレーナー3名のカードグリッド（PCでも縦積み） */
  .lp-trainer-grid {
    grid-template-columns: 1fr; /* 横3列を解除し、縦1列に */
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 60px;              /* 縦の隙間を広めにとって圧迫感をなくす */
    margin: 0 auto 80px;
    padding: 0 40px;
  }

  /* トレーナー個別のカード */
  .lp-trainer-card {
    width: 100%;
    max-width: 750px; /* PCで縦に並べた時に、文字が読みやすく迫力が出るベストな幅 */
    flex: none;       /* flex:1の設定を解除 */
  }
}

/* =========================================
   共通見出し（ズレの完全解消 ＆ 英語透かし表示）
========================================= */
/* 親コンテナ（確実に中央揃えにする） */
.storeSectionHead {
  position: relative !important;
  text-align: center !important;
  margin-bottom: 50px !important;
  padding-top: 25px !important; /* 英語テキストの高さ分を確保 */
  display: block !important; /* ズレの原因だったflexを解除 */
  width: 100% !important;
}

/* 背景に透ける大きな英語 */
.storeSectionHeadEn {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important; /* ★追加：古いtransformの悪影響を消す */
  width: 100% !important;
  text-align: center !important;
  font-family: 'Oswald', 'Noto Serif JP', serif !important;
  font-size: 65px !important;
  font-weight: 900 !important;
  color: rgba(0, 0, 0, 0.04) !important; /* ★修正：白背景でも見えるように黒の透過に変更 */
  letter-spacing: 0.15em !important;
  margin: 0 !important;
  line-height: 1 !important;
  z-index: 1 !important;
}

/* 手前の日本語（リッチなゴールドグラデーションの箱） */
.storeSectionHeadJa {
  position: relative !important;
  display: inline-block !important; 
  left: auto !important; /* ★追加：右ズレの最大の原因だった古い left:50% を強制解除 */
  transform: none !important; /* ★追加：古いtransformを強制解除 */
  background: linear-gradient(135deg, #d4af37, #aa7c11) !important; /* 高級ゴールド */
  color: #fff !important; 
  font-family: 'Zen Kaku Gothic New', sans-serif !important;
  font-size: 26px !important;
  font-weight: bold !important;
  padding: 12px 40px !important;
  border-radius: 4px !important;
  letter-spacing: 0.1em !important;
  box-shadow: 0 5px 15px rgba(170, 124, 17, 0.25) !important; 
  margin: 0 auto !important;
  z-index: 2 !important;
}

/* スマホ表示時のサイズ調整 */
@media screen and (max-width: 767px) {
  .storeSectionHead {
    padding-top: 20px !important;
    margin-bottom: 40px !important;
  }
  .storeSectionHeadEn {
    font-size: 45px !important;
  }
  .storeSectionHeadJa {
    font-size: 20px !important;
    padding: 10px 30px !important;
  }
}