@charset "UTF-8";
/* CSS Document */
/* =================
//		FontColor
================== */
/* =================
//		FontSize
================== */
/* =================
//		FontFamify
================== */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Source Han Sans JP";
  src: url("../font/SourceHanSansJP-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Source Han Sans JP";
  src: url("../font/SourceHanSansJP-Heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Source Han Sans JP";
  src: url("../font/SourceHanSansJP-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
  font-size: 0.875rem;
  color: #333;
  font-weight: 500;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
html body {
  background-color: #f7f7f7;
}
html body.hidden {
  overflow: hidden;
}
html .header-wrapper, html .footer, html main {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
html .sp {
  display: flex !important;
}
html .pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  html .sp {
    display: none !important;
  }
  html .pc {
    display: block !important;
  }
}

#header {
  width: 100%;
  margin: 0 auto;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}
#header .header-wrapper {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
#header .header-wrapper .site-title {
  width: 45px;
  height: 45px;
}
#header .header-wrapper .site-title a {
  display: block;
  margin-top: 5px;
  width: 100%;
  height: 100%;
}
#header .header-wrapper .site-title a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer {
  background-color: rgba(91, 92, 87, 0.4392156863);
}
.footer__wrapper {
  padding: 25px 0 20px;
}
.footer__wrapper .logo {
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
}
.footer__wrapper .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer__wrapper .nav {
  text-align: center;
}
.footer__wrapper .nav a {
  font-size: 0.75rem;
  color: gray;
}
.footer small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
}
.footer small p {
  font-size: 10px;
  color: gray;
}

.footer-cta-area {
  display: none;
}

/*トップページ*/
#top .fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#top .fadein.is-active {
  opacity: 1;
}
#top .fadein.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}
#top .fadein.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}
#top .more {
  background: linear-gradient(to bottom, #e63838, #E66019);
  border: solid 1px transparent;
  width: 230px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
#top .more__text {
  font-weight: bold;
  color: #fff;
  transition: all 0.3s ease;
}
#top .more .square {
  width: 6px;
  height: 6px;
  background-color: #fff;
  margin-right: 15px;
  transition: all 0.3s ease;
}
#top .more:hover {
  transform: scale(1.1);
}
#top .publish-cta {
  text-align: center;
  margin-bottom: 45px;
}
#top .publish-cta .micro-copy {
  font-size: 0.75rem;
}
#top .publish-cta__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  margin: 2px auto 0;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(to top right, #B62C28, #e63838);
  color: #fff;
}
#top .mv {
  padding: 0px 0 45px;
  position: relative;
  z-index: 1;
}
#top .mv__wrapper {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
#top .mv__wrapper .mv-animate {
  width: 100%;
  height: 100%;
  z-index: -10;
  position: relative;
}
#top .mv__wrapper .mv-animate .mv-img {
  width: 100%;
  height: 100%;
  position: relative;
}
#top .mv__wrapper .mv-animate .mv-img img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .mv__wrapper .mv-animate:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.2;
  z-index: 10;
}
#top .mv__wrapper .mv-copy-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#top .mv__wrapper .mv-copy-area .mv-copy__copy {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.18em;
  line-height: 1.5;
}
#top .about {
  padding-bottom: 35px;
}
#top .about .img {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
}
#top .about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .about__wrapper {
  width: 320px;
  margin: 0 auto;
}
#top .about__wrapper--text {
  line-height: 1.4;
  letter-spacing: 0.025em;
  margin-bottom: 10px;
}
#top .about__wrapper--text.small {
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  color: #777;
}
#top .filter {
  width: 320px;
  margin: 0 auto;
  padding-bottom: 35px;
}
#top .filter__wrapper .area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#top .filter__wrapper .area-list .area-item {
  margin: 0 0 10px;
}
#top .filter__wrapper .area-list .area-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 35px;
  border: solid 2px #e7e7e7;
  background: #fff;
  border-radius: 10px;
  font-size: 0.875rem;
}
#top .filter__wrapper .area-list .area-item.active a {
  border: transparent;
  background: linear-gradient(to top right, #B62C28, #e63838);
  color: #fff;
}
#top .filter .publish-cta {
  padding-top: 20px;
}
#top .gym__wrapper {
  width: 320px;
  margin: 0 auto;
}
#top .gym__wrapper .title {
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 11px;
}
#top .gym__wrapper .gym-list {
  display: none;
}
#top .gym__wrapper .gym-list.active {
  display: block;
}
#top .gym__wrapper .gym-list .gym-item {
  display: block;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(51, 51, 51, 0.15);
  margin-bottom: 20px;
  background-color: #fff;
  padding-bottom: 10px;
}
#top .gym__wrapper .gym-list .gym-item__header {
  border-radius: 10px 10px 0 0;
  padding: 10px;
}
#top .gym__wrapper .gym-list .gym-item__header h3 {
  font-weight: bold;
  margin-bottom: 10px;
}
#top .gym__wrapper .gym-list .gym-item__header .location {
  padding-left: 17px;
  position: relative;
  font-size: 0.75rem;
}
#top .gym__wrapper .gym-list .gym-item__header .location:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../images/gym/location.png) no-repeat;
  background-size: contain;
  top: -2px;
  left: -2px;
}
#top .gym__wrapper .gym-list .gym-item__header .tel .pc {
  padding: 10px 20px 0;
  position: relative;
}
#top .gym__wrapper .gym-list .gym-item__header .tel .pc:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: url(../images/gym/phone-solid.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 13px;
  left: 1px;
}
#top .gym__wrapper .gym-list .gym-item__img {
  width: 320px;
  height: 160px;
  margin-bottom: 10px;
}
#top .gym__wrapper .gym-list .gym-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#top .gym__wrapper .gym-list .gym-item__message {
  padding: 0 10px;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.025em;
  margin-bottom: 10px;
}
#top .gym__wrapper .gym-list .gym-item__cta {
  padding: 0 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#top .gym__wrapper .gym-list .gym-item__cta .cta-btn {
  width: 66%;
  height: 30px;
  border-radius: 5px;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 18px;
  position: relative;
  font-weight: bold;
  background: linear-gradient(to top right, #B62C28, #e63838);
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  #top .gym__wrapper .gym-list .gym-item__cta .cta-btn {
    width: 98%;
  }
}
#top .gym__wrapper .gym-list .gym-item__cta .cta-btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  background: url(../images/gym/arrow_white.png) no-repeat;
  background-size: contain;
  top: 6px;
  left: 10px;
  rotate: -90deg;
}
#top .gym__wrapper .gym-list .gym-item__cta .cta-btn.tel {
  width: 30%;
  background: none;
  border: solid 1px #e63838;
  color: #e63838;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.03em;
}
#top .gym__wrapper .gym-list .gym-item__cta .cta-btn.tel span {
  position: relative;
}
#top .gym__wrapper .gym-list .gym-item__cta .cta-btn.tel span:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: url(../images/gym/tel_red.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 1px;
  left: -20px;
  rotate: 0deg;
}
@media screen and (min-width: 768px) {
  #top .gym__wrapper .gym-list .gym-item__cta .cta-btn.tel {
    border: none;
  }
}
#top .gym__wrapper .gym-list .gym-item__cta.cta_sub {
  width: 100%;
  padding-bottom: 0px;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
}
#top .gym__wrapper .gym-list .gym-item__cta.cta_sub .cta-btn {
  flex: 0 0 48%;
}
#top .gym__wrapper .gym-list .gym-item__cta.cta_sub .cta-btn:only-child {
  flex: 0 0 98%;
}
#top .gym__wrapper .gym-list .gym-item__cta.cta_sub .cta-btn:nth-child(2n+1):last-child {
  flex: 0 0 98%;
}
#top .gym__wrapper .gym-list .gym-item__cta.cta_sub .cta-btn:last-child, #top .gym__wrapper .gym-list .gym-item__cta.cta_sub .cta-btn:nth-last-child(2) {
  margin-bottom: 0;
}
#top .gym__wrapper .gym-list .gym-item__cta.single-btn .cta-btn {
  width: 98% !important;
  margin-bottom: 5px;
}
#top .gym__wrapper .gym-list .gym-item__cta.single-btn .cta-btn.tel {
  width: 98% !important;
}
#top .gym__wrapper .infinite-scroll {
  padding: 20px 0;
}
#top .gym__wrapper .infinite-scroll .view-more-button {
  width: 250px;
  margin: 0 auto;
  height: 40px;
  border: solid 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*掲載問い合わせページ*/
#mall-contact .fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#mall-contact .fadein.is-active {
  opacity: 1;
}
#mall-contact .fadein.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}
#mall-contact .fadein.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}
#mall-contact .more {
  background: linear-gradient(to bottom, #e63838, #E66019);
  border: solid 1px transparent;
  width: 230px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
#mall-contact .more__text {
  font-weight: bold;
  color: #fff;
  transition: all 0.3s ease;
}
#mall-contact .more .square {
  width: 6px;
  height: 6px;
  background-color: #fff;
  margin-right: 15px;
  transition: all 0.3s ease;
}
#mall-contact .more:hover {
  transform: scale(1.1);
}
#mall-contact .mv {
  padding: 0px 0 45px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to right top, #e63838, #E66019);
}
#mall-contact .mv__wrapper {
  width: 100%;
  height: 58vh;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
#mall-contact .mv__wrapper .mv-animate {
  width: 100%;
  height: 100%;
  z-index: -10;
  position: relative;
}
#mall-contact .mv__wrapper .mv-animate .mv-img {
  width: 250px;
  height: 250px;
  position: absolute;
  top: 45%;
  right: 56%;
  transform: translateX(50%);
}
#mall-contact .mv__wrapper .mv-animate .mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#mall-contact .mv__wrapper .mv-copy-area {
  position: absolute;
  width: 100%;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#mall-contact .mv__wrapper .mv-copy-area .mv-copy {
  text-align: center;
}
#mall-contact .mv__wrapper .mv-copy-area .mv-copy__copy {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
#mall-contact .mv__wrapper .mv-copy-area .mv-copy__copy .white {
  padding: 2px 5px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  font-weight: bold;
  background-color: #fff;
  color: #000;
}
#mall-contact .mv .cta {
  margin-top: 60px;
}
#mall-contact .terms .black {
  width: 100%;
  padding: 20px 4%;
  background-color: #000;
  color: #fff;
  text-align: center;
  position: relative;
}
#mall-contact .terms .black .sec-title {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.5;
}
#mall-contact .terms .black:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  rotate: 45deg;
  background-color: #000;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
#mall-contact .terms .term {
  padding: 20px 4%;
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
}
#mall-contact .terms .term .bold {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#mall-contact .about {
  margin-top: 30px;
}
#mall-contact .about .img {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
}
#mall-contact .about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#mall-contact .about__wrapper {
  width: 360px;
  margin: 0 auto;
}
#mall-contact .about__wrapper--text {
  line-height: 1.4;
  letter-spacing: 0.025em;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
#mall-contact .about__wrapper--text.small {
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  color: #777;
}
#mall-contact .about_memo {
  padding-bottom: 45px;
}
#mall-contact .about_memo .img {
  width: 80%;
  max-width: 600px;
  margin: 0 auto 15px;
}
#mall-contact .about_memo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#mall-contact .flow {
  padding-bottom: 45px;
}
#mall-contact .flow .sec-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
#mall-contact .flow .sec-title .en {
  color: #e63838;
  border-bottom: solid 1px #e63838;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
#mall-contact .flow__list {
  width: 320px;
  margin: 0 auto;
}
#mall-contact .flow__list .flow-item {
  margin-bottom: 10px;
}
#mall-contact .flow__list .flow-item h3 {
  font-weight: bold;
  margin-bottom: 5px;
}
#mall-contact .flow__list .flow-item h3 .step {
  margin-right: 10px;
  font-size: 0.75rem;
}
#mall-contact .flow__list .flow-item p {
  margin-left: 20px;
  padding-left: 35px;
  border-left: dashed 1px #333;
}
#mall-contact .form {
  width: 340px;
  margin: 0 auto;
  padding-bottom: 45px;
}
#mall-contact .form .sec-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
#mall-contact .form .sec-title .en {
  color: #e63838;
  border-bottom: solid 1px #e63838;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
#mall-contact .form__wrapper {
  margin-top: 30px;
  width: 100%;
  margin: 0 auto;
}
#mall-contact .form__wrapper .form-row {
  display: flex;
  flex-direction: column;
  align-items: start;
  border-bottom: 1px solid #f2f4f5;
  margin: 0 auto 10px;
  padding-left: 5px;
}
#mall-contact .form__wrapper .form-row label {
  width: 100%;
}
#mall-contact .form__wrapper .form-row label .required {
  color: #e63838;
  font-size: 0.75rem;
  padding-left: 10px;
}
#mall-contact .form__wrapper .form-row span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
#mall-contact .form__wrapper .form-row span.wpcf7-form-control-wrap textarea {
  height: 90px !important;
}
#mall-contact .form__wrapper .form-row .form-label {
  display: flex;
  align-items: center;
}
#mall-contact .form__wrapper .form-row .form-label span {
  margin-left: 10px;
  font-size: 12px;
  color: #e63838;
}
#mall-contact .form__wrapper .form-row input, #mall-contact .form__wrapper .form-row textarea, #mall-contact .form__wrapper .form-row select {
  background-color: #f2f4f5;
  border: solid 1px #d5d5d5;
  border-radius: 3px;
  padding: 15px 20px;
  width: 100%;
}
#mall-contact .form__wrapper .form-row textarea {
  height: 90px !important;
}
#mall-contact .form__wrapper .form-row input.wpcf7-submit {
  background-color: #e63838 !important;
  color: #fff !important;
}
#mall-contact .form__wrapper .form-row input::placeholder,
#mall-contact .form__wrapper .form-row textarea::placeholder {
  color: #999;
  font-size: 14px;
}
#mall-contact .form__wrapper .form-row.hidden {
  display: none;
}
#mall-contact .form__wrapper .form-row .notion {
  margin-top: 10px !important;
}
#mall-contact .form__wrapper .form-row .notion a {
  color: #e63838;
}
#mall-contact .form__wrapper .sep {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 45px;
  background-color: #e7e7e7;
  margin-bottom: 10px;
  padding: 0 10px;
}
#mall-contact .form__wrapper .sep p {
  display: inline-block;
}
#mall-contact .form__wrapper .sep span {
  display: inline-block;
  padding: 2px 5px;
  background: #e63838;
  font-size: 0.625rem;
  color: #fff;
}
#mall-contact .form__wrapper .form-row:last-child {
  border-bottom: none;
}
#mall-contact .form__wrapper .form-row:last-child p {
  margin: 30px auto;
}
#mall-contact .form__wrapper button {
  display: block;
  width: 200px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}
#mall-contact .form__wrapper button.submit {
  border: solid 1px #e63838;
  background-color: #e63838 !important;
  color: #fff;
  padding: 15px 45px;
  margin: 30px 0 0;
  transition: all 0.3s ease;
}
#mall-contact .form__wrapper button.submit:hover {
  scale: 1.05;
}
#mall-contact .form__wrapper button.add-button {
  margin-left: 5px;
  padding-left: 20px;
  text-align: left;
  position: relative;
}
#mall-contact .form__wrapper button.add-button:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url(../images/regi/add.png) no-repeat;
  background-size: contain;
}
#mall-contact .form .recapture {
  font-size: 10px;
  margin-top: 20px;
}
#mall-contact .cta {
  width: 300px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#mall-contact .cta .cta-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 40px;
  border-radius: 100px;
}
#mall-contact .cta .micro-copy {
  display: inline-block;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}
#mall-contact .cta--contact {
  background: orange;
  margin-bottom: 10px;
  border: solid 2px #000;
  cursor: pointer;
  transition: all 0.4s ease;
}
#mall-contact .cta--contact:hover {
  scale: 1.05;
}
#mall-contact .cta--registration {
  border: solid 2px #fff;
  background: linear-gradient(to right top, #e63838, #E66019);
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
}
#mall-contact .cta--registration:hover {
  scale: 1.05;
}
@media screen and (max-width: 1024px) {
  #mall-contact .cta {
    bottom: 7%;
    width: 270px;
    flex-direction: column;
    align-items: center;
  }
}

.page-thanks {
  margin-top: 60px;
  height: calc(100vh - 200px);
}
.page-thanks .wrapper {
  width: 100%;
  height: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-thanks .wrapper .big {
  font-size: 2.5rem;
  text-align: center;
  font-weight: bold;
  color: #e63838;
  margin-bottom: 45px;
  letter-spacing: 0.1em;
}
.page-thanks .wrapper .text {
  width: 85%;
  margin: 0 auto;
  padding: 20px 10px;
  border: solid 2px #d5d5d5;
}
.page-thanks .wrapper .text .accent {
  text-align: center;
  margin-bottom: 20px;
}
.page-thanks .wrapper .text .accent span {
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: solid 3px #e63838;
}
.page-thanks .wrapper .text p {
  margin-bottom: 5px;
  text-align: left;
}

.grecaptcha-badge {
  display: none;
}