@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --noto-ckj: "noto-sans-cjk-jp", sans-serif;
  --shingo: "a-otf-ud-shin-go-pr6n", sans-serif;
  --source-han-sans: "source-han-sans-japanese", sans-serif;
  --din-Condensed: "din-condensed", sans-serif;
  --header: 20rem;
  scroll-padding: var(--header);
}

@media screen and (max-width: 767px) {
  :root {
    --header: 15.6rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 0.5208vw;
  scroll-behavior: smooth;
}

body {
  font-family: var(--noto-ckj);
  font-weight: 500;
  line-height: 1.55;
  background: var(--color-white);
  color: var(--color-black);
}

body.hiddn {
  overflow: hidden;
}

body * {
  font-size: 2.4rem;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
}

a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */

h2.hd {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--shingo);
  position: relative;
  padding-bottom: 6rem;
}

h2.hd::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/hd.png);
  width: 72.6rem;
  height: 8.3rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

h2.hd img {
  width: 41rem;
  margin-right: 1rem;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 1.333333vw;
  }

  body * {
    font-size: 2.5rem;
  }

  h2.hd {
    font-size: 2.4rem;
  }

  h2.hd::before {
    width: 64.7rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 20rem;
}

#mainnav {
  position: absolute;
}

#mainnav.changeNav {
  position: fixed;
  animation: header_ani 0.5s ease-out 0s 1 alternate none running;
}

#mainnav::before {
  position: absolute;
  content: "";
  width: 100%;
  background: url(../images/nav_bg.png) no-repeat center bottom/cover;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}

#mainnav.open_nav::before,
#mainnav.changeNav::before {
  opacity: 1;
}

@keyframes header_ani {
  0% {
    top: -63px;
  }

  100% {
    top: 0;
  }
}

#mainnav .nav__logo {
  width: 72.1rem;
  margin-left: 29.4rem;
  margin-top: 1.8rem;
  opacity: 0;
  position: relative;
  z-index: 1;
}

#mainnav.open_nav .nav__logo,
#mainnav.changeNav .nav__logo {
  opacity: 1;
}

#mainnav .nav__banner {
  width: 32rem;
  z-index: 1;
  margin-left: 4rem;
  margin-right: auto;
  display: flex;
}

/* ハンバーガーメニュー内 */
nav.global__nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #faff93;
  /* background: url(../images/nav_bg.png) no-repeat center top/cover; */
  transition: all 0.3s ease-out;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  padding-bottom: 10rem;
}

/* 表示 */
.open_nav .global__nav {
  opacity: 1;
  pointer-events: fill;
}

ul.nav__menu {
  width: 62rem;
  margin: 24rem auto 0;
}

ul.nav__menu li {
  border-bottom: 0.3rem solid #48a536;
  margin-bottom: 3.2rem;
}

ul.nav__menu li a {
  font-size: 2.7rem;
  padding-bottom: 2.8rem;
  padding-left: 3rem;
  position: relative;
}

ul.nav__menu li a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/nav_arrow.png);
  width: 1.1rem;
  height: 1.6rem;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.hamburger {
  position: absolute;
  right: 40rem;
  top: 4rem;
  width: 5rem;
  height: 3rem;
  cursor: pointer;
  z-index: 300;
}

/* line open */
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.3rem;
  background-color: var(--color-white);
  transition: all 0.2s ease-out;
  transform: translateX(-50%);
}

.hamburger__line--1 {
  top: 15%;
}

.hamburger__line--2 {
  top: 50%;
}

.hamburger__line--3 {
  top: 85%;
}

.hamburger__line--1::before {
  position: absolute;
  content: "MENU";
  top: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: var(--color-white);
  transition: 0.1s;
}

/* line close */
.open_nav .hamburger__line--1 {
  transform: translateX(-50%) rotate(35deg);
  top: 50%;
}

.open_nav .hamburger__line--1::before {
  opacity: 0;
  left: 30%;
}

.open_nav .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.open_nav .hamburger__line--3 {
  transform: translateX(-50%) rotate(-35deg);
  top: 50%;
}

@media screen and (max-width: 767px) {
  header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 15.6rem;
  }

  #mainnav::before {
    background: url(../images/nav_bg_sp.png) no-repeat center bottom/cover;
  }

  #mainnav .nav__banner {
    display: none;
  }

  #mainnav .nav__logo {
    width: 49rem;
    margin-left: 6rem;
    margin-top: 1.4rem;
  }

  .hamburger {
    right: 4rem;
  }

  ul.nav__menu {
    width: 60rem;
    margin: 24rem auto 0;
  }

  .sp__policy {
    background: #6a7188;
    padding: 3rem 8rem;
  }

  .sp__policy a {
    padding: 1rem 3rem;
    display: inline-block;
    border: 0.3rem solid var(--color-white);
    color: var(--color-white);
    margin: 1rem;
    border-radius: 1000px;
    font-size: 2.2rem;
  }

  .sp__policy a::before {
    content: none;
  }
}

/*================================================
 *  banner
 ================================================*/
#banner {
  display: none;
}

@media screen and (max-width: 767px) {
  #banner {
    display: flex;
    position: fixed;
    z-index: 10;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  #banner a {
    width: 42rem;
    margin: 0 auto;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
}

/*================================================
* mv
================================================*/
#mv {
  position: relative;
  width: 100%;
  height: 67vw; /* 全画面の高さ */
  overflow: hidden;
}

/* 画像を画面いっぱいに表示 */
.mv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* 動画の位置・サイズ調整 */
.mv-video {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 60em;
  margin: 0 auto;
  padding-top: 19vw; /* 上に余白を入れたい場合 */
}

.mv-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
/* ボタン（画像） */
.mv-button {
  position: absolute;
  bottom: 7vw;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.mv-button img {
  width: auto;
  max-width: 76rem;
  height: auto;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.mv-button img:hover {
  opacity: 0.8;
}

/* ボタン（画像） */
.mv-button2 {
  position: absolute;
  bottom: 7vw;
  width: 89%;
  text-align: center;
  z-index: 3;
}

.mv-button2 img {
  width: 8rem;
  max-width: 76rem;
  height: auto;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.mv-button2 img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  #mv {
    position: relative;
    width: 100%;
    height: 92vw; /* 全画面の高さ */
    overflow: hidden;
  }

  /* 画像を画面いっぱいに表示 */
  .mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  /* 動画の位置・サイズ調整 */
  .mv-video {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 26em;
    margin: 0 auto;
    padding-top: 37vw; /* 上に余白を入れたい場合 */
  }

  .mv-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }
  /* ボタン（画像） */
  .mv-button {
    position: absolute;
    bottom: 9vw;
    width: 100%;
    text-align: center;
    z-index: 3;
  }

  .mv-button img {
    width: auto;
    max-width: 300px;
    height: auto;
    display: inline-block;
    transition: opacity 0.3s ease;
  }

  .mv-button img:hover {
    opacity: 0.8;
  }
  /* ボタン（画像） */
  .mv-button2 {
    position: absolute;
    bottom: 5vw;
    width: 30%;
    text-align: center;
    z-index: 3;
  }

  .mv-button2 img {
    width: 11rem;
    max-width: 300px;
    height: auto;
    display: inline-block;
    transition: opacity 0.3s ease;
  }

  .mv-button2 img:hover {
    opacity: 0.8;
  }
}
/* ボタン（画像） */
.mv-button3 {
  position: absolute;
  bottom: 11vw;
  right: 26vw;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.mv-button3 img {
  width: auto;
  max-width: 34rem;
  height: auto;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.mv-button3 img:hover {
  opacity: 0.8;
}

/*================================================
* campaign
================================================*/

.campaign__bg {
  background: url(../images/campaign_bg.png) no-repeat center/cover;
  height: 100%;
  padding: 0 0 3rem 0;
}

.campaign_img {
  width: 100%;
  margin: 0 auto;
}

#campaign ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  width: 76rem;
  margin-right: 50rem;
  margin-left: auto;
  margin-top: 2rem;
}

#campaign ul li:first-child {
  width: 20rem;
}

#campaign ul li:nth-child(2) {
  width: 21rem;
  margin: 0 2rem;
}

#campaign ul li:nth-child(3) {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .campaign__bg {
    background: none;
  }

  .campaign_img {
    width: 100%;
  }

  #campaign ul {
    display: none;
  }
}

/*================================================
* taiken
================================================*/
#taiken {
  position: relative;
  width: 100%;
  height: 148vw; /* 全画面の高さ */
  overflow: hidden;
  margin-top: 5rem;
}

/* 画像を画面いっぱいに表示 */
.taiken-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* 動画の位置・サイズ調整 */
.taiken-video {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 60em;
  margin: 0 auto;
  padding-top: 19vw; /* 上に余白を入れたい場合 */
}

.taiken-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
/* ボタン（画像） */
.taiken-button {
  position: absolute;
  bottom: 41vw;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.taiken-button img {
  width: auto;
  max-width: 76rem;
  height: auto;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.taiken-button img:hover {
  opacity: 0.8;
}

/* ボタン（画像） */
.taiken-button2 {
  position: absolute;
  bottom: 69vw;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.taiken-button2 img {
  width: auto;
  max-width: 76rem;
  height: auto;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.taiken-button2 img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  #taiken {
    position: relative;
    width: 100%;
    height: 347vw; /* 全画面の高さ */
    overflow: hidden;
  }

  /* 画像を画面いっぱいに表示 */
  .taiken-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  /* ボタン（画像） */
  .taiken-button {
    position: absolute;
    bottom: 83vw;
    width: 100%;
    text-align: center;
    z-index: 3;
  }

  .taiken-button img {
    width: auto;
    max-width: 300px;
    height: auto;
    display: inline-block;
    transition: opacity 0.3s ease;
  }

  .taiken-button img:hover {
    opacity: 0.8;
  }
  /* ボタン（画像） */
  .taiken-button2 {
    position: absolute;
    bottom: 275vw;
    width: 100%;
    text-align: center;
    z-index: 3;
  }

  .taiken-button2 img {
    width: auto;
    max-width: 300px;
    height: auto;
    display: inline-block;
    transition: opacity 0.3s ease;
  }

  .taiken-button2 img:hover {
    opacity: 0.8;
  }
  /* ボタン（画像） */
  .mv-button3 {
    position: absolute;
    bottom: 49vw;
    right: 30vw;
    width: 100%;
    text-align: center;
    z-index: 3;
  }

  .mv-button3 img {
    width: auto;
    max-width: 110px;
    height: auto;
    display: inline-block;
    transition: opacity 0.3s ease;
  }

  .mv-button3 img:hover {
    opacity: 0.8;
  }
}

/*================================================
* tanjo
================================================*/
#tanjo {
  padding: 5rem 0;
}

#tanjo .inner {
  width: 110rem;
  margin: 0 auto;
  border-radius: 5rem;
  background: rgb(251 176 59 / 14%);
  padding: 5rem 0 10rem;
  margin-bottom: 10rem;
}

#tanjo h2.under::before {
  background-image: url(../images/tanjo_ttl02.png);
  width: 80.5rem;
}

#tanjo .inner > p {
  font-size: 1.8rem;
  text-align: center;
  line-height: 2.22;
  margin-top: 2rem;
}

#tanjo ul {
  margin: 5rem auto 10rem;
}

#tanjo ul.sp {
  display: none;
}

#tanjo ul li {
  width: 26rem;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  margin: 0 1rem;
}

#tanjo ul li::before {
  position: absolute;
  content: "";
  width: 26rem;
  aspect-ratio: 1/1;
  border-radius: 10000px;
  opacity: 0.23;
  background: #48a536;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

#tanjo ul li img {
  height: 16rem;
  width: auto;
  margin: 0 auto 2rem;
}

#tanjo h4 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 2.1;
}

#tanjo h3 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 2;
}

#tanjo .tanjo_img {
  width: 114.6rem;
  margin: -3rem auto 0;
}

@media screen and (max-width: 767px) {
  #tanjo .inner {
    width: 92%;
  }

  #tanjo h2.under::before {
    width: 67.7rem;
  }

  #tanjo .inner > p {
    font-size: 2.5rem;
    text-align: left;
    width: 92%;
    margin: 0 auto;
  }

  #tanjo h4 {
    font-size: 2.5rem;
    text-align: left;
    width: 89%;
    margin: 0 auto;
  }

  #tanjo h3 {
    font-size: 2.9rem;
    font-weight: bold;
    text-align: center;
    line-height: 2;
  }

  #tanjo .tanjo_img {
    width: 73rem;
    margin: 2rem auto 0;
  }

  #tanjo ul {
    justify-content: end;
    flex-direction: column;
    width: 90%;
  }

  #tanjo ul.pc {
    display: none;
  }

  #tanjo ul.sp {
    display: flex;
  }

  #tanjo ul li {
    width: 33rem;
    font-size: 2.2rem;
    margin: 0;
    margin-left: auto;
    margin-top: -9rem;
  }

  #tanjo ul li:nth-child(2) {
    margin-right: auto;
    margin-left: 0;
  }

  #tanjo ul li::before {
    width: 33rem;
  }

  #tanjo ul li img {
    height: 19rem;
  }
}

/*================================================
* point
================================================*/

#point {
  padding: 10rem 0;
  background: rgb(72 165 54 / 15%);
}

#point h2::before {
  background-image: url(../images/point_ttl.png);
  width: 89.5rem;
}

#point ul {
  width: 106rem;
  margin: 0 auto;
}

#point ul li {
  width: 51rem;
  position: relative;
  margin-bottom: 5rem;
}

#point ul li:nth-child(1),
#point ul li:nth-child(2),
#point ul li:nth-child(3) {
  width: 100%;
}

#point ul li img {
  width: calc(100% - 4rem);
  margin-left: auto;
}

#point ul li p {
  font-size: 1.4rem;
  text-align: center;
  background: #48a536;
  width: 11.6rem;
  aspect-ratio: 1/1;
  border-radius: 10000px;
  display: grid;
  place-content: center;
  color: var(--color-white);
  line-height: 1;
  font-family: var(--source-han-sans);
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: -4rem;
  left: 0;
}

#point ul li:first-child p {
  top: 0;
}

#point ul li p span {
  font-size: 4rem;
  display: block;
}

@media screen and (max-width: 767px) {
  #point h2::before {
    width: 70.7rem;
  }

  #point ul {
    width: 100%;
    margin-top: 4rem;
  }

  #point ul li,
  #point ul li:nth-child(1),
  #point ul li:nth-child(2),
  #point ul li:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
    width: 92%;
  }

  #point ul li:nth-child(1) {
    width: 96%;
    margin-right: 0;
  }

  #point ul li img {
    width: 100%;
  }

  #point ul li:first-child p,
  #point ul li p {
    top: -6%;
    width: 10.4rem;
    font-size: 1.5rem;
  }

  #point ul li p span {
  }
}

/*================================================
* facility
================================================*/
#facility {
  padding: 10rem 0;
  background: #efefef;
  margin-bottom: 10rem;
  margin-top: 10rem;
}

#facility::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/facility_arrow.png);
  width: 24.6rem;
  height: 10.4rem;
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
}

#facility h3 {
  text-align: center;
  font-size: 9rem;
  font-weight: bold;
  line-height: 1;
  color: #333;
  margin: 4rem 0;
}

#facility h3 span {
  display: block;
  background: #333;
  color: var(--color-white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  padding: 1rem 2rem;
  margin: 2rem auto;
}

#facility p {
  font-size: 2.8rem;
  line-height: 2.1;
  margin-left: 49rem;
  position: relative;
  z-index: 2;
}

#facility > img {
  width: 76.5rem;
  margin-left: auto;
  margin-right: 58rem;
  margin-top: -12rem;
}

@media screen and (max-width: 767px) {
  #facility h3 span {
    font-size: 2.6rem;
    padding: 2rem 3rem;
  }

  #facility p {
    font-size: 2.6rem;
    margin-left: 4%;
  }

  #facility > img {
    width: 65.5rem;
    margin-right: 4%;
    margin-top: -7rem;
  }
}

/*================================================
* cardio
================================================*/
#cardio {
  padding: 5rem 0;
}

h2.sub {
  text-align: center;
  font-size: 9rem;
  font-family: var(--source-han-sans);
  letter-spacing: 0.1em;
}

h2.sub span {
  font-size: 6rem;
}

h5.sub {
  text-align: center;
  font-size: 3.4rem;
  line-height: 1.6;
  font-weight: bold;
  margin: 2rem 0 4rem;
}

.gymItem .ttlArea {
  background: rgb(106 113 136 / 15%);
  padding: 2rem 0 7rem;
}

.gymItem .ttlArea h3 {
  font-size: 4.5rem;
  font-weight: bold;
  color: rgb(106 113 136 / 70%);
  margin-left: 40.5rem;
}

.gymItem .ttlArea h3 span {
  display: inline-block;
  background: #fbb03b;
  color: #333;
  padding: 0 6rem;
  margin-right: 3rem;
  vertical-align: middle;
}

.gymItem .ttlArea h4 {
  margin-left: 46rem;
  font-size: 2.4rem;
  font-weight: bold;
}

.gymItem .ttlArea h4 span {
  font-size: 4.4rem;
  letter-spacing: 0.1em;
  margin-right: 1rem;
}

.gymItem .ttlArea p {
  font-size: 1.8rem;
  margin: 2rem 0 0 46rem;
}

.gymItem .gym__gr {
  background: url(../images/gym_bg.png) no-repeat center/cover;
  height: 100%;
  padding: 9rem 0 11rem;
  margin-top: -9rem;
}

.gymItem img.gym_item {
  width: 147rem;
  margin: 0 auto;
}

#stretch .gymItem img.gym_item {
  width: 100%;
}

.gymItem ul {
  max-width: 115rem;
  margin: 0 auto 10rem;
}

#stretch .gymItem ul {
  margin-bottom: 2rem;
}

.gymItem ul li {
  margin: 1rem;
  text-align: center;
}

.gymItem ul li img {
  width: auto;
  height: 20rem;
  margin: 0 auto;
}

.gymItem ul li p {
  font-size: 1.5rem;
}

.circle {
  margin-bottom: 10rem;
}

.circle__item {
  width: 40.7rem;
  height: 40.7rem;
  display: grid;
  place-content: center;
  background: rgb(72 165 54 / 30%);
  border-radius: 1000000px;
  margin: 0 2rem;
}

.circle__item h5 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 2rem;
  font-weight: bold;
  color: #333;
}

.circle__item p {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  h2.sub {
    font-size: 7rem;
  }

  h2.sub span {
    font-size: 5rem;
  }

  h5.sub {
    font-size: 3.2rem;
    margin: 2rem 0 4rem;
  }

  .gymItem .gym__gr {
    padding: 9rem 0 7rem;
  }

  .gymItem .ttlArea {
    padding-top: 0;
  }

  .gymItem .ttlArea h3 span {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 2.4rem;
  }

  .gymItem .ttlArea h3 {
    font-size: 5rem;
    margin-left: 0;
    text-align: center;
  }

  .gymItem .ttlArea h4 {
    margin: 0 auto;
    text-align: center;
    font-size: 2.6rem;
  }

  .gymItem .ttlArea p {
    font-size: 2.5rem;
    margin: 5rem auto 1rem;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .gymItem ul li img {
    height: 17rem;
  }

  .gymItem img.gym_item {
    width: 100%;
  }

  .circle__item {
    width: 32rem;
    height: auto;
    border-radius: 3rem;
    margin: 0 2rem;
    padding: 2rem;
    display: block;
  }

  .circle__item h5 {
    font-size: 3.2rem;
    padding-top: 0;
    margin-bottom: 2rem;
  }

  .circle__item p {
    font-size: 2.4rem;
    font-feature-settings: "palt";
    text-align: left;
  }
}

/*================================================
* studio
================================================*/
#studio {
  padding: 10rem 0;
  border-top: 0.8rem solid #f1ab2e;
}

.studio__txt {
  background: rgb(233 225 206 / 40%);
  padding-top: 12rem;
  padding-bottom: 10rem;
  margin-top: -7rem;
  position: relative;
  z-index: -1;
  text-align: center;
}

.studio__txt ul {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  width: 101rem;
  margin: 3rem auto 0;
}

.studio__txt ul li {
  background: #fff797;
  padding: 2rem;
  margin: 0;
}

.studio__txt ul li h6 {
  font-size: 3rem;
  font-family: var(--shingo);
  margin: 1rem 0 0;
}

.studio__txt ul li img {
  width: 100%;
  height: auto;
}

.studio__txt .ar {
  width: 101rem;
  margin: 0 auto;
  font-size: 1.4rem;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .studio__txt ul {
    gap: 2rem;
    width: 92%;
  }

  .studio__txt ul li {
    padding: 3rem 1rem;
  }

  .studio__txt ul li h6 {
    font-size: 2.8rem;
  }

  .studio__txt ul li p {
    font-size: 2.2rem;
  }

  .studio__txt .ar {
    width: 92%;
  }
}

/*================================================
* price
================================================*/
#price {
  padding: 5rem 0;
}

.price_img {
  width: 99rem;
  margin: 5rem auto;
}

@media screen and (max-width: 767px) {
  .price_img {
    width: 92%;
  }
}

/*================================================
* anshin
================================================*/
#anshin {
  padding-bottom: 5rem;
}

#anshin h3 {
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem 0 -2rem 71rem;
}

#anshin ul li:first-child {
  width: 35rem;
}

#anshin ul li:nth-child(2) {
  width: 26rem;
  margin: 0 2rem;
}

#anshin ul li:nth-child(4) p {
  text-align: left;
  font-size: 2.5rem;
  font-family: var(--shingo);
  margin-bottom: 1rem;
  line-height: 1;
}

#anshin ul li:nth-child(4) p span {
  font-size: 3.8rem;
}

#anshin ul li:nth-child(4) p small {
  font-size: 1.5rem;
  font-family: var(--noto-ckj);
}

#anshin ul li:nth-child(4) img {
  width: 25rem;
}

#anshin p.pc {
  font-size: 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto;
  line-height: 2;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #anshin {
    padding-bottom: 10rem;
  }

  #anshin h3 {
    margin: 4rem auto;
  }

  #anshin ul li:nth-child(3) {
    font-size: 2.4rem;
    margin: 1rem 0;
    text-align: center;
  }

  #anshin ul li:nth-child(4) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    width: 87%;
  }

  #anshin ul li:nth-child(4) p {
    font-size: 4rem;
  }

  #anshin ul li:nth-child(4) p span {
    font-size: 6rem;
  }

  #anshin ul li:nth-child(4) p:last-of-type {
    margin-left: auto;
  }

  #anshin ul li:nth-child(4) img {
    width: 33rem;
  }

  #anshin p.sp small {
    font-size: 1.8rem;
  }
}

/*================================================
* faq
================================================*/
#faq {
  padding: 10rem 0;
}

#faq h2::before {
  background-image: url(../images/faq_ttl.png);
  width: 84.5rem;
}

#faq h3 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.1;
  margin: 4rem 0;
  font-weight: bold;
}

#faq ul {
  width: 110rem;
  margin: 0 auto;
}

#faq ul li {
  background: #f2f2f2;
  padding: 3rem 3rem 3rem 7.5rem;
  margin-bottom: 5rem;
}

#faq ul li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: start;
  -ms-flex-wrap: wrap;
  align-items: start;
  flex-wrap: wrap;
  font-weight: 500;
  line-height: 1.8;
  font-feature-settings: "palt";
}

#faq ul li div:first-of-type {
  font-size: 2.2rem;
}

#faq ul li div:nth-of-type(2) {
  font-size: 2rem;
  padding-left: 7rem;
  margin-top: 2rem;
}

#faq ul li div span {
  font-size: 4.5rem;
  font-weight: bold;
  color: var(--color-white);
  background: #00a383;
  border: 0.15rem solid var(--color-white);
  border-radius: 1000px;
  aspect-ratio: 1/1;
  width: 7rem;
  height: 7rem;
  display: grid;
  place-content: center;
  margin-right: 1rem;
  line-height: 1;
}

#faq ul li div:nth-of-type(2) span {
  background: #ed6c00;
}

#faq ul li div p {
  width: calc(100% - 8rem);
  margin-top: 2rem;
}

#faq ul li div:nth-of-type(2):has(img) p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.card_img {
  width: 29rem;
  margin-left: 3rem;
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  #faq h2::before {
    width: 72.5rem;
  }

  #faq h3 {
    text-align: left;
    font-size: 2.5rem;
    width: 67rem;
    margin: 5rem auto;
  }

  #faq ul {
    width: 100%;
  }

  #faq ul li {
    background: #f2f2f2;
    padding: 4rem 2rem 4rem 3rem;
    margin-bottom: 5rem;
  }

  #faq ul li div:first-of-type {
    font-size: 2.5rem;
  }

  #faq ul li div:nth-of-type(2) {
    font-size: 2.4rem;
    padding-left: 6rem;
    margin-top: 3rem;
  }

  .card_img {
    width: 28rem;
    margin-left: 8rem;
  }
}

/*================================================
* access
================================================*/
#access {
  background: #48a536;
}

#access h3 {
  text-align: center;
  color: var(--color-white);
  font-size: 3rem;
  padding: 3rem 0;
}

#access h2 {
  text-align: center;
  padding-bottom: 5rem;
}

#access h2 img {
  width: 54rem;
  margin: 0 auto 1rem;
}

#access h2 span {
  display: inline-block;
  color: #48a536;
  background: var(--color-white);
  margin: 1rem auto;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 1.2rem;
}

.map {
  background: var(--color-white);
  padding: 3rem 0;
}

.map iframe {
  display: block;
  width: 149rem;
  height: 65rem;
  margin: 0 auto;
}

.address__list {
  padding: 3rem 0;
}

.address__list li {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
  color: var(--color-white);
}

.address__list li:nth-child(2) {
  font-size: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.address__list li:nth-child(2) img {
  width: 5.5rem;
  margin-right: 1rem;
}

.time__list {
  background: var(--color-white);
  text-align: center;
  padding: 4rem 0;
}

.time__list li:first-child {
  font-size: 1.7rem;
}

.time__list li:first-child span {
  font-size: 2.5rem;
}

.time__list li:nth-child(2) {
  font-size: 2.5rem;
}

.time__list li:nth-child(2) a {
  font-size: 3.6rem;
  font-family: var(--din-Condensed);
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .map iframe {
    width: 100%;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  background: #6a7188;
  padding: 3rem 0;
}

footer a {
  font-size: 1.7rem;
  border: 0.25rem solid var(--color-white);
  color: var(--color-white);
  border-radius: 1000px;
  padding: 1rem 3rem;
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  footer {
    margin-bottom: 15rem;
  }
}
