@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

body {
  overflow-x: hidden;
  background: #E5F5FD;
}

body * {
  color: #343434;
}

@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background: #ffffff;
    z-index: 1100;
  }
}

.bg-content {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/mrk_01.svg"), url("../../assets/images/mrk_01.svg"), linear-gradient(180deg, rgb(230, 245, 255) 0%, rgb(155, 223, 255) 100%);
  background-size: 25vw, 25vw, cover;
  background-position: left 110%, right -20%;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
@media (max-width: 960px) {
  .bg-content {
    background-image: url("../../assets/images/mrk_01.svg"), url("../../assets/images/mrk_01.svg"), linear-gradient(180deg, rgb(230, 245, 255) 0%, rgb(155, 223, 255) 100%);
    background-size: 25vw, 25vw, cover;
    background-position: left 100%, right -5%;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
  }
}
@media (max-width: 768px) {
  .bg-content {
    display: none;
  }
}

.p-header {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 50px 1em 0;
  position: fixed;
  z-index: 1000;
  gap: 375px;
  top: 0;
  left: 55%;
  transform: translateX(-50%);
}
@media (max-width: 1400px) {
  .p-header {
    justify-content: center;
  }
}
@media (max-width: 1180px) {
  .p-header {
    width: 40vw;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    left: 40px;
    transform: translateX(0);
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}
@media (max-width: 960px) {
  .p-header {
    width: 100%;
    left: 0;
    z-index: 1001;
  }
}
@media (max-width: 768px) {
  .p-header {
    z-index: 1010;
    padding: 16px;
    height: auto;
    overflow: visible;
  }
}
.p-header .sp-logo {
  display: none;
}
@media (max-width: 768px) {
  .p-header .sp-logo {
    display: block;
    max-width: 180px;
    line-height: 1;
  }
}
.p-header > p {
  width: 40px;
  position: relative;
}
.p-header > p > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-header__logo {
  width: 20vw;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}
@media (max-width: 1180px) {
  .p-header__logo {
    width: 0;
  }
}
@media (max-width: 768px) {
  .p-header__logo {
    width: 200px;
    position: fixed;
    top: 10px;
    left: 20px;
  }
}
.p-header__nav {
  width: 345px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 960px) {
  .p-header__nav {
    align-items: center;
    padding-left: 0;
  }
}
.p-header__nav > img {
  max-width: 80%;
  margin-bottom: 60px;
}
.p-header__nav ul {
  max-width: 320px;
  width: 100%;
  margin: 0 auto 80px;
  list-style: none;
}
@media (max-width: 1180px) {
  .p-header__nav ul {
    margin: 0 auto 5vh;
  }
}
@media (max-width: 768px) {
  .p-header__nav ul {
    max-width: none;
  }
}
.p-header__nav ul h1 {
  max-width: 206px;
  width: 100%;
  margin-bottom: 160px;
}
@media (max-width: 1180px) {
  .p-header__nav ul h1 {
    margin-bottom: 10vh;
  }
}
@media (max-width: 768px) {
  .p-header__nav ul h1 {
    display: none;
  }
}
.p-header__nav li {
  padding-left: 40px;
}
@media (max-width: 1180px) {
  .p-header__nav li {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .p-header__nav li {
    padding-left: 0;
  }
}
.p-header__nav li a {
  display: block;
  padding: 14px 10px 14px 20px;
  color: #343434;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.1em;
  position: relative;
}
@media (max-width: 1180px) {
  .p-header__nav li a {
    padding: 8px 10px 8px 20px;
  }
}
@media (max-width: 768px) {
  .p-header__nav li a {
    padding: 16px 18px;
    border-bottom: 1px solid #0B76B9;
  }
}
.p-header__nav li a span {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
}
@media (max-width: 768px) {
  .p-header__nav li a span {
    color: #ffffff;
    margin: 0 auto;
  }
}
.p-header__nav li a span::after {
  content: "";
  width: 0;
  height: 12px;
  background: #ffffff;
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .p-header__nav li a span::after {
    display: none;
  }
}
.p-header__nav li a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #50A9E2;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .p-header__nav li a::before {
    display: none;
  }
}
.p-header__nav li a:hover span::after {
  content: "";
  width: 100%;
  height: 12px;
  background: #ffffff;
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-header__nav li a:hover span::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .p-header__nav li a {
    color: #ffffff;
  }
}
.p-header .fv-copy {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-block: 280px 0px;
  padding-left: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1400px) {
  .p-header .fv-copy {
    width: 32vw;
    padding-left: 0;
    padding-right: 16px;
  }
}
@media (max-width: 1180px) {
  .p-header .fv-copy {
    margin: 0;
    width: 100%;
    max-width: 370px;
    align-items: flex-start;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .p-header .fv-copy {
    display: none;
  }
}
.p-header .fv-copy h2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  color: #50A9E2;
}
.p-header .fv-copy h2 p.title {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.1em;
  color: #50A9E2;
}
.p-header .fv-copy h2 p.title span {
  display: block;
  letter-spacing: 0.04em;
  color: #50A9E2;
}
.p-header .fv-copy h2 span.date {
  font-size: 65px;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1;
  margin-left: 8px;
}
.p-header .fv-copy h2 span.day {
  writing-mode: vertical-lr;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #50A9E2;
}
.p-header .fv-copy a {
  display: block;
  margin-top: 20px;
}
.p-header .fv-copy a.nav-btn {
  max-width: 405px;
  width: 100%;
  height: 70px;
  position: relative;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: #ffffff;
  transition: all 0.3s;
}
.p-header .fv-copy a.nav-btn span {
  color: #50A9E2;
}
.p-header .fv-copy a.nav-btn.add {
  overflow: clip;
  background-image: url("../../assets/images/img_waco_01.svg");
  background-position: left -10%;
  background-size: 90px;
  background-repeat: no-repeat;
}
.p-header .fv-copy a.nav-btn.add span {
  font-size: clamp(24px, 2vw, 27px);
  font-weight: 500;
  transition: all 0.3s;
}
.p-header .fv-copy a.nav-btn.add::after {
  content: "";
  width: 33px;
  height: 34px;
  background: url("../../assets/images/ico_arrow_02.svg") no-repeat;
  background-size: cover;
  right: 30px;
  position: absolute;
  transition: all 0.3s;
}
@media (max-width: 960px) {
  .p-header .fv-copy a.nav-btn.add::after {
    right: 16px;
  }
}
.p-header .fv-copy a.nav-btn.add:hover {
  overflow: clip;
  background-image: url("../../assets/images/img_waco_05.svg");
  background-position: left -10%;
  background-size: 90px;
  background-repeat: no-repeat;
  background-color: #9A0046;
}
.p-header .fv-copy a.nav-btn.add:hover span {
  color: #ffffff;
}
.p-header .fv-copy a.nav-btn.add:hover::after {
  background: url("../../assets/images/ico_arrow_06.svg") no-repeat;
}
.p-header .fv-copy a.nav-btn.info {
  background: #FBBCC0;
}
.p-header .fv-copy a.nav-btn.info span {
  color: #9A0046;
  font-size: 22px;
  font-weight: 500;
}
.p-header .fv-copy a.nav-btn.info::after {
  content: "";
  width: 33px;
  height: 32px;
  background: url("../../assets/images/ico_arrow_03.svg") no-repeat;
  background-size: cover;
  right: 30px;
  position: absolute;
  transition: all 0.3s;
}
@media (max-width: 960px) {
  .p-header .fv-copy a.nav-btn.info::after {
    right: 16px;
  }
}
.p-header .fv-copy a.nav-btn.info:hover {
  background: #9A0046;
}
.p-header .fv-copy a.nav-btn.info:hover span {
  color: #ffffff;
}
.p-header .fv-copy a.nav-btn.info:hover::after {
  width: 33px;
  height: 34px;
  background: url("../../assets/images/ico_arrow_06.svg") no-repeat;
}

#checked,
.menu-btn {
  display: none;
}

.main-content-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 375px;
  height: 90vh;
  min-height: 740px;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}
@media (max-width: 1180px) {
  .main-content-wrapper {
    position: fixed;
    top: 50%;
    left: auto;
    right: 40px;
    transform: translateY(-50%);
    width: 45vw;
  }
}
@media (max-width: 768px) {
  .main-content-wrapper {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: 100%;
    min-height: unset;
  }
}

.mask {
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 0 0 round 15px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .mask {
    clip-path: none;
  }
}

a {
  display: flex;
  justify-content: center;
  align-items: center;
}
a.lp-btn {
  max-width: 400px;
  width: 90%;
  margin: 24px auto 0;
  padding: 10px;
  position: relative;
  border-radius: 30px;
  background: #FCBCC0;
  filter: drop-shadow(0 4px 0 #F4979D);
}
a.lp-btn span {
  color: #9A0046;
  font-size: 16px;
}
a.lp-btn span::after {
  content: "";
  width: 8px;
  height: 15px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../../assets/images/ico_arrow_01.svg") no-repeat;
  background-size: cover;
}

.section-summary h3 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  padding-inline: 4px;
  line-height: 1;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.section-summary h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 13px;
  background: #FCBCBF;
  z-index: -1;
}
.section-summary h3 span {
  font-size: 17px;
  font-weight: 400;
}
.section-summary p {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  margin-block: 10px 18px;
}
.section-summary p span {
  font-size: 16px;
  font-weight: 500;
  color: #50A9E2;
}

.main-content {
  width: 100%;
  height: 100%;
  background-color: #dfebf7;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  overflow-y: scroll;
  overflow-x: clip;
}
@media (max-width: 1180px) {
  .main-content {
    width: 45vw;
  }
}
@media (max-width: 768px) {
  .main-content {
    max-width: 100%;
    width: 100%;
    right: 0;
    overflow-x: hidden;
    position: static;
    transform: none;
  }
}
.main-content--fv {
  position: relative;
}
.main-content--fv h2 {
  width: 100%;
  padding: 2px 16px 10px;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
}
.main-content--fv h2 img {
  max-width: 150px;
}
@media (max-width: 768px) {
  .main-content--fv h2 {
    display: none;
  }
}

.top-section {
  position: relative;
  background: url("../../assets/images/bg_main_01.png");
  background-repeat: repeat-y;
}
@media (max-width: 768px) {
  .top-section {
    background-size: cover;
  }
}
.top-section__inner .top-section--about {
  padding-block: 52px 30px;
}
.top-section__inner .top-section--about h3 {
  position: relative;
  text-align: center;
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
}
.top-section__inner .top-section--about h3::before {
  content: "";
  position: absolute;
  left: 32px;
  top: -36px;
  width: 110px;
  height: 43px;
  background: url("../../assets/images/mrk_02.png") no-repeat;
  background-size: contain;
}
.top-section__inner .top-section--about > p {
  margin-block: 8px 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
}
.top-section__inner .top-section--about > span {
  font-size: 17px;
  color: #259dea;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  display: block;
  margin: 14px auto 0px;
}
.top-section__inner .top-section--about .class-btn {
  max-width: 400px;
  width: 90%;
  height: 46px;
  display: flex;
  margin: 4px auto 24px;
  border-radius: 10px;
  overflow: clip;
}
.top-section__inner .top-section--about .class-btn span {
  width: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: #50A9E2;
}
.top-section__inner .top-section--about .class-btn > p {
  width: calc(100% - 99px);
  display: flex;
  justify-content: center;
  align-items: baseline;
  text-align: center;
  color: #50A9E2;
  font-size: 16px;
  font-weight: 500;
  background: #ffffff;
}
.top-section__inner .top-section--about .class-btn > p span {
  width: auto;
  display: block;
  color: #50A9E2;
  font-size: 28px;
  font-weight: 500;
  background: transparent;
}
.top-section__inner .top-section--about a.lp-btn:hover {
  top: 4px;
  filter: drop-shadow(0 0 0 transparent);
}
.top-section__inner .section-mrk {
  width: 100%;
  height: 45px;
  background: url(../../assets/images/mrk-section.svg) no-repeat;
  background-size: cover;
}
@media (max-width: 1180px) {
  .top-section__inner .section-mrk {
    height: 70px;
  }
}
@media (max-width: 540px) {
  .top-section__inner .section-mrk {
    height: 13vw;
  }
}

.visit-section {
  background: #ffffff;
}
.visit-section__content-title {
  max-width: 320px;
  width: 100%;
  height: 28px;
  margin: 0 auto;
}
.visit-section__content-summary h3 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  padding-inline: 4px;
  line-height: 1;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.visit-section__content-summary h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 13px;
  background: #FCBCBF;
  z-index: -1;
}
.visit-section__content-summary h3 span {
  font-size: 17px;
  font-weight: 400;
}
.visit-section__content-summary p {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  margin-block: 10px 18px;
}
.visit-section__content-summary p span {
  font-size: 16px;
  font-weight: 500;
  color: #50A9E2;
}
.visit-section__content a.lp-btn::before {
  content: "";
  width: 80px;
  height: 78px;
  position: absolute;
  bottom: 0;
  left: 20px;
  background: url("../../assets/images/img_waco_04.svg") no-repeat;
  background-size: cover;
}
.visit-section__content a.lp-btn span {
  font-size: 14px;
  text-align: center;
}
.visit-section__content a.lp-btn:hover {
  top: 4px;
  filter: drop-shadow(0 0 0 transparent);
}

.simulation-section {
  padding-top: 46px;
  background: #ffffff;
}
.simulation-section__content {
  padding-inline: 20px;
}
.simulation-section__content-images {
  position: relative;
  margin-top: 20px;
}
.simulation-section__content-images::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -15px;
  width: 100px;
  height: 100px;
  background: url("../../assets/images/img_simulation_02.svg") no-repeat;
  background-size: cover;
}

.club-section {
  padding-block: 46px 20px;
  background: #ffffff;
}
.club-section__content {
  padding-inline: 16px;
}
@media (max-width: 768px) {
  .club-section__content {
    padding-inline: 0px;
  }
}
.club-section__content-images {
  padding-inline: 16px;
}
.club-section__content-benefits {
  max-width: 380px;
  width: 85%;
  position: relative;
  margin: 40px auto 0;
  padding: 18px 14px 12px;
  border: 1.5px solid #50A9E2;
  background-color: #E5F5FD;
  border-radius: 5px;
}
.club-section__content-benefits > span {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #50A9E2;
  line-height: 1;
  padding: 4px 17px 6px;
  background: #ffffff;
  border: 1.5px solid #50A9E2;
  border-radius: 30px;
}
.club-section__content-benefits .benefits__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.club-section__content-benefits .benefits__content-image {
  width: 94px;
  aspect-ratio: 1;
}
.club-section__content-benefits .benefits__content-summary p {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.club-section__content-benefits .benefits__content-summary p > span {
  color: #50A9E2;
}
.club-section__content > a.lp-btn span {
  font-size: 16px;
  text-align: center;
}
.club-section__content > a.lp-btn span > span {
  display: block;
  font-size: 12px;
}
.club-section__content > a.lp-btn:hover {
  top: 4px;
  filter: drop-shadow(0 0 0 transparent);
}
.club-section__content-caution {
  max-width: 380px;
  width: 85%;
  margin: 30px auto;
  background: #50A9E2;
  border: 2.5px solid #50A9E2;
  border-radius: 10px;
  overflow: clip;
}
.club-section__content-caution .caution-title {
  padding: 8px 12px 10px;
}
.club-section__content-caution .caution-title h3 {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-align: center;
}
.club-section__content-caution .caution-summary {
  padding: 20px;
  background: #ffffff;
  position: relative;
}
.club-section__content-caution .caution-summary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 1px;
  background: #707070;
}
.club-section__content-caution .caution-summary:last-of-type::after {
  content: "";
  display: none;
}
.club-section__content-caution .caution-summary--title {
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 4px -5px;
  letter-spacing: 0.12em;
}
.club-section__content-caution .caution-summary p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.club-section__content-caution .caution-summary a {
  display: block;
  margin-block: 4px 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: 600;
  color: #50A9E2;
}
.club-section__content-caution .caution-summary span {
  display: block;
  font-size: 10px;
  line-height: 1.6;
}

.uniform-section {
  background: #E5F5FD;
}
.uniform-section .uniform__inner .section-mrk {
  width: 100%;
  height: 45px;
  background: url(../../assets/images/mrk-section.svg) no-repeat;
  background-size: cover;
  transform: rotate(180deg);
}
@media (max-width: 1180px) {
  .uniform-section .uniform__inner .section-mrk {
    height: 70px;
  }
}
@media (max-width: 540px) {
  .uniform-section .uniform__inner .section-mrk {
    height: 13vw;
  }
}
.uniform-section .uniform__inner .uniform__intro {
  margin-top: 16px;
}
.uniform-section .uniform__inner .uniform__intro-title {
  width: 320px;
  margin: 0 auto;
  padding: 11px 10px;
  background: url("../../assets/images/bg_ribbon_01.svg") no-repeat;
}
.uniform-section .uniform__inner .uniform__intro-title h3 {
  font-size: 21px;
  font-weight: 500;
  text-align: center;
  color: #50A9E2;
}
.uniform-section .uniform__inner .uniform__intro p {
  font-size: 16px;
  width: 330px;
  margin: 12px auto 22px;
  text-align: center;
}
.uniform-section .uniform__inner a.lp-btn {
  max-width: 400px;
  width: 90%;
  padding: 10px;
  position: relative;
  border-radius: 44px;
  background: #06C755;
  box-shadow: 0 4px 0 #12AD51;
  filter: none;
  z-index: 1;
  margin-top: 100px;
}
.uniform-section .uniform__inner a.lp-btn span {
  color: #ffffff;
  font-size: 16px;
}
.uniform-section .uniform__inner a.lp-btn span::after {
  content: "";
  width: 8px;
  height: 15px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../../assets/images/ico_arrow_07.svg") no-repeat;
  background-size: cover;
}
.uniform-section .uniform__inner a.lp-btn::after {
  content: "";
  position: absolute;
  top: -118%;
  left: 55%;
  width: 135px;
  height: 80px;
  background: url(../../assets/images/img_waco_03.svg) no-repeat;
  background-size: cover;
  overflow: clip;
  transform: translateX(-50%);
}
.uniform-section .uniform__inner a.lp-btn:hover {
  top: 4px;
  box-shadow: 0 0 0 transparent;
}
.uniform-section .uniform__inner .lineーbanner {
  position: relative;
  width: 335px;
  height: 72px;
  margin: 24px auto 0;
}
.uniform-section .uniform__inner .lineーbanner::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  width: 135px;
  height: 80px;
  background: url("../../assets/images/img_waco_03.svg") no-repeat;
  background-size: contain;
  overflow: clip;
}

.card01 .swiper {
  position: relative;
}
.card01 .swiper .swiper-slide {
  width: 302px;
  padding: 30px 28px 14px;
  border-radius: 5px;
  background: #ffffff;
}
.card01 .swiper .swiper-slide .slide {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .card01 .swiper .swiper-slide .slide {
    width: 100%;
  }
}
.card01 .swiper .swiper-slide > p {
  text-align: center;
  padding-top: 10px;
}
.card01 .swiper .swiper-btn {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.card01 .swiper .swiper-btn .swiper-button-prev,
.card01 .swiper .swiper-btn .swiper-button-next {
  position: absolute;
}
.card01 .swiper .swiper-btn .swiper-button-prev svg,
.card01 .swiper .swiper-btn .swiper-button-next svg {
  display: none;
}
.card01 .swiper .swiper-btn .swiper-button-prev {
  left: 0;
}
.card01 .swiper .swiper-btn .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 28px;
  aspect-ratio: 1;
  background: url("../../assets/images/ico_arrow_05.svg") no-repeat;
  background-size: cover;
}
.card01 .swiper .swiper-btn .swiper-button-next {
  right: 0;
}
.card01 .swiper .swiper-btn .swiper-button-next::before {
  content: "";
  position: absolute;
  width: 28px;
  aspect-ratio: 1;
  background: url("../../assets/images/ico_arrow_04.svg") no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  #menu {
    position: fixed;
    top: 0;
    right: -100%;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    transition: all 0.5s;
    background-color: #50AAE2;
  }
  #menu ul {
    padding-top: 60px;
  }
  .menu-btn {
    position: fixed;
    display: block;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 3;
  }
  .bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 3px;
    background: #2A98DC;
    transition: all 0.5s;
    transform-origin: left top;
    border-radius: 2px;
  }
  .bar:nth-child(2) {
    top: 8px;
    opacity: 1;
  }
  .bar:nth-child(3) {
    top: 16px;
    transform-origin: left bottom;
  }
  .menu-btn:hover .bar {
    background: #999;
  }
  /* checked */
  .check:checked ~ #menu {
    transition-delay: 0.3s;
    transform: none;
    right: 0;
    opacity: 1;
    z-index: 2;
    overflow-y: scroll;
  }
  .check:checked ~ .menu-btn .menu-btn__text {
    visibility: hidden;
    opacity: 0;
  }
  .check:checked ~ .menu-btn .bar:nth-child(1) {
    width: 24px;
    transform: rotate(45deg);
    background: #ffffff;
  }
  .check:checked ~ .menu-btn .bar:nth-child(2) {
    opacity: 0;
  }
  .check:checked ~ .menu-btn .bar:nth-child(3) {
    width: 24px;
    top: 16px;
    transform: rotate(-45deg);
    background: #ffffff;
  }
}
@media (max-width: 768px) {
  #menu > img {
    max-width: 240px;
    position: absolute;
    bottom: 0;
    left: 50%;
  }
}
.ocan-section__inner {
  background: url("../../assets/images/bg_oc_02.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 24px 16px;
}
.ocan-section__inner h2 {
  text-align: center;
  color: #ffffff;
  font-size: clamp(24px, 2vw, 40px);
}
.ocan-section--table {
  max-width: 550px;
  width: 100%;
  margin: 30px auto;
  background-color: #0f8dde;
}
.ocan-section--table__list {
  display: flex;
  width: 100%;
  gap: 4px;
  margin-bottom: 4px;
}
@media (max-width: 500px) {
  .ocan-section--table__list {
    flex-direction: column;
    margin-bottom: 16px;
  }
}
.ocan-section--table__list p {
  font-weight: 600;
}
.ocan-section--table__title {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #dfebf7;
}
@media (max-width: 500px) {
  .ocan-section--table__title {
    width: 100%;
  }
}
.ocan-section--table__text {
  width: calc(100% - 144px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #ffffff;
}
@media (max-width: 500px) {
  .ocan-section--table__text {
    width: 100%;
  }
}
.ocan-section__bg--01 {
  width: 100%;
  height: 72px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: url(../../assets/images/bg_oc_01.png) no-repeat;
  background-size: cover;
}
.ocan-section__bg--03 {
  width: 100%;
  height: 82px;
  position: absolute;
  top: -1px;
  left: 0;
  background: url(../../assets/images/bg_oc_03.png) no-repeat;
  background-size: cover;
}
.ocan-section--toggle ul {
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  color: #fff;
}
.ocan-section--toggle ul li {
  list-style: none;
  margin-top: 28px;
  border-radius: 10px;
  transition: all 0.3s;
}
.ocan-section--toggle ul li:nth-of-type(1) button {
  background: #61D5EA;
  border: 2px solid #61D5EA;
}
.ocan-section--toggle ul li:nth-of-type(2) button {
  background: #C4A2CC;
  border: 2px solid #C4A2CC;
}
.ocan-section--toggle ul ul {
  width: 100%;
  height: 0;
  padding: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.5s;
  background-color: #ffffff;
  margin: 0;
}
.ocan-section--toggle button {
  position: relative;
  width: 100%;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  padding: 15px 0 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  line-height: 1.2;
}
.ocan-section--toggle button p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ocan-section--toggle button p span.ja {
  font-size: 26px;
  position: relative;
  padding-left: 24px;
}
.ocan-section--toggle button p span.ja::before {
  content: "";
  width: 22px;
  height: 19px;
  position: absolute;
  left: 0;
  top: 7px;
  background: url("../../assets/images/ico_mrk_01.svg") no-repeat;
}
.ocan-section--toggle button p span {
  font-size: 14px;
  color: #ffffff;
}
.ocan-section--toggle button::before, .ocan-section--toggle button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 2px;
  background: #ffffff;
  transition: 0.5s;
}
.ocan-section--toggle button::after {
  transform: rotate(90deg);
}
.ocan-section--toggle button:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .ocan-section--toggle button:hover {
    opacity: 1;
  }
}
.ocan-section--toggle ul.active button::after {
  transition: 0.5s;
  transform: rotate(180deg);
}
.ocan-section--toggle ul.active button {
  border-radius: 8px 8px 0 0;
}
.ocan-section--toggle li.active button::after {
  transition: 0.5s;
  transform: rotate(180deg);
}
.ocan-section--toggle li.active button {
  border-radius: 8px 8px 0 0;
}
.ocan-section--toggle li.active > ul {
  border: 2px solid #61D5EA;
  padding: 16px;
  border-radius: 0 0 16px 16px;
}
.ocan-section--toggle li.active > ul .inner-intro {
  display: flex;
  justify-content: center;
  max-width: 280px;
  margin: 0 auto;
}
.ocan-section--toggle li.active > ul .inner-intro p span {
  position: relative;
}
.ocan-section--toggle li.active > ul .inner-intro p span::before {
  content: "・・・";
  position: absolute;
  top: -12px;
  left: 0;
  color: #61D5EA;
}
.ocan-section--toggle li.active > ul .inner-summary {
  max-width: 280px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  margin: 15px auto 0;
}
.ocan-section--toggle li.active > ul .inner-summary > span {
  width: 26px;
  flex: 0 0 auto;
}
.ocan-section--toggle li:nth-of-type(1).active > ul {
  border: 2px solid #61D5EA;
}
.ocan-section--toggle li:nth-of-type(2).active > ul {
  border: 2px solid #C4A2CC;
}
.ocan-section--toggle li:nth-of-type(2).active > ul p span {
  position: relative;
}
.ocan-section--toggle li:nth-of-type(2).active > ul p span::before {
  content: "・・・";
  position: absolute;
  top: -12px;
  left: 0;
  color: #C4A2CC;
}
.ocan-section .schedule-section {
  position: relative;
}
.ocan-section .section-mrk {
  width: 100%;
  height: 45px;
  background: url("../../assets/images/mrk-section.svg") no-repeat;
  background-size: cover;
}

.footer {
  padding-top: 24px;
  background: #E5F5FD;
}
.footer__inner {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 16px 24px;
  background: #50A9E2;
}
@media (max-width: 1180px) {
  .footer__inner {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    padding-bottom: 70px;
  }
}
.footer__inner p small {
  display: block;
  margin-block: 24px;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
}
.footer-map {
  width: 100%;
  height: auto;
}
.footer-map h3 {
  margin: 34px auto 12px;
  text-align: center;
  font-size: 23px;
  font-weight: 500;
}
.footer-map iframe {
  width: 100%;
  height: 222px;
}
.footer-map__summary {
  padding-inline: 14px;
  padding-bottom: 92px;
  background: url("../../assets/images/img_footer_01.png") no-repeat;
  background-size: 200px;
  background-position: right 125%;
}
.footer-map__summary p {
  margin-top: 8px;
  font-size: 13px;
  text-align: left;
  letter-spacing: 0.1em;
}
.footer-content {
  margin-top: 28px;
  background: #50A9E2;
}
.footer-content__image {
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
}

.sp-cta {
  position: fixed;
  z-index: 1200;
  bottom: 0;
  left: 0;
  height: 65px;
  width: 100%;
  background: #ffffff;
  display: none;
  border-radius: 0;
  overflow: clip;
  background-image: url("../../assets/images/img_waco_01.svg");
  background-position: left -24%;
  background-size: 90px;
  background-repeat: no-repeat;
}
.sp-cta a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 2vw, 27px);
  font-weight: 500;
  transition: all 0.3s;
  color: #50A9E2;
}
.sp-cta a span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #50A9E2;
}
.sp-cta::after {
  content: "";
  width: 33px;
  height: 34px;
  background: url("../../assets/images/ico_arrow_02.svg") no-repeat;
  background-size: cover;
  right: 30px;
  position: absolute;
  transition: all 0.3s;
}
@media (max-width: 960px) {
  .sp-cta::after {
    right: 16px;
    top: 16px;
  }
}
@media (max-width: 768px) {
  .sp-cta {
    display: none;
  }
}