@charset "utf-8";

/* 共通ルール */
:root {
  /* カラー */
  --main_color: #FF6577;
  --sub_color: #FCD6DC;
  --bg_bolor: #FEF3F5;
  --txt_color: #333333;
  --size8px: clamp(0.4rem, 0.376rem + 0.1vw, 0.5rem);
  --size16px: clamp(0.8rem, 0.751rem + 0.21vw, 1rem);
  --size20px: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  --size24px: clamp(1.2rem, 1.127rem + 0.31vw, 1.5rem);
  --size32px: clamp(1.6rem, 1.503rem + 0.41vw, 2rem);
  --size40px: clamp(2rem, 1.879rem + 0.52vw, 2.5rem);
  --size48px: clamp(2.4rem, 2.376rem + 0.1vw, 2.5rem);
  --size56px: clamp(2.8rem, 2.63rem + 0.72vw, 3.5rem);
  --size64px: clamp(3.2rem, 3.006rem + 0.83vw, 4rem);
  --size72px: clamp(3.6rem, 3.382rem + 0.93vw, 4.5rem);
  --size80px: clamp(4rem, 3.757rem + 1.04vw, 5rem);
  --size88px: clamp(4.4rem, 4.133rem + 1.14vw, 5.5rem);
  --size100px: clamp(5rem, 4.697rem + 1.29vw, 6.25rem);
  --size120px: clamp(6rem, 5.636rem + 1.55vw, 7.5rem);
  --size140px: clamp(7rem, 6.575rem + 1.81vw, 8.75rem);
  --size160px: clamp(8rem, 7.515rem + 2.07vw, 10rem);
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html {
  font-size: 16px;
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--txt_color);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--txt_color);
}

a:hover {
  opacity: .8;
}

@media (min-width: 781px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: var(--txt_color);
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.small {
  font-size: 14px;
}

.text-right {
  text-align: right;
}

.container {
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 1400px) {
  .container {
    padding: 0 15px
  }
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media (max-width: 768px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }
}

/* タイトル */
.title {
  position: relative;
  text-align: center;
}

.title h2 {
  width: 100%;
  position: absolute;
  top: var(--size88px);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--size40px);
  font-weight: 700;
}

.title span {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: var(--size100px);
  color: var(--main_color);
  opacity: 0.1;
}

/* 見出し */
.head3 {
  position: relative;
  color: var(--main_color);
  font-size: var(--size32px);
  font-weight: 700;
}

.head3::before {
  position: absolute;
  border-bottom: 5px dotted #AAAAAA;
  content: "";
  height: 5px;
  bottom: calc(var(--size24px) * -1);
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
}

.head4 {
  color: var(--main_color);
  font-size: var(--size24px);
  font-weight: 700;
  margin-bottom: var(--size16px);
}

/* ボタン */
.button {
  position: relative;
  margin-top: 40px;
  display: inline-block;
  padding: 20px 120px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  background: var(--main_color);
  color: #fff;
  border-radius: 32px;
}

.button:hover {
  opacity: .9;
}

.button::after {
  content: '';
  position: absolute;
  top: 42%;
  right: 32px;
  /*矢印の形状*/
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all .3s;
}

.button:hover::after {
  right: 24px;
}

@media (max-width: 768px) {
  .button {
    width: 100%;
    padding: 20px 0;
  }
}

.anker-link_btn {
  position: relative;
  display: inline-block;
  padding: 24px 0 32px;
  background: var(--main_color);
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.anker-link_btn::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 50%;
  /*矢印の形状*/
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateX(-50%) rotate(135deg);
  transition: all .3s;
}

.anker-link_btn:hover::after {
  bottom: 10px;
}

/* ヘッダー */
#header {
  padding: 0 1rem;
  width: 100%;
  height: clamp(4rem, 3.757rem + 1.04vw, 5rem);
  position: fixed;
  background: #fff;
  z-index: 3;
}

.header_wrap {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header_logo h1 {
  line-height: 0;
}

.header_logo p {
  font-size: 0.75rem;
}

.header_nav ul {
  display: flex;
  gap: calc(var(--size40px));
}

.header_nav a,
.header_nav_sp a {
  color: var(--txt_color);
  font-size: 1.125rem;
  font-weight: 600;
  transition: 0.3s;
}

.header_nav a:hover {
  color: var(--main_color);
}

.header_nav .header_reserve_btn,
.header_nav_sp .header_reserve_btn {
  padding: 0.625rem 2rem;
  color: #fff;
  background: var(--main_color);
  border-radius: 1.5rem;
}

.header_nav .header_reserve_btn:hover,
.header_nav_sp .header_reserve_btn:hover {
  color: #fff;
  opacity: 0.8;
}

.header_nav_sp {
  display: none;
}

@media (max-width: 1280px) {
  .header_nav {
    display: none;
  }

  .header_nav_sp {
    display: block;
  }
}

/* スマホ用ナビゲーションメニューの初期状態を非表示にする */
.header_nav_mobile {
  display: none;
  position: absolute;
  top: clamp(4rem, 3.757rem + 1.04vw, 5rem);
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--sub_color);
  z-index: 3;
}

.header_nav_mobile ul {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.header_nav_mobile li {
  /* padding: 24px 0; */
  border-bottom: 1px solid #fff;
}

.header_nav_mobile a {
  padding: 24px 0;
  display: block;
  color: var(--txt_color);
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.header_nav_mobile a:hover {
  color: var(--main_color);
}

/* ハンバーガーメニューアイコンのスタイル */
.hamburger_icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  cursor: pointer;
}

.hamburger_icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--main_color);
  transition: 0.3s;
}

/* ハンバーガーメニューの開閉スタイル */
.hamburger_icon.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger_icon.active span:nth-child(2) {
  opacity: 0;
}

.hamburger_icon.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1280px) {
  .header_nav {
    display: none;
  }

  .header_nav_sp {
    display: block;
  }

  .header_nav_mobile {
    display: none;
  }

  .header_nav_mobile.active {
    display: block;
  }
}

/* メインビジュアル */
/* メインビジュアル */
#mv {
  position: relative;
  padding-top: clamp(4rem, 3.757rem + 1.04vw, 5rem);
  overflow: hidden;
  background: #fff;
}

.mv_picture {
  display: block;
  line-height: 0;
}

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

.mv_inner {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.mv_content {
  position: absolute;
  left: clamp(1rem, 2.8vw, 4.25rem);
  top: 50%;
  transform: translateY(-34%);
  width: clamp(364px, 47.4vw, 940px);
}

.mv_lead {
  margin: 0;
  display: block;
  width: clamp(232px, 34.4vw, 682px);
  line-height: 0;
}

.mv_lead_img {
  display: block;
  width: 100%;
}

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

.mv_copy_img {
  display: block;
  margin-top: clamp(5px, 1.6vw, 32px);
  width: clamp(350px, 47.4vw, 940px);
}

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

.mv_points {
  margin-top: clamp(5px, 1.6vw, 32px);
  display: flex;
  gap: clamp(2.8px, 1.2vw, 24px);
  align-items: center;
  max-width: clamp(212px, 32.7vw, 648px);
}

.mv_point_item {
  width: 200px;
}

.mv_point_item img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0px 20px rgba(0, 0, 0, .15));
}

/* =========================
   SP
========================= */
@media (max-width: 768px) {
  #mv {
    padding-top: 0;
    position: relative;
    overflow: hidden;
  }

  .mv_inner {
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .mv_content {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 0;
    transform: none;
  }

  .mv_lead,
  .mv_copy_img {
    position: absolute;
    left: 14px;
  }

  .mv_lead {
    top: 50%;
    transform: translateY(-145%);
    width: clamp(270px, 86vw, 390px);
    margin: 0;
    line-height: 0;
  }

  .mv_lead_img {
    display: block;
    width: 100%;
  }

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

  .mv_copy_img {
    top: 50%;
    transform: translateY(-30%);
    max-width: clamp(300px, 92vw, 400px);
    display: block;
  }

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

  .mv_points {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 20px;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    max-width: none;
  }

  .mv_point_item {
    width: calc((100% - 16px) / 3);
    flex: 0 0 calc((100% - 16px) / 3);
  }

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

  .mv_campaign {
    display: none;
  }
}

/* 3ヶ月無料キャンペーンバナー */
.campaign_bnr {
  margin-top: var(--size72px);
}

/* +FIT.が選ばれる理由 */
#reason {
  margin-top: var(--size72px);
}

.reason_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: calc(64px - 32px);
}

.reason_card {
  margin-top: var(--size32px);
  width: calc((100% - 80px) / 3);
  text-align: center;
}

.reason_card h3 {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--main_color);
}

.reason_card p {
  margin-top: 16px;
  text-align: left;
  line-height: 1.6;
}

/* SP */
@media (max-width: 768px) {
  .reason_wrap {
    flex-direction: column;
  }

  .reason_card {
    width: 100%;
  }

  .reason_card:nth-of-type(4) {
    margin-left: 0;
  }

  .reason_card:nth-of-type(5) {
    margin-right: 0;
  }
}

/* サービス */
#service {
  margin-top: var(--size120px);
  padding: var(--size64px) 0 var(--size120px);
  background: url(../../images/home/service_bg.jpg);
}

#service .container {
  margin-top: var(--size64px);
}

.service_card {
  margin-top: var(--size48px);
  display: flex;
  justify-content: space-between;
}

.service_card:nth-child(even) {
  flex-direction: row-reverse;
}

.service_card_img,
.service_card_txt {
  width: calc((100% - 40px) / 2);
}

.service_card_txt h3 {
  font-size: var(--size32px);
  font-weight: 700;
  color: var(--main_color);
}

.service_card_txt ul {
  margin-top: 16px;
  line-height: 2;
}

.service_card_txt li {
  text-indent: -1em;
  padding-left: 1em;
}

.service_card_txt li::before {
  content: "・";
  color: var(--main_color);
}

@media (max-width: 768px) {
  .service_card {
    flex-direction: column;
  }

  .service_card:nth-child(even) {
    flex-direction: column;
  }

  .service_card+.service_card {
    margin-top: var(--size64px);
  }

  .service_card_txt {
    margin-top: 16px;
  }

  .service_card_img,
  .service_card_txt {
    width: 100%;
  }
}

/* 料金 */
#price {
  padding: var(--size64px) 0 var(--size120px);
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 1px, rgba(255, 208, 214, 1) 1px, rgba(255, 208, 214, 1) 9px);
}

#price .title span {
  color: #fff;
  opacity: .4;
}

.price_card_outer {
  margin-top: var(--size48px);
  display: flex;
  justify-content: space-between;
  gap: var(--size40px);
}

.price_card {
  padding: var(--size40px) var(--size40px);
  width: 580px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.price_card h3 {
  margin-top: 16px;
  font-size: var(--size32px);
  font-weight: 700;
}

.price_normal {
  color: var(--main_color);
  font-size: var(--size32px);
  font-weight: 700;
  line-height: 1.4;
}

.price_large {
  font-size: var(--size56px);
}

.price_small {
  color: var(--main_color);
  font-size: 16px;
  font-weight: 700;
}

.price_txt {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .price_card_outer {
    display: block;
  }

  .price_card {
    width: 100%;
  }

  .price_card+.price_card {
    margin-top: 40px;
  }
}

/* アクセス */
#access {
  background: #FAFAFA;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
  /* 横スクロールバーを隠す */
}

.visual {
  background-color: #9f9f9f;
  margin-bottom: 60px;
 }

.access_txt {
  margin: 0 auto;
}

#access .title {
  text-align: left;
}

.access_txt table {
  margin-top: var(--size48px);
}

.access_txt th {
  text-align: left;
  font-weight: 600;
  vertical-align: top;
  width: 20%;
}

.access_txt td {
  padding-left: 40px;
}

.access_txt th,
.access_txt td {
  padding-bottom: 16px;
}

.access_map {
  max-width: 960px;
  width: 50%;
}

.access_map iframe {
  width: 100%;
  /* 親要素に対して幅を100%に設定 */
  max-width: 100%;
  /* 親要素をはみ出さないようにする */
  outline: none;
}

@media (max-width: 768px) {
  #access {
    flex-direction: column;
    padding: var(--size64px) 0 0;
  }

  #access .title {
    text-align: center;
  }

  .access_txt {
    width: 100%;
    padding: 0 15px;
  }

  .access_txt td {
    padding-left: 20px;
  }

  .access_map {
    width: 100%;
    margin-top: 32px;
  }

  .access_map iframe {
    width: 100%;
    /* 親要素に対して幅を100%に設定 */
    height: auto;
    /* 高さを自動調整 */
    aspect-ratio: 16/9;
    /* アスペクト比を維持 */
  }
}

/* インスタグラム */
#instagram {
  padding-top: var(--size64px);
}

#instagram .container {
  margin-top: var(--size48px);
}

#instagram .container span {
  all: unset;
}

/* 予約 */
#reserve {
  margin-top: var(--size120px);
  padding: var(--size64px) 0 var(--size120px);
  background-image: url(../../images/home/reserve_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}

#reserve .title span {
  color: #fff;
  opacity: .4;
}

#reserve p {
  margin-top: 40px;
}

.reserve_button {
  position: relative;
  display: inline-block;
  margin-top: 40px;
  padding: 20px 96px;
  color: #fff;
  font-size: var(--size24px);
  font-weight: 600;
  background: var(--main_color);
  border-radius: 40px;
  border: 3px solid #fff;
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.16);
  transition-duration: .4s;
}

.reserve_button::after {
  position: absolute;
  content: url(../../images/common/ex_link.svg);
  top: 50%;
  right: var(--size40px);
  transform: translateY(-50%);
}

.reserve_button:hover {
  transform: scale(1.1);
  opacity: 1;
}

@media (max-width: 768px) {
  .reserve_button {
    width: 100%;
    padding: 20px 0;
  }
}

/* フッター */
#footer {
  background: #555;
  color: #fff;
}

.contact {
  padding-top: var(--size72px);
  display: flex;
  text-align: center;
}

.tel {
  width: 50%;
}

.tel a {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
}

.tel a::before {
  padding-right: 4px;
  content: url(../../images/common/tel_icon.svg);
}

.tel p {
  margin-top: 8px;
  font-size: 14px;
}

.line {
  width: 50%;
}

.line_button {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: #06C755;
  border-radius: 48px;
  /* border: 3px solid #fff; */
}

.line_button::before {
  display: inline-block;
  content: url(../../images/common/line_icon.svg);
  padding-right: 16px;
  vertical-align: middle;
}

.line_button:hover {
  opacity: .9;
}

@media (max-width: 768px) {
  .contact {
    display: block;
  }

  .tel {
    width: 100%;
  }

  .line {
    width: 100%;
    margin-top: 40px;
  }
}

.fotter_info {
  margin-top: var(--size72px);
  border-top: 1px solid #777;
}

.footer_info_container {
  max-width: 1200px;
  margin: var(--size72px) auto 0;
  display: flex;
  justify-content: space-between;
}

.footer_info_logo {
  width: 33.333%;
  text-align: center;
}

.footer_info_nav {
  width: 33.333%;
}

.footer_info_nav nav {
  display: flex;
  justify-content: space-between;
}

.footer_info_nav a {
  color: #fff;
  line-height: 2.5;
}

.footer_info_insta {
  width: 33.333%;
  text-align: center;
}

.bold {
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer_info_container {
    display: block;
  }

  .footer_info_logo {
    width: 100%;
  }

  .footer_info_nav {
    width: 70%;
    margin: 0 auto;
  }

  .footer_info_nav nav {
    display: block;
    margin-top: 40px;
  }

  .footer_info_nav a {
    line-height: 2.5;
  }

  .footer_info_insta {
    width: 100%;
    margin-top: 40px;
  }
}

.copy_right {
  margin-top: var(--size100px);
  padding-bottom: 40px;
  text-align: center;
}

.copy_right small {
  font-size: 14px;
}

@media (max-width: 768px) {
  .copy_right {
    margin-top: 80px;
    padding-bottom: 120px;
  }
}

/* キャンペーンバナー */
#cp_bnr {
  width: 8vw;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  filter: drop-shadow(0px 0px 8px #ccc);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  z-index: 2;
}

#cp_bnr a {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

#cp_bnr a:hover {
  opacity: 1;
}

#cp_bnr img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
}

@media (max-width: 780px) {
  #cp_bnr {
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
}


/* ふわっと表示させるアニメーション */
.box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ////////////////////////////ここから下は下層ページ//////////////////////////// */

/* ページタイトル */
.pagetitle {
  width: 100%;
  height: 30vh;
  position: relative;
  background: url(../../images/common/page-title_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.pagetitle h2 {
  width: 100%;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--size40px);
  font-weight: 700;
  text-align: center;
}

@media (max-width: 780px) {
  .pagetitle {
    height: 200px;
  }

  .pagetitle h2 {
    bottom: 40px;
  }
}

/* パンくずリスト */
.breadcrumbs {
  margin: 16px auto var(--size80px);
  display: flex;
  gap: 4px;
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--main_color);
  text-decoration: underline;
}

/* コンセプト */
.concept {
  padding: var(--size120px) 0;
  background: url(../../images/concept/concept_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.concept_txt {
  padding: var(--size80px) 15px;
  text-align: center;
  background: #fff;
  opacity: .9;
}

.concept_txt p {
  margin-top: 40px;
  font-size: var(--size20px);
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 780px) {
  .concept_txt p {
    text-align: left;
  }
}


.other_link {
  margin-top: var(--size80px);
  display: flex;
  justify-content: space-between
}

.other_link_bnr {
  position: relative;
  width: calc((100% - 40px) / 2);
  height: auto;
  overflow: hidden;
}

.other_link_bnr:hover {
  opacity: 1;
}

.other_link_bnr span {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  font-size: var(--size32px);
  font-weight: 800;
  text-align: center;
}

.other_link_bnr img {
  width: 100%;
  transition: all 0.3s;
}

.other_link_bnr img:hover {
  transform: scale(110%);
}

@media (max-width: 780px) {
  .other_link {
    flex-direction: column;
  }

  .other_link_bnr {
    width: 100%;
    height: auto;
  }

  .other_link_bnr+.other_link_bnr {
    margin-top: 24px;
  }
}

/* サービス */
.service_intro {
  text-align: center;
}

.anker-link {
  margin-top: var(--size80px);
  display: flex;
  justify-content: space-between;
}

.anker-link_btn {
  width: calc((100% - 40px) / 2);
}

@media (max-width: 780px) {
  .anker-link {
    flex-direction: column;
  }

  .anker-link_btn {
    width: 100%;
  }

  .anker-link_btn+.anker-link_btn {
    margin-top: 16px;
  }
}

#fitness,
#este {
  margin-top: var(--size120px);
}

.service-sec-ttl {
  position: relative;
}

.service-sec-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 150%;
  background: var(--bg_bolor);
  z-index: -1;
}

.service-sec-ttl_body {
  width: 50%;
  padding: var(--size40px);
  padding-right: calc((100vw - 1200px) / 2 + 15px);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #fff;
}

.service-sec-ttl_img {
  margin-right: 41.6666vw;
}

.service-sec-ttl_body p {
  margin-top: var(--size24px);
}

@media (max-width: 780px) {
  .service-sec-ttl_body {
    width: 95%;
    margin: 0 calc((100% - 95%) / 2);
    padding: var(--size24px) 15px;
    top: auto;
  }

  .service-sec-ttl_img {
    margin: 0;
  }
}

#child_service .title {
  text-align: left;
}

#child_service .title h2 {
  top: clamp(2.5rem, 2.136rem + 1.55vw, 4rem);
}

#child_service .title span {
  font-size: clamp(3.125rem, 2.518rem + 2.59vw, 5.625rem);
}

@media (max-width: 780px) {
  #child_service .title {
    text-align: center;
  }
}

.fitness_wrapper {
  margin-top: var(--size80px);
  padding-bottom: var(--size120px);
  background: var(--bg_bolor);
  text-align: center;
}

.point_wrapper {
  margin-top: var(--size100px);
  display: flex;
  justify-content: space-between;
}

.point_card {
  width: calc((100% - 80px) / 3);
  position: relative;
}

.point_card_num {
  position: absolute;
  top: -0.75em;
  left: 50%;
  transform: translateX(-50%);
  color: var(--main_color);
  font-size: var(--size64px);
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

.point_card img {
  width: 100%;
  margin-bottom: var(--size16px);
}

.point_card p {
  text-align: left;
}

@media (max-width: 780px) {
  .fitness_wrapper {
    margin-top: var(--size160px);
  }

  .point_wrapper {
    flex-direction: column;
  }

  .point_card {
    width: 100%;
  }

  .point_card+.point_card {
    margin-top: var(--size48px);
  }
}

.price_container {
  margin-top: var(--size80px);
}

#child_service .price_card {
  width: 800px;
  margin: 0 auto;
  margin-top: var(--size64px);
}

@media (max-width: 780px) {
  #child_service .price_card {
    width: 100%;
  }

}

.fitness_machine {
  padding: var(--size80px) 0 var(--size120px);
  background: url(../../images/service/machine/machine_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.fitness_machine .head3 {
  color: #fff;
  margin-bottom: var(--size64px);
}

.fitness_machine p {
  color: #fff;
}

.fitness_machine .small {
  margin-top: var(--size16px);
}

.machine_list {
  margin-top: var(--size64px);
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 780px) {
  .fitness_machine p {
    text-align: left;
  }

  .machine_list {
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.price_normal+.price_normal {
  margin-top: 16px;
}

.este_machine {
  padding: 80px 0;
  background: url(../../images/service/este_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #efefef;
  text-align: center;
}

.este_machine_body {
  padding: clamp(1.25rem, 0.34rem + 3.88vw, 5rem);
  margin: 0 auto;
  max-width: 1000px;
  background: #fff;
  opacity: .9;
}

.este_machine_body .head3 {
  margin-bottom: var(--size32px);
}

.este_machine_body .head3::before {
  content: none;
}

.este_machine_body .head4 {
  margin-top: 40px;
  color: var(--txt_color);
}

.este_machine_body .features {
  margin-top: var(--size32px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.este_machine_body .features_inner {
  padding: 24px;
  width: calc((100% - 20px) / 2);
  background: var(--bg_bolor);
  border-radius: 8px;
}

.este_machine_body .features_inner h5 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.este_machine_body .features_inner h5 span {
  padding-right: 4px;
  color: var(--main_color);
}

.este_machine_body .features_inner p {
  text-align: justify;
}

@media (max-width: 780px) {
  .este_machine {
    padding: 176px 0 80px;
    background: url(../../images/service/este_bg_sp.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: #efefef;
  }

  .este_machine_body p {
    text-align: left;
  }

  .este_machine_body .features {
    display: block;
  }

  .este_machine_body .features_inner {
    margin-bottom: 16px;
    width: 100%;
  }
}


/* 料金ページ */
#child_price_container {
  text-align: center;
}

#child_price_container h2 {
  font-size: var(--size40px);
}

.child_price_wrapper {
  padding: var(--size64px) 0;
}

.child_price_wrapper:first-child {
  padding-top: 0;
}

#child_price_container #este {
  margin-top: 0;
}

.price_table {
  width: 800px;
  margin: 0 auto;
  margin-top: var(--size40px);
  text-align: left;
}

.price_table th {
  padding: var(--size24px);
  width: 25%;
  font-weight: 400;
  background: var(--main_color);
  color: #fff;
  border-bottom: 1px solid #fff;
}


.price_table td {
  padding: var(--size24px);
  border-bottom: 1px solid #ccc;
}

.price_table_td_txt {
  font-size: var(--size20px);
  font-weight: 700;
}

@media (max-width: 780px) {
  .price_table {
    width: 100%;
  }

  .price_table th {
    width: 100%;
  }

  .price_table th,
  .price_table td {
    display: block;
    text-align: center;
  }
}


/* アクセスページ */
.child_access_wrapper {
  display: flex;
  gap: var(--size40px);
  align-items: center;
}

.child_access_wrapper .access_txt {
  margin: 0;
}

@media (max-width: 780px) {
  .child_access_wrapper {
    display: block;
  }

  .access_img img {
    width: 100%;
  }

  .child_access_wrapper .access_txt {
    padding: 0;
  }
}

#child_access .access_map {
  margin-top: var(--size100px);
  max-width: 100%;
  width: 100%;
}

/* プライバシーポリシー */
#child_privacy-policy_container {
  line-height: 2;
}

#child_privacy-policy_container p.text-indent {
  text-indent: 1em
}

#child_privacy-policy_container p:first-child {
  margin-bottom: var(--size24px);
}

#child_privacy-policy_container p:last-child {
  margin-top: var(--size24px);
}

#child_privacy-policy_container h3 {
  margin-top: var(--size24px);
}

.ol-style-decimal {
  list-style: decimal
}

.ol-style-marusuji {
  counter-reset: my-counter;
  list-style: none;
  padding-left: 1em
}

.ol-style-marusuji>li {
  padding-left: 1.5em;
  position: relative
}

.ol-style-marusuji>li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
  margin-top: 6px;
  display: block;
  float: left;
  line-height: 17px;
  font-size: 14px;
  margin-left: -26px;
  text-align: center;
  vertical-align: bottom;
  display: table-footer-group;
  height: 18px;
  width: 18px;
  border-radius: 50%
}

.ol-style-katakana {
  list-style-type: katakana
}

.ol-style-brackets-katakana {
  list-style-type: none;
  padding: 0
}

.text-num9 {
  padding-left: 2em;
  line-height: 1.5;
}

.text-num9 h4 {
  margin-top: var(--size16px);
  margin-bottom: var(--size8px);
}


/* ////////////////////////////ここから下は404ページ//////////////////////////// */

.page404 {
  padding-top: var(--size160px);
  text-align: center;
}

.page404 h2 {
  font-size: var(--size56px);
  color: var(--main_color);
}

.page404 h3 {
  margin-top: var(--size16px);
  font-size: var(--size24px);
}

.page404 p {
  margin-top: var(--size24px);
}