@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　Ru!Ru!（ルールー）(style.css)ver.1 2025.6～
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*(基本の黄色)*/
/*(青緑：濃いめ)*/
/*(赤ピンク：濃いめ)*/
/*(赤ピンク：薄い)*/
/*(青緑：薄い)*/
/*(水色：背景用)*/
/*■■■■■■ fadein ■■■■■■■*/
.fade-in {
  opacity: 0;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}

.fade-in-up {
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
}

.fade-in-down {
  -webkit-transform: translate(0, -60px);
          transform: translate(0, -60px);
}

.fade-in-left {
  -webkit-transform: translate(-60px, 0);
          transform: translate(-60px, 0);
}

.fade-in-right {
  -webkit-transform: translate(60px, 0);
          transform: translate(60px, 0);
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*ディレイアニメーション（スクロールなし）
load-fadein-sequence
*/
.load-fadein-item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.load-fadein-item.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*ディレイするアニメーション用(スクロール)
複数個所設置の場合は
<div class="fadein-sequence-box">
</div>で囲む
*/
.fadein-sequence-item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
.fadein-sequence-item.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*■■■■■■ 主要タグ設定 ■■■■■■■*/
a:link {
  color: #222;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:visited {
  color: #545454;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover, a:active {
  color: #2FB6A9;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*■■■■■■ 汎用設定 ■■■■■■■*/
.bg-main {
  background-color: #FFEF61;
}

.bg-sub {
  background-color: #2FB6A9;
}

.bg-ami {
  background-color: #E6ECF2;
}

.bg-dark {
  background-color: #222;
  color: #FFF;
}

.bg-light {
  background-color: #E5F8F1;
}

.contents-in-block {
  padding: 50px 0;
}

/*■■■■■■ HEADER ■■■■■■■*/
/*キャッチコピー*/
.hedder-catch-box {
  width: 100%; /* 親に合わせて可変 */
  max-width: 400px; /* 必要に応じて最大幅を設定 */
  aspect-ratio: 1/1; /* 正方形を維持（最近のブラウザならOK） */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; /* 画像の余計な余白を防ぐ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  bottom: 10%;
  right: 10%;
}
.hedder-catch-box .header-now-button {
  margin: -30px auto 0;
  padding: 4px 30px 6px 15px;
  background-color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 1.6rem;
  border: 5px solid #E3493D;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  position: relative;
}
.hedder-catch-box .header-now-button:after {
  content: "";
  margin-bottom: -7px;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 50%;
  right: 0;
  border-style: solid;
  border-width: 7px 11px;
  border-color: transparent transparent transparent #E3493D;
}

.head-sub-catch {
  position: absolute;
  right: -50px;
  top: 40px;
  width: 175px;
  height: auto;
}

/*フロートバナー*/
.float-bn {
  position: fixed;
  right: 15px;
  bottom: 14px;
  z-index: 30;
}

/* フロートバナー 非表示時 */
.float-bn-hidden {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* 表示時の初期状態 */
.float-bn {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.float-btn {
  padding: 5px 15px 7px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 6px solid #E3493D;
  border-radius: 14px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
.float-btn span {
  margin: auto;
  display: inline-block;
}
.float-btn .yen0 {
  margin: auto 5px auto 0;
  font-size: 3rem;
}
.float-btn .yen0 img {
  width: 50px;
}
.float-btn .imasugu0 {
  margin: 0 0 5px;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #E3493D;
}
.float-btn .yoyaku0 {
  padding: 0 0 18px;
  position: relative;
  text-align: center;
}
.float-btn .yoyaku0:after {
  content: "";
  margin-left: -8px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: -14px;
  border-style: solid;
  border-width: 12px 8px;
  border-color: #E3493D transparent transparent transparent;
}

a.float-btn:link, a.float-btn:visited {
  background-color: #FFF;
  color: #4C4948;
}

a.float-btn:hover, a.float-btn:active {
  background-color: #FFEF61;
  color: #4C4948;
}

/*■■■■■■ TOP ■■■■■■■*/
.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh; /* ビューポート全体の高さ */
}

/* ヘッダー画像のブロック */
.header-main-img-block {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* 余ったスペースを埋める */
  width: 100%;
  background: url(../images/bg-main-img.webp) top center no-repeat;
  background-size: cover;
  position: relative;
}

/* リード部分のブロック */
.read-contents-block {
  -ms-flex-negative: 0;
      flex-shrink: 0; /* 縮小せずそのままの高さを確保 */
  padding: 24px 0 26px;
  color: #4C4948;
}

.main-title {
  font-size: 3.6rem;
  font-weight: 700;
}
.main-title span.read-q {
  font-weight: 700;
  color: #2FB6A9;
  border-bottom: 4px solid #2FB6A9;
}
.main-title span.read-a {
  font-weight: 700;
  color: #E3493D;
  border-bottom: 4px solid #E3493D;
}

/*共有*/
.text-read {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  color: #4C4948;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
.contents-block {
  margin: 50px 0;
}

.contents-name {
  margin: 0;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: 2.3rem;
  color: #222;
  letter-spacing: 1rem;
  line-height: 1.2;
  font-weight: 700;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgb(255, 240, 0)), to(rgb(236, 108, 0)));
  background-image: linear-gradient(90deg, rgb(255, 240, 0) 50%, rgb(236, 108, 0));
  -webkit-filter: drop-shadow(#999 0.3rem 0.3rem 0.3rem);
          filter: drop-shadow(#999 0.3rem 0.3rem 0.3rem);
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contents-mi {
  padding: 0 0 20px;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
}

.section {
  padding: 100px 20px;
  text-align: center;
}

.section--white {
  background: #ffffff;
}

.section--yellow {
  background: #ffef61;
  position: relative;
}

/*V字仕切り*/
.v-divider--invert {
  position: relative;
  height: 160px;
  background: #ffef61;
  overflow: hidden;
}

.v-divider--invert::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/*S字ベジェ*/
.wave-divider {
  line-height: 0;
}

.wave-divider svg {
  top: -1px;
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

/*■■■■■■ 悩みと選ばれる4つの理由 ■■■■■■■*/
.worries-box {
  margin: 20px auto;
  text-align: center;
  background: url(../images/worries-img.webp) center bottom no-repeat;
  background-size: 276px;
}
.worries-box li {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wprries-1, .wprries-2, .wprries-3, .wprries-4 {
  background-color: #2FB6A9;
  padding: 22px 30px 27px;
  font-size: 2rem;
  color: #FFF;
  font-weight: 700;
  border-radius: 16px;
  min-width: 276px;
}

.worries-sect-1 {
  margin: auto;
  width: 65%;
}

.worries-sect-2 {
  margin: auto;
  width: 95%;
}

.worries-sect-3 {
  padding: 80px 0 0 0;
}

.wprries-1, .wprries-2, .wprries-3, .wprries-4 {
  position: relative;
}

.wprries-1, .wprries-3 {
  margin: auto auto auto 0;
}

.wprries-2, .wprries-4 {
  margin: auto 0 auto auto;
}

.wprries-1:after {
  content: "";
  margin-left: -20px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: -25px;
  border-style: solid;
  border-width: 15px 20px;
  border-color: #2FB6A9 #2FB6A9 transparent transparent;
}

.wprries-2:after {
  content: "";
  margin-left: -20px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: -25px;
  border-style: solid;
  border-width: 15px 20px;
  border-color: #2FB6A9 transparent transparent #2FB6A9;
}

.wprries-3:after {
  content: "";
  margin-bottom: -18px;
  width: 0;
  height: 0;
  position: absolute;
  right: -56px;
  bottom: 50%;
  border-style: solid;
  border-width: 18px 28px;
  border-color: transparent transparent transparent #2FB6A9;
}

.wprries-4:after {
  content: "";
  margin-bottom: -18px;
  width: 0;
  height: 0;
  position: absolute;
  left: -56px;
  bottom: 50%;
  border-style: solid;
  border-width: 18px 28px;
  border-color: transparent #2FB6A9 transparent transparent;
}

.title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 1rem;
}

.main-itile-ans {
  margin: 0 0 5px;
  font-size: 3.6rem;
  font-weight: 700;
  display: inline-block;
  text-align: center;
}
.main-itile-ans span.read-q {
  font-size: 5rem;
  color: #2FB6A9;
  border-bottom: 4px solid #2FB6A9;
  font-weight: 700;
}
.main-itile-ans span.read-a {
  font-size: 5rem;
  color: #E3493D;
  border-bottom: 4px solid #E3493D;
  font-weight: 700;
}

.title-line {
  width: 60px;
  height: 2px;
  background-color: red;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.title-line.left {
  margin-top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.title-line.right {
  margin-top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*■■■■■■ 4つの理由1～4 ■■■■■■■*/
.point-list-box {
  padding: 40px 5px 50px;
  background-color: #FFF;
  border: 3px dotted #4C4948;
  border-radius: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  gap: 20px 0;
  width: 100%;
  height: 100%;
}

.align-items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.point-list-box:after {
  content: "";
  margin-left: -10px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: -5px;
  border-style: solid;
  border-width: 20px 12px;
  border-color: #E3493D transparent transparent transparent;
}

.point-no-s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 68px;
  height: 68px;
  border-radius: 34px;
  background-color: #E3493D;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #FFF;
  position: absolute;
  top: -36px;
  left: 50%;
  margin-left: -34px;
}
.point-no-s small {
  margin: auto auto 0;
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
}
.point-no-s strong {
  margin: 0 auto auto;
  font-size: 3.3rem;
  line-height: 1;
  font-weight: bold;
}

.point-mi-s {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
}

.point-img-s-box {
  margin: auto;
  display: block;
  width: 164px;
  height: 164px;
  border-radius: 82px;
}

.bg-point1-s {
  background: url(../images/img-point-1_s.webp) center center no-repeat;
  background-size: cover;
}

.bg-point2-s {
  background: url(../images/img-point-2_s.webp) center center no-repeat;
  background-size: cover;
}

.bg-point3-s {
  background: url(../images/img-point-3_s.webp) center center no-repeat;
  background-size: cover;
}

.bg-point4-s {
  background: url(../images/img-point-4_s.webp) center center no-repeat;
  background-size: cover;
}

/*■■■■■■ ポイント（共通タイトル） ■■■■■■■*/
.point-img-block {
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 560px;
}

.bg-point-1 {
  background: url(../images/point-img-1.webp) top center no-repeat;
  background-size: cover;
}

.bg-point-2 {
  background: url(../images/point-img-2.webp) top center no-repeat;
  background-size: cover;
}

.bg-point-3 {
  background: url(../images/point-img-3.webp) top center no-repeat;
  background-size: cover;
}

.bg-point-4 {
  background: url(../images/point-img-4.webp) top center no-repeat;
  background-size: cover;
}

.point-no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 104px;
  height: 104px;
  border-radius: 52px;
  background-color: #E3493D;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: -15px;
  margin-top: -52px;
}
.point-no small {
  margin: auto auto 0;
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
}
.point-no strong {
  margin: 0 auto auto;
  font-size: 5rem;
  line-height: 1;
  font-weight: bold;
}

/*ポイント各タイトル共通*/
.point-title {
  top: -36px;
  left: 36px;
  height: 80px;
  padding: 0 5rem 0 110px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  border-radius: 6px 0 0 6px;
}
.point-title p {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #FFF;
  font-weight: 700;
}

.point-title:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: -100px;
  bottom: 0;
  border-style: solid;
  border-width: 40px 50px;
  border-color: transparent transparent #000 #000;
  opacity: 0.6;
}

/*■■■■■■ ポイント（1）選べる料金プラン ■■■■■■■*/
/*■■■■■■ tab menu ■■■■■■■*/
ul.tab-list {
  margin: 0 auto;
  list-style-type: none;
}

.tab-list {
  top: 55px;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.tab-list-item {
  margin: 0 10px 15px;
  text-align: left;
  background-color: white;
  padding: 0px 30px 10px 50px;
  cursor: pointer;
  position: relative;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #CCC;
  white-space: nowrap;
  border: 5px solid #A8E6CF;
  border-radius: 12px;
}
.tab-list-item span {
  font-size: 1.6rem;
  font-weight: 400;
}

.tab-list-item.active {
  background-color: #2FB6A9;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
  border: 5px solid #A8E6CF;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.tab-list-item.active span {
  font-size: 1.6rem;
  font-weight: 400;
}

.tab-list-item:after {
  margin-top: -7px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 3px 3px 0 0;
  border-color: #2FB6A9;
  border-style: solid;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg); /* 初期状態で45度 */
  z-index: 30;
}

.tab-list-item.active:after {
  margin-top: -7px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 3px 3px 0 0;
  border-color: #FFF;
  border-style: solid;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg); /* 初期状態で45度 */
  z-index: 30;
}

.tab-contents-item {
  display: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.tab-contents-item.show {
  display: block;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/*料金表　table*/
.course-price, .course-price-parsonal {
  margin: 60px auto 10px;
  background-color: #FFF;
  border-spacing: 6px;
  table-layout: fixed;
  width: 100%;
  display: table;
}
.course-price th, .course-price td, .course-price-parsonal th, .course-price-parsonal td {
  padding: 10px 2em;
  font-size: 1.8rem;
  font-weight: 700;
}
.course-price thead th, .course-price thead td, .course-price-parsonal thead th, .course-price-parsonal thead td {
  background-color: #D0F3EF;
  text-align: center;
}
.course-price tbody th, .course-price-parsonal tbody th {
  background-color: #A8E6CF;
  text-align: center;
}
.course-price tbody td, .course-price-parsonal tbody td {
  background-color: #E5F8F1;
  text-align: center;
}
.course-price tbody td:last-child, .course-price-parsonal tbody td:last-child {
  background-color: #64D8CB;
  text-align: center;
}
.course-price th.table-title, .course-price-parsonal th.table-title {
  background-color: #D4DCE3;
}

.note-list {
  list-style: none; /* デフォルトのマークを消す */
  padding-left: 0;
  margin: 1em 0;
  text-align: left;
}

.note-list li {
  position: relative;
  padding-left: 1.2em; /* 「※」の分だけ左に余白 */
  margin-bottom: 0.5em;
  font-size: 1.4rem; /* 小さめに（お好みで調整） */
  color: #555;
  line-height: 1.6;
}

.note-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/*パーソナルプラン　イメージアイコン*/
.flex-box-thumbs-img {
  margin: 60px auto 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  alogn-irems: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.training-img-box {
  margin: 20px 50px;
  display: inline-block;
  width: 260px;
  height: 260px;
  border-radius: 130px;
}

.bg-training1 {
  background: url(../images/trainning-img.webp) center center no-repeat;
  background-size: cover;
}

.bg-training2 {
  background: url(../images/stretch-img.webp) center center no-repeat;
  background-size: cover;
}

.training-icon {
  margin: auto -10px;
  display: inline-block;
}
.training-icon span {
  margin: auto;
  width: 150px;
  height: 150px;
  border-radius: 75px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  alogn-irems: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.training-icon span small {
  margin: auto 0;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}

.parsonal-t {
  background-color: #FFF7AF;
  position: relative;
  z-index: 0;
}

.stretch-t {
  background-color: #FFEF61;
  position: relative;
}
.stretch-t small {
  position: relative;
  z-index: 16;
  left: -17px;
}

/*■■■■■■ ポイント（2）充実の設備 ■■■■■■■*/
.sub-title {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-bottom: 10px; /* 下線との間隔 */
}
.sub-title br {
  line-height: 0;
}

.sub-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  border-radius: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#2FB6A9), color-stop(45%, #2FB6A9), color-stop(55%, #E3493D), to(#E3493D));
  background: linear-gradient(to right, #2FB6A9 0%, #2FB6A9 45%, #E3493D 55%, #E3493D 100%);
}

.support-flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  height: 100%;
}

.support-text-box {
  display: inline-block;
}
.support-text-box p {
  text-align: left;
  font-size: 1.6rem;
}
.support-text-box p strong {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
}

.support-img-box {
  margin: 0 auto;
  display: inline-block;
  min-width: 260px;
  width: 260px;
  height: 260px;
  border-radius: 130px;
}

.bg-sup-menu_1 {
  background: url("../images/menu1-2.webp") center center no-repeat;
  background-size: cover;
}

.bg-sup-menu_2 {
  background: url("../images/menu2-2.webp") center center no-repeat;
  background-size: cover;
}

.bg-sup-menu_3 {
  background: url("../images/menu4.webp") center center no-repeat;
  background-size: cover;
}

.bg-sup-menu_4 {
  background: url("../images/menu4-2.webp") center center no-repeat;
  background-size: cover;
}

.video-item video {
  width: 260px;
  height: auto;
}

/*■■■■■■　SWIPER　■■■■■■*/
.swiper-container {
  margin-inline: auto;
  width: 100%;
  position: relative;
}

.swiper .swiper-slide {
  height: auto;
}

.swiper .review-box {
  height: 100%;
}

/*矢印*/
.swiper-button-prev,
.swiper-button-next {
  width: 54px; /* ボタンの幅 */
  height: 54px; /* ボタンの高さ */
  background-size: 54px 54px; /* 表示したいサイズ */
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  margin-top: 0;
}

.swiper-button-prev {
  left: -60px;
}

.swiper-button-next {
  right: -60px;
}

/* 次ページボタンのスタイル */
.swiper-button-next, .swiper-button-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 27px;
  background-color: #2FB6A9;
}

.swiper-button-next:before {
  content: "";
  margin-right: 5px;
  display: block;
  width: 14px;
  height: 14px;
  border-width: 0 3px 3px 0;
  border-color: #FFF;
  border-style: solid;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* 前ページボタンのスタイル */
.swiper-button-prev:before {
  content: "";
  margin-left: 5px;
  display: block;
  width: 14px;
  height: 14px;
  border-width: 3px 0 0 3px;
  border-color: #FFF;
  border-style: solid;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

/*ページネーション*/
.swiper-pagination-bullets {
  position: static;
  margin-top: 16px;
}

.swiper-pagination-bullet {
  background-color: #2FB6A9;
}

/*計測器*/
.mersuring-flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 26px;
}

.mersuring-box {
  margin: 0 auto auto;
  width: 200px;
  height: 100%;
}
.mersuring-box p {
  font-size: 1.4rem;
  text-align: left;
}
.mersuring-box p strong {
  margin: 10px 0;
  display: block;
  font-size: 2rem;
  text-align: center;
}

/*■■■■■■　POINT (03) 女性専用　■■■■■■*/
.circle-image {
  margin: 0 auto;
  width: 100%; /* 親に合わせて可変 */
  max-width: 360px; /* 必要に応じて最大幅を設定 */
  aspect-ratio: 1/1; /* 正方形を維持（最近のブラウザならOK） */
  border-radius: 50%; /* 正円に切り取る */
  -o-object-fit: cover;
     object-fit: cover; /* 中央を拡大してトリミング */
  display: block; /* 画像の余計な余白を防ぐ */
}

.safety-box {
  margin: auto;
}

.safety-read {
  margin: auto;
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 400;
}
.safety-read small {
  display: block;
  margin: 10px 0 0;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}

/*スタジオ別詳細*/
.studio-flex-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  aign-items: center;
  justify-contents: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 0;
}

.studio-in-box {
  margin: 0 auto auto;
  padding: 24px 20px 26px;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border: 6px solid #D1D1D1;
  border-radius: 12px;
}

.studio-name {
  margin: 0 0 20px;
  padding: 6px 10px 6px;
  background-color: #FFEF61;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 6px;
}

.studio-list {
  margin: 0 0 20px 10px;
  text-align: left;
  font-weight: 400;
}
.studio-list li {
  padding: 3px 0;
}
.studio-list li span {
  margin-right: 6px;
  padding: 1px 8px 2px;
  border-radius: 5px;
  font-size: 1.4rem;
  color: #FFF;
  background-color: #2FB6A9;
}

.studio-flex-box {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.studio-img {
  position: relative;
  aspect-ratio: 3/2; /* ＝6:4の比率で箱を作る */
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 2つの箱が等幅で並ぶ */
  overflow: hidden;
  border-radius: 4px; /* 任意 */
}
.studio-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 枠にフィットしつつトリミング */
  display: block;
}

.entry-btn {
  margin: 20px auto auto;
  padding: 0 50px 0 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; /* 横並び */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* ←ここで縦中央そろえ */
  gap: 0.2em; /* アイテム間のすき間 */
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none; /* 任意：下線を消す */
  border: 4px solid #E3493D;
  border-radius: 6px;
  position: relative;
  height: 60px;
}
.entry-btn span {
  margin: auto;
  display: inline-block;
  line-height: 1;
}
.entry-btn span strong {
  font-size: 2rem;
  font-weight: 700;
}
.entry-btn .txt {
  padding: 0 0 4px;
}
.entry-btn .yen {
  margin: auto 5px auto 0;
}
.entry-btn .yen img {
  width: 40px;
  height: auto;
}
.entry-btn .price {
  padding: 3px 0 0 0;
  margin: auto 5px auto 0;
  font-size: 4.4rem; /* 大きな「0」 */
  font-weight: 700;
  line-height: 1;
}

/*マップ用（クリックで表示）*/
.map-thumbnail {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 6px;
}

.map-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.map-thumbnail a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 10px 20px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.map-thumbnail a:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/*申し込みボタン*/
.entry-btn:after {
  content: "";
  margin-bottom: -10px;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 50%;
  right: 0;
  border-style: solid;
  border-width: 10px 16px;
  border-color: transparent transparent transparent #E3493D;
}

/*■■■■■■ インストラクター紹介 ■■■■■■■*/
.instructor-box {
  margin: 0 auto auto;
  width: 260px;
}

.instructor-name {
  margin: 20px 0 0;
  font-soze: 2rem;
  font-weight: 700;
  text-align: center;
}

.instructor-studio {
  margin: 10px auto 0;
  padding: 5px 15px;
  font-weight: 400;
  display: inline-block;
  background-color: #FFEF61;
  text-align: center;
}

.instructor-comment {
  margin: 10px auto 0;
  font-size: 1.4rem;
  text-align: left;
}

/*■■■■■■ お客様の声 ■■■■■■■*/
.review-box {
  margin: 0 auto auto;
  padding: 20px;
  display: block;
  border: 6px solid #A8E6CF;
  border-radius: 12px;
  background-color: #FFF;
  width: 310px;
  height: 100%;
}
.review-box img {
  margin: auto;
  width: 180px;
}

.review-name {
  margin: 20px 0 0 0;
  padding: 4px 15px;
  display: block;
  background-color: #2FB6A9;
  border-radius: 6px;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
}

.review-course {
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid #4C4948;
}

.review-comment {
  margin: 10px 0 0 0;
  text-align: left;
}

/*■■■■■■ FAQ よくある質問 ■■■■■■■*/
.faq-flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
}

.faq-box {
  margin: 0 auto auto;
  padding: 20px 15px 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 2px dotted #999;
  border-radius: 12px;
}
.faq-box dl {
  margin: 0;
  padding: 0;
}
.faq-box dl dt {
  margin: 0;
  padding: 5px 20px 0 60px;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: left;
  position: relative;
}
.faq-box dl dt:before {
  content: "Q";
  background-color: #FFEF61;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  font-size: 2rem;
  font-weight: 700;
  color: #4C4948;
  position: absolute;
  left: 0;
  top: -5px;
}
.faq-box dl dd {
  padding: 30px 0 0 60px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  position: relative;
}
.faq-box dl dd:before {
  content: "A";
  background-color: #FF867C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  font-size: 2rem;
  color: #FFF;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 20px;
}

/* アコーディオン用 */
dt {
  cursor: pointer;
  position: relative;
}
dt .toggle-icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2.4rem;
  font-weight: bold;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* dd を最初は非表示に */
dd {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

/* 開いた状態 */
dl.open dd {
  padding-bottom: 20px;
  max-height: 500px;
  opacity: 1;
}

dl.open dt .toggle-icon {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg); /* + → × に見える */
}

/*■■■■■■ youtube 埋め込み ■■■■■■■*/
.iframe-box {
  margin: 0 auto auto;
  padding: 65.25% 0 0 0; /*16：9の高さに固定*/
  width: 100%;
  height: 0;
  position: relative;
}
.iframe-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*■■■■■■ お申込みはこちら ■■■■■■■*/
.entry-title {
  font-size: 2.8rem;
  font-weight: 700;
}
.entry-title span.entry-a {
  margin: 0 5px;
  font-size: 3.6rem;
  font-weight: 700;
  color: #2FB6A9;
}
.entry-title span.entry-b {
  margin: 0 5px;
  font-size: 3.6rem;
  font-weight: 700;
  color: #E3493D;
}

.entry-button-box {
  margin: 20px auto 20px;
  padding: 6px;
  border-radius: 16px;
  display: inline-block;
  background-color: #E3493D;
}

.entry-button-main {
  margin: auto;
  padding: 15px 15px;
  font-size: 3.8rem;
  font-weight: 700;
  border: 3px solid #FFF;
  color: #FFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 12px;
}
.entry-button-main span.yen2 {
  margin: auto 12px auto 0;
}
.entry-button-main span.yen2 img {
  width: 100px;
  height: auto;
}
.entry-button-main span.yoyaku {
  margin: 0 0 5px;
  color: #FFF;
  text-align: left;
  line-height: 1;
}
.entry-button-main span.yoyaku small {
  font-size: 2.4rem;
}
.entry-button-main span.yoyaku small.imasugu {
  margin: 0 0 3px;
  display: block;
}
.entry-button-main span.yoyaku small.suru {
  margin: 0 5px 0;
  font-size: 2.6rem;
}

a.entry-button-main:link, a.entry-button-main:visited {
  border: 3px solid #FFF;
  background-color: #E3493D;
}

a.entry-button-main:hover, a.entry-button-main:active {
  border: 3px solid #FFEF61;
  background-color: #E11404;
}

.text-caption {
  font-size: 1.5rem;
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■■■■■■ CONTENTS MAIN ■■■■■■■*/
  .contents-block {
    margin: 20px 0 50px;
  }
  /*キャッチコピー*/
  .hedder-catch-box {
    width: 100%; /* 親に合わせて可変 */
    max-width: 56vw; /* 必要に応じて最大幅を設定 */
    bottom: 4%;
    right: 5%;
  }
  .hedder-catch-box .header-now-button {
    margin: -12px auto 0;
  }
  .head-sub-catch {
    right: -5vw;
    top: 5vw;
    width: 22vw;
  }
  /*TOP*/
  .main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 180vw; /* スマホはレイアウト重視で固定 */
  }
  /* ヘッダー画像のブロック */
  .header-main-img-block {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; /* 余ったスペースを埋める */
    width: 100%;
    background: url(../images/bg-main-img_sp.webp) top center no-repeat;
    background-size: cover;
    position: relative;
  }
  .main-title {
    font-size: 7vw;
    font-weight: 700;
  }
  .main-title span.read-q {
    font-size: 8vw;
    font-weight: 700;
    color: #2FB6A9;
    border-bottom: 4px solid #2FB6A9;
  }
  .main-title span.read-a {
    font-size: 8vw;
    font-weight: 700;
    color: #E3493D;
    border-bottom: 4px solid #E3493D;
  }
  /*共有(XS)*/
  .text-read {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4C4948;
  }
  /*■■■■■■ 悩みと選ばれる4つの理由(XS) ■■■■■■■*/
  .worries-box {
    margin: 20px auto;
    text-align: center;
    background: url(../images/worries-img.webp) center bottom no-repeat;
    background-size: 276px;
  }
  .worries-box li {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px 0;
  }
  .wprries-1, .wprries-2, .wprries-3, .wprries-4 {
    min-width: 276px;
  }
  .worries-sect-1 {
    margin: auto;
    width: 100%;
  }
  .worries-sect-2 {
    margin: auto;
    width: 100%;
  }
  .wprries-1, .wprries-3 {
    margin: auto;
  }
  .wprries-2, .wprries-4 {
    margin: auto;
  }
  .worries-sect-3 {
    padding: 280px 0 0 0;
  }
  .wprries-1:after,
  .wprries-2:after {
    content: "";
    margin-left: -20px;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: -49px;
    border-style: solid;
    border-width: 25px 20px;
    border-color: #2FB6A9 transparent transparent transparent;
  }
  .wprries-3:after, .wprries-4:after {
    content: "";
    margin-bottom: 0;
    margin-left: -20px;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: -49px;
    border-style: solid;
    border-width: 25px 20px;
    border-color: #2FB6A9 transparent transparent transparent;
  }
  .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    gap: 1rem;
  }
  .main-itile-ans {
    font-size: 6.5vw;
  }
  .main-itile-ans span.read-q {
    font-size: 8vw;
  }
  .main-itile-ans span.read-a {
    font-size: 8vw;
  }
  .title-line {
    width: 60px;
    height: 2px;
    background-color: red;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .title-line.left {
    margin-top: 15px;
    margin-left: -20px;
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
  }
  .title-line.right {
    margin-top: 15px;
    margin-right: -20px;
    -webkit-transform: rotate(-60deg);
            transform: rotate(-60deg);
  }
  /*V字仕切り*/
  .v-divider--invert {
    height: 80px;
  }
  /*S字ベジェ*/
  .wave-divider svg {
    height: 40px;
  }
  /*■■■■■■ 4つの理由1～4 (XS)■■■■■■■*/
  .point-list-box {
    gap: 20px 0;
    width: 320px;
    height: auto;
  }
  .point-list-box {
    margin: 30px auto;
  }
  /*ポイント各タイトル共通*/
  .point-no {
    left: 15px;
  }
  .point-title {
    margin: 0 0 -80px;
    top: -80px;
    left: 0;
    height: 80px;
    padding: 0 0 0 130px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    border-radius: 0 0 0 0;
  }
  .point-title p {
    font-size: 5vw;
    line-height: 1.2;
    color: #FFF;
    font-weight: 700;
  }
  .point-title:after {
    display: none;
  }
  /*料金表　table*/
  .course-price {
    margin: 60px auto 10px;
    background-color: #FFF;
    border-spacing: 12px;
    table-layout: fixed;
    width: 100%;
  }
  .course-price tdody {
    display: block;
    width: 100%;
  }
  .course-price th, .course-price td {
    display: block;
    width: 100%;
    font-size: 1.8rem;
  }
  /*ポイント（2）充実のサポート(xs)*/
  .support-flex-box {
    margin: 0 auto 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    height: 100%;
    width: 320px;
  }
  .support-text-box {
    display: inline-block;
  }
  .support-text-box p {
    text-align: center;
  }
  /*swiper(XS)*/
  .swiper-button-prev {
    left: 10px;
    top: 103%;
  }
  .swiper-button-next {
    right: 10px;
    top: 103%;
  }
  /*■■■■■■ ポイント（共通タイトル）(XS) ■■■■■■■*/
  .bg-point-1 {
    background: url(../images/img-point-1_s.webp) top center no-repeat;
    background-size: cover;
  }
  .bg-point-2 {
    background: url(../images/img-point-2_s.webp) top center no-repeat;
    background-size: cover;
  }
  .bg-point-3 {
    background: url(../images/img-point-3_s.webp) top center no-repeat;
    background-size: cover;
  }
  .bg-point-4 {
    background: url(../images/img-point-4_s.webp) top center no-repeat;
    background-size: cover;
  }
  /*■■■■■■ ポイント（2）充実の設備(XS) ■■■■■■■*/
  .sub-title {
    font-size: 2.2rem;
  }
  /*■■■■■■　POINT (03) 女性専用(XS)　■■■■■■*/
  .circle-image {
    margin: 0 auto 30px;
  }
  /*■■■■■■　POINT (04) 各スタジオ (XS)　■■■■■■*/
  /*スタジオ別詳細*/
  .studio-list li span {
    display: block;
    text-align: center;
  }
  .studio-flex-box {
    margin: 0 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .entry-btn {
    margin: 20px auto auto;
    padding: 0 50px 0 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; /* 横並び */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* ←ここで縦中央そろえ */
    gap: 0.2em; /* アイテム間のすき間 */
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none; /* 任意：下線を消す */
    border: 4px solid #E3493D;
    border-radius: 6px;
    position: relative;
    height: 60px;
  }
  .entry-btn span {
    margin: auto;
    display: inline-block;
    line-height: 1.2;
  }
  .entry-btn span strong {
    font-size: 1.8rem;
    font-weight: 700;
  }
  .entry-btn .txt {
    padding: 0;
  }
  .entry-btn {
    font-size: 1.5rem;
  }
  .entry-btn span strong {
    font-size: 1.8rem;
  }
  /*■■■■■■ お申込みはこちら(XS) ■■■■■■■*/
  .entry-title {
    font-size: 5vw;
  }
  .entry-title span.entry-a {
    font-size: 6vw;
  }
  .entry-title span.entry-b {
    font-size: 6vw;
  }
  .entry-button-main {
    font-size: 6.5vw;
  }
  .entry-button-main span.yen2 img {
    width: 80px;
    height: auto;
  }
  .entry-button-main span.yoyaku small {
    font-size: 4vw;
  }
  .entry-button-main span.yoyaku small.suru {
    font-size: 4.8vw;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*キャッチコピー*/
  .hedder-catch-box {
    width: 100%; /* 親に合わせて可変 */
    max-width: 50vw; /* 必要に応じて最大幅を設定 */
    bottom: 4%;
    right: 5%;
  }
  .hedder-catch-box .header-now-button {
    margin: -12px auto 0;
  }
  .head-sub-catch {
    right: -5vw;
    top: 10vw;
    width: 24vw;
  }
  /*TOP*/
  .head-img-box {
    margin: 26px 0 40px;
    width: 100%;
    height: 0;
    padding: 56.25% 0 0 0;
  }
  .head-mi {
    font-size: 3.4rem;
    left: 0;
    top: 15%;
    letter-spacing: 1rem;
  }
  .top-btn-block {
    padding: 50px 0 30px;
  }
  .top-btn-box {
    margin: 0 0 20px;
  }
  .top-btn-box a {
    padding: 35% 0 0 0;
  }
  .main-title {
    font-size: 3rem;
    font-weight: 700;
  }
  .main-title span.read-q {
    font-size: 3.4rem;
    font-weight: 700;
    color: #2FB6A9;
    border-bottom: 4px solid #2FB6A9;
  }
  .main-title span.read-a {
    font-size: 3.4rem;
    font-weight: 700;
    color: #E3493D;
    border-bottom: 4px solid #E3493D;
  }
  /*■■■■■■ 悩みと選ばれる4つの理由(SM) ■■■■■■■*/
  .worries-box {
    margin: 20px auto;
    text-align: center;
    background: url(../images/worries-img.webp) center bottom no-repeat;
    background-size: 276px;
  }
  .worries-box li {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px 0;
  }
  .wprries-1, .wprries-2, .wprries-3, .wprries-4 {
    min-width: 276px;
  }
  .worries-sect-1 {
    margin: auto;
    width: 100%;
  }
  .worries-sect-2 {
    margin: auto;
    width: 100%;
  }
  .wprries-1, .wprries-3 {
    margin: auto;
  }
  .wprries-2, .wprries-4 {
    margin: auto;
  }
  .worries-sect-3 {
    padding: 280px 0 0 0;
  }
  .wprries-1:after,
  .wprries-2:after {
    content: "";
    margin-left: -20px;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: -49px;
    border-style: solid;
    border-width: 25px 20px;
    border-color: #2FB6A9 transparent transparent transparent;
  }
  .wprries-3:after, .wprries-4:after {
    content: "";
    margin-bottom: 0;
    margin-left: -20px;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: -49px;
    border-style: solid;
    border-width: 25px 20px;
    border-color: #2FB6A9 transparent transparent transparent;
  }
  .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    gap: 1rem;
  }
  .main-itile-ans {
    font-size: 3rem;
  }
  .main-itile-ans span.read-q {
    font-size: 3.4rem;
  }
  .main-itile-ans span.read-a {
    font-size: 3.4rem;
  }
  .title-line {
    width: 60px;
    height: 2px;
    background-color: red;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .title-line.left {
    margin-top: 15px;
    margin-left: -20px;
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
  }
  .title-line.right {
    margin-top: 15px;
    margin-right: -20px;
    -webkit-transform: rotate(-60deg);
            transform: rotate(-60deg);
  }
  /*V字仕切り*/
  .v-divider--invert {
    height: 80px;
  }
  /*S字ベジェ*/
  .wave-divider svg {
    height: 40px;
  }
  /*■■■■■■ 4つの理由1～4 (SM)■■■■■■■*/
  .point-list-box {
    gap: 20px 0;
    width: auto;
    height: auto;
  }
  .point-list-box {
    margin: 30px 0;
  }
  /*ポイント各タイトル共通*/
  .point-no {
    left: 15px;
  }
  .point-title {
    margin: 0 0 -80px;
    top: -80px;
    left: 0;
    height: 80px;
    padding: 0 0 0 130px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    border-radius: 0 0 0 0;
  }
  .point-title p {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #FFF;
    font-weight: 700;
  }
  .point-title:after {
    display: none;
  }
  /*ポイント（2）充実のサポート(md)*/
  .support-flex-box {
    margin: 0 auto 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    height: 100%;
    width: 320px;
  }
  .support-text-box {
    display: inline-block;
  }
  .support-text-box p {
    text-align: center;
  }
  /*swiper(SM)*/
  .swiper-button-prev {
    left: 10px;
    top: 103%;
  }
  .swiper-button-next {
    right: 10px;
    top: 103%;
  }
  /*■■■■■■　POINT (03) 女性専用(SM)　■■■■■■*/
  .circle-image {
    margin: 0 auto 30px;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*TOP*/
  .head-img-box {
    margin: 26px 0 40px;
    width: 100%;
    height: 0;
    padding: 40% 0 0 0;
  }
  .head-mi {
    left: 0;
    top: 25%;
    letter-spacing: 1rem;
  }
  .top-btn-box {
    margin: 0;
  }
  .top-btn-box a {
    padding: 75% 0 0 0;
  }
  .top-read {
    text-align: left;
  }
  .main-title {
    font-size: 3.2rem;
    font-weight: 700;
  }
  .main-title span.read-q {
    font-size: 3.6rem;
    font-weight: 700;
    color: #2FB6A9;
    border-bottom: 4px solid #2FB6A9;
  }
  .main-title span.read-a {
    font-size: 3.6rem;
    font-weight: 700;
    color: #E3493D;
    border-bottom: 4px solid #E3493D;
  }
  /*■■■■■■ 悩みと選ばれる4つの理由(MD) ■■■■■■■*/
  .worries-box {
    margin: 20px auto;
    text-align: center;
    background: url(../images/worries-img.webp) center bottom no-repeat;
    background-size: 276px;
  }
  .worries-box li {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wprries-1, .wprries-2, .wprries-3, .wprries-4 {
    background-color: #2FB6A9;
    padding: 22px 30px 27px;
    font-size: 1.8rem;
    color: #FFF;
    font-weight: 700;
    border-radius: 16px;
    min-width: 256px;
  }
  .worries-sect-1 {
    margin: auto;
    width: 80%;
  }
  .worries-sect-2 {
    margin: auto;
    width: 95%;
  }
  .worries-sect-3 {
    padding: 80px 0 0 0;
  }
  .wprries-1, .wprries-2, .wprries-3, .wprries-4 {
    position: relative;
  }
  .wprries-1, .wprries-3 {
    margin: auto auto auto 0;
  }
  .wprries-2, .wprries-4 {
    margin: auto 0 auto auto;
  }
  .wprries-1:after {
    content: "";
    margin-left: -20px;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: -25px;
    border-style: solid;
    border-width: 15px 20px;
    border-color: #2FB6A9 #2FB6A9 transparent transparent;
  }
  .wprries-2:after {
    content: "";
    margin-left: -20px;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: -25px;
    border-style: solid;
    border-width: 15px 20px;
    border-color: #2FB6A9 transparent transparent #2FB6A9;
  }
  .wprries-3:after {
    content: "";
    margin-bottom: -18px;
    width: 0;
    height: 0;
    position: absolute;
    right: -56px;
    bottom: 50%;
    border-style: solid;
    border-width: 18px 28px;
    border-color: transparent transparent transparent #2FB6A9;
  }
  .wprries-4:after {
    content: "";
    margin-bottom: -18px;
    width: 0;
    height: 0;
    position: absolute;
    left: -56px;
    bottom: 50%;
    border-style: solid;
    border-width: 18px 28px;
    border-color: transparent #2FB6A9 transparent transparent;
  }
  .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    gap: 1rem;
  }
  .main-itile-ans {
    font-size: 3.2rem;
  }
  .main-itile-ans span.read-q {
    font-size: 3.6rem;
  }
  .main-itile-ans span.read-a {
    font-size: 3.6rem;
  }
  .title-line {
    width: 60px;
    height: 2px;
    background-color: red;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .title-line.left {
    margin-top: 15px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .title-line.right {
    margin-top: 15px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  /*V字仕切り*/
  .v-divider--invert {
    height: 100px;
  }
  /*S字ベジェ*/
  .wave-divider svg {
    height: 60px;
  }
  /*■■■■■■ 4つの理由1～4 (MD)■■■■■■■*/
  .point-list-box {
    gap: 20px 0;
    width: 340px;
    height: auto;
  }
  .point-list-box {
    margin: 30px auto;
  }
  /*ポイント（2）充実のサポート(md)*/
  .support-flex-box {
    margin: 0 auto 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    height: 100%;
    width: 320px;
  }
  .support-text-box {
    display: inline-block;
  }
  .support-text-box p {
    text-align: center;
  }
  /*swiper(MD)*/
  .swiper-button-prev {
    left: 10px;
    top: 103%;
  }
  .swiper-button-next {
    right: 10px;
    top: 103%;
  }
  /*■■■■■■　POINT (03) 女性専用(MD)　■■■■■■*/
  .circle-image {
    margin: 0 auto 30px;
  }
} /*MD*/
/*------------(LG)------------*/
@media (min-width: 1024px) and (max-width: 1215px) {
  .hamburger {
    display: none;
  }
  /*キャッチコピー*/
  .hedder-catch-box {
    width: 100%; /* 親に合わせて可変 */
    max-width: 400px;
  }
  /*■■■■■■ 4つの理由1～4 (LG)■■■■■■■*/
  .point-list-box {
    gap: 20px 0;
    width: 340px;
    height: auto;
  }
  .point-list-box {
    margin: 30px auto;
  }
  /*ポイント（2）充実のサポート(LG)*/
  .support-flex-box {
    margin: 0 auto 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    height: 100%;
    width: 320px;
  }
  .support-text-box {
    display: inline-block;
  }
  .support-text-box p {
    text-align: center;
  }
} /*LG*/
/*------------(XL)------------*/
@media (min-width: 1216px) and (max-width: 1440px) {
  .hamburger {
    display: none;
  }
  /*キャッチコピー*/
  .hedder-catch-box {
    width: 100%; /* 親に合わせて可変 */
    max-width: 400px;
  }
} /*XL*/
/*------------(XXL)------------*/
@media (min-width: 1441px) {
  .hamburger {
    display: none;
  }
  /*キャッチコピー*/
  .hedder-catch-box {
    width: 100%; /* 親に合わせて可変 */
    max-width: 460px;
  }
} /*XL*/