@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #fff;
  --base-color: #feffd5;
  --gray-color: #ffffc6;
  --main-color: #fff352;
  --primary-color: #a0522d;
  --accent-color: #9fc24d;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back_g: -10;
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */
body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding-top: 80px;
}

/* header */
.l_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-color);
  background-color: var(--main-color);
  padding: 0 16px;
}


.l_header-logo{
  color: var(--primary-color);
  text-shadow: 3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff,
    -3px 3px 0 #fff, 3px 0 0 #fff;
  height: 72px;
  padding: 0 16px;
}

@media screen and (min-width: 1080px) {
  .l_header-logo{
    display: flex;
  }
}

.l_header_logo-title {
  font-size: 14px;
  font-weight: 900;
}

@media screen and (min-width: 1080px) {
  .l_header_logo-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  .l_header-logo_link {
    margin: 0 24px;
  }
}

.l_header-nav {
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    display: block;
    margin-top: 0;
  }
}

.l_header-logo_link {
  font-size: 28px;
  font-weight: 900;
}

@media screen and (min-width: 1080px) {
.l_header-logo_link {
  font-size: 32px;
  text-align: center;
} 
}

.l_header-nav_list {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px 0;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    font-size: 14px;
    gap: 0 24px;
    flex-direction: row;
  }
}

.l_header-nav_item {
  font-size: 16px;
}



/* top_kv */
.m_tanpopo-img {
  width: 48px;
  height: 48px;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .m_tanpopo-img {
    display: none;
  }
}

.m_tanpopo-box {
  display: flex;
  justify-content: flex-end;
}

.m_tanpopo-image {
  width: 48px;
  height: 48px;
  margin-top: 8px;
}

.top_kv-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .top_kv-img {
    height: 769px;
  }
}

/* hamburger */
.m_hamburger {
  width: 40px;
  height: 32px;
  position: relative;
  z-index: var(--z-index-modal);
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  background: var(--accent-color);
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger-bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

/* main*/
.top_title {
  z-index: var(--z-index-header);
  position: relative;
}

.top_pc_img{
  display: none;
}

@media screen and (min-width: 1080px) {
  .top_pc_img:nth-child(1) {
    display: block;
    width: 90px;
    height: 90px;
    position: absolute;
    top: 55px;
    left: 150px;
  }

  .top_pc_img:nth-child(2) {
    display: block;
    width: 90px;
    height: 90px;
    position: absolute;
    top: 55px;
    right: 180px;
  }
}

.top_title-text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding-top: 48px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_title-text {
    font-size: 48px;
    margin-top: 80px;
  }
}

.top_title-text::before {
  content: "";
  width: 260px;
  height: 10px;
  background: var(--main-color);
  position: absolute;
  top: 75px;
  left: 40px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .top_title-text::before {
   position: absolute;
   width: 500px;
   height: 20px;
   top: 100px;
   left: 25%;
  }
}

.top_title-text::after {
  content: "";
  width: 375px;
  height: 200px;
  background: var(--gray-color);
  border-radius: 30px;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: var(--z-index-back_g);
}

@media screen and (min-width: 1080px) {
  .top_title-text::after {
    display: none;
  }
}

.m_top_text {
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .m_top_text{
    font-size: 24px;
    margin-top: 40px;
  }
}

.section_title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .section_title {
    font-size: 32px;
    margin-top: 80px;
  }
}

.section_title::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 45px;
  background: var(--accent-color);
  position: absolute;
  top: 8px;
  left: 70px;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .section_title::after {
    width: 30px;
    height: 30px;
    top: 15px;
    left: 320px;
  }
}

.section_title__time {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .section_title__time{
    font-size: 32px;
  }
}

.section_title__time::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 45px;
  background: var(--accent-color);
  position: absolute;
  top: 7px;
  left: 85px;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .section_title__time::after {
    width: 30px;
    height: 30px;
    top: 17px;
    left: 350px;
  }
}

.m_section_text {
  margin-top: 48px;
}

@media screen and (min-width: 1080px) {
.m_section_text {
  font-size: 24px;
  margin: 80px 32px 0 32px;
}
}

.m_section_img {
  width: 100%;
  height: 200px;
  margin-top: 40px;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .m_section_img {
    height: 595px;
  }
}

.m_section-back {
  width: 100%;
  height: 244px;
  background: var(--gray-color);
  z-index: var(--z-index-back);
}

.m_schedule_title {
  font-weight: bold;
  margin: 40px 16px 0 16px;
}

@media screen and (min-width: 1080px) {
  .m_schedule_title {
    font-size: 24px;
  }
}

.m_schedule_text {
  margin: 0 16px;
}

@media screen and (min-width: 1080px) {
  .m_schedule_text {
    font-size: 24px;
  }
}

.m_gym-link {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-color);
  margin: 0 16px;
  text-align: center;
  padding-bottom: 5px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_gym-link {
    font-size: 32px;
  }
}

.m_gym-link::after {
  content: "";
  background: var(--accent-color);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.m_gym-link:hover::before {
  content: "";
  transform-origin: center top;
  transform: scale(1, 1);
}

/* footer */
.l_footer {
  width: 100%;
  height: 212px;
  background: var(--gray-color);
  margin-top: 80px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .l_footer {
    height: 250px;
  }
}

.l_footer_box {
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_footer_box {
    display: block;
    position: relative;
  }
}

.l_footer-img {
  width: 100px;
  height: 100px;
}

@media screen and (min-width: 1080px) {
  .l_footer-img {
    position: absolute;
    top: 40px;
    left: -90px;
  }
}

.l_footer_box__gym {
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_footer_box__gym {
    display: block;
    position: relative;
  }
}

.l_footer-img__gym {
  width: 100px;
  height: 100px;
}

@media screen and (min-width: 1080px) {
  .l_footer-img__gym {
    position: absolute;
    top: 40px;
    right: -190px;
  }
}

.l_footer_title {
  display: flex;
  margin: 0 16px;
  justify-content: space-between;
}

@media screen and (min-width: 1080px) {
  .l_footer_title {
    justify-content: space-around;
  }

}

.l_footer_logo-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .l_footer_logo-title {
    margin: 40px 0 0 40px;
  }
}

.l_footer-logo_link {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .l_footer-logo_link {
    font-size: 32px;
    margin-left: 40px;
    position: relative;
  }
} 

.l_footer_gym-link {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  padding-top: 24px;
}

@media screen and (min-width: 1080px) {
  .l_footer_gym-link {
    font-size: 32px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .l_footer_list {
    display: flex;
    margin: 32px 40px;
  }
}

.l_footer_item {
  color: var(--primary-color);
  padding: 0 16px;
}

.l_footer-copyright {
  text-align: center;
  color: var(--primary-color);
  background: var(--main-color);
}

.l_footer_privacy {
  font-size: 14px;
  text-align: right;
  margin: 0 16px;
}

@media screen and (min-width: 1080px) {
  .l_footer_privacy {
    font-size: 16px;
  }
}



/* about */
.m_page_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_page_title {
    font-size: 48px;
    margin-bottom: 80px;
  }
}

.m_page_title::before {
  content: "";
  width: 148px;
  height: 10px;
  background: var(--accent-color);
  position: absolute;
  top: 27px;
  left: 97px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .m_page_title::before {
    width: 230px;
    height: 15px;
    top: 55px;
    left: 39%;
  }
  .m_tanpopo-image{
    display: none;
  }
}


.shop_table {
  margin-top: 80px;
  border: 1px solid var(--black-color);
}

@media screen and (min-width: 1080px) {
  .shop_table {
    width: 864px;
    font-size: 24px;
    margin-left: 90px;
  }
}

.shop_head {
  border: 1px solid var(--black-color);
  padding: 8px;
  background: var(--gray-color);
}

.shop_date {
  border: 1px solid var(--black-color);
  padding: 8px;
}

@media screen and (min-width: 1080px) {
  .shop_date {
    padding: 16px;
  }
}

.section_title__about {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .section_title__about {
    font-size: 32px;
    margin-top: 80px;
  }
}

.section_title__about::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 45px;
  background: var(--accent-color);
  position: absolute;
  top: 7px;
  left: 80px;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .section_title__about::after {
    width: 30px;
    height: 30px;
    top: 15px;
    left: 360px;
  }
}

.m_section-box {
  position: relative;
}

.m_section-box_img {
  width: 158px;
  height: 180px;
  margin-top: 24px;
  object-fit: cover;
  z-index: var(--z-index-menu);
  position: relative;
  top: 0;
  left: 20px;
}

@media screen and (min-width: 1080px) {
  .m_section-box_img {
    width: 329px;
    height: 392px;
    left: 220px;
  }
}

.m_section-box::before {
  content: "";
  width: 307px;
  height: 212px;
  background: var(--accent-color);
  position: absolute;
  top: 60px;
  left: 10px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .m_section-box::before {
    width: 594px;
    height: 394px;
    top: 120px;
    left: 210px;
  }
}

.m_section-box::after {
  content: "";
  width: 307px;
  height: 212px;
  background: var(--gray-color);
  position: absolute;
  top: 50px;
  left: 0;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .m_section-box::after {
    width: 637px;
    height: 390px;
    top: 105px;
    left: 150px;
  }
}

.m_balancesheet-box {
  margin-top: 40px;
  text-align: center;
  position: relative;
}

.m_balancesheet-box__2 {
  margin-top: -24px;
  text-align: center;
  position: relative;
}

.m_section_img-txt {
  font-size: 24px;
  font-weight: bold;
  margin-left: 200px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_section_img-txt{
    font-size: 36px;
    margin-left: 550px;
  }
}

.m_section_img-txt__2024 {
  font-size: 14px;
  border-bottom: solid 1px var(--black-color);
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_section_img-txt__2024{
    font-size: 24px;
    text-align: center;
  }
}

.m_section-btn {
  position: relative;
}

.m_section_img-txt::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20;
  border-radius: 50%;
  border: solid 2px var(--accent-color);
  top: 11px;
  right: -32px;
  z-index: var(--z-index-menu);
}

@media screen and (min-width: 1080px) {
  .m_section_img-txt::before {
    width: 35px;
    height: 35px;
    border: solid 3px var(--accent-color);
    top: 13px;
    right: -70px;
  }
}

.m_section_img-txt::after {
  content: '';
  position: absolute;
  right: -25px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  transform: translate(0, -50%) rotate(45deg);
}

@media screen and (min-width: 1080px) {
  .m_section_img-txt::after {
    width: 15px;
    height: 15px;
    right: -56px;
    top: 30px;
    border-top: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
  }
}

.m_section_img-txt__2024 {
  position: relative;
  display: inline-block;
  text-decoration: none;
  margin-top: 24px;
}

.m_section_img-txt__2024::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.m_section_img-txt__2024:hover::after {
  transform: scale(1, 1);
}


.m_bottom {
  width: 100%;
  height: 80px;
  background: var(--accent-color);
  border-radius: 5px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .m_bottom  {
    width: 386px;
    margin: 80px auto 0 auto;
    font-size: 20px;
  }
}


.m_btm {
  color: var(--white-color);
  font-weight: bold;
}

/* service */
.m_section_introduction {
  width: 100%;
  height: 192px;
  display: flex;
  margin-top: 80px;
}

@media screen and (min-width: 1080px) {
  .m_section_introduction {
    height: 544px;
    margin-top: 120px;
  }
}

.m_introduction_box {
  padding: 8px 8px;
}

.m_introduction_title {
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .m_introduction_title {
    font-size: 32px;
    text-align: center;
  }
}

.m_introduction_txt {
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .m_introduction_txt {
    font-size: 24px;
    margin: 48px 24px 0 24px;
  }
}

.m_introduction-img {
  width: 152px;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .m_introduction-img {
    width: 478px;
    height: 544px;
  }
}

.m_service_box {
  margin-top: 24px;
  position: relative;
}

.m_service_box {
  display: flex;
  margin: 80px auto 0;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .m_service_box {
    display: flex;
    justify-content: center;
  }
}

.m_service-img {
  width: 100%;
  height: 250px;
  text-align: center;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .m_service-img {
    height: 500px;
  }
}

.m_section_text__service {
  font-size: 14px;
  text-align: center;
  margin-top: 40px;
}

.m_service_txt::before {
  content: "";
  width: 55px;
  height: 40px;
  background: var(--main-color);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-back);
}

.m_service_txt::after {
  content: "";
  width: 170px;
  height: 135px;
  background: var(--gray-color);
  border-radius: 60px;
  position: absolute;
  top: 55px;
  left: 0;
  z-index: var(--z-index-back);
  opacity: 0.5;
}

.m_service_txt__kinou {
  font-size: 20px;
  font-weight: bold;
  padding-left: 5px;
}

.m_service_txt__kinou::before {
  content: "";
  width: 100px;
  height: 40px;
  background: var(--main-color);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 110px;
  z-index: var(--z-index-back);
}

.m_service_txt__kinou::after {
  content: "";
  width: 170px;
  height: 135px;
  background: var(--gray-color);
  border-radius: 60px;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: var(--z-index-back);
  opacity: 0.5;
}

.m_service_txt__kintore {
  font-size: 20px;
  font-weight: bold;
}

.m_service_txt__kintore::before {
  content: "";
  width: 205px;
  height: 40px;
  background: var(--main-color);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-back);
}

.m_service_txt__kintore::after {
  content: "";
  width: 170px;
  height: 135px;
  background: var(--gray-color);
  border-radius: 60px;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: var(--z-index-back);
  opacity: 0.5;
}

/* .m_service-img {
  width: 80px;
  height: 117px;
  margin-top: 24px;
}



.m_service-img__kinou {
  width: 140px;
  height: 125px; 
} */

/* .m_service-img__kintore {
  width: 104px;
  height: 117px;
  margin: 24px 0 0 32px;
} */

.m_room-img {
  width: 100%;
  height: 200px;
  margin-top: 80px;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .m_room-img {
    height: 612px;
  }
}

.section_title__service {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .section_title__service {
    font-size: 32px;
  }
}

.section_title__service::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 45px;
  background: var(--accent-color);
  position: absolute;
  top: 7px;
  left: 20px;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .section_title__service::after {
    width: 30px;
    height: 30px;
    top: 17px;
    left: 250px;
  }
  .m_section_text__service {
    font-size: 20px;
  }
}

/* gym */
.m_page_title__gym {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_page_title__gym {
    font-size: 48px;
  }
}

.m_page_title__gym::before {
  content: "";
  width: 195px;
  height: 10px;
  background: var(--accent-color);
  position: absolute;
  top: 27px;
  left: 75px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .m_page_title__gym::before {
    width: 380px;
    height: 15px;
    top: 55px;
    left: 330px;
  }
}

.m_section_text__gym {
  margin-top: 48px;
}

@media screen and (min-width: 1080px) {
  .m_section_text__gym {
    font-size: 24px;
    text-align: center;
  }
}

.m_gym-txt_box {
  position: relative;
}

.m_gym-txt {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-color);
  text-align: center;
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .m_gym-txt {
    font-size: 36px;
  }
}

.m_gym-txt::before {
  content: "";
  width: 300px;
  height: 40px;
  background: var(--gray-color);
  position: absolute;
  top: 48px;
  left: 25px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .m_gym-txt::before {
    width: 450px;
    height: 50px;
    top: 65px;
    left: 300px;
  }
}

.m_gym-txt_sub {
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .m_gym-txt_sub {
    font-size: 24px;
  }
}

.m_gym_box-img {
  object-fit: cover;
  position: relative;
}

.m_gym-img_main {
  width: 252px;
  height: 160px;
}

@media screen and (min-width: 1080px) {
  .m_gym-img_main {
    width: 649px;
    height: 425px;
  }
}

.m_gym-img {
  width: 192px;
  height: 90px;
  object-fit: cover;
  position: absolute;
  top: 120px;
  right: 10px;
}

@media screen and (min-width: 1080px) {
  .m_gym-img {
    width: 549px;
    height: 235px;
    top: 300px;
  }
}

.m_gym_text {
  margin-top: 90px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_gym_text {
    font-size: 24px;
    margin: 260px 40px 0 40px;
  }
}

.m_gym_text::after {
  content: "";
  width: 270px;
  height: 150px;
  background: var(--base-color);
  border-radius: 30px;
  position: absolute;
  top: -10px;
  left: -28px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .m_gym_text::after {
    width: 450px;
    height: 250px;
    top: -30px;
    left: -60px;
  }
}

.m_gym_sub-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: var(--accent-color);
  margin-top: 48px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_gym_sub-title {
    font-size: 40px;
    margin-top: 80px;
  }
}

.m_gym_sub-title::after {
  content: "";
  width: 305px;
  height: 10px;
  background: var(--main-color);
  position: absolute;
  top: 28px;
  left: 18px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .m_gym_sub-title::after {
    width: 530px;
    height: 20px;
    top: 45px;
    left: 250px;
  }
}

.m_gym-description {
  margin-top: 64px;
  margin-left: 16px;
  position: relative;
}

.m_gym-description::after {
  content: "";
  width: 450px;
  height: 280px;
  background: var(--base-color);
  border-radius: 30px;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .m_gym-description::after {
    width: 550px;
    height: 250px;
    left: 490px;
  }
}

.m_description-title {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .m_description-title {
    font-size: 32px;
    margin-left: 50%;
  }
}

.m_gym-description-txt {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-top: 40px;
}


@media screen and (min-width: 1080px) {
  .m_gym-description-txt {
    font-size: 32px;
    margin-top: 96px;
  }
  .m_description-txt {
    font-size: 24px;
    margin-left: 50%;
  }
}

.m_gym-contact_btn {
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .m_gym-contact_btn {
    font-size: 24px;
  }
  .m_btn {
    margin-top: 40px;
  }
}

.m_gym-contact_btn::after {
  content: "";
  background: var(--black-color);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.m_gym-contact_btn:hover::before {
  content: "";
  transform-origin: center top;
  transform: scale(1, 1);
}


.m_btn {
  text-align: center;
}

.section_title__machine {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.section_title__machine::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 45px;
  background: var(--accent-color);
  position: absolute;
  top: 8px;
  left: 78px;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .section_title__machine {
    font-size: 32px;
    margin-top: 80px;
  }
  .section_title__machine::after {
    width: 30px;
    height: 30px;
    top: 17px;
    left: 380px;
  }

}

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

.m_machine-name {
  font-weight: bold;
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .m_machine-name {
    font-size: 24px;
    margin-left: 180px;
  }
}

.m_redcode-img {
  width: 195px;
  height: 89px;
  object-fit: cover;
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .m_redcode-img {
   width: 549px;
   height: 235px;
   margin-left: 56px;
   margin-top: 0;
  }
}

.section_title__gym {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.section_title__gym::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 45px;
  background: var(--accent-color);
  position: absolute;
  top: 8px;
  left: 78px;
  z-index: var(--z-index-header);
}

.section_title__inbody {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .section_title__inbody  {
    font-size: 32px;
    margin-top: 80px;
  }
}

.section_title__inbody::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 45px;
  background: var(--accent-color);
  position: absolute;
  top: 8px;
  left: 90px;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .section_title__inbody::after {
    width: 30px;
    height: 30px;
    top: 16px;
    left: 360px;
  }
}

.m_inbody_box {
  display: flex;
  margin-top: 40px;
}

.m_inbody-img {
  width: 139px;
  height: 154px;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .m_inbody-img {
    width: 373px;
    height: 436px;
  }
}

.m_inbody-txt_box {
  font-size: 14px;
  padding: 0 16px;
}

@media screen and (min-width: 1080px) {
  .m_inbody-txt_box {
    font-size: 24px;
    padding: 0 32px;
  }
}

.m_inbody-txt_sub {
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .m_inbody-txt_sub {
    font-size: 24px;
  }
}

.m_machine-img {
  width: 193px;
  height: 130px;
}

@media screen and (min-width: 1080px) {
  .m_machine-img {
    width: 420px;
    height: 303px;
    margin-right: 180px;
  }
}

.m_gym_contact_box {
  display: flex;
  margin-top: 16px;
}

.m_gym_contact-img {
  object-fit: cover;
  width: 101px;
  height: 135px;
}

.m_gym_contact-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
}

.m_gym_contact-txt {
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

/* contact */
.m_page_title__contact {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_page_title__contact {
    font-size: 48px;
    margin-bottom: 80px;
  }
}

.m_page_title__contact::before {
  content: "";
  width: 148px;
  height: 10px;
  background: var(--accent-color);
  position: absolute;
  top: 27px;
  left: 97px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 1080px) {
  .m_page_title__contact::before {
    width: 320px;
    height: 15px;
    top: 55px;
    left: 360px;
  }
  .m_tanpopo-image{
    display: none;
  }
}

.m_contact-txt {
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .m_contact-txt {
    font-size: 24px;
  }
}

.m_section_text__contact {
  text-align: center;
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .m_section_text__contact {
    font-size: 24px;
  }
}

.contact_form_heading {
  font-weight: bold;
  position: relative;
}

.contact_form_heading:not(:first-child) {
  margin-top: 40px;
}

.contact_form_example {
  font-size: 12px;
  font-weight: normal;
  color: var(--primary-color);
  margin-left: 8px;
}

@media screen and (min-width: 1080px) {
  .contact_form_example {
    font-size: 16px;
  }

  .contact_form_list {
    font-size: 24px;
  }
}

.contact_form_input {
  border: 1px solid rgba(170, 170, 170, 1);
  width: 100%;
  height: 40px;
  padding: 16px;
  margin-top: 16px;
}

.contact_form_required {
  font-size: 12px;
  color: var(--white-color);
  background: var(--accent-color);
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.contact_form_radio-item {
  margin-top: 8px;
}

.contact_form_checkbox {
  appearance: checkbox;
  font-weight: bold;
  margin-top: 16px;
}

.wpcf7-list-item input[type="checkbox"] {
  appearance: checkbox;

}

.wpcf7-form-control {
  margin-left: 0;
}

.contact_form_radio {
  appearance: radio;
}

.wpcf7-list-item input[type="radio"] {
  appearance: radio;
}

.contact_form_label {
  font-size: 14px;
  font-weight: bold;
  margin-left: 16px;
}

@media screen and (min-width: 1080px) {
  .contact_form_label {
    font-size: 16px;
  }
}

.contact_form_name {
  font-weight: bold;
  margin-left: 16px;
}

.contact_form_textarea {
  width: 100%;
  height: 200px;
  border: 1px solid rgba(170, 170, 170, 1);
  margin-top: 24px;
  font-size: 16px;
  font-weight: normal;
  padding: 8px 16px;
}


.m_btn__right-arrow {
  width: 100%;
  height: 64px;
  margin: 80px auto 0;
  border-radius: 45px;
  background: var(--accent-color);
  font-weight: bold;
  color: var(--white-color);
  text-align: center;
  display: flex;
  justify-content: center;
}

.m_btn_input {
  display: flex;
  justify-content: center;
  font-size: 20px;
  padding-top: 12px;
}

@media screen and (min-width: 1080px) {
  .m_btn_input {
    font-size: 24px;
  }
}

/* privacy */
.m_privacy_title {
  font-weight: bold;
  margin-top: 40px;
}

.m_privacy_title:nth-child(1) {
  margin-top: 0;
}


/* js */
.js_success-swiper {
  position: relative;
}

.top_success_nav {
  width: 53px;
  height: 53px;
  background: var(--gray-color);
  border-radius: 100vh;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: absolute;
  bottom: -2650px;
}

.top_success_nav__prev {
  right: calc(50% + 96px);
}

.top_success_nav__next {
  left: calc(50% + 96px);
}

.top_success_nav__prev:after,
.top_success_nav__next:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  top: 50%;
  left: 50%;
}

.top_success_nav__prev:after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.top_success_nav__next:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  /* transition: opacity 0.5s;
} */
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 80%;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  z-index: var(--z-index-modal);
  background: var(--main-color);
  transition: all 250ms ease-out;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(1) {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.swiper-slide {
  max-width: 100%;
  overflow: hidden;
}

.js_body.is_hidden {
  overflow: hidden;
}

