@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: 120px 0 0 0;
}

.page-title-left h2 {
  font-size: 2rem;
  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: 8.6rem;
  color: #01A0E9;
  line-height: 0.6;
  letter-spacing: 0.001rem;
}

.page-title-center h2 {
  font-size: 2rem;
  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: 8.6rem;
  color: #01A0E9;
  line-height: 0.6;
  letter-spacing: 0.001rem;
  text-align: center;
}

.btn {
  width: 240px;
  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.7rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Roboto";
  padding: 20px 0;
  border-radius: 50px;
  display: block;
  margin: 48px auto 0 auto;
  transition: all ease 0.3s;
  background-size: 200% 100%;
  position: relative;
}
.btn::before, .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%;
}
.btn::before {
  transform: rotate(45deg);
}
.btn::after {
  transform: rotate(-45deg);
}
.btn:hover {
  background-position: 100% 0;
}

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

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

.anchor {
  display: block;
  padding-top: 210px;
  margin-top: -180px !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: 170px;
}
@media screen and (max-width: 1360px) {
  #global-header .logo {
    width: 140px;
  }
}
#global-header .logo a {
  transition: all ease 0.5s;
}
#global-header .logo a:hover {
  opacity: 0.5;
}
#global-header .logo a img {
  width: 100%;
}
#global-header #gnav ul {
  display: table;
}
#global-header #gnav ul li {
  display: table-cell;
  margin-right: 2em;
}
#global-header #gnav ul li .main-item {
  display: block;
  font-size: 1.7rem;
  font-weight: 600;
  padding: 26px 1em 26px;
  transition: all ease 0.5s;
  color: #19192b;
  cursor: pointer;
}
@media screen and (max-width: 1360px) {
  #global-header #gnav ul li .main-item {
    padding: 27px 12px 27px;
    font-size: 1.4rem;
  }
}
#global-header #gnav ul li .menu {
  transition: all ease 0.5s;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  width: 100%;
  left: 0;
  text-align: center;
  position: absolute;
  background-color: #fff;
  margin-top: 0px;
  z-index: 999;
}
#global-header #gnav ul li .menu .menu-wrap {
  max-width: 1600px;
  width: 90%;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
}
#global-header #gnav ul li .menu .menu-wrap h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
#global-header #gnav ul li .menu .menu-wrap h2 span {
  font-size: 8rem;
  letter-spacing: 0.001rem;
  font-family: "Roboto";
  font-weight: 600;
  color: #01A0E9;
  line-height: 1.2;
}
#global-header #gnav ul li .menu .menu_inner {
  display: grid;
  grid-template-columns: 25vw 25vw;
  gap: 0 24px;
}
#global-header #gnav ul li .menu .menu_inner li {
  display: inline-block;
  margin: 0 0.5em;
  border-bottom: 1px solid #CECECE;
  height: -moz-fit-content;
  height: fit-content;
}
#global-header #gnav ul li .menu .menu_inner li a {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 16px 0;
  color: #191921;
  text-align: left;
  display: block;
  transition: all ease 0.5s;
  position: relative;
}
#global-header #gnav ul li .menu .menu_inner li a::before, #global-header #gnav ul li .menu .menu_inner li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 0px) 50%;
}
#global-header #gnav ul li .menu .menu_inner li a::before {
  transform: rotate(45deg);
}
#global-header #gnav ul li .menu .menu_inner li a::after {
  transform: rotate(-45deg);
}
#global-header #gnav ul li .menu .menu_inner li a span {
  font-size: 1.6rem;
  color: #CECECE;
  line-height: 1.4;
  text-align: left;
}
#global-header #gnav ul li .menu .menu_inner li a strong {
  position: relative;
  font-weight: 600;
  line-height: 1.4;
}
#global-header #gnav ul li .menu .menu_inner li a strong::after {
  content: "";
  background: url(../images/tab.svg) no-repeat;
  background-size: contain;
  position: absolute;
  width: 13px;
  height: 13px;
  top: 0;
  bottom: 0;
  right: -22px;
  margin: auto;
}
#global-header #gnav ul li .menu .menu_inner li a:hover {
  opacity: 0.6;
}
#global-header #gnav ul li:hover {
  color: #191921;
}
#global-header #gnav ul li:hover .main-item {
  opacity: 0.7;
}
#global-header #gnav ul li:hover .menu {
  max-height: 9999px;
  opacity: 1;
}

.key-wrap {
  position: relative;
  z-index: 1;
}
.key-wrap #key-visual {
  height: calc(100vh - 78px);
  height: calc(var(--vh, 1vh) * 92);
  width: 95vw;
  margin: 78px 0 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1360px) {
  .key-wrap #key-visual {
    height: calc(100vh - 78px);
    height: calc(var(--vh, 1vh) * 92);
  }
}
.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: 0;
  opacity: 0.5;
}
@media screen and (max-width: 1360px) {
  .key-wrap #key-visual::after {
    left: -30%;
  }
}
.key-wrap #key-visual video {
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.key-wrap #key-visual .key-txt {
  position: absolute;
  bottom: 3vw;
  left: 4vw;
  z-index: 1;
  height: -moz-fit-content;
  height: fit-content;
}
.key-wrap #key-visual .key-txt .en-txt {
  font-size: 14rem;
  letter-spacing: 0.001rem;
  font-family: "Roboto";
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 1360px) {
  .key-wrap #key-visual .key-txt .en-txt {
    font-size: 9rem;
  }
}
.key-wrap #key-visual .key-txt h1 {
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 1360px) {
  .key-wrap #key-visual .key-txt h1 {
    font-size: 3rem;
  }
}
.key-wrap #key-visual .key-txt h1 br {
  display: none;
}
.key-wrap #key-visual .sp {
  display: none;
}

/* アニメーション*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  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: 999;
  display: block;
  transition: all ease 0.5s;
}
.cta-btn .cta-list li a {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 72px 0 20px 0;
  writing-mode: vertical-rl;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 500;
  width: 66px;
}
.cta-btn .cta-list li:nth-child(1) a {
  background: #F4B12C;
  transition: all ease 0.5s;
}
.cta-btn .cta-list li:nth-child(1) a:hover {
  background: #D99C21;
}
.cta-btn .cta-list li:nth-child(1) a::before {
  content: "";
  background: url(../images/cta-icon01.svg) no-repeat;
  background-size: contain;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 20px;
}
.cta-btn .cta-list li:nth-child(2) a {
  background: #01A0E9;
  transition: all ease 0.5s;
}
.cta-btn .cta-list li:nth-child(2) a:hover {
  background: #0191D4;
}
.cta-btn .cta-list li:nth-child(2) a::before {
  content: "";
  background: url(../images/cta-icon02.svg) no-repeat;
  background-size: contain;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 20px;
}
.cta-btn .pagetop {
  transition: all ease 0.5s;
}
.cta-btn .pagetop:hover {
  opacity: 0.8;
}
.cta-btn .pagetop img {
  width: 66px;
  height: 66px;
  -o-object-fit: contain;
     object-fit: contain;
}

#subkey-visual {
  width: 100%;
  position: relative;
  width: 96vw;
  margin: 78px 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: 330px;
}
#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: 3.6rem;
  font-weight: 500;
  color: #fff;
  font-family: "Roboto";
  position: absolute;
  left: 5vw;
  top: 0;
  bottom: 0;
  margin: auto;
  line-height: 0.8;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
}
#subkey-visual h1 span {
  font-size: 11.6rem;
  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: 8px 2vw 0 0;
}
.pankuzu li {
  position: relative;
  padding-right: 44px;
}
.pankuzu li::after {
  content: ">";
  color: #4D4D4D;
  font-size: 1.8rem;
  font-weight: 500;
  position: absolute;
  top: 0;
  bottom: 0;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  right: 20px;
}
.pankuzu li:last-child::after {
  display: none;
}
.pankuzu li a {
  font-size: 1.6rem;
  color: #4D4D4D;
  font-weight: 500;
}

#top-container #campaign {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
#top-container #campaign .campaign-list {
  margin-top: 24px;
  display: grid;
  gap: 32px;
}
#top-container #campaign .campaign-list a {
  display: block;
}
#top-container #news {
  background: #F2F2F2;
  padding: 80px 0;
  margin-top: 120px;
  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: 30vw;
  height: 100%;
  filter: grayscale(100%);
}
#top-container #news .news-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
#top-container #news .news-inner .title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#top-container #news .news-inner .title .news-btn {
  font-size: 1.8rem;
  text-decoration: underline;
  position: relative;
  color: #4A4A4A;
  font-weight: 600;
  font-family: "Roboto";
  display: block;
  width: 130px;
  transition: all ease 0.5s;
}
#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);
  transition: all ease 0.3s;
  right: 0;
  width: 8px;
  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 .title .news-btn:hover::before, #top-container #news .news-inner .title .news-btn:hover::after {
  right: -10px;
}
#top-container #news .news-inner .news-list {
  background: #fff;
  padding: 24px 32px;
  width: 70%;
}
#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: flex;
  transition: all ease 0.5s;
}
#top-container #news .news-inner .news-list .news-item a:hover {
  opacity: 0.8;
}
#top-container #news .news-inner .news-list .news-item a time {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto";
  width: 170px;
  color: #4D4D4D;
}
#top-container #news .news-inner .news-list .news-item a h3 {
  width: calc(100% - 170px);
  font-size: 1.8rem;
  font-weight: 600;
  color: #4D4D4D;
}
#top-container #reasons {
  max-width: 1500px;
  width: 90%;
  margin: 120px auto 0 auto;
}
#top-container #reasons .reasons-list {
  display: grid;
  gap: 60px;
  margin-top: 24px;
}
#top-container #reasons .reasons-list .reasons-box {
  position: relative;
}
#top-container #reasons .reasons-list .reasons-box figure {
  width: 54%;
  position: absolute;
  z-index: 0;
  top: 0;
  height: 100%;
}
#top-container #reasons .reasons-list .reasons-box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
#top-container #reasons .reasons-list .reasons-box:nth-child(odd) figure {
  left: 0;
}
#top-container #reasons .reasons-list .reasons-box:nth-child(odd) .reasons-txt {
  margin: 40px 0 40px auto;
}
#top-container #reasons .reasons-list .reasons-box:nth-child(odd) .reasons-txt .count {
  right: 0;
}
#top-container #reasons .reasons-list .reasons-box:nth-child(even) figure {
  right: 0;
}
#top-container #reasons .reasons-list .reasons-box:nth-child(even) .reasons-txt {
  margin: 40px auto 40px 0;
}
#top-container #reasons .reasons-list .reasons-box:nth-child(even) .reasons-txt .count {
  left: 0;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt {
  width: 50%;
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  position: relative;
  z-index: 0;
  padding: 60px;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt .count {
  font-size: 2.6rem;
  font-weight: 700;
  color: #01A0E9;
  font-family: "Roboto";
  position: absolute;
  top: -84px;
  letter-spacing: 0.001rem;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt .count span {
  font-size: 5.6rem;
  font-weight: 700;
  color: #01A0E9;
  font-family: "Roboto";
  letter-spacing: 0.001rem;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt h3 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 0;
}
#top-container #reasons .reasons-list .reasons-box .reasons-txt p {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 24px 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 {
  margin-top: 120px;
}
#top-container #menu .parallax {
  background-image: url(../images/menu-bg.webp);
  background-size: cover;
  background-attachment: fixed;
  box-sizing: border-box;
  width: 100%;
}
#top-container #menu .parallax .menu-inner {
  max-width: 1500px;
  width: 90%;
  padding: 100px 0;
  margin: 0 auto;
}
#top-container #menu .parallax .menu-inner .page-title-left h2 {
  color: #fff;
}
#top-container #menu .parallax .menu-inner .menu-list {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box {
  width: 32%;
  background: #fff;
  display: flex;
  flex-direction: column;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box:nth-child(1) {
  margin: 0 1%;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box:nth-child(2) {
  margin: -3% 1% 3% 1%;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box:nth-child(3) {
  margin: -6% 1% 6% 1%;
}
#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 h3 {
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box .menu-img h3 span {
  font-size: 4rem;
  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: 200px;
  height: 200px;
  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.8rem;
  line-height: 1.5;
  padding: 16px;
}
#top-container #menu .parallax .menu-inner .menu-list .menu-box .btn {
  margin: auto auto 24px auto;
}

#campaign-container .intro {
  font-size: 1.8rem;
  text-align: center;
  margin: 80px auto 32px auto;
}
#campaign-container .campaign-contents {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto 160px auto;
}
#campaign-container .campaign-contents .campaign-list {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
}
#campaign-container .campaign-contents .campaign-list .campaign-item a {
  display: block;
  transition: all ease 0.5s;
}
#campaign-container .campaign-contents .campaign-list .campaign-item a:hover {
  opacity: 0.7;
}
#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: 12px;
}
#campaign-container .campaign-contents .campaign-list .campaign-item a .cam-title h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
}
#campaign-container .campaign-contents .campaign-list .campaign-item a .cam-img {
  background: #F2F2F2;
  padding: 16px;
}
#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: 160px;
}
#campaign-container .campaign-detail .page-title {
  background: linear-gradient(90deg, rgb(47, 110, 193) 0%, rgb(121, 186, 235) 100%);
  padding: 12px;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents {
  background: #F2F2F2;
  padding: 40px;
}
#campaign-container .campaign-detail .detail-contents time {
  display: block;
  font-size: 1.8rem;
  text-align: right;
  margin-bottom: 12px;
}
#campaign-container .campaign-detail .detail-contents p, #campaign-container .campaign-detail .detail-contents span {
  font-size: 1.8rem;
  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: 2em 0;
}
#campaign-container .campaign-detail .detail-contents h1 {
  font-size: 4rem;
  color: #01A0E9;
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents h2 {
  font-size: 3.2rem;
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents h3 {
  font-size: 2.8rem;
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents h4 {
  font-size: 2.4rem;
  font-weight: 600;
}
#campaign-container .campaign-detail .detail-contents h5 {
  font-size: 2.1rem;
  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;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}
#beginner-container #reasons .reasons-list .reasons-box {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
}
#beginner-container #reasons .reasons-list .reasons-box .bgappearTrigger {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
}
#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: 24vw;
}
#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: 24px 40px;
  margin: 20vw auto 0 auto;
  display: flex;
  flex-direction: column;
}
#beginner-container #reasons .reasons-list .reasons-box .reasons-txt .count {
  font-size: 2.4rem;
  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: 5rem;
  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.8rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 0;
  margin: 0 0 12px 0;
}
#beginner-container #reasons .reasons-list .reasons-box .reasons-txt p {
  font-size: 1.7rem;
  font-weight: 400;
  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: 100px;
}
#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: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 1em;
  background-color: #ACACAC;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all ease 0.5s;
  font-family: "Noto Sans JP";
}
#beginner-container #trial .tab label br {
  display: none;
}
#beginner-container #trial .tab label:hover {
  opacity: 0.8;
}
#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: 40px;
}
#beginner-container #trial .tab .tab-contents h2 {
  font-size: 3.6rem;
  font-weight: 600;
  color: #01A0E9;
  text-align: center;
}
#beginner-container #trial .tab .tab-contents .intro {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 24px 0 40px 0;
}
#beginner-container #trial .tab .tab-contents h3 {
  font-size: 3.2rem;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid #01A0E9;
}
#beginner-container #trial .tab .tab-contents .flow-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
#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: 2.4rem;
  color: #fff;
  font-family: "Roboto";
  padding: 2px 12px;
  position: absolute;
  top: 0;
  left: 0;
}
#beginner-container #trial .tab .tab-contents .flow-list .flow-box .flow-txt {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-top: 8px;
}
#beginner-container #trial .tab .tab-contents .belongings {
  background: #F5F5F5;
  margin-top: 40px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
}
#beginner-container #trial .tab .tab-contents .belongings figure {
  width: 30%;
}
#beginner-container #trial .tab .tab-contents .belongings figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt {
  width: 65%;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt h4 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt h4 span {
  font-size: 1.8rem;
  color: #9D9D9D;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt .belongings-list {
  display: grid;
  gap: 4px;
  margin-top: 16px;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt .belongings-list li {
  padding-left: 1.5em;
  position: relative;
  font-size: 1.8rem;
}
#beginner-container #trial .tab .tab-contents .belongings .belongings-txt .belongings-list li::before {
  content: "●";
  font-size: 1.8rem;
  color: #01A0E9;
  position: absolute;
  top: 0;
  left: 0;
}
#beginner-container #trial .tab .tab-contents .bnr {
  margin: 24px 0;
  padding: 40px;
  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: 3.2rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 0.8;
  position: relative;
  z-index: 0;
}
#beginner-container #trial .tab .tab-contents .bnr h4 span {
  font-size: 1.7rem;
  line-height: 1.2;
  color: #fff;
}
#beginner-container #trial .tab .tab-contents .bnr .bnr-txt {
  max-width: 450px;
  margin: 20px auto 0 auto;
  position: relative;
  z-index: 0;
}
#beginner-container #trial .tab .tab-contents .tyuui h4 {
  font-size: 2.4rem;
  font-weight: 600;
}
#beginner-container #trial .tab .tab-contents .tyuui p, #beginner-container #trial .tab .tab-contents .tyuui li {
  font-size: 1.7rem;
  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 span {
  padding-right: 6px;
}
#admission-container #flow .flow-list {
  margin-top: 24px;
  display: grid;
  gap: 32px;
}
#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: 2.8rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  padding: 12px 12px;
  padding-left: 78px;
}
#admission-container #flow .flow-list .flow-item h3::before {
  content: "";
  background: #6E9AD4;
  font-size: 4.5rem;
  letter-spacing: 0.001rem;
  line-height: 1;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-family: "Roboto";
  text-align: center;
  width: 66px;
  height: 66px;
  position: absolute;
  display: grid;
  place-items: center;
  top: 0;
  left: 0;
}
#admission-container #flow .flow-list .flow-item .flow-inner {
  background: #FBFBFB;
  padding: 24px;
}
#admission-container #flow .flow-list .flow-item .flow-inner p, #admission-container #flow .flow-list .flow-item .flow-inner li {
  font-size: 1.8rem;
  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: 24px;
  margin-top: 32px;
}
#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.8rem;
  color: #4D4D4D;
  position: absolute;
  top: 0;
  left: 0;
}
#admission-container #flow .flow-list .flow-item .flow-inner .brig {
  background: #fff;
  padding: 24px;
  margin-top: 16px;
}
#admission-container #flow .flow-list .flow-item .flow-inner .brig h4 {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
#admission-container #flow .flow-list .flow-item .flow-inner .brig .bring-list {
  margin-top: 24px;
}
#admission-container #flow .flow-list .flow-item .flow-inner .brig .bring-list li {
  padding-left: 1.5em;
  font-weight: 500;
  position: relative;
  font-size: 1.8rem;
}
#admission-container #flow .flow-list .flow-item .flow-inner .brig .bring-list li::before {
  content: "●";
  font-size: 1.8rem;
  font-weight: 500;
  color: #01A0E9;
  position: absolute;
  top: 0;
  left: 0;
}
#admission-container #price {
  margin-bottom: 160px;
}
#admission-container #price .intro {
  font-size: 1.8rem;
  margin: 16px 0;
}
#admission-container #price .table-wrap .main-table {
  width: 100%;
}
#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.7rem;
  font-weight: 500;
  padding: 12px;
  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.4rem;
  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: 3.6rem;
  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.7rem;
  padding: 12px;
  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.4rem;
  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.7rem;
  margin-top: 8px;
}

#faq-container #faq {
  margin-bottom: 160px;
}
#faq-container #faq .tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 24px;
}
#faq-container #faq .tab label {
  order: -1;
  width: 16%;
  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";
}
#faq-container #faq .tab label br {
  display: none;
}
#faq-container #faq .tab label:hover {
  opacity: 0.8;
}
#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: 24px;
  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.4rem;
  font-weight: 600;
  padding: 8px 12px;
}
#faq-container #faq .tab .tab-contents .faq-list {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}
#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: 2rem;
  color: #4A4A4A;
  font-weight: 600;
  padding: 0 16px 8px 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: 7px;
  height: 7px;
  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.7rem;
  position: relative;
  margin-top: 8px;
  transform: translateY(-10px);
  padding: 8px 0 0 0x;
  opacity: 0;
  margin: 8px 0 0 0;
  transition: transform 0.5s, opacity 0.5s;
}
#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.8rem;
  line-height: 1.4;
  color: #4D4D4D;
}
#studio-container .schedule-list {
  display: flex;
  justify-content: center;
}
#studio-container .schedule-list .schedule-btn {
  width: 40%;
}
#studio-container .schedule-list .schedule-btn:nth-child(1) {
  margin-right: 2%;
}
#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.7rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Roboto";
  padding: 24px 0;
  border-radius: 50px;
  display: block;
  margin: 0 auto;
  transition: all ease 0.3s;
  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: 16px;
  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 .schedule-list .schedule-btn a:hover {
  background-position: 100% 0;
}
#studio-container #studio {
  margin-bottom: 160px;
}
#studio-container #studio .tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}
#studio-container #studio .tab label {
  order: -1;
  width: 19%;
  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";
}
#studio-container #studio .tab label:hover {
  opacity: 0.8;
}
#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: 24px;
}
#studio-container #studio .tab .tab-contents .lesson-title {
  position: relative;
  margin-bottom: 16px;
}
#studio-container #studio .tab .tab-contents .lesson-title h3 {
  position: absolute;
  left: 18px;
  bottom: 18px;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
}
#studio-container #studio .tab .tab-contents .lesson-title h3 span {
  font-size: 4rem;
  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: 200px;
  height: 200px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  left: -18px;
  bottom: -18px;
  z-index: -1;
  filter: none;
}
#studio-container #studio .tab .tab-contents .lesson-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
}
#studio-container #studio .tab .tab-contents .lesson-list .lesson-box h4 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #4A4A4A;
  padding-bottom: 4px;
  border-bottom: 1px solid #01A0E9;
}
#studio-container #studio .tab .tab-contents .lesson-list .lesson-box .beginner {
  position: relative;
  padding-left: 24px;
}
#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: 15px;
  height: 25px;
  position: absolute;
  left: 0;
  bottom: 1px;
  top: 0;
  margin: auto;
}
#studio-container #studio .tab .tab-contents .lesson-list .lesson-box h5 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #01A0E9;
  margin-top: 12px;
}
#studio-container #studio .tab .tab-contents .lesson-list .lesson-box .level {
  font-size: 2.1rem;
  font-weight: 600;
  color: #01A0E9;
  margin-top: 8px;
}
#studio-container #studio .tab .tab-contents .lesson-list .box-main {
  grid-column: 1/3;
  grid-row: 1/2;
}

#personal-container .page-title-left br {
  display: none;
}
#personal-container .page-title-left span {
  padding-right: 6px;
}
#personal-container .intro {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #4D4D4D;
}
#personal-container #about {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#personal-container #about figure {
  width: 30%;
}
#personal-container #about figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#personal-container #about .about-txt {
  width: 67%;
}
#personal-container #about .about-txt h2 {
  font-size: 3.2rem;
  color: #01A0E9;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1164px) {
  #personal-container #about .about-txt h2 br {
    display: none;
  }
}
#personal-container #about .about-txt .check-list {
  background: #F1F1F1;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin: 16px 0;
}
#personal-container #about .about-txt .check-list li {
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  padding-left: 26px;
}
#personal-container #about .about-txt .check-list li::before {
  content: "";
  background: url(../images/personal-training/check-icon.svg) no-repeat;
  background-size: contain;
  width: 21px;
  height: 19px;
  position: absolute;
  top: 6px;
  left: 0;
}
#personal-container #effect {
  max-width: 1500px;
  width: 90%;
  margin: 100px auto;
  background: #F1F1F1;
  padding: 40px 80px;
}
#personal-container #effect h2 {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  color: #01A0E9;
  line-height: 0.8;
}
#personal-container #effect h2 span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #01A0E9;
  line-height: 1.2;
}
#personal-container #effect .effect-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
#personal-container #effect .effect-list .effect-item {
  position: relative;
}
#personal-container #effect .effect-list .effect-item p {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: rgba(1, 160, 233, 0.92);
  width: 85%;
  height: 60px;
  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.4rem;
  color: #fff;
  line-height: 1.2;
}
#personal-container #about2 {
  margin-top: 60px;
}
#personal-container #about2 .about-inner {
  margin-bottom: 24px;
}
#personal-container #about2 .about-inner h2 {
  font-size: 3.2rem;
  color: #01A0E9;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}
#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;
}
#personal-container #price {
  margin-bottom: 160px;
}
#personal-container #price .main-table {
  width: 100%;
  margin-top: 24px;
}
#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.7rem;
  font-weight: 500;
  padding: 12px;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #E5E5E5;
  line-height: 1.2;
}
#personal-container #price .main-table tr th span, #personal-container #price .main-table tr td span {
  font-size: 1.4rem;
  font-weight: 400;
  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.7rem;
  margin-top: 8px;
}

#about-container #deta {
  background: #F1F1F1;
  position: relative;
  padding: 60px;
  position: relative;
  z-index: -2;
  margin-top: 100px;
}
#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: 3.6rem;
  font-weight: 600;
  text-align: center;
  color: #01A0E9;
}
#about-container #deta .intro {
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
}
#about-container #deta .intro br {
  display: none;
}
#about-container #deta .deta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  position: relative;
  margin-top: 24px;
  z-index: 0;
}
#about-container #deta .deta-wrap .deta-item {
  background: #fff;
  padding-top: 32px;
}
#about-container #deta .deta-wrap .deta-item #svgArea, #about-container #deta .deta-wrap .deta-item #svgArea2 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
#about-container #deta .deta-wrap .deta-item .arcInfomation {
  fill: #333;
  font-size: 16px;
  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: 20px sans-serif;
  fill: #333;
  text-anchor: middle;
  font-weight: bold;
}
#about-container #facility {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
#about-container #facility h3 {
  font-size: 3.2rem;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid #01A0E9;
  margin: 24px 0;
}
#about-container #facility .facility-list {
  display: grid;
  gap: 60px;
  margin: 24px 0 80px 0;
}
#about-container #facility .facility-list .facility-box {
  position: relative;
}
#about-container #facility .facility-list .facility-box figure {
  width: 54%;
  position: absolute;
  z-index: 0;
  left: -1;
  height: 100%;
}
#about-container #facility .facility-list .facility-box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
#about-container #facility .facility-list .facility-box:nth-child(odd) figure {
  left: 0;
}
#about-container #facility .facility-list .facility-box:nth-child(odd) .facility-txt {
  margin: 40px 0 40px auto;
}
#about-container #facility .facility-list .facility-box:nth-child(odd) .facility-txt .count {
  right: 0;
}
#about-container #facility .facility-list .facility-box:nth-child(even) figure {
  right: 0;
}
#about-container #facility .facility-list .facility-box:nth-child(even) .facility-txt {
  margin: 40px auto 40px 0;
}
#about-container #facility .facility-list .facility-box:nth-child(even) .facility-txt .count {
  left: 0;
}
#about-container #facility .facility-list .facility-box .facility-txt {
  width: 50%;
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  position: relative;
  z-index: 0;
  padding: 60px;
}
#about-container #facility .facility-list .facility-box .facility-txt h4 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 0;
}
#about-container #facility .facility-list .facility-box .facility-txt p {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 24px 0 0 0;
  color: #fff;
  position: relative;
  z-index: 0;
}
#about-container #facility .facility-list .facility-box .facility-txt .btn {
  margin: 24px auto 0 0;
  background: none;
  border: 2px solid #fff;
}
#about-container #facility .facility-list .facility-box .facility-txt .btn::before, #about-container #facility .facility-list .facility-box .facility-txt .btn::after {
  transition: all ease 0.5s;
}
#about-container #facility .facility-list .facility-box .facility-txt .btn:hover {
  opacity: 0.8;
}
#about-container #facility .facility-list .facility-box .facility-txt .btn:hover::before, #about-container #facility .facility-list .facility-box .facility-txt .btn:hover::after {
  right: 6px;
}
#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: 100px 0 0 0;
}
#about-container #voice .voice-wrap {
  position: relative;
  background: #F2F2F2;
  padding: 100px 0 0 0;
}
#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: 35vw;
  height: 100%;
  filter: grayscale(100%);
}
#about-container #voice .voice-inner {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 80px;
}
#about-container #voice .voice-inner .voice-list {
  width: 100%;
  margin-top: 24px;
  display: flex;
}
#about-container #voice .voice-inner .voice-list .voice-box {
  width: 100%;
  background: #fff;
  height: auto;
  padding: 24px;
  background: #fff;
}
#about-container #voice .voice-inner .voice-list .voice-box h3 {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 600;
  color: #01A0E9;
}
#about-container #voice .voice-inner .voice-list .voice-box .name {
  font-size: 1.6rem;
  margin: 16px 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.7rem;
  line-height: 1.5;
  padding-top: 8px;
  border-top: 1px solid #CFCFCF;
}
#about-container #voice .voice-inner .voice-list .voice-box .voice-btn {
  font-size: 1.7rem;
  color: #01A0E9;
  text-decoration: underline;
  display: block;
  margin-top: 12px;
}
#about-container #voice .voice-inner .slick-track {
  display: flex;
}
#about-container #voice .voice-inner .slick-slide {
  margin: 0 15px;
  height: auto !important;
}
#about-container #voice .voice-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#about-container #info {
  margin-bottom: 160px;
}
#about-container #info .info-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
#about-container #info .info-wrap iframe {
  width: 40%;
  height: auto;
}
#about-container #info .info-wrap .info-list {
  width: 55%;
}
#about-container #info .info-wrap .info-list .info-item {
  display: flex;
  border-top: 1px solid #E5E5E5;
}
#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.7rem;
  line-height: 1.5;
  padding: 12px 16px;
  color: #4D4D4D;
}
#about-container #info .info-wrap .info-list .info-item dt {
  width: 160px;
}
#about-container #info .info-wrap .info-list .info-item dd {
  width: calc(100% - 160px);
}

#news-container #news {
  margin-bottom: 160px;
}
#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: 16px;
  display: flex;
  transition: all ease 0.5s;
}
#news-container #news .news-list .news-item a:hover {
  opacity: 0.8;
}
#news-container #news .news-list .news-item a time {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto";
  width: 170px;
  color: #4D4D4D;
}
#news-container #news .news-list .news-item a h3 {
  width: calc(100% - 170px);
  font-size: 1.8rem;
  font-weight: 600;
  color: #4D4D4D;
}
#news-container #news-detail {
  margin-bottom: 160px;
}
#news-container #news-detail .page-title {
  background: linear-gradient(90deg, rgb(47, 110, 193) 0%, rgb(121, 186, 235) 100%);
  padding: 12px;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
}
#news-container #news-detail .detail-contents {
  background: #F2F2F2;
  padding: 40px;
}
#news-container #news-detail .detail-contents time {
  display: block;
  font-size: 1.8rem;
  text-align: right;
  margin-bottom: 12px;
}
#news-container #news-detail .detail-contents p, #news-container #news-detail .detail-contents span {
  font-size: 1.8rem;
  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: 2em 0;
}
#news-container #news-detail .detail-contents h1 {
  font-size: 4rem;
  color: #01A0E9;
  font-weight: 600;
}
#news-container #news-detail .detail-contents h2 {
  font-size: 3.2rem;
  font-weight: 600;
}
#news-container #news-detail .detail-contents h3 {
  font-size: 2.8rem;
  font-weight: 600;
}
#news-container #news-detail .detail-contents h4 {
  font-size: 2.4rem;
  font-weight: 600;
}
#news-container #news-detail .detail-contents h5 {
  font-size: 2.1rem;
  font-weight: 600;
}

.pagenation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F5F5F5;
  padding: 24px 40px;
  margin: 60px 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: 35px;
  font-size: 1.7rem;
  width: 35px;
  transition: all ease 0.3s;
  background: #01A0E9;
  border-radius: 50px;
}
.pagenation ul .page-active {
  font-size: 1.7rem;
  font-family: "Roboto";
}
.pagenation ul .next a, .pagenation ul .prev a {
  color: #4D4D4D;
  font-size: 1.7rem;
  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: 12px;
}
#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:hover img {
  transform: scale(1.1);
}
#machine-container .btn-list .btn-item a img {
  transition: all ease 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
#machine-container .btn-list .btn-item .title {
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
}
#machine-container .btn-list .btn-item .title span {
  font-size: 3.2rem;
  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 span br {
  display: none;
}
#machine-container .btn-list .btn-item .title::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;
}
#machine-container #about {
  max-width: 1500px;
  width: 90%;
  margin: 80px auto 0 auto;
}
#machine-container #about .about-box {
  position: relative;
}
#machine-container #about .about-box figure {
  width: 54%;
  position: absolute;
  z-index: 0;
  height: 100%;
  left: 0;
}
#machine-container #about .about-box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
#machine-container #about .about-box .about-txt {
  width: 50%;
  background: linear-gradient(90deg, rgb(47, 110, 193), rgb(121, 186, 235));
  position: relative;
  z-index: 0;
  padding: 60px;
  margin: 40px 0 40px auto;
}
#machine-container #about .about-box .about-txt h4 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 0;
}
#machine-container #about .about-box .about-txt p {
  font-size: 1.7rem;
  font-weight: 500;
  margin: 24px 0 0 0;
  color: #fff;
  position: relative;
  z-index: 0;
}
#machine-container #about .about-box .about-txt .btn {
  margin: 24px auto 0 0;
  background: none;
  border: 2px solid #fff;
}
#machine-container #about .about-box .about-txt .btn::before, #machine-container #about .about-box .about-txt .btn::after {
  transition: all ease 0.5s;
}
#machine-container #about .about-box .about-txt .btn:hover {
  opacity: 0.8;
}
#machine-container #about .about-box .about-txt .btn:hover::before, #machine-container #about .about-box .about-txt .btn:hover::after {
  right: 6px;
}
#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 {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
#machine-container #reasons .reasons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 24px 0 0 0;
}
#machine-container #reasons .reasons .reasons-box {
  position: relative;
}
#machine-container #reasons .reasons .reasons-box h3 {
  position: absolute;
  left: 12px;
  bottom: 12px;
  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: 4.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.001rem;
}
#machine-container #reasons .reasons .reasons-box 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;
}
#machine-container #reasons .reasons .reasons-box h3::after {
  content: "";
  background: linear-gradient(60deg, rgb(47, 110, 193), rgb(121, 186, 235));
  width: 200px;
  height: 200px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  position: absolute;
  left: -12px;
  bottom: -12px;
  z-index: -1;
  filter: none;
}
#machine-container .common-box {
  margin-top: 120px;
}
#machine-container .common-box:last-child {
  margin-bottom: 160px;
}
#machine-container .common-box h3 {
  background: linear-gradient(90deg, rgb(47, 110, 193) 0%, rgb(121, 186, 235) 100%);
  padding: 12px;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
  margin-top: 24px;
}
#machine-container .common-box h4 {
  font-size: 3.2rem;
  color: #01A0E9;
  font-weight: 600;
  margin: 24px 0 12px 0;
}
#machine-container .common-box .intro {
  font-size: 1.8rem;
  color: #4D4D4D;
  line-height: 1.6;
}
#machine-container #machine .tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 32px;
  margin-top: 40px;
}
#machine-container #machine .tab label {
  order: -1;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 1em;
  background-color: #ACACAC;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all ease 0.5s;
  font-family: "Noto Sans JP";
}
#machine-container #machine .tab label br {
  display: none;
}
#machine-container #machine .tab label:hover {
  opacity: 0.8;
}
#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: 24px;
}
#machine-container #machine .tab .tab-contents .machine-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
#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: 2.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.6rem;
  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.7rem;
  padding: 8px 0;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box dl dt {
  width: 68px;
  text-align: center;
  background: #CBE2F4;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box dl dd {
  width: calc(100% - 68px);
  padding: 8px 12px;
  background: #E2F2FE;
}
#machine-container #machine .tab .tab-contents .machine-list .machine-box .machine-inner {
  padding: 20px;
  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.7rem;
  color: #757575;
  line-height: 1.4;
  margin: 12px 0 32px 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.4rem;
  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: -16px;
  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;
}
#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: 19px;
  height: 18px;
  position: absolute;
  top: 4px;
  left: 0;
}
#machine-container #machine .tab .tab-contents .machine-list .big-box {
  grid-column: 1/3;
}
#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: 32px;
  margin-top: 40px;
}
#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: 2.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.6rem;
  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: 20px;
  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;
}
#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: 720px;
  margin: 0 auto;
}
#trial-container .trial-top .bnr img {
  width: 100%;
}
#trial-container .trial-top .intro {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
  margin: 32px auto 24px auto;
}
#trial-container .trial-top .tel-btn {
  display: block;
  margin: 0 auto;
  width: 280px;
  border: 1px solid #01A0E9;
  padding: 6px 12px 6px 40px;
  font-size: 3.2rem;
  font-family: "Roboto";
  font-weight: 600;
  text-align: center;
  position: relative;
  color: #01A0E9;
  transition: all ease 0.5s;
  pointer-events: none;
}
#trial-container .trial-top .tel-btn:hover {
  background: rgba(1, 160, 233, 0.3);
}
#trial-container .trial-top .tel-btn::before {
  content: "";
  background: url(../images/trial/tel.svg) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
}
#trial-container .form {
  margin: 40px 0 160px 0;
  background: #F9F9F9;
  padding: 40px 60px;
}
#trial-container .form .tyuui-box {
  background: #fff;
  padding: 40px;
  margin-top: 32px;
}
#trial-container .form .tyuui-box h3 {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 24px;
}
#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.8rem;
  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 p .tel, #trial-container .form .tyuui-box li .tel {
  pointer-events: none;
}
#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: 1.5em;
}
#trial-container .form .tyuui-box .main-list .main-item .sub-list li {
  list-style: disc;
  padding-left: 1em;
}
#trial-container form dl div {
  padding: 12px 0;
}
#trial-container form dl div dt {
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  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.6rem;
  padding: 16px 16px;
  background: #fff;
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
  width: 350px;
  cursor: pointer;
}
#trial-container form dl div dd input, #trial-container form dl div dd textarea {
  font-size: 1.6rem;
  padding: 16px 16px;
  background: #fff;
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
}
#trial-container form dl div dd #datepicker {
  cursor: pointer;
}
#trial-container form dl div dd .wpcf7-not-valid-tip {
  font-size: 1.3rem;
}
#trial-container form dl div #calendar input {
  width: 350px;
}
#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 32px 8px 0;
  cursor: pointer;
}
#trial-container form dl div .checkbox label input[type=checkbox] {
  width: -moz-fit-content;
  width: fit-content;
}
#trial-container form .check-txt {
  text-align: center;
  margin-top: 36px;
}
#trial-container form .check-txt a {
  text-decoration: underline;
  color: #202020;
  transition: all ease 0.5s;
}
#trial-container form .check-txt a:hover {
  opacity: 0.7;
}
#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: 40px auto 0 auto;
}
#trial-container form .btn-group input[type=submit] {
  border: none;
  font-size: 1.8rem;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all ease 0.5s;
  padding: 12px 77px;
  background: #01A0E9;
  color: #ffffff;
}
#trial-container form .btn-group input[type=submit]:hover {
  background: #027CCF;
}
#trial-container form .wpcf7-response-output {
  font-size: 2.4rem;
  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.8rem;
  text-align: center;
  line-height: 1.5;
  margin: 32px auto 24px auto;
}
#contact-container .contact-top .tel-btn {
  display: block;
  margin: 0 auto;
  width: 280px;
  border: 1px solid #01A0E9;
  padding: 6px 12px 6px 40px;
  font-size: 3.2rem;
  font-family: "Roboto";
  font-weight: 600;
  text-align: center;
  position: relative;
  color: #01A0E9;
  transition: all ease 0.5s;
  pointer-events: none;
}
#contact-container .contact-top .tel-btn:hover {
  background: rgba(1, 160, 233, 0.3);
}
#contact-container .contact-top .tel-btn::before {
  content: "";
  background: url(../images/trial/tel.svg) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
}
#contact-container .form {
  margin: 40px 0 160px 0;
  background: #F9F9F9;
  padding: 40px 60px;
}
#contact-container .form .tyuui-box {
  background: #fff;
  padding: 40px;
  margin-top: 32px;
}
#contact-container .form .tyuui-box h3 {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 24px;
}
#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.8rem;
  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 .tyuui-box p .tel, #contact-container .form .tyuui-box li .tel {
  pointer-events: none;
}
#contact-container .form .tyuui-box .main-list {
  margin-top: 4px;
}
#contact-container .form .tyuui-box .main-list .main-item {
  text-indent: -1em;
  padding-left: 1em;
}
#contact-container .form .tyuui-box .main-list .main-item::before {
  content: "※";
  font-size: 1.6rem;
  color: #818181;
}
#contact-container .form .tyuui-box .main-list .main-item .sub-list {
  padding-left: 1.5em;
}
#contact-container .form .tyuui-box .main-list .main-item .sub-list li {
  list-style: disc;
  padding-left: 1em;
}
#contact-container form dl div {
  padding: 12px 0;
}
#contact-container form dl div dt {
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  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.6rem;
  padding: 16px 16px;
  background: #fff;
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
  width: 350px;
  cursor: pointer;
}
#contact-container form dl div dd input, #contact-container form dl div dd textarea {
  font-size: 1.6rem;
  padding: 16px 16px;
  background: #fff;
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
}
#contact-container form dl div .checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
#contact-container form dl div .checkbox label {
  font-size: 1.6rem;
  margin: 0 32px 8px 0;
  cursor: pointer;
}
#contact-container form dl div .checkbox label input[type=checkbox] {
  width: -moz-fit-content;
  width: fit-content;
}
#contact-container form .check-txt {
  text-align: center;
  margin-top: 36px;
}
#contact-container form .check-txt a {
  text-decoration: underline;
  color: #202020;
  transition: all ease 0.5s;
}
#contact-container form .check-txt a:hover {
  opacity: 0.7;
}
#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: 40px auto 0 auto;
}
#contact-container form .btn-group input[type=submit] {
  border: none;
  font-size: 1.8rem;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all ease 0.5s;
  padding: 12px 77px;
  background: #01A0E9;
  color: #ffffff;
}
#contact-container form .btn-group input[type=submit]:hover {
  background: #027CCF;
}
#contact-container form .wpcf7-not-valid-tip {
  font-size: 1.3rem;
}
#contact-container form .wpcf7-response-output {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  color: red;
}
#contact-container form .wpcf7-spinner {
  position: absolute;
}

#privacy-container {
  margin-bottom: 160px;
}
#privacy-container .intro {
  font-size: 1.8rem;
  line-height: 1.5;
}
#privacy-container .intro a {
  color: #01A0E9;
  text-decoration: underline;
}
#privacy-container .privacy-top {
  margin: 32px auto 24px auto;
}
#privacy-container .privacy-list {
  display: grid;
  gap: 24px;
}
#privacy-container .privacy-list .privacy-box h2 {
  font-size: 2.8rem;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid #01A0E9;
  margin-bottom: 8px;
}
#privacy-container .privacy-list .privacy-box .sub-list {
  background: #F5F5F5;
  padding: 16px 16px 16px 48px;
  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: 4rem;
  text-align: center;
  font-family: "Roboto";
  margin-bottom: 160px;
}

#contents-404 h2 {
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
}
#contents-404 p {
  font-size: 1.7rem;
  margin: 32px 0 160px;
  text-align: center;
}

#global-footer {
  background: #fff;
}
#global-footer .bnr-area {
  background: url(../images/bg-pattern.webp);
  background-repeat: repeat;
  padding: 100px 0;
}
#global-footer .bnr-area .footer-list {
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
#global-footer .bnr-area .footer-list .footer-item:nth-child(1) {
  width: 47%;
}
#global-footer .bnr-area .footer-list .footer-item:nth-child(2) {
  width: 49%;
}
#global-footer .bnr-area .footer-list .footer-item a {
  display: block;
  transition: all ease 0.5s;
}
#global-footer .bnr-area .footer-list .footer-item a:hover {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}
#global-footer .cta-area {
  display: flex;
}
#global-footer .cta-area .cta-item {
  width: 50%;
  height: 20vw;
  min-height: 340px;
  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(1) .cta-btn:hover {
  background: #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:nth-child(2) .cta-btn:hover {
  background: #F4B12C;
}
#global-footer .cta-area .cta-item h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
#global-footer .cta-area .cta-item h2 span {
  font-size: 8.6rem;
  font-family: "Roboto";
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
#global-footer .cta-area .cta-item p {
  font-size: 1.7rem;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  margin: 16px auto;
}
#global-footer .cta-area .cta-item p .sp {
  display: none;
}
@media screen and (max-width: 1500px) {
  #global-footer .cta-area .cta-item p .sp {
    display: block;
  }
}
#global-footer .cta-area .cta-item .cta-btn {
  font-size: 1.7rem;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  border: 2px solid #fff;
  padding: 12px 0;
  width: 260px;
  position: relative;
  display: block;
  margin: 0 auto;
  transition: all ease 0.5s;
}
#global-footer .cta-area .cta-item .cta-btn:hover::before, #global-footer .cta-area .cta-item .cta-btn:hover::after {
  right: 12px;
}
#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%;
  transition: all ease 0.5s;
}
#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: 100px 0 160px 0;
}
#global-footer .sns-area .sns-inner {
  display: flex;
  justify-content: space-between;
}
#global-footer .sns-area .sns-inner .sns-box {
  width: 48%;
  background: #fff;
  padding: 40px;
  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: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
#global-footer .sns-area .sns-inner .sns-box h2 span {
  color: #01A0E9;
  font-size: 4.2rem;
  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;
  width: 100%;
  height: 100%;
}
#global-footer .footer-info {
  padding: 120px 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: 158px;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: -79px;
  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: 480px;
}
#global-footer .footer-info .info-contents .info-item {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}
#global-footer .footer-info .info-contents .info-item dt, #global-footer .footer-info .info-contents .info-item dd {
  font-size: 1.6rem;
  color: #fff;
}
#global-footer .footer-info .info-contents .info-item dt a, #global-footer .footer-info .info-contents .info-item dd a {
  color: #fff;
  pointer-events: none;
}
#global-footer .footer-info .info-contents .info-item dt {
  width: 120px;
}
#global-footer .footer-info .info-contents .info-item dd {
  width: calc(100% - 120px);
}
#global-footer .footer-info #gnav {
  border-top: 1px solid #BBBBBB;
  margin-top: 40px;
  padding-top: 24px;
}
#global-footer .footer-info #gnav .menu-list {
  display: flex;
  align-items: center;
}
#global-footer .footer-info #gnav .menu-list .menu-item {
  margin-right: 32px;
}
#global-footer .footer-info #gnav .menu-list .menu-item a {
  padding: 4px 16px 4px 0;
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  transition: all ease 0.5s;
}
#global-footer .footer-info #gnav .menu-list .menu-item a:hover {
  opacity: 0.7;
}
#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: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0px) 50%;
  transition: all ease 0.5s;
}
#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: 80px;
}/*# sourceMappingURL=style.css.map */