@charset "utf-8";

:root {
  --primary-color: #006b9d;
  --light-skyblue: #dbf3ff;
  --black-dark: #000;
  --black-light: #333;
  --white: #fff;
  font-size: 14px;
  font-family: 'Noto Sans JP', 'Noto Sans CJK', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', --apple-system, Meiryo, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
  color: var(--black-light);
}

/* common */

.button {
  display: block;
  width: calc(100% - 80px);
  height: 3em;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 0 7px rgba(0, 0, 0, .55);
  font-size: 15px;
  font-weight: 600;
  line-height: 3;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--primary-color);
  color: var(--white);
  letter-spacing: .08em;
}

.button-primary-reverse {
  background: var(--white);
  color: var(--primary-color);
  letter-spacing: .15em;
}

.button-light {
  background: #dbf3ff;
  color: var(--black-light);
  letter-spacing: .08em;
}

.button-dark {
  background: var(--black-light);
  color: var(--white);
  letter-spacing: .08em;
}

.basic-section {
  padding: 70px 0;
}

#feature,
#flow,
#instagram {
  background-color: #d4f0ff;
}

#safety,
#access,
#contact,
#youtube {
  background-color: var(--white);
}

.section-heading {
  margin: 0 0 65px;
  text-align: center;
  line-height: 1;
  letter-spacing: .1em;
}

.h2-maintitle {
  display: block;
  font-size: 30px;
  margin: 0 0 8px;
}

.h2-subtitle {
  display: block;
  font-size: 14px;
}

#about .section-heading,
#message .section-heading,
#plan .section-heading {
  color: var(--white);
}

#voice .section-heading,
#flow .section-heading,
#access .section-heading,
#contact .section-heading,
#instagram .section-heading,
#youtube .section-heading {
  color: var(--primary-color);
}

#feature .section-heading {
  color: #000;
}

/* header */

#header {
  display: flex;
  height: 50px;
  padding: 9px 15px;
  background: var(--black-dark);
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-logo {
  flex: 0 1 120px;
  margin: 0 5px 0 0;
  padding: 0;
}

.header-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-logo-image {
  width: 120px;
  height: auto;
}

#header > .button-primary {
  display: flex;
  align-items: center;
  justify-self: center;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  height: auto;
  line-height: normal;
}

#mobile-nav-switch {
  display: none;
}

#mobile-nav-trigger {
  flex: 0 0 27px;
  align-self: center;
  display: block;
  width: 27px;
  height: 26px;
  margin: 0 0 0 5px;
  position: relative;
}

#mobile-nav-trigger::before,
#mobile-nav-trigger::after {
  content: '';
}

#mobile-nav-trigger::before,
#mobile-nav-trigger::after,
.mobile-nav-trigger-center {
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  background: var(--white);
  border-radius: 3px;
  opacity: 1;
  transition: .3s ease;
}

#mobile-nav-trigger::before {
  top: 0;
  transform-origin: left center;
}

#mobile-nav-trigger::after {
  bottom: 0;
  transform-origin: left center;
}

.mobile-nav-trigger-center {
  top: calc(50% - 1.5px);
}

#mobile-nav-switch:checked ~ #mobile-nav-trigger::before {
  width: 32px;
  transform: rotate(45deg) ;
}

#mobile-nav-switch:checked ~ #mobile-nav-trigger::after {
  width: 32px;
  transform: rotate(-45deg) ;
}

#mobile-nav-switch:checked ~ #mobile-nav-trigger .mobile-nav-trigger-center {
  opacity: 0;
}

#mobile-nav-wrapper {
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background: var(--black-dark);
  box-sizing: border-box;
  transition: opacity .3s;
}

#mobile-nav-switch:checked ~ #mobile-nav-wrapper {
  opacity: 1;
  visibility: visible;
  padding: 35px 0 300px;
}

.mobile-nav-logo-image {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 34px;
}

#mobile-nav .nav-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

#mobile-nav .nav-list-item {
  display: block;
  width: 100%;
  margin: 0;
}

#mobile-nav .nav-list-item-link {
  display: block;
  width: 100%;
  margin: 0;
  padding: 8.4px 10px 8.4px 56px;
  box-sizing: border-box;
  color: var(--white);
  font-size: 22.5px;
  font-weight: 600;
  text-decoration: none;
}

#mobile-nav .nav-list-item-link:hover {
  background: var(--black-light);
}

.mobile-nav-button {
  display: block;
  margin: 0 30px;
  padding: 12px 10px;
  border-radius: 30px;
  box-sizing: border-box;
  background: var(--white);
  color: var(--black-dark);
  font-size: 21.25px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

/* main */

#hero {
  position: relative;
}

.hero-video-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.hero-video-wrapper::before,
.hero-video-wrapper::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 10;
}
.hero-video-wrapper::before {
  background: radial-gradient(#fff, #000);
  mix-blend-mode: multiply;
  opacity: .4;
}
.hero-video-wrapper::after {
  background: url(images/bg-dot.png);
  mix-blend-mode: soft-light;
  opacity: .2;
}

.hero-video {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hero-catchcopy {
  display: block;
  margin: 0;
  position: absolute;
  top: 260px;
  left: 0;
  right: 0;
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 5px rgba(35, 24, 21, .8);
  line-height: 1.72;
  letter-spacing: .08em;
}

.scroll-prompt {
  width: fit-content;
  margin: 0 auto;
  position: absolute;
  top: calc(100% - 30px);
  left: 0;
  right: 0;
  z-index: 30;
}

.scroll-prompt::before {
  content: '';
  display: block;
  width: 2px;
  height: 47px;
  margin: 0 auto 3px;
  background: #79d0ff;
}

.scroll-prompt::after {
  content: 'scroll';
  color: #79d0ff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
}

/* about */

#about {
  padding: 70px 20px 10px 40px;
  background: 0 0 / 100% auto no-repeat url(images/about-bg@2x.jpg);
  position: relative;
}

#about::before {
  content: '';
  display: block;
  width: 115px;
  height: 136px;
  position: absolute;
  top: -20px;
  right: 0;
  background: 0 0 / 140px auto no-repeat url(images/spin-dark.svg);
}

#about .section-heading {
  margin-bottom: 30px;
  text-align: left;
}

.marker-phrase {
  color: var(--primary-color);
  font-size: 20px;
}

.marker-phrase .marker {
  display: inline-block;
  background: var(--white);
  line-height: 1;
  padding: 5px 10px;
  margin: 4px 0 3px;
}

.about-text {
  margin: 25px 7px 25px 0;
  color: var(--white);
  font-size: 15px;
  line-height: 2;
}

.separator-photo-image {
  width: 100%;
  height: auto;
  margin: 0;
  vertical-align: middle;
}

/* message */

#message {
  background: 0 0 / 100% auto no-repeat url(images/message-top-bg@2x.jpg), 0 100% / 100% auto no-repeat url(images/message-bottom-bg@2x.jpg), linear-gradient(90deg, #101010, #2d2d2d);
  color: var(--white);
}

.message-wrapper {
  margin: 70px 33px 0;
  padding: 60px 7px;
  box-sizing: border-box;
  background: 50% 0 / contain no-repeat url(images/balloon-top.svg), 50% 100% / contain no-repeat url(images/balloon-bottom.svg);
}

.message-phrase {
  display: block;
  margin: 0 0 35px;
  font-size: 25px;
  font-feature-settings: 'palt';
  letter-spacing: .02em;
  text-align: center;
}

.message-p {
  line-height: 2;
}

.profile-wrapper {
  display: grid;
  grid-template-columns: 100px auto;
  grid-template-rows: 120px auto;
  column-gap: 15px;
  row-gap: 55px;
  margin: 40px 40px 0;
}

.profile-image-wrapper {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.profile-image {
  border-radius: 21px;
}

.profile-summary-wrapper {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  font-weight: 600;
}

.profile-summary-p {
  margin: 0 0 10px;
}

.profile-name {
  font-size: 16px;
}

.profile-detail-wrapper {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.profile-detail-p {
  margin: 0;
  line-height: 2;
}

/* feature */

#feature {
  background-image: url(images/spin-light.svg);
  background-position: -28px 15px;
  background-size: 155px auto;
  background-repeat: no-repeat;
}

.feature-image-wrapper {
  width: calc(100% - 20px);
  margin: 0;
  position: relative;
}
.feature-item:nth-child(odd) .feature-image-wrapper {
  padding: 0 20px 45px 0;
}
.feature-item:nth-child(even) .feature-image-wrapper {
  padding: 0 0 45px 20px;
}

.feature-image {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.feature-item:nth-child(odd) .feature-image {
  border-radius: 0 41px 41px 0;
}
.feature-item:nth-child(even) .feature-image {
  border-radius: 41px 0 0 41px;
}

.feature-count {
  width: auto;
  height: 75px;
  position: absolute;
  bottom: 0;
  left: 48.5%;
  transform: translateX(-50%);
}

.feature-content {
  margin: 40px;
}

.feature-title {
  text-align: center;
}

.feature-title-image {
  max-width: 100%;
  height: auto;
}

.feature-p {
  line-height: 2;
}

/* safety */

.safety-heading {
  margin: 0 0 40px;
  color: var(--primary-color);
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
}

.safety-p {
  margin: 0 40px;
  line-height: 2;
}

/* plan */

#plan {
  background-image: url(images/black-brick-background.jpg);
  background-size: 1200px auto;
}

.plan-item {
  margin: 0 37px 25px;
  padding: 20px 16px;
  background: var(--white);
  border-radius: 40px;
  box-sizing: border-box;
}

.plan-type {
  margin: 0 auto 15px;
  color: #79d0ff;
  font-size: 12px;
  text-align: center;
}

.plan-title {
  margin: 0 0 5px;
  font-weight: 600;
  text-align: center;
}

.plan-sub-title {
  display: block;
  margin: 0 auto 5px;
  font-size: 12px;
}

.plan-main-title {
  display: block;
  font-size: 25px;
  font-feature-settings: 'palt';
  line-height: 1.2;
}

.plan-price-p {
  margin: 0 0 20px;
  font-weight: 600;
  text-align: center;
}

.plan-price-yen {
  font-size: 24px;
}

.plan-price-num-txt {
  font-family: 'Titillium Web', sans-serif;
  font-size: 56px;
  margin: 0 5px;
  position: relative;
  bottom: -4px;
}

.plan-price-per {
  font-size: 20px;
}

.plan-detail-p {
  font-size: 15px;
  text-align: justify;
  font-feature-settings: 'palt';
  line-height: 1.5;
}

.plan-note-p {
  color: #808080;
  font-size: 12px;
  text-align: justify;
  line-height: 1.66;
}

#plan .button-primary {
  margin-bottom: 58px;
}

/* voice */

#voice {
  padding-top: 60px;
  background: 110% 8px / 547px auto no-repeat url(images/spin-gray.svg), #e3e3e3;
}

.voice-item {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.voice-image {
  filter: drop-shadow(0 0 5px rgba(35, 24, 21, .53));
}

.splide {
  margin-top: -10px;
  padding-bottom: 60px;
}

#voice .splide__pagination__page {
  width: 12px;
  height: 12px;
  margin: 7px;
  background: #b0b0b0;
  opacity: 1;
}

#voice .splide__pagination__page.is-active {
  transform: none;
  background: var(--primary-color);
}

/* flow */

.flow-wrapper {
  margin: 0 40px 50px;
}

.flow-item:not(:last-of-type) {
  display: flex;
  align-items: center;
  height: 120px;
  margin: 0 0 64px;
  padding: 5px 5px 5px 38px;
  background: var(--white);
  box-shadow: 0 0 7px rgba(0, 0, 0, .45);
  border-radius: 30px;
  position: relative;
  font-weight: 600;
  line-height: 1.57;
}

.flow-item:nth-child(1) {
  background: 80% 50% / 66px auto no-repeat url(images/flow-calendar.svg), var(--white);
}
.flow-item:nth-child(2) {
  background: 83% 50% / 87px auto no-repeat url(images/flow-email.svg), var(--white);
}
.flow-item:nth-child(3) {
  background: 83% 50% / 100px auto no-repeat url(images/flow-reception.svg), var(--white);
}
.flow-item:nth-child(4) {
  background: 85% 50% / 84px auto no-repeat url(images/flow-training-start.svg), var(--white);
}

.flow-item:last-of-type {
  padding: 15px 12px;
  background: #3087b0;
  border-radius: 30px;
  color: var(--white);
}

.flow-item:not(:last-of-type)::after {
  content: '';
  display: block;
  width: 28px;
  height: 21px;
  background: 50% / contain no-repeat url(images/arrow.svg);
  position: absolute;
  left: calc(50% - 14px);
  bottom: -45px;
}

.flow-text {
  margin: 0;
  font-feature-settings: 'palt';
}

.notes-list {
  margin: 0 40px 40px;
  padding: 0 0 0 12px;
  color: #666;
  font-size: 12px;
  line-height: 1.83;
  text-align: justify;
}

/* access */

.access-section-wrapper {
  padding: 203px 0 90px;
  background: 50% 0 / contain no-repeat url(images/exterior@2x.jpg), var(--primary-color);
  box-sizing: border-box;
  position: relative;
}

.access-section-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(images/bg-dot.png);
  opacity: .2;
  mix-blend-mode: soft-light;
  z-index: 10;
}

#access {
  position: relative;
  z-index: 20;
  border-radius: 40px 0 0 40px;
  margin: 0 0 45px 20px;
  padding-left: 20px;
  padding-bottom: 60px;
}

#access .section-heading {
  margin-right: 40px;
}

.map-wrapper {
  margin: 0 40px 30px 0;
}

.map-wrapper .google-map {
  width: 100%;
  vertical-align: middle;
}

.access-appeal {
  margin: 0;
  padding: 10px 0;
  background: #4d4d4d;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  text-align: center;
  letter-spacing: .08em;
}

.access-parking-guid {
  display: flex;
  justify-content: space-between;
  margin: 7px 0 0;
}

.access-info {
  margin: 0 33px 0 0;
  font-feature-settings: 'palt';
}

.access-gym-name {
  display: block;
  font-size: 30px;
  font-weight: 600;
}

.access-info .access {
  display: inline-block;
  margin-bottom: 9px;
}

.access-info .email {
  display: flex;
  justify-content: space-between;
  margin-right: 5px;
}

.access-bottom {
  position: relative;
  z-index: 20;
}

.access-bottom-announce {
  margin: 0 40px 30px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  font-feature-settings: 'palt';
  line-height: 1.73;
}

.access-bottom .button-light {
  margin-bottom: 20px;
}

/* contact */

#contact {
  background-image: linear-gradient(235deg, #80b5ce 65px, transparent 65px);
}

.contact-catchcopy {
  margin: 0 40px 15px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.66;
  text-align: center;
  font-feature-settings: 'palt';
}

.contact-email {
  margin: 15px 40px 0;
  color: var(--black-dark);
  letter-spacing: .1em;
  text-align: center;
}

/* instagram */

.sns-catchcopy {
  font-size: 15px;
  font-feature-settings: 'palt';
  line-height: 1.7;
  letter-spacing: .08em;
}

#instagram .sns-catchcopy {
  margin: 0 40px 25px;
  color: var(--primary-color);
}

.instagram-wrapper {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  column-gap: 5px;
  row-gap: 12px;
  width: 100%;
  margin: 0 0 27px;
}

.instagram-feed-link {
  flex: 0 0 calc((100% - 10px) / 3);
}

.instagram-feed-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  vertical-align: middle;
}

.button.button-instagram {
  width: calc(100% - 150px);
  box-shadow: none;
  font-size: 14px;
}

.button-sns-image {
  width: auto;
  height: 25px;
  margin: 0 9px 0 0;
  vertical-align: middle;
}

/* youtube */

#youtube .sns-catchcopy {
  width: fit-content;
  margin: 0 auto 15px;
}

.button.button-youtube {
  width: calc(100% - 150px);
  border: 1px solid var(--black-dark);
  box-shadow: none;
  color: #282828;
  font-size: 14px;
  letter-spacing: .02em;
}

/* footer */

#footer {
  padding: 50px 0 0;
  background: var(--black-dark);
  text-align: center;
  color: var(--white);
}

.footer-logo {
  display: block;
  width: 196px;
  height: auto;
  margin: 0 auto 50px;
}

.footer-nav {
  display: flex;
  justify-content: space-around;
  margin: 0 40px 38px;
  padding: 0;
  list-style: none;
}

.footer-nav .nav-link {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  letter-spacing: .08em;
}

.footer-nav .nav-link:visited {
  color: var(--white);
}

.footer-bottom {
  padding: 30px 40px 10px;
  background: var(--black-light);
}

.footer-sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 35px;
  margin: 0 auto 20px;
  padding: 0;
  list-style: none;
}

.footer-sns-image {
  width: 33px;
  height: 27px;
  object-fit: contain;
}

.copyright {
  margin: 0 40px;
  font-size: 10px;
  letter-spacing: .08em;
}

/* PC area */

#pc-area {
  display: none;
}

@media screen and (min-width: 428px) {
  body {
    padding: 55px 0;
  }

  /* common */

  #common-body {
    width: 390px;
    margin: 0 auto;
    filter: drop-shadow(0 0 24px rgba(35, 24, 21, .95));
  }

  /* header */

  #header {
    padding-left: 26px;
    padding-right: 32px;
    border-radius: 40px 40px 0 0;
    transition: border-radius .3s;
  }

  #header.is-scroll {
    border-radius: 0;
  }

  #mobile-nav-switch:checked ~ #mobile-nav-wrapper {
    padding: 35px 0 70px;
  }

  /* footer */

  #footer,
  .footer-bottom {
    border-radius: 0 0 40px 40px;
  }

  /* PC area */

  #pc-area {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -30;
  }

  .pc-left-side {
    flex: 0 0 calc(50% - 106px);
    background: 0 0 / 850px auto repeat url(images/black-brick-background.jpg);
  }

  .pc-right-side {
    flex: 0 0 calc(50% + 106px);
    position: relative;
    background: #b0b0b0;
  }

  .pc-right-side::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: 50% / cover no-repeat url(images/exterior-bg.jpg);
    mix-blend-mode: overlay;
    opacity: .7;
  }

  .pc-content {
    display: none;
  }
}

@media screen and (min-width: 1240px) {
  .pc-content {
    display: block;
    box-sizing: border-box;
  }

  .pc-left-side .pc-content {
    padding: 56px 130px 40px max(40px, 40% - 140px);
  }

  .pc-logo-image {
    width: min(100%, 338px);
    height: auto;
    margin: 0 0 40px;
  }

  .pc-nav {
    width: min(100%, 354px);
    margin: 0 0 45px;
    padding: 0;
    list-style: none;
  }

  .pc-nav-item {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
  }

  .pc-nav-item::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1.5px solid var(--white);
    transform: translateX(-100%);
    transition: .5s 0s ease;
  }

  .pc-nav-item:hover::after {
    transform: translateX(0);
  }

  .pc-nav-link {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    line-height: 2;
    letter-spacing: .08em;
  }

  .pc-button-wrapper {
    width: min(100%, 354px);
    padding: 0 26px 0 0;
    box-sizing: border-box;
  }

  .pc-button-wrapper .button.button-pc {
    width: 100%;
    font-size: 20px;
    letter-spacing: 0;
    height: auto;
    line-height: 1.4;
    padding: .6em;
    border-radius: 40px;
    box-sizing: border-box;
  }

  .pc-button-wrapper .button.button-pc:first-of-type {
    margin-bottom: 17px;
  }

  .pc-right-side {
    position: relative;
    padding: 40px 40px 107px 390px;
  }

  .pc-right-side .pc-content {
    position: absolute;
    bottom: 107px;
    left: 390px;
  }

  .pc-qr-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    width: 312px;
    margin: 0 0 30px;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .6);
    border-radius: 40px;
  }

  .pc-qr-text {
    padding: 10px 4px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.63;
  }

  .pc-qr-image {
    width: 85px;
    height: auto;
    vertical-align: middle;
  }

  .pc-youtube-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 312px;
    height: 81px;
    margin: 0;
    box-sizing: border-box;
    background: var(--white);
    border-radius: 40px;
  }
}