@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.common-width {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  display: block;
}

#wrap {
  overflow: hidden;
}

.common-ma {
  padding: 60px 0 0 0;
}

.page-title-left h2 {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Roboto";
  line-height: 1.4;
}
.page-title-left h2 span {
  color: #01A0E9;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 4.8rem;
  color: #01A0E9;
  line-height: 0.6;
  letter-spacing: 0.001rem;
}

.page-title-center h2 {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Roboto";
  text-align: center;
  line-height: 1.4;
}
.page-title-center h2 span {
  color: #01A0E9;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 4.8rem;
  color: #01A0E9;
  line-height: 0.6;
  letter-spacing: 0.001rem;
  text-align: center;
}

.btn {
  width: 186px;
  background: linear-gradient(90deg, rgb(47, 110, 193) 0%, rgb(121, 186, 235) 50%, rgb(47, 110, 193) 100%);
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Roboto";
  padding: 14px 0 12px 0;
  border-radius: 50px;
  display: block;
  margin: 24px auto 0 auto;
  background-size: 200% 100%;
  position: relative;
}
.btn::before, .btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 10px;
  width: 6px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0px) 50%;
}
.btn::before {
  transform: rotate(45deg);
}
.btn::after {
  transform: rotate(-45deg);
}

/*---スクロール時遅れて表示、順番に表示---*/
.fadein {
  opacity: 0;
  transition: all 1.3s;
  transform: translate(0, 45px);
}

/*---TOP遅れて表示---*/
.post {
  opacity: 0;
}

.anchor {
  display: block;
  padding-top: 150px;
  margin-top: -120px !important;
}

.headline {
  animation: SlideIn 1.2s;
}

/* CSSアニメーションの設定 */
@keyframes SlideIn {
  0% {
    opacity: 1; /*初期状態では透明に*/
    transform: translateX(324px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#global-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 2vw 0 4vw;
  width: 100%;
  background: #fff;
  z-index: 998;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#global-header .logo {
  width: 138px;
}
#global-header .logo a img {
  width: 100%;
}
#global-header #gnav {
  display: none;
}

.key-wrap {
  position: relative;
  z-index: 1;
}
.key-wrap #key-visual {
  height: calc(var(--vh, 1vh) * 95);
  width: 100%;
  margin: 50px 0 0 auto;
  position: relative;
  overflow: hidden;
}
.key-wrap #key-visual::before {
  content: "";
  background: linear-gradient(60deg, rgba(47, 110, 193, 0.63), rgba(121, 186, 235, 0));
  position: absolute;
  width: 100%;
  height: 100%;
}
.key-wrap #key-visual::after {
  content: "";
  background: url(../images/key-bg.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: -40%;
  opacity: 0.5;
}
.key-wrap #key-visual video {
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(var(--vh, 1vh) * 95);
}
.key-wrap #key-visual .key-txt {
  position: absolute;
  bottom: 4vw;
  left: 4vw;
  z-index: 1;
  height: -moz-fit-content;
  height: fit-content;
}
.key-wrap #key-visual .key-txt .en-txt {
  font-size: 6rem;
  letter-spacing: 0.001rem;
  font-family: "Roboto";
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.key-wrap #key-visual .key-txt h1 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}
.key-wrap #key-visual .sp {
  display: none;
}

/* アニメーション*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 0s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::after {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(60deg, rgb(47, 110, 193), rgb(121, 186, 235));
  z-index: 999;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgappearTrigger, .bgLRextendTrigger {
  opacity: 0;
}

.cta-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: block;
}
.cta-btn .cta-list li {
  position: relative;
}
.cta-btn .cta-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px 0 8px 0px;
  box-sizing: border-box;
  writing-mode: vertical-rl;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  width: 42px;
}
@media screen and (max-width: 480px) {
  .cta-btn .cta-list li a {
    padding: 35px 16px 8px 0px;
  }
}
.cta-btn .cta-list li:nth-child(1)::before {
  content: "";
  background: url(../images/cta-icon01.svg) no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  margin: auto;
}
.cta-btn .cta-list li:nth-child(1) a {
  background: #F4B12C;
}
.cta-btn .cta-list li:nth-child(2)::before {
  content: "";
  background: url(../images/cta-icon02.svg) no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  margin: auto;
}
.cta-btn .cta-list li:nth-child(2) a {
  background: #01A0E9;
}
.cta-btn .pagetop img {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}

#subkey-visual {
  width: 100%;
  position: relative;
  width: 100%;
  margin: 50px 0 0 auto;
  overflow: hidden;
}
#subkey-visual::before {
  content: "";
  background: linear-gradient(60deg, rgba(47, 110, 193, 0.63), rgba(121, 186, 235, 0));
  position: absolute;
  width: 100%;
  height: 100%;
}
#subkey-visual .subkey-inner {
  position: relative;
  height: 130px;
}
#subkey-visual .subkey-inner::after {
  content: "";
  background: url(../images/key-bg.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  opacity: 0.5;
}
@media screen and (max-width: 1360px) {
  #subkey-visual .subkey-inner::after {
    left: -30%;
  }
}
#subkey-visual h1 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  font-family: "Roboto";
  position: absolute;
  left: 5vw;
  top: 8px;
  bottom: 0;
  margin: auto;
  line-height: 0.8;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
}
#subkey-visual h1 span {
  font-size: 4.8rem;
  color: #fff;
  font-weight: 700;
  font-family: "Roboto";
  line-height: 1.1;
}

.campaign-bg {
  background: url(../images/campaign/key-bg.webp) no-repeat center;
  background-size: cover;
}

.beginner-bg {
  background: url(../images/beginner/key-bg.webp) no-repeat center;
  background-size: cover;
}

.admission-bg {
  background: url(../images/admission/key-bg.webp) no-repeat center;
  background-size: cover;
}

.faq-bg {
  background: url(../images/faq/key-bg.webp) no-repeat center;
  background-size: cover;
}

.studio-bg {
  background: url(../images/studio-lesson/key-bg.webp) no-repeat center;
  background-size: cover;
}

.personal-bg {
  background: url(../images/personal-training/key-bg.webp) no-repeat center;
  background-size: cover;
}

.about-bg {
  background: url(../images/about/key-bg.webp) no-repeat center;
  background-size: cover;
}

.news-bg::before {
  background: linear-gradient(60deg, rgb(47, 110, 193), rgb(121, 186, 235)) !important;
}
.news-bg .subkey-inner::after {
  opacity: 0.4 !important;
}

.machine-bg {
  background: url(../images/machine/key-bg.webp) no-repeat center;
  background-size: cover;
}

.trial-bg {
  background: url(../images/trial/key-bg.webp) no-repeat center;
  background-size: cover;
}

.contact-bg {
  background: url(../images/contact/key-bg.webp) no-repeat center;
  background-size: cover;
}

.privacy-bg {
  background: url(../images/privacy/key-bg.webp) no-repeat center;
  background-size: cover;
}

.pankuzu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 6px 2vw 0 0;
}
.pankuzu li {
  position: relative;
  padding-right: 30px;
}
.pankuzu li::after {
  content: ">";
  font-size: 1.6rem;
  color: #4D4D4D;
  font-weight: 500;
  position: absolute;
  top: 0;
  bottom: 0;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  right: 12px;
}
.pankuzu li:last-child {
  padding-right: 0;
}
.pankuzu li:last-child::after {
  display: none;
}
.pankuzu li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #4D4D4D;
}

#top-container #campaign {
  background: #fff;
  padding-bottom: 40px;
}
#top-container #campaign .campaign-list {
  margin-top: 12px;
  display: grid;
  gap: 16px;
  width: 90%;
  margin: 0 auto;
}
#top-container #news {
  background: #F2F2F2;
  padding: 40px 0;
  position: relative;
}
#top-container #news::before {
  content: "";
  background: url(../images/news-bg.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 40vw;
  height: 100%;
  filter: grayscale(100%);
}
#top-container #news .news-inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
#top-container #news .news-inner .title {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
#top-container #news .news-inner .title .news-btn {
  font-size: 1.7rem;
  text-decoration: underline;
  position: relative;
  color: #4A4A4A;
  font-weight: 600;
  font-family: "Roboto";
  display: block;
  width: 110px;
}
#top-container #news .news-inner .title .news-btn::before, #top-container #news .news-inner .title .news-btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 6px;
  height: 2px;
  border-radius: 9999px;
  background-color: #4A4A4A;
  transform-origin: calc(100% - 0px) 50%;
}
#top-container #news .news-inner .title .news-btn::before {
  transform: rotate(45deg);
}
#top-container #news .news-inner .title .news-btn::after {
  transform: rotate(-45deg);
}
#top-container #news .news-inner .news-list {
  background: #fff;
  padding: 8px 16px;
  width: 100%;
  margin-top: 12px;
}
#top-container #news .news-inner .news-list .news-item {
  border-bottom: 1px solid #E9E9E9;
}
#top-container #news .news-inner .news-list .news-item:last-child {
  border-bottom: none;
}
#top-container #news .news-inner .news-list .news-item a {
  padding: 12px;
  display: block;
}
#top-container #news .news-inner .news-list .news-item a time {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Roboto";
  color: #4D4D4D;
}
#top-container #news .news-inner .news-list .news-item a h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #4D4D4D;
}
#top-container #reasons {
  background: #fff;
}
#top-container #reasons .reason-inner {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
}
#top-container #reasons .reasons-list {
  display: grid;
  gap: 28px;
  margin-top: 12px;
}
#top-container #reasons .reasons-list .reasons-box {
  position: relative;
}
#top-container #reasons .reasons-list .reasons-box figure {
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
}
#top-container #reasons .reasons-list .reasons-box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 40vw;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt {
  width: 92%;
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  position: relative;
  z-index: 0;
  padding: 16px 14px;
  margin: 32vw auto 0 auto;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt .count {
  font-size: 1.8rem;
  font-weight: 700;
  color: #01A0E9;
  font-family: "Roboto";
  position: absolute;
  top: -46px;
  left: 0;
  letter-spacing: 0.001rem;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt .count span {
  font-size: 4rem;
  font-weight: 700;
  color: #01A0E9;
  font-family: "Roboto";
  letter-spacing: 0.001rem;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt h3 {
  font-size: 2.1rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 0;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt p {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 8px 0 0 0;
  color: #fff;
  position: relative;
  z-index: 0;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt::before {
  content: "";
  background: url(../images/bg-pattern.webp);
  background-repeat: repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#top-container #menu {
  overflow: hidden;
  position: relative;
}
#top-container #menu .parallax {
  width: 100%;
  height: 100%;
  position: relative;
}
#top-container #menu .parallax::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/menu-bg.webp) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
#top-container #menu .parallax .menu-inner {
  width: 90%;
  padding: 60px 0;
  margin: 0 auto;
}
#top-container #menu .parallax .menu-inner .page-title-left h2 {
  color: #fff;
}
#top-container #menu .parallax .menu-inner .menu-list {
  margin-top: 12px;
  display: grid;
  gap: 24px;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box {
  background: #fff;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box .menu-img {
  position: relative;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box .menu-img figure img {
  height: 38vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box .menu-img h3 {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 0;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box .menu-img h3 span {
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  line-height: 1.2;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box .menu-img h3::after {
  content: "";
  background: linear-gradient(60deg, rgb(47, 110, 193), rgb(121, 186, 235));
  width: 120px;
  height: 120px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  left: -12px;
  bottom: -12px;
  z-index: -1;
  filter: none;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box p {
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 12px 12px 0 12px;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box .btn {
  font-size: 1.5rem;
  margin: 16px auto;
}

#campaign-container .intro {
  font-size: 1.6rem;
  width: 90%;
  margin: 40px auto 16px auto;
}
#campaign-container .campaign-contents {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto 80px auto;
}
#campaign-container .campaign-contents .campaign-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
#campaign-container .campaign-contents .campaign-list .campaign-item a {
  display: block;
}
#campaign-container .campaign-contents .campaign-list .campaign-item a .cam-title {
  background: linear-gradient(90deg, rgb(47, 110, 193) 0%, rgb(121, 186, 235) 100%);
  padding: 6px 8px;
}
#campaign-container .campaign-contents .campaign-list .campaign-item a .cam-title h2 {
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
}
#campaign-container .campaign-contents .campaign-list .campaign-item a .cam-img {
  background: #F2F2F2;
}
#campaign-container .campaign-contents .campaign-list .campaign-item a .cam-img img {
  -o-object-fit: contain;
     object-fit: contain;
}
#campaign-container .campaign-detail {
  margin-bottom: 80px;
}
#campaign-container .campaign-detail .page-title {
  background: linear-gradient(90deg, rgb(47, 110, 193) 0%, rgb(121, 186, 235) 100%);
  padding: 8px;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents {
  background: #F2F2F2;
  padding: 16px;
}
#campaign-container .campaign-detail .detail-contents time {
  display: block;
  font-size: 1.6rem;
  text-align: right;
  margin-bottom: 6px;
}
#campaign-container .campaign-detail .detail-contents p, #campaign-container .campaign-detail .detail-contents span {
  font-size: 1.6rem;
  line-height: 1.6;
}
#campaign-container .campaign-detail .detail-contents strong {
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents strong span {
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents a {
  color: #01A0E9;
  text-decoration: underline;
}
#campaign-container .campaign-detail .detail-contents img {
  margin: 1em 0;
}
#campaign-container .campaign-detail .detail-contents h1 {
  font-size: 3.2rem;
  color: #01A0E9;
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents h2 {
  font-size: 2.8rem;
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents h4 {
  font-size: 2.1rem;
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents h5 {
  font-size: 1.8rem;
  font-weight: 600;
}

#beginner-container #reasons {
  max-width: 1500px;
  width: 90%;
  margin: 80px auto;
}
#beginner-container #reasons .page-title-left br {
  display: none;
}
#beginner-container #reasons .page-title-left span {
  padding-right: 6px;
}
#beginner-container #reasons .intro {
  font-size: 1.8rem;
  margin: 24px 0;
}
#beginner-container #reasons .reasons-list {
  display: grid;
  gap: 28px;
  margin-top: 12px;
}
#beginner-container #reasons .reasons-list .reasons-box {
  position: relative;
}
#beginner-container #reasons .reasons-list .reasons-box figure {
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
}
#beginner-container #reasons .reasons-list .reasons-box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 38vw;
}
#beginner-container #reasons .reasons-list .reasons-box .reasons-txt {
  width: 92%;
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  position: relative;
  z-index: 0;
  padding: 2px 16px 16px 14px;
  margin: 32vw auto 0 auto;
}
#beginner-container #reasons .reasons-list .reasons-box .reasons-txt .count {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  font-family: "Roboto";
  letter-spacing: 0.001rem;
}
#beginner-container #reasons .reasons-list .reasons-box .reasons-txt .count span {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  font-family: "Roboto";
  letter-spacing: 0.001rem;
}
#beginner-container #reasons .reasons-list .reasons-box .reasons-txt h3 {
  font-size: 2.1rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 0;
}
#beginner-container #reasons .reasons-list .reasons-box .reasons-txt p {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 8px 0 0 0;
  color: #fff;
  position: relative;
  z-index: 0;
}
#beginner-container #reasons .reasons-list .reasons-box .reasons-txt::before {
  content: "";
  background: url(../images/bg-pattern.webp);
  background-repeat: repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#beginner-container #trial {
  background: #F5F5F5;
  padding: 80px 0;
  margin-top: 80px;
}
#beginner-container #trial .tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 32px;
  margin-top: 24px;
}
#beginner-container #trial .tab label {
  order: -1;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 1em;
  background-color: #ACACAC;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-family: "Noto Sans JP";
}
#beginner-container #trial .tab label br {
  display: none;
}
#beginner-container #trial .tab label:has(:checked) {
  background-color: #01A0E9;
}
#beginner-container #trial .tab label:has(:checked) + div {
  display: block;
}
#beginner-container #trial .tab label input {
  display: none;
}
#beginner-container #trial .tab .tab-contents {
  display: none;
  width: 100%;
  margin-top: 24px;
  background: #fff;
  padding: 16px;
}
#beginner-container #trial .tab .tab-contents h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #01A0E9;
  text-align: center;
}
#beginner-container #trial .tab .tab-contents .intro {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 8px 0 24px 0;
}
#beginner-container #trial .tab .tab-contents h3 {
  font-size: 2.1rem;
  font-weight: 600;
  padding-bottom: 1px;
  border-bottom: 1px solid #01A0E9;
}
#beginner-container #trial .tab .tab-contents .flow-list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
#beginner-container #trial .tab .tab-contents .flow-list .flow-box:nth-child(1) figure::before {
  content: "Step.01";
}
#beginner-container #trial .tab .tab-contents .flow-list .flow-box:nth-child(2) figure::before {
  content: "Step.02";
}
#beginner-container #trial .tab .tab-contents .flow-list .flow-box:nth-child(3) figure::before {
  content: "Step.03";
}
#beginner-container #trial .tab .tab-contents .flow-list .flow-box:nth-child(4) figure::before {
  content: "Step.04";
}
#beginner-container #trial .tab .tab-contents .flow-list .flow-box:nth-child(5) figure::before {
  content: "Step.05";
}
#beginner-container #trial .tab .tab-contents .flow-list .flow-box figure {
  position: relative;
}
#beginner-container #trial .tab .tab-contents .flow-list .flow-box figure::before {
  content: "";
  background: #01A0E9;
  font-size: 1.5rem;
  color: #fff;
  font-family: "Roboto";
  padding: 2px 6px;
  position: absolute;
  top: 0;
  left: 0;
}
#beginner-container #trial .tab .tab-contents .flow-list .flow-box .flow-txt {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 8px;
}
#beginner-container #trial .tab .tab-contents .belongings {
  background: #F5F5F5;
  margin-top: 24px;
  padding: 16px;
}
#beginner-container #trial .tab .tab-contents .belongings figure {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 12px auto;
}
#beginner-container #trial .tab .tab-contents .belongings figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt h4 {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt h4 span {
  font-size: 1.6rem;
  color: #9D9D9D;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt .belongings-list {
  display: grid;
  gap: 2px;
  margin-top: 12px;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt .belongings-list li {
  padding-left: 1.2em;
  position: relative;
  font-size: 1.6rem;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt .belongings-list li::before {
  content: "●";
  font-size: 1.6rem;
  color: #01A0E9;
  position: absolute;
  top: 0;
  left: 0;
}
#beginner-container #trial .tab .tab-contents .bnr {
  margin: 24px 0;
  padding: 16px;
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  position: relative;
}
#beginner-container #trial .tab .tab-contents .bnr::before {
  content: "";
  background: url(../images/bg-pattern.webp);
  background-repeat: repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#beginner-container #trial .tab .tab-contents .bnr h4 {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  position: relative;
  z-index: 0;
}
#beginner-container #trial .tab .tab-contents .bnr h4 span {
  font-size: 1.6rem;
  line-height: 1.2;
  color: #fff;
}
#beginner-container #trial .tab .tab-contents .bnr .bnr-txt {
  max-width: 450px;
  margin: 12px auto 0 auto;
  position: relative;
  z-index: 0;
}
#beginner-container #trial .tab .tab-contents .tyuui h4 {
  font-size: 2rem;
  font-weight: 600;
}
#beginner-container #trial .tab .tab-contents .tyuui p, #beginner-container #trial .tab .tab-contents .tyuui li {
  font-size: 1.6rem;
  list-style: decimal;
}
#beginner-container #trial .tab .tab-contents .tyuui p {
  margin: 16px 0 6px 0;
}
#beginner-container #trial .tab .tab-contents .tyuui .tyuui-list {
  display: grid;
  gap: 2px;
  padding-left: 2.5em;
}

#admission-container .page-title-left br {
  display: none;
}
#admission-container .page-title-left br {
  display: none;
}
#admission-container #flow .flow-list {
  margin-top: 16px;
  display: grid;
  gap: 24px;
}
#admission-container #flow .flow-list .flow-item:nth-child(1) h3::before {
  content: "01";
}
#admission-container #flow .flow-list .flow-item:nth-child(2) h3::before {
  content: "02";
}
#admission-container #flow .flow-list .flow-item:nth-child(3) h3::before {
  content: "03";
}
#admission-container #flow .flow-list .flow-item h3 {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  padding: 8px 12px;
  padding-left: 52px;
}
#admission-container #flow .flow-list .flow-item h3::before {
  content: "";
  background: #6E9AD4;
  font-size: 2.8rem;
  letter-spacing: 0.001rem;
  line-height: 1;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-family: "Roboto";
  text-align: center;
  width: 42px;
  height: 42px;
  position: absolute;
  display: grid;
  place-items: center;
  top: 0;
  left: 0;
}
#admission-container #flow .flow-list .flow-item .flow-inner {
  background: #FBFBFB;
  padding: 12px;
}
#admission-container #flow .flow-list .flow-item .flow-inner p, #admission-container #flow .flow-list .flow-item .flow-inner li {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #4D4D4D;
}
#admission-container #flow .flow-list .flow-item .flow-inner p a, #admission-container #flow .flow-list .flow-item .flow-inner li a {
  color: #01A0E9;
  text-decoration: underline;
}
#admission-container #flow .flow-list .flow-item .flow-inner .tyuui-list {
  background: #F1F1F1;
  padding: 12px;
  margin-top: 16px;
}
#admission-container #flow .flow-list .flow-item .flow-inner .tyuui-list li {
  position: relative;
  padding-left: 1.2em;
}
#admission-container #flow .flow-list .flow-item .flow-inner .tyuui-list li::before {
  content: "※";
  font-size: 1.6rem;
  color: #4D4D4D;
  position: absolute;
  top: 0;
  left: 0;
}
#admission-container #flow .flow-list .flow-item .flow-inner .brig {
  background: #fff;
  padding: 12px;
  margin-top: 12px;
}
#admission-container #flow .flow-list .flow-item .flow-inner .brig h4 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
#admission-container #flow .flow-list .flow-item .flow-inner .brig .bring-list {
  margin-top: 12px;
}
#admission-container #flow .flow-list .flow-item .flow-inner .brig .bring-list li {
  padding-left: 1.2em;
  font-weight: 500;
  position: relative;
  font-size: 1.6rem;
}
#admission-container #flow .flow-list .flow-item .flow-inner .brig .bring-list li::before {
  content: "●";
  font-size: 1.6rem;
  font-weight: 500;
  color: #01A0E9;
  position: absolute;
  top: 0;
  left: 0;
}
#admission-container #price {
  margin-bottom: 80px;
}
#admission-container #price .intro {
  font-size: 1.6rem;
  margin: 16px 0;
}
#admission-container #price .table-wrap {
  overflow-x: scroll;
}
#admission-container #price .table-wrap .main-table {
  width: 700px;
  border-collapse: collapse;
  white-space: nowrap;
}
#admission-container #price .table-wrap .main-table tr {
  border: 1px solid #E5E5E5;
}
#admission-container #price .table-wrap .main-table tr th, #admission-container #price .table-wrap .main-table tr td {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 12px 4px;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #E5E5E5;
  line-height: 1.2;
}
#admission-container #price .table-wrap .main-table tr th span, #admission-container #price .table-wrap .main-table tr td span {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
}
#admission-container #price .table-wrap .main-table tr .title-top {
  background: #01A0E9;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}
#admission-container #price .table-wrap .main-table tr .title-top span {
  color: #fff;
  line-height: 1.2;
}
#admission-container #price .table-wrap .main-table tr .title-side {
  background: #F5F5F5;
}
#admission-container #price .sub-table {
  width: 100%;
  margin-top: 32px;
}
#admission-container #price .sub-table caption {
  font-size: 2.4rem;
  color: #01A0E9;
  font-weight: 600;
  text-align: left;
}
#admission-container #price .sub-table tr {
  border: 1px solid #E5E5E5;
}
#admission-container #price .sub-table tr th, #admission-container #price .sub-table tr td {
  font-size: 1.4rem;
  padding: 12px 4px;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #E5E5E5;
  line-height: 1.2;
}
#admission-container #price .sub-table tr th span, #admission-container #price .sub-table tr td span {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
}
#admission-container #price .sub-table tr th {
  background: #F5F5F5;
}
#admission-container #price .sub-table tr td:nth-last-child(2) {
  text-align: left;
}
#admission-container #price .tyuui {
  font-size: 1.5rem;
  margin-top: 8px;
}

#faq-container #faq {
  margin-bottom: 80px;
}
#faq-container #faq .tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 16px;
}
#faq-container #faq .tab label {
  order: -1;
  width: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 8px;
  background-color: #ACACAC;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all ease 0.5s;
  font-family: "Noto Sans JP";
  margin: 1% 0;
}
#faq-container #faq .tab label br {
  display: none;
}
#faq-container #faq .tab label:has(:checked) {
  background-color: #01A0E9;
}
#faq-container #faq .tab label:has(:checked) + div {
  display: block;
}
#faq-container #faq .tab label input {
  display: none;
}
#faq-container #faq .tab .tab-contents {
  display: none;
  width: 100%;
  margin-top: 16px;
  background: #fff;
}
#faq-container #faq .tab .tab-contents h2 {
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  color: #fff;
  font-size: 2.1rem;
  font-weight: 600;
  padding: 6px 8px;
}
#faq-container #faq .tab .tab-contents .faq-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}
#faq-container #faq .tab .tab-contents .faq-list .faq-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 1.7rem;
  color: #4A4A4A;
  font-weight: 500;
  padding: 0 12px 6px 0;
  position: relative;
  border-bottom: 1px solid #01A0E9;
}
#faq-container #faq .tab .tab-contents .faq-list .faq-accordion summary::-webkit-details-marker {
  display: none;
}
#faq-container #faq .tab .tab-contents .faq-list .faq-accordion summary::after {
  transform: translateY(-25%) rotate(45deg);
  position: absolute;
  right: 0;
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-bottom: 2px solid #4A4A4A;
  border-right: 2px solid #4A4A4A;
  content: "";
  transition: transform 0.3s;
}
#faq-container #faq .tab .tab-contents .faq-list .faq-accordion p {
  font-size: 1.6rem;
  position: relative;
  margin-top: 8px;
  transform: translateY(-10px);
  padding: 8px 0 0 0x;
  opacity: 0;
  margin: 8px 0 0 0;
}
#faq-container #faq .tab .tab-contents .faq-list .faq-accordion p a {
  color: #01A0E9;
  text-decoration: underline;
}
#faq-container #faq .tab .tab-contents .faq-list .faq-accordion[open] p {
  transform: none;
  opacity: 1;
}
#faq-container #faq .tab .tab-contents .faq-list .faq-accordion[open] summary::after {
  transform: rotate(225deg);
}

#studio-container .page-title-left {
  margin-bottom: 16px;
}
#studio-container .page-title-left br {
  display: none;
}
#studio-container .page-title-left span {
  padding-right: 6px;
}
#studio-container .intro {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #4D4D4D;
}
#studio-container .schedule-list {
  display: grid;
  gap: 12px;
}
#studio-container .schedule-list .schedule-btn {
  width: 100%;
}
#studio-container .schedule-list .schedule-btn a {
  width: 100%;
  background: linear-gradient(90deg, rgb(47, 110, 193) 0%, rgb(121, 186, 235) 50%, rgb(47, 110, 193) 100%);
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Roboto";
  padding: 16px 0;
  border-radius: 50px;
  display: block;
  margin: 0 auto;
  background-size: 200% 100%;
  position: relative;
}
#studio-container .schedule-list .schedule-btn a::before, #studio-container .schedule-list .schedule-btn a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 10px;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0px) 50%;
}
#studio-container .schedule-list .schedule-btn a::before {
  transform: rotate(45deg);
}
#studio-container .schedule-list .schedule-btn a::after {
  transform: rotate(-45deg);
}
#studio-container #studio {
  margin-bottom: 120px;
}
#studio-container #studio .tab {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
#studio-container #studio .tab label {
  order: -1;
  width: 32.3%;
  margin-bottom: 1%;
  margin-right: 1%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 2px;
  background-color: #ACACAC;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-family: "Noto Sans JP";
}
#studio-container #studio .tab label:nth-child(4) {
  margin-right: 0;
}
#studio-container #studio .tab label br {
  display: none;
}
#studio-container #studio .tab label:has(:checked) {
  background-color: #01A0E9;
}
#studio-container #studio .tab label:has(:checked) + div {
  display: block;
}
#studio-container #studio .tab label input {
  display: none;
}
#studio-container #studio .tab .tab-contents {
  display: none;
  width: 100%;
  margin-top: 16px;
}
#studio-container #studio .tab .tab-contents .lesson-title {
  position: relative;
  margin-bottom: 16px;
}
#studio-container #studio .tab .tab-contents .lesson-title img {
  height: 30vw;
  -o-object-fit: cover;
     object-fit: cover;
}
#studio-container #studio .tab .tab-contents .lesson-title h3 {
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
}
#studio-container #studio .tab .tab-contents .lesson-title h3 span {
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  line-height: 1.2;
}
#studio-container #studio .tab .tab-contents .lesson-title h3::after {
  content: "";
  background: linear-gradient(60deg, rgb(47, 110, 193), rgb(121, 186, 235));
  width: 80px;
  height: 80px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  left: -12px;
  bottom: -12px;
  z-index: -1;
  filter: none;
}
#studio-container #studio .tab .tab-contents .lesson-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}
#studio-container #studio .tab .tab-contents .lesson-list .lesson-box h4 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  color: #4A4A4A;
  padding-bottom: 2px;
  border-bottom: 1px solid #01A0E9;
}
#studio-container #studio .tab .tab-contents .lesson-list .lesson-box .beginner {
  position: relative;
  padding-left: 20px;
}
#studio-container #studio .tab .tab-contents .lesson-list .lesson-box .beginner::before {
  content: "";
  background: url(../images/studio-lesson/beginner-icon.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: 1px;
  top: 0;
  margin: auto;
}
#studio-container #studio .tab .tab-contents .lesson-list .lesson-box h5 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #01A0E9;
  margin-top: 8px;
}
#studio-container #studio .tab .tab-contents .lesson-list .lesson-box .level {
  font-size: 1.8rem;
  font-weight: 600;
  color: #01A0E9;
  margin-top: 6px;
}

#personal-container .page-title-left br {
  display: none;
}
#personal-container .page-title-left span {
  padding-right: 6px;
}
#personal-container .intro {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #4D4D4D;
}
#personal-container #about {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
}
#personal-container #about figure {
  width: 100%;
  margin-top: 16px;
}
#personal-container #about figure img {
  height: 40vw;
  -o-object-fit: cover;
     object-fit: cover;
}
#personal-container #about .about-txt {
  width: 100%;
}
#personal-container #about .about-txt h2 {
  font-size: 2.1rem;
  color: #01A0E9;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  font-feature-settings: "palt";
}
#personal-container #about .about-txt h2 br {
  display: none;
}
#personal-container #about .about-txt .check-list {
  background: #F1F1F1;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 12px;
  margin: 12px 0;
}
#personal-container #about .about-txt .check-list li {
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  padding-left: 23px;
}
#personal-container #about .about-txt .check-list li::before {
  content: "";
  background: url(../images/personal-training/check-icon.svg) no-repeat;
  background-size: contain;
  width: 18px;
  height: 16px;
  position: absolute;
  top: 3px;
  left: 0;
}
#personal-container #effect {
  width: 90%;
  margin: 40px auto;
  background: #F1F1F1;
  padding: 16px 12px;
}
#personal-container #effect h2 {
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  color: #01A0E9;
  line-height: 0.8;
}
#personal-container #effect h2 span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #01A0E9;
  line-height: 1.2;
}
#personal-container #effect .effect-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 12px;
}
#personal-container #effect .effect-list .effect-item {
  position: relative;
}
#personal-container #effect .effect-list .effect-item img {
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
#personal-container #effect .effect-list .effect-item p {
  font-size: 1.5rem;
  letter-spacing: 0.001rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: rgba(1, 160, 233, 0.92);
  width: 90%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 1.2;
}
#personal-container #effect .effect-list .effect-item p span {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
}
#personal-container #about2 .about-inner {
  margin-bottom: 12px;
}
#personal-container #about2 .about-inner h2 {
  font-size: 2rem;
  color: #01A0E9;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
}
#personal-container #about2 .about-inner h2 br {
  display: none;
}
#personal-container #about2 .about-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#personal-container #about2 .about-img figure img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  height: 30vw;
}
#personal-container #price {
  margin-bottom: 120px;
}
#personal-container #price .main-table {
  width: 100%;
  margin-top: 8px;
}
#personal-container #price .main-table tr {
  border: 1px solid #E5E5E5;
}
#personal-container #price .main-table tr th, #personal-container #price .main-table tr td {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 12px 4px;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #E5E5E5;
  line-height: 1.2;
}
#personal-container #price .main-table tr .title-top {
  background: #65A9DC;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}
#personal-container #price .main-table tr .title-top span {
  color: #fff;
  line-height: 1.2;
}
#personal-container #price .main-table tr .title-side {
  background: #F5F5F5;
}
#personal-container #price .tyuui {
  font-size: 1.5rem;
  margin-top: 8px;
}

#about-container #deta {
  background: #F1F1F1;
  position: relative;
  padding: 16px;
  position: relative;
  z-index: -2;
  margin-top: 60px;
}
#about-container #deta::before {
  content: "";
  background: url(../images/news-bg.svg) no-repeat;
  background-size: cover;
  position: absolute;
  transform: rotate(-180deg);
  top: 0;
  left: 0;
  width: 20vw;
  height: 100%;
  filter: grayscale(100%);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  #about-container #deta::before {
    height: 35%;
  }
}
#about-container #deta::after {
  content: "";
  background: url(../images/news-bg.svg) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20vw;
  height: 100%;
  filter: grayscale(100%);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  #about-container #deta::after {
    height: 35%;
  }
}
#about-container #deta h2 {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  color: #01A0E9;
}
#about-container #deta .intro {
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
}
#about-container #deta .deta-wrap {
  position: relative;
  margin-top: 24px;
  z-index: 0;
}
#about-container #deta .deta-wrap .deta-item {
  background: #fff;
  padding-top: 16px;
  width: 100%;
}
#about-container #deta .deta-wrap .deta-item #svgArea, #about-container #deta .deta-wrap .deta-item #svgArea2 {
  display: block;
  width: 100%;
  height: 78vw;
}
#about-container #deta .deta-wrap .deta-item .arcInfomation {
  fill: #333;
  font-size: 20px;
  text-anchor: middle;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
#about-container #deta .deta-wrap .deta-item .graphTitle {
  font: 28px sans-serif;
  fill: #333;
  text-anchor: middle;
  font-weight: bold;
}
#about-container #facility {
  width: 90%;
  margin: 0 auto;
}
#about-container #facility h3 {
  font-size: 2.1rem;
  font-weight: 600;
  padding-bottom: 1px;
  border-bottom: 1px solid #01A0E9;
  margin: 16px 0;
}
#about-container #facility .facility-list {
  display: grid;
  gap: 28px;
  margin: 12px 0 40px 0;
}
#about-container #facility .facility-list .facility-box {
  position: relative;
}
#about-container #facility .facility-list .facility-box figure {
  width: 100%;
  position: absolute;
  z-index: 0;
  left: -1;
  height: -moz-fit-content;
  height: fit-content;
}
#about-container #facility .facility-list .facility-box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 40vw;
}
#about-container #facility .facility-list .facility-box .facility-txt {
  width: 92%;
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  position: relative;
  z-index: 0;
  padding: 16px 14px;
  margin: 32vw auto 0 auto;
}
#about-container #facility .facility-list .facility-box .facility-txt h4 {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 0;
}
#about-container #facility .facility-list .facility-box .facility-txt p {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 8px 0 0 0;
  color: #fff;
  position: relative;
  z-index: 0;
}
#about-container #facility .facility-list .facility-box .facility-txt .btn {
  margin: 16px auto 0 auto;
  background: none;
  border: 1px solid #fff;
}
#about-container #facility .facility-list .facility-box .facility-txt::before {
  content: "";
  background: url(../images/bg-pattern.webp);
  background-repeat: repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#about-container #voice {
  margin: 60px 0 0 0;
}
#about-container #voice .voice-wrap {
  background: #F2F2F2;
  padding: 40px 0;
  position: relative;
}
#about-container #voice .voice-wrap::before {
  content: "";
  background: url(../images/news-bg.svg) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 40vw;
  height: 100%;
  filter: grayscale(100%);
}
#about-container #voice .voice-inner {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
#about-container #voice .voice-inner .voice-list {
  width: 100%;
  margin-top: 16px;
}
#about-container #voice .voice-inner .voice-list .voice-box {
  width: 100%;
  background: #fff;
  height: auto;
  padding: 16px;
  background: #fff;
}
#about-container #voice .voice-inner .voice-list .voice-box h3 {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 600;
  color: #01A0E9;
}
#about-container #voice .voice-inner .voice-list .voice-box h3 br {
  display: none;
}
#about-container #voice .voice-inner .voice-list .voice-box .name {
  font-size: 1.4rem;
  margin: 8px 0;
  padding: 2px 4px;
  background: #6B6B6B;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-feature-settings: "palt";
}
#about-container #voice .voice-inner .voice-list .voice-box .voice-txt {
  font-size: 1.5rem;
  line-height: 1.5;
  padding-top: 6px;
  border-top: 1px solid #CFCFCF;
}
#about-container #voice .voice-inner .voice-list .voice-box .voice-btn {
  font-size: 1.5rem;
  color: #01A0E9;
  text-decoration: underline;
  display: block;
  margin-top: 8px;
}
#about-container #voice .voice-inner .slick-track {
  display: flex;
}
#about-container #voice .voice-inner .slick-slide {
  margin: 0 8px;
  height: auto !important;
}
#about-container #voice .voice-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#about-container #voice .voice-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 40vw;
}
#about-container #info {
  margin-bottom: 80px;
}
#about-container #info .info-wrap {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 16px;
}
#about-container #info .info-wrap iframe {
  width: 100%;
  height: 240px;
  margin-top: 24px;
}
#about-container #info .info-wrap .info-list {
  width: 100%;
}
#about-container #info .info-wrap .info-list .info-item {
  border-top: 1px solid #E5E5E5;
  padding: 8px 8px;
}
#about-container #info .info-wrap .info-list .info-item:last-child {
  border-bottom: 1px solid #E5E5E5;
}
#about-container #info .info-wrap .info-list .info-item dt, #about-container #info .info-wrap .info-list .info-item dd {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #4D4D4D;
}
#about-container #info .info-wrap .info-list .info-item dt {
  font-weight: 500;
}

#news-container #news {
  margin-bottom: 80px;
}
#news-container #news .news-list {
  background: #fff;
  width: 100%;
}
#news-container #news .news-list .news-item {
  border-top: 1px solid #E9E9E9;
}
#news-container #news .news-list .news-item:last-child {
  border-bottom: 1px solid #E9E9E9;
}
#news-container #news .news-list .news-item a {
  padding: 12px;
  display: block;
}
#news-container #news .news-list .news-item a time {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Roboto";
  color: #4D4D4D;
}
#news-container #news .news-list .news-item a h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4D4D4D;
}
#news-container #news-detail {
  margin-bottom: 80px;
}
#news-container #news-detail .page-title {
  background: linear-gradient(90deg, rgb(47, 110, 193) 0%, rgb(121, 186, 235) 100%);
  padding: 8px;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
}
#news-container #news-detail .detail-contents {
  background: #F2F2F2;
  padding: 16px;
}
#news-container #news-detail .detail-contents time {
  display: block;
  font-size: 1.6rem;
  text-align: right;
  margin-bottom: 6px;
}
#news-container #news-detail .detail-contents p, #news-container #news-detail .detail-contents span {
  font-size: 1.6rem;
  line-height: 1.6;
}
#news-container #news-detail .detail-contents strong {
  font-weight: 600;
}
#news-container #news-detail .detail-contents strong span {
  font-weight: 600;
}
#news-container #news-detail .detail-contents a {
  color: #01A0E9;
  text-decoration: underline;
}
#news-container #news-detail .detail-contents img {
  margin: 1em 0;
}
#news-container #news-detail .detail-contents h1 {
  font-size: 3.2rem;
  color: #01A0E9;
  font-weight: 600;
}
#news-container #news-detail .detail-contents h2 {
  font-size: 2.8rem;
  font-weight: 600;
}
#news-container #news-detail .detail-contents h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
#news-container #news-detail .detail-contents h4 {
  font-size: 2.1rem;
  font-weight: 600;
}
#news-container #news-detail .detail-contents h5 {
  font-size: 1.8rem;
  font-weight: 600;
}

.pagenation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F5F5F5;
  padding: 12px 16px;
  margin: 24px 0;
  position: relative;
}
.pagenation ul li {
  margin-right: 2%;
}
.pagenation ul li a {
  font-family: "Roboto";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 30px;
  font-size: 1.5rem;
  width: 30px;
  background: #01A0E9;
  border-radius: 50px;
}
.pagenation ul .page-active {
  font-size: 1.5rem;
  font-family: "Roboto";
}
.pagenation ul .next a, .pagenation ul .prev a {
  color: #4D4D4D;
  font-size: 1.5rem;
  background: none;
  width: auto;
  font-family: "Noto Sans JP", sans-serif;
}
.pagenation ul .next {
  position: absolute;
  right: 2%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.pagenation ul .prev {
  position: absolute;
  left: 2%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}

#machine-container .btn-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
#machine-container .btn-list .btn-item {
  overflow: hidden;
  position: relative;
}
#machine-container .btn-list .btn-item a {
  display: block;
}
#machine-container .btn-list .btn-item a img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 16vw;
}
#machine-container .btn-list .btn-item .title {
  position: absolute;
  left: 6px;
  bottom: 6px;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
}
#machine-container .btn-list .btn-item .title span {
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  line-height: 1.2;
}
#machine-container .btn-list .btn-item .title::after {
  content: "";
  background: linear-gradient(60deg, rgb(47, 110, 193), rgb(121, 186, 235));
  width: 60px;
  height: 60px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  left: -6px;
  bottom: -6px;
  z-index: -1;
  filter: none;
}
#machine-container #about {
  width: 90%;
  margin: 40px auto 0 auto;
}
#machine-container #about .about-box {
  position: relative;
}
#machine-container #about .about-box figure {
  width: 100%;
  position: absolute;
  z-index: 0;
  left: -1;
  height: -moz-fit-content;
  height: fit-content;
}
#machine-container #about .about-box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 40vw;
}
#machine-container #about .about-box .about-txt {
  width: 92%;
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  position: relative;
  z-index: 0;
  padding: 16px 14px;
  margin: 32vw auto 0 auto;
}
#machine-container #about .about-box .about-txt h4 {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 0;
}
#machine-container #about .about-box .about-txt p {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 8px 0 0 0;
  color: #fff;
  position: relative;
  z-index: 0;
}
#machine-container #about .about-box .about-txt .btn {
  margin: 16px auto 0 auto;
  background: none;
  border: 1px solid #fff;
}
#machine-container #about .about-box .about-txt::before {
  content: "";
  background: url(../images/bg-pattern.webp);
  background-repeat: repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#machine-container #reasons {
  width: 90%;
  margin: 0 auto;
}
#machine-container #reasons .reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0 0 0;
}
#machine-container #reasons .reasons .reasons-box {
  position: relative;
}
#machine-container #reasons .reasons .reasons-box h3 {
  position: absolute;
  left: 8px;
  bottom: 8px;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
}
#machine-container #reasons .reasons .reasons-box h3 strong {
  font-family: "Roboto";
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.001rem;
}
#machine-container #reasons .reasons .reasons-box h3 span {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  line-height: 1.2;
}
#machine-container #reasons .reasons .reasons-box h3::after {
  content: "";
  background: linear-gradient(60deg, rgb(47, 110, 193), rgb(121, 186, 235));
  width: 80px;
  height: 80px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  left: -8px;
  bottom: -8px;
  z-index: -1;
  filter: none;
}
#machine-container .common-box {
  margin-top: 80px;
}
#machine-container .common-box:last-child {
  margin-bottom: 100px;
}
#machine-container .common-box h3 {
  background: linear-gradient(90deg, rgb(47, 110, 193) 0%, rgb(121, 186, 235) 100%);
  padding: 12px;
  font-size: 2.1rem;
  color: #fff;
  font-weight: 600;
  margin-top: 8px;
}
#machine-container .common-box h4 {
  font-size: 2rem;
  color: #01A0E9;
  font-weight: 600;
  margin: 16px 0 6px 0;
}
#machine-container .common-box .intro {
  font-size: 1.6rem;
  color: #4D4D4D;
  line-height: 1.6;
}
#machine-container #machine .tab {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
}
#machine-container #machine .tab label {
  order: -1;
  width: 32.3%;
  margin-bottom: 1%;
  margin-right: 1%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 2px;
  background-color: #ACACAC;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
#machine-container #machine .tab label br {
  display: none;
}
#machine-container #machine .tab label:has(:checked) {
  background-color: #01A0E9;
}
#machine-container #machine .tab label:has(:checked) + div {
  display: block;
}
#machine-container #machine .tab label input {
  display: none;
}
#machine-container #machine .tab .tab-contents {
  display: none;
  width: 100%;
  margin-top: 8px;
}
#machine-container #machine .tab .tab-contents .machine-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media screen and (max-width: 600px) {
  #machine-container #machine .tab .tab-contents .machine-list {
    grid-template-columns: 1fr;
  }
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box {
  display: flex;
  flex-direction: column;
  background: #F6F6F6;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box h5 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 6px;
  background: #fff;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box h5 span {
  font-size: 1.3rem;
  color: #BBBBBB;
  line-height: 1.2;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box dl {
  display: flex;
  border-top: 1px solid #01A0E9;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box dl dt, #machine-container #machine .tab .tab-contents .machine-list .machine-box dl dd {
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 6px 0;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box dl dt {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #CBE2F4;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box dl dd {
  width: calc(100% - 48px);
  padding: 8px;
  background: #E2F2FE;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box .machine-inner {
  padding: 16px;
  background: #F6F6F6;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box .machine-inner figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box .machine-inner p {
  font-size: 1.5rem;
  color: #757575;
  line-height: 1.4;
  margin: 12px 0 24px 0;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box .machine-inner ul {
  position: relative;
  background: #fff;
  padding: 16px 12px 12px 12px;
  display: grid;
  gap: 4px;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box .machine-inner ul::before {
  content: "Check!";
  font-size: 2.1rem;
  font-weight: 700;
  color: #01A0E9;
  font-family: "Roboto";
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box .machine-inner ul li {
  font-size: 1.6rem;
  position: relative;
  padding-left: 1.5em;
  line-height: 1.2;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box .machine-inner ul li::before {
  content: "";
  background: url(../images/machine/check.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 15px;
  position: absolute;
  top: 3px;
  left: 0;
}
#machine-container #machine .tab .tab-contents .machine-list .big-box {
  grid-column: 1/3;
}
@media screen and (max-width: 600px) {
  #machine-container #machine .tab .tab-contents .machine-list .big-box {
    grid-column: 1/2;
  }
}
#machine-container #machine .tab .tab-contents .machine-list .big-box .machine-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#machine-container #aerobic .machine-list, #machine-container #weight .machine-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media screen and (max-width: 600px) {
  #machine-container #aerobic .machine-list, #machine-container #weight .machine-list {
    grid-template-columns: 1fr;
  }
}
#machine-container #aerobic .machine-list .machine-box, #machine-container #weight .machine-list .machine-box {
  display: flex;
  flex-direction: column;
  background: #F6F6F6;
}
#machine-container #aerobic .machine-list .machine-box h5, #machine-container #weight .machine-list .machine-box h5 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 6px;
  background: #fff;
}
#machine-container #aerobic .machine-list .machine-box h5 span, #machine-container #weight .machine-list .machine-box h5 span {
  font-size: 1.3rem;
  color: #BBBBBB;
  line-height: 1.2;
}
#machine-container #aerobic .machine-list .machine-box .machine-inner, #machine-container #weight .machine-list .machine-box .machine-inner {
  padding: 16px;
  background: #F6F6F6;
  border-top: 1px solid #01A0E9;
}
#machine-container #aerobic .machine-list .machine-box .machine-inner figure img, #machine-container #weight .machine-list .machine-box .machine-inner figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
#machine-container #aerobic .machine-list .big-box, #machine-container #weight .machine-list .big-box {
  grid-column: 1/3;
}
@media screen and (max-width: 600px) {
  #machine-container #aerobic .machine-list .big-box, #machine-container #weight .machine-list .big-box {
    grid-column: 1/2;
  }
}
#machine-container #aerobic .machine-list .big-box .machine-img, #machine-container #weight .machine-list .big-box .machine-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#trial-container .trial-top .bnr {
  width: 100%;
  margin: 0 auto;
}
#trial-container .trial-top .bnr img {
  width: 100%;
}
#trial-container .trial-top .intro {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 12px auto;
}
#trial-container .trial-top .tel-btn {
  display: block;
  margin: 0 auto;
  width: 200px;
  border: 1px solid #01A0E9;
  padding: 4px 12px 4px 40px;
  font-size: 2.4rem;
  font-family: "Roboto";
  font-weight: 600;
  text-align: center;
  position: relative;
  color: #01A0E9;
}
#trial-container .trial-top .tel-btn::before {
  content: "";
  background: url(../images/trial/tel.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
}
#trial-container .form {
  margin: 40px 0 100px 0;
  background: #F9F9F9;
  padding: 16px;
}
#trial-container .form .tyuui-box {
  background: #fff;
  padding: 16px;
  margin-top: 32px;
}
#trial-container .form .tyuui-box h3 {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 16px;
}
#trial-container .form .tyuui-box h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #818181;
  margin-top: 12px;
}
#trial-container .form .tyuui-box .tyuui {
  font-size: 1.7rem;
  font-weight: 600;
  color: #01A0E9;
}
#trial-container .form .tyuui-box p, #trial-container .form .tyuui-box li {
  font-size: 1.6rem;
  color: #818181;
  line-height: 1.4;
}
#trial-container .form .tyuui-box p a, #trial-container .form .tyuui-box li a {
  color: #818181;
}
#trial-container .form .tyuui-box .main-list {
  margin-top: 4px;
}
#trial-container .form .tyuui-box .main-list .main-item {
  text-indent: -1em;
  padding-left: 1em;
}
#trial-container .form .tyuui-box .main-list .main-item::before {
  content: "※";
  font-size: 1.6rem;
  color: #818181;
}
#trial-container .form .tyuui-box .main-list .main-item .sub-list {
  padding-left: 1em;
}
#trial-container .form .tyuui-box .main-list .main-item .sub-list li {
  list-style: disc;
  text-indent: 0;
}
#trial-container form dl div {
  padding: 6px 0;
}
#trial-container form dl div dt {
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#trial-container form dl div dt span.hissu {
  color: #fff;
  background: #01A0E9;
  line-height: 1;
  font-size: 1.4rem;
  padding: 4px 6px;
  margin-right: 6px;
}
#trial-container form dl div dt br {
  display: none;
}
#trial-container form dl div dt .fix {
  display: block;
}
#trial-container form dl div dd {
  margin-top: 8px;
}
#trial-container form dl div dd select {
  font-size: 1.8rem !important;
  padding: 16px 16px !important;
  color: #333 !important;
  background: #fff;
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
  max-width: 350px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
#trial-container form dl div dd input, #trial-container form dl div dd textarea {
  font-size: 1.8rem;
  padding: 16px 16px;
  background: #fff;
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
}
#trial-container form dl div dd .wpcf7-not-valid-tip {
  font-size: 1.3rem;
}
#trial-container form dl div dd .wpcf7-spinner {
  position: absolute;
}
#trial-container form dl div #calendar input {
  max-width: 350px;
  width: 100%;
}
#trial-container form dl div .checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
#trial-container form dl div .checkbox label {
  font-size: 1.6rem;
  margin: 0 24px 4px 0;
  cursor: pointer;
}
#trial-container form dl div .checkbox label input[type=checkbox] {
  width: 14px !important;
  height: 14px !important;
  padding: 0 !important;
}
#trial-container form .check-txt {
  text-align: center;
  margin-top: 36px;
}
#trial-container form .check-txt a {
  text-decoration: underline;
  color: #202020;
}
#trial-container form .tyuui {
  color: #A7A7A7;
  font-size: 1.5rem;
  margin-top: 4px;
}
#trial-container form .tyuui a {
  color: #01A0E9;
  text-decoration: underline;
}
#trial-container form .btn-group {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px auto 0 auto;
}
#trial-container form .btn-group input[type=submit] {
  border: none;
  font-size: 1.7rem;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 12px 40px;
  background: #01A0E9;
  color: #ffffff;
}
#trial-container form .wpcf7-response-output {
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  color: red;
}
#trial-container form .wpcf7-spinner {
  position: absolute;
}

.ui-datepicker {
  width: 30em !important;
  padding: 1em 1em 0;
  display: none;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.3em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  font-size: 1.2rem; /*任意な値を追加して調整*/
  padding: 0.3em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker-title, .ui-datepicker-title span {
  font-size: 2rem;
  font-weight: 600;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  top: 4px !important;
  width: 3em !important;
  height: 3em !important;
  cursor: pointer;
}

.ui-datepicker-calendar th, .ui-datepicker-calendar td, .ui-datepicker-calendar span {
  font-size: 1.5rem;
  font-weight: 600;
}
.ui-datepicker-calendar td a, .ui-datepicker-calendar td span {
  font-size: 1.6rem;
}

#contact-container .contact-top .intro {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 12px auto;
}
#contact-container .contact-top .tel-btn {
  display: block;
  margin: 0 auto;
  width: 200px;
  border: 1px solid #01A0E9;
  padding: 4px 12px 4px 40px;
  font-size: 2.4rem;
  font-family: "Roboto";
  font-weight: 600;
  text-align: center;
  position: relative;
  color: #01A0E9;
}
#contact-container .contact-top .tel-btn::before {
  content: "";
  background: url(../images/trial/tel.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
}
#contact-container .form {
  margin: 40px 0 100px 0;
  background: #F9F9F9;
  padding: 16px;
}
#contact-container .form .tyuui-box {
  background: #fff;
  padding: 16px;
  margin-top: 32px;
}
#contact-container .form .tyuui-box h3 {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 16px;
}
#contact-container .form .tyuui-box h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #818181;
  margin-top: 12px;
}
#contact-container .form .tyuui-box .tyuui {
  font-size: 1.7rem;
  font-weight: 600;
  color: #01A0E9;
}
#contact-container .form .tyuui-box p, #contact-container .form .tyuui-box li {
  font-size: 1.6rem;
  color: #818181;
  line-height: 1.4;
}
#contact-container .form .tyuui-box p a, #contact-container .form .tyuui-box li a {
  color: #818181;
}
#contact-container form dl div {
  padding: 6px 0;
}
#contact-container form dl div dt {
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#contact-container form dl div dt span.hissu {
  color: #fff;
  background: #01A0E9;
  line-height: 1;
  font-size: 1.4rem;
  padding: 4px 6px;
  margin-right: 6px;
}
#contact-container form dl div dt br {
  display: none;
}
#contact-container form dl div dt .fix {
  display: block;
}
#contact-container form dl div dd {
  margin-top: 8px;
}
#contact-container form dl div dd select {
  font-size: 1.8rem !important;
  padding: 16px 16px !important;
  color: #333 !important;
  background: #fff;
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
  max-width: 350px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
#contact-container form dl div dd input, #contact-container form dl div dd textarea {
  font-size: 1.8rem;
  padding: 16px 16px;
  background: #fff;
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
}
#contact-container form .check-txt {
  text-align: center;
  margin-top: 36px;
}
#contact-container form .check-txt a {
  text-decoration: underline;
  color: #202020;
}
#contact-container form .tyuui {
  color: #A7A7A7;
  font-size: 1.5rem;
  margin-top: 4px;
}
#contact-container form .tyuui a {
  color: #01A0E9;
  text-decoration: underline;
}
#contact-container form .btn-group {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px auto 0 auto;
}
#contact-container form .btn-group input[type=submit] {
  border: none;
  font-size: 1.7rem;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 12px 40px;
  background: #01A0E9;
  color: #ffffff;
}
#contact-container form .wpcf7-not-valid-tip {
  font-size: 1.3rem;
}
#contact-container form .wpcf7-response-output {
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  color: red;
}
#contact-container form .wpcf7-spinner {
  position: absolute;
}

#privacy-container {
  margin-bottom: 100px;
}
#privacy-container .intro {
  font-size: 1.6rem;
  line-height: 1.5;
}
#privacy-container .intro a {
  color: #01A0E9;
  text-decoration: underline;
}
#privacy-container .privacy-top {
  margin: 24px auto 16px auto;
}
#privacy-container .privacy-list {
  display: grid;
  gap: 24px;
}
#privacy-container .privacy-list .privacy-box h2 {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 1px solid #01A0E9;
  margin-bottom: 4px;
}
#privacy-container .privacy-list .privacy-box .sub-list {
  background: #F5F5F5;
  padding: 16px 16px 16px 36px;
  margin-top: 12px;
}
#privacy-container .privacy-list .privacy-box .sub-list .sub-item {
  font-size: 1.6rem;
  line-height: 1.4;
  list-style-type: decimal;
}

#kids-container p {
  font-size: 2.1rem;
  text-align: center;
  font-family: "Roboto";
  margin-bottom: 100px;
}

#contents-404 h2 {
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
}
#contents-404 p {
  font-size: 1.6rem;
  margin: 16px 0 100px;
  text-align: center;
}

#global-footer {
  background: #fff;
}
#global-footer .bnr-area {
  background: url(../images/bg-pattern.webp);
  background-repeat: repeat;
  padding: 40px 0;
}
#global-footer .bnr-area .footer-list {
  width: 85%;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
#global-footer .bnr-area .footer-list .footer-item {
  width: 100%;
}
#global-footer .bnr-area .footer-list .footer-item:nth-child(2) {
  width: 104.5%;
}
#global-footer .bnr-area .footer-list .footer-item a {
  display: block;
}
#global-footer .cta-area .cta-item {
  height: 20vw;
  min-height: 210px;
  display: grid;
  place-items: center;
}
#global-footer .cta-area .cta-item:nth-child(1) {
  background: url(../images/cta-bnr01.webp) no-repeat center;
  background-size: cover;
}
#global-footer .cta-area .cta-item:nth-child(1) h2 span {
  color: #01A0E9;
}
#global-footer .cta-area .cta-item:nth-child(2) {
  background: url(../images/cta-bnr02.webp) no-repeat center;
  background-size: cover;
}
#global-footer .cta-area .cta-item:nth-child(2) h2 span {
  color: #F4B12C;
}
#global-footer .cta-area .cta-item h2 {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
#global-footer .cta-area .cta-item h2 span {
  font-size: 4.2rem;
  font-family: "Roboto";
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
#global-footer .cta-area .cta-item p {
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  margin: 12px auto;
}
#global-footer .cta-area .cta-item p .sp {
  display: none;
}
@media screen and (max-width: 480px) {
  #global-footer .cta-area .cta-item p .sp {
    display: block;
  }
}
#global-footer .cta-area .cta-item .cta-btn {
  font-size: 1.6rem;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  padding: 8px 0;
  width: 200px;
  position: relative;
  z-index: 0;
  display: block;
  margin: 0 auto;
}
#global-footer .cta-area .cta-item .cta-btn::before, #global-footer .cta-area .cta-item .cta-btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 16px;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0px) 50%;
}
#global-footer .cta-area .cta-item .cta-btn::before {
  transform: rotate(45deg);
}
#global-footer .cta-area .cta-item .cta-btn::after {
  transform: rotate(-45deg);
}
#global-footer .sns-area {
  background: url(../images/bg-pattern.webp);
  background-repeat: repeat;
  padding: 40px 0 100px 0;
}
#global-footer .sns-area .sns-inner {
  display: grid;
  gap: 16px;
}
#global-footer .sns-area .sns-inner .sns-box {
  background: #fff;
  padding: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#global-footer .sns-area .sns-inner .sns-box h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
#global-footer .sns-area .sns-inner .sns-box h2 span {
  color: #01A0E9;
  font-size: 3.6rem;
  font-weight: 700;
  font-family: "Roboto";
  text-align: center;
  line-height: 1.2;
}
#global-footer .sns-area .sns-inner .sns-box iframe {
  margin: 0 auto;
  display: block;
  height: 100%;
}
@media screen and (max-width: 480px) {
  #global-footer .sns-area .sns-inner .sns-box iframe {
    width: 100%;
    height: 360px;
  }
}
#global-footer .footer-info {
  padding: 60px 0 24px 0;
  position: relative;
  background: url(../images/footer-bg.webp) no-repeat center;
  background-size: cover;
}
#global-footer .footer-info .logo {
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: auto;
}
#global-footer .footer-info .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.16));
}
#global-footer .footer-info .info-contents {
  margin: 0 auto;
  width: 90%;
}
#global-footer .footer-info .info-contents .info-item {
  margin: 8px 0;
}
#global-footer .footer-info .info-contents .info-item dt, #global-footer .footer-info .info-contents .info-item dd {
  font-size: 1.5rem;
  color: #fff;
}
#global-footer .footer-info .info-contents .info-item dt a, #global-footer .footer-info .info-contents .info-item dd a {
  color: #fff;
}
#global-footer .footer-info #gnav {
  border-top: 1px solid #BBBBBB;
  margin-top: 24px;
  padding-top: 16px;
}
#global-footer .footer-info #gnav .menu-list {
  display: grid;
  gap: 8px;
}
#global-footer .footer-info #gnav .menu-list .menu-item a {
  padding: 4px 20px 4px 0;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
}
#global-footer .footer-info #gnav .menu-list .menu-item a::before, #global-footer .footer-info #gnav .menu-list .menu-item a::after {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  right: 0;
  width: 6px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0px) 50%;
}
#global-footer .footer-info #gnav .menu-list .menu-item a::before {
  transform: rotate(45deg);
}
#global-footer .footer-info #gnav .menu-list .menu-item a::after {
  transform: rotate(-45deg);
}
#global-footer .footer-info .copy_small {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}/*# sourceMappingURL=sp_style.css.map */