@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 400;
  background-color: #f0f3f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-padding-top: 90px;
}
@media (min-width: 1024px) {
  html {
    scroll-padding-top: 120px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 70px;
  background-color: transparent;
}
@media (min-width: 1024px) {
  .header {
    height: 100px;
  }
}

.header__inner {
  width: 88%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .header__inner {
    gap: clamp(16px, 3vw, 48px);
  }
}

.header__logo {
  position: relative;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.header__logo img {
  width: 203px;
  height: auto;
}
@media (min-width: 1024px) {
  .header__logo img {
    width: clamp(168px, 43.75vw - 280px, 350px);
  }
}
.header__logo:hover {
  opacity: 0.6;
}

.hamburger {
  position: relative;
  z-index: 1100;
  width: 32px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #62b0e3;
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.hamburger__bar:nth-child(1) {
  top: 0;
}
.hamburger__bar:nth-child(2) {
  top: 11px;
}
.hamburger__bar:nth-child(3) {
  top: 22px;
}

.hamburger.is-open .hamburger__bar:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.hamburger.is-open .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__bar:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 68px;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.global-nav.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .global-nav {
    position: static;
    inset: auto;
    z-index: auto;
    height: 60px;
    padding: 0 clamp(16px, 2.5vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 30px;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
}

.global-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1024px) {
  .global-nav__list {
    flex-direction: row;
    gap: clamp(12px, 2vw, 40px);
  }
}

.global-nav__item a {
  display: inline-block;
  color: #62b0e3;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.global-nav__item a:hover {
  opacity: 0.6;
}
@media (min-width: 1024px) {
  .global-nav__item a {
    color: #62b0e3;
    font-weight: 700;
    font-size: clamp(1.4rem, 0.481vw + 0.9rem, 1.6rem);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}

.global-nav__item-en {
  font-family: "Plus Jakarta Sans", sans-serif;
}

@media (min-width: 1024px) {
  .global-nav__item--home {
    display: none;
  }
}

body {
  padding-bottom: 68px;
}
@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

.contact-nav {
  position: fixed;
  z-index: 900;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #62b0e3;
}
@media (min-width: 1024px) {
  .contact-nav {
    left: auto;
    right: 0;
    bottom: auto;
    top: 250px;
    width: auto;
    height: auto;
    display: grid;
    background-color: transparent;
    pointer-events: none;
  }
}

.contact-nav__collapsed {
  display: none;
}
@media (min-width: 1024px) {
  .contact-nav__collapsed {
    grid-area: 1/1;
    justify-self: end;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100px;
    height: 130px;
    padding-left: 5px;
    background-color: #62b0e3;
    border-radius: 15px 0 0 15px;
    color: #ffffff;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s;
  }
  .contact-nav__collapsed img {
    width: 32px;
    height: 32px;
  }
}

.contact-nav__collapsed-label {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
}

.contact-nav__expanded {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 88%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact-nav__expanded {
    grid-area: 1/1;
    justify-self: end;
    align-self: center;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    width: 192px;
    height: 130px;
    margin: 0;
    padding-left: 5px;
    background-color: #62b0e3;
    border-radius: 15px 0 0 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
  }
}

@media (min-width: 1024px) {
  .contact-nav:hover .contact-nav__collapsed,
  .contact-nav:focus-within .contact-nav__collapsed {
    opacity: 0;
    pointer-events: none;
  }
}

@media (min-width: 1024px) {
  .contact-nav:hover .contact-nav__expanded,
  .contact-nav:focus-within .contact-nav__expanded {
    opacity: 1;
    pointer-events: auto;
  }
}

.contact-nav__btn {
  flex: 1 1 46%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 45px;
  padding: 0;
  background-color: #ffffff;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.3s;
}
.contact-nav__btn img {
  width: 25px;
  height: 25px;
}
.contact-nav__btn:hover {
  opacity: 0.6;
}
@media (min-width: 1024px) {
  .contact-nav__btn {
    flex: none;
    justify-content: center;
    gap: 5px;
    width: 150px;
    height: 35px;
    margin-inline: auto;
    padding: 0;
    background-color: #ffffff;
    border-radius: 5px;
  }
  .contact-nav__btn img {
    width: 25px;
    height: 25px;
  }
}

.contact-nav__btn--trial {
  color: #3a8da1;
}

.contact-nav__btn--line {
  color: #06c755;
}

.contact-nav__btn-label-en {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.pagetop {
  position: fixed;
  z-index: 800;
  right: 15px;
  bottom: 83px;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pagetop img {
  width: 100%;
  height: 100%;
}
.pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.pagetop:hover {
  opacity: 0.6;
}
@media (min-width: 1024px) {
  .pagetop {
    right: 40px;
    bottom: 40px;
    width: 60px;
    height: 60px;
  }
}

.footer {
  padding: 24px 0;
  text-align: center;
}

.footer__copy {
  color: #b2b2b2;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

[data-anim] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}

[data-anim=fade-up] {
  transform: translateY(40px);
}

[data-anim=zoom-in] {
  transform: scale(0.92);
}

[data-anim].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.sec-main {
  position: relative;
  overflow: hidden;
  padding-top: 104px;
  padding-bottom: 32px;
}
@media (min-width: 1024px) {
  .sec-main {
    padding-top: 136px;
    padding-bottom: 48px;
  }
}

.sec-main__inner {
  position: relative;
  width: 100%;
}

.sec-main__visual {
  width: 94%;
  margin-left: 0;
}
@media (min-width: 1024px) {
  .sec-main__visual {
    width: 73.75%;
  }
}

.sec-main__mask {
  overflow: hidden;
  border-radius: 0 50px 50px 0;
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .sec-main__mask {
    aspect-ratio: 1062/752;
  }
}

.sec-main__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.6s ease, transform 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.1s;
  will-change: opacity, transform;
}

.sec-main__copy {
  display: block;
  width: 60%;
  max-width: 240px;
  margin: 0 0 24px 6%;
}
.sec-main__copy img {
  width: 100%;
  height: auto;
}
.sec-main__copy {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.5s;
}
@media (min-width: 1024px) {
  .sec-main__copy {
    position: absolute;
    top: 11%;
    right: 12.4%;
    width: 8.26%;
    max-width: 119px;
    margin: 0;
  }
}

.sec-main__en {
  position: absolute;
  right: 8%;
  bottom: 6%;
  margin: 0;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6.4vw, 9.6rem);
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.7s;
}
@media (min-width: 1024px) {
  .sec-main__en {
    right: 4%;
    bottom: 4%;
    color: rgba(255, 255, 255, 0.7);
  }
}

.sec-main.is-loaded .sec-main__img {
  opacity: 1;
  transform: scale(1.1);
}
.sec-main.is-loaded .sec-main__copy,
.sec-main.is-loaded .sec-main__en {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .sec-main__img,
  .sec-main__copy,
  .sec-main__en {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.sec-case {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .sec-case {
    padding: 80px 0;
  }
}

.sec-case__inner {
  width: 88%;
  max-width: 834px;
  margin: 0 auto;
}

.sec-case__card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 30px;
}
@media (min-width: 1024px) {
  .sec-case__card {
    padding: 40px;
  }
}

.sec-case__heading {
  color: #62b0e3;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 1024px) {
  .sec-case__heading {
    font-size: 3.6rem;
  }
}

.sec-case__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .sec-case__list {
    flex-flow: row wrap;
    justify-content: center;
    gap: 10px 30px;
    padding: 20px;
  }
}

.sec-case__item {
  background-color: #c4e7fe;
  border-radius: 10px;
  padding: 5px 15px;
  color: #333333;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 1024px) {
  .sec-case__item {
    flex: 0 1 calc((100% - 30px) / 2);
    max-width: 330px;
  }
}

.sec-case__message {
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .sec-case__message {
    margin-top: 16px;
  }
}

.sec-case__lead {
  color: #62b0e3;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .sec-case__lead {
    font-size: 3.6rem;
    line-height: 1.7;
  }
}
@media (min-width: 1024px) {
  .sec-case__lead br {
    display: none;
  }
}

.sec-case__lead-en {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.sec-case__desc {
  margin-top: 10px;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: justify;
}
@media (min-width: 768px) {
  .sec-case__desc {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .sec-case__desc {
    max-width: 484px;
    margin-inline: auto;
  }
}
.sec-case__desc br {
  display: none;
}
@media (min-width: 768px) {
  .sec-case__desc br {
    display: inline;
  }
}

.sec-case__desc-en {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.sec-ttl {
  text-align: center;
}

.sec-ttl__en {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid #62b0e3;
  color: #62b0e3;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.sec-ttl__jp {
  margin-top: 12px;
  color: #333333;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .sec-ttl__jp {
    font-size: 3.6rem;
  }
}

.sec-ttl__jp-en {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.sec-about {
  background-color: #ffffff;
  padding: 48px 0 64px;
}
@media (min-width: 1024px) {
  .sec-about {
    padding: 80px 0 96px;
  }
}

.about__message,
.about__point,
.about__image,
.about__facilities {
  margin-top: 44px;
}
@media (min-width: 1024px) {
  .about__message,
  .about__point,
  .about__image,
  .about__facilities {
    margin-top: 72px;
  }
}

.about__message {
  width: 88%;
  max-width: 1044px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .about__message {
    display: flex;
    align-items: center;
    gap: 67px;
  }
}

@media (min-width: 1024px) {
  .about__message-body {
    flex: 1 1 0;
    min-width: 0;
  }
}

.about__lead {
  color: #62b0e3;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
}

.about__text {
  margin-top: 18px;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: justify;
}

.about__text-en {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.about__goal {
  margin-top: 32px;
}
.about__goal img {
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .about__goal {
    margin-top: 0;
    flex: 0 0 auto;
    width: 53%;
    max-width: 553px;
  }
}

.about__point {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 6%;
  width: 88%;
  max-width: 1317px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .about__point {
    flex-wrap: nowrap;
    gap: 35px;
  }
}

.about__point-item {
  flex: 0 1 47%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .about__point-item {
    flex: 1 1 0;
    min-width: 0;
  }
}

.about__point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.about__point-icon img {
  width: auto;
  max-height: 90px;
}

.about__point-num {
  color: #62b0e3;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 1.7;
  text-align: center;
}

.about__point-title {
  color: #333333;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
}

.about__point-text {
  width: 100%;
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
}

.about__image {
  display: flex;
  width: 100%;
}
.about__image img {
  width: 33.3333333333%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
}

.about__facilities {
  width: 88%;
  max-width: 1168px;
  margin-inline: auto;
}

.about__facilities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 6%;
}
@media (min-width: 1024px) {
  .about__facilities-list {
    gap: 50px;
  }
}

.about__facility {
  flex: 0 1 47%;
}
@media (min-width: 1024px) {
  .about__facility {
    flex: 0 1 calc((100% - 150px) / 4);
    max-width: 246px;
  }
}

.about__facility-img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
}

.about__facility-title {
  margin-top: 11px;
  color: #333333;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.7;
}

.about__facility-logo {
  width: 156px;
  max-width: 100%;
  height: auto;
  margin-top: 3px;
}

.about__facility-text {
  margin-top: 4px;
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: justify;
}

.about__facilities-note {
  margin-top: 53px;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
}

.sec-plan {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .sec-plan {
    padding: 80px 0;
  }
}

.sec-plan__contents {
  width: 88%;
  max-width: 1230px;
  margin: 37px auto 0;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .sec-plan__contents {
    margin-top: 37px;
    padding: 76px;
  }
}

.plan-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.plan-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #62b0e3;
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
  border-radius: 20px 20px 0 0;
}

.plan-card__head--entry {
  background-color: #3a8da1;
}

.plan-card__head-en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.plan-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 111px;
  padding: 15px;
  border: 1px solid #b2b2b2;
  border-top: none;
  border-radius: 0 0 20px 20px;
  text-align: center;
}

.plan-card__price {
  color: #333333;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1;
}

.plan-card__price-en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.plan-card__lead {
  color: #62b0e3;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.7;
}

.plan-card__note {
  color: #333333;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
}

.plan-card--entry {
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .plan-card--entry {
    max-width: 370px;
  }
}

.sec-plan__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .sec-plan__row {
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    margin-top: 35px;
  }
}

@media (min-width: 1024px) {
  .sec-plan__row .plan-card {
    flex: 1 1 0;
    min-width: 0;
  }
}

.plan-content {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .plan-content {
    margin-top: 35px;
  }
}

.plan-content__head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #62b0e3;
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
}

.plan-content__body {
  padding: 30px;
  border: 1px solid #b2b2b2;
  border-top: none;
  border-radius: 0 0 20px 20px;
  background-color: #ffffff;
  text-align: center;
}

.plan-content__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.plan-content__tags--sub {
  margin-top: 20px;
}

.plan-content__tag {
  padding: 5px 15px;
  background-color: #c4e7fe;
  border-radius: 10px;
  color: #333333;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .plan-content__tag br {
    display: none;
  }
}

.plan-content__tag--lg {
  font-size: 1.8rem;
}
@media (min-width: 1024px) {
  .plan-content__tag--lg {
    font-size: 2.4rem;
  }
}

.plan-content__tag-en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.plan-content__note {
  margin-top: 20px;
  color: #333333;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
}

.sec-plan__option {
  margin-top: 29px;
}

.sec-plan__option-wrap {
  position: relative;
  max-width: 816px;
  margin-inline: auto;
}

.sec-plan__option-message {
  position: absolute;
  top: -72px;
  left: 30%;
  z-index: 1;
  width: 183px;
  height: auto;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .sec-plan__option-message {
    top: -72px;
    left: 18.26%;
    transform: none;
  }
}

.sec-plan__option-menu {
  margin-top: 112px;
  padding: 30px;
  background-color: #f2f2f2;
  border-radius: 20px;
  text-align: center;
}
@media (min-width: 1024px) {
  .sec-plan__option-menu {
    padding: 40px 20px;
  }
}

@media (min-width: 1024px) {
  .sec-plan__option-head,
  .sec-plan__option-list {
    max-width: 455px;
    margin-inline: auto;
  }
}

.sec-plan__option-head {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
  text-align: center;
}

.sec-plan__option-head-en {
  color: #333333;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1;
}

.sec-plan__option-head-jp {
  margin-top: 5px;
  color: #333333;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.7;
}

.sec-plan__option-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 23px;
}
@media (min-width: 1024px) {
  .sec-plan__option-list {
    margin: 23px auto 0;
  }
}

.sec-plan__option-item {
  width: 100%;
  padding: 5px 15px;
  background-color: #ffffff;
  border-radius: 10px;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 1024px) {
  .sec-plan__option-item {
    width: auto;
    white-space: nowrap;
  }
}

.sec-plan__option-name {
  font-weight: 700;
}

.sec-plan__option-desc {
  font-weight: 400;
}

.sec-plan__option-en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
}

.sec-plan__option-notes {
  margin-top: 8px;
  color: #333333;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: left;
}

.sec-staff {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .sec-staff {
    padding: 80px 0;
  }
}

.sec-staff__inner {
  width: 88%;
  max-width: 1230px;
  margin: 39px auto 0;
}

.sec-staff__lead {
  color: #62b0e3;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-staff__lead {
    font-size: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .sec-staff__lead {
    font-size: 3.6rem;
  }
}

.sec-staff__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .sec-staff__list {
    flex-flow: row wrap;
    gap: 40px 6%;
  }
}
@media (min-width: 1024px) {
  .sec-staff__list {
    flex-wrap: nowrap;
    gap: 62px;
  }
}

.staff-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media (min-width: 768px) {
  .staff-card {
    flex: 0 1 47%;
  }
}
@media (min-width: 1024px) {
  .staff-card {
    flex: 1 1 0;
    min-width: 0;
  }
}

.staff-card__img {
  margin: 0;
  overflow: hidden;
}
.staff-card__img img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
}

.staff-card__name {
  color: #333333;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
}

.staff-card__cert {
  color: #333333;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.7;
}

.staff-card__bio {
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: justify;
}

.sec-faq {
  padding: 48px 0;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .sec-faq {
    padding: 60px 0;
  }
}

.sec-faq__contents {
  width: 88%;
  max-width: 675px;
  margin: 44px auto 0;
}
@media (min-width: 1024px) {
  .sec-faq__contents {
    margin-top: 66px;
  }
}

.faq-item + .faq-item {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .faq-item + .faq-item {
    margin-top: 50px;
  }
}

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 19px;
}

.faq-item__a {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  margin-top: 15px;
}

.faq-item__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif, "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}

.faq-item__badge--q {
  background-color: #3a8da1;
}

.faq-item__badge--a {
  background-color: #e39762;
}

.faq-item__question {
  flex: 1 1 0;
  min-width: 0;
  color: #333333;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.7;
}

.faq-item__answer {
  flex: 1 1 0;
  min-width: 0;
  color: #333333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
}
.faq-item__answer p + p {
  margin-top: 4px;
}

.faq-item__note {
  font-size: 1.4rem;
}

.faq-item__en {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.sec-parallax {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1440/500;
}

.sec-parallax__img {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: calc(100% + 160px);
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.sec-news {
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .sec-news {
    padding: 80px 0;
  }
}

.sec-news__contents {
  width: 88%;
  max-width: 710px;
  margin: 29px auto 0;
}
@media (min-width: 1024px) {
  .sec-news__contents {
    margin-top: 29px;
  }
}

.sec-news__list {
  display: flex;
  flex-direction: column;
}

.news-item {
  border-bottom: 1px solid #b2b2b2;
}

.news-item__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 0;
  color: inherit;
  transition: opacity 0.3s;
}
.news-item__link:hover {
  opacity: 0.6;
}
@media (min-width: 1024px) {
  .news-item__link {
    gap: 30px;
  }
}

.news-item__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .news-item__body {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}

.news-item__date {
  flex-shrink: 0;
  color: #333333;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
}

.news-item__title {
  flex: 1 1 0;
  min-width: 0;
  color: #333333;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.7;
}

.news-item__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.news-item__arrow img {
  width: 24px;
  height: 24px;
}

.sec-news__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 344px;
  max-width: 100%;
  height: 70px;
  margin: 38px auto 0;
  background-color: #62b0e3;
  border-radius: 70px;
  color: #ffffff;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.7;
  text-align: center;
  transition: opacity 0.3s;
}
.sec-news__more:hover {
  opacity: 0.6;
}

.sec-info {
  padding: 48px 0 64px;
}
@media (min-width: 1024px) {
  .sec-info {
    padding: 80px 0 96px;
  }
}

.sec-info__contents {
  width: 88%;
  max-width: 650px;
  margin: 31px auto 0;
}
@media (min-width: 1024px) {
  .sec-info__contents {
    margin-top: 31px;
  }
}

.sec-info__logo {
  display: flex;
  justify-content: center;
}
.sec-info__logo img {
  width: 300px;
  max-width: 100%;
  height: auto;
}

.sec-info__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 29px;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  padding: 20px 25px;
  background-color: #ffffff;
  border-radius: 20px;
}
@media (min-width: 1024px) {
  .info-card {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 20px 50px;
  }
}

.info-card__name {
  flex-shrink: 0;
  color: #3a8da1;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 1024px) {
  .info-card__name {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 50px;
    border-right: 1px solid #62b0e3;
    white-space: nowrap;
  }
}

.info-card__body {
  flex: 1 1 auto;
  min-width: 0;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.7;
}

.info-card__address {
  font-weight: 400;
}

.info-card__tel {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.7;
}
.info-card__tel a {
  transition: opacity 0.3s;
}
.info-card__tel a:hover {
  opacity: 0.6;
}

.info-card__hours {
  font-weight: 400;
}

.info-card__en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: inherit;
}

.info-card__map a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #b2b2b2;
  font-weight: 700;
  transition: opacity 0.3s;
}
.info-card__map a:hover {
  opacity: 0.6;
}
.info-card__map img {
  width: 24px;
  height: 24px;
}

.info-card__map-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sec-news-page {
  background-color: #ffffff;
  padding: 118px 0 80px;
}
@media (min-width: 1024px) {
  .sec-news-page {
    padding: 180px 0 120px;
  }
}

.news-container {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}

.news-layout {
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .news-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 60px;
    align-items: start;
  }
}

.news-article {
  padding: 40px 0;
  border-bottom: 1px solid #b2b2b2;
}
@media (min-width: 1024px) {
  .news-article {
    padding: 48px 0;
  }
}

.news-article__meta {
  margin-bottom: 12px;
}

.news-article__title {
  color: #62b0e3;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
.news-article__title a {
  color: inherit;
  transition: opacity 0.3s;
}
.news-article__title a:hover {
  opacity: 0.6;
}

.news-archive-label {
  font-size: 1.4rem;
  color: #b2b2b2;
  margin-bottom: 16px;
}

.news-pager {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.news-pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 4px;
  border: 1px solid #b2b2b2;
  border-radius: 50%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  color: #333333;
  transition: background-color 0.2s, color 0.2s;
}
.news-pager .page-numbers.current {
  background-color: #62b0e3;
  border-color: #62b0e3;
  color: #ffffff;
}
.news-pager .page-numbers:hover:not(.current) {
  background-color: #f0f3f9;
}

.news-single {
  margin-top: 8px;
}

.news-single__meta {
  margin-bottom: 12px;
}

.news-single__date {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  color: #b2b2b2;
}

.news-single__title {
  color: #62b0e3;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.news-single__body {
  font-size: 1.6rem;
  line-height: 1.8;
}
.news-single__body p {
  margin-bottom: 1em;
}
.news-single__body h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #62b0e3;
  margin: 40px 0 5px;
}
.news-single__body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1.5em 0 0.75em;
}
.news-single__body img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}
.news-single__body ul, .news-single__body ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.news-single__body li {
  list-style: initial;
  margin-bottom: 0.25em;
}
.news-single__body ol li {
  list-style: decimal;
}
.news-single__body a {
  color: #62b0e3;
  text-decoration: underline;
}
.news-single__body .wp-block-image {
  margin-bottom: 10px;
}

.news-back {
  margin-top: 48px;
}

.news-back__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #62b0e3;
  font-size: 1.4rem;
  font-weight: 700;
  transition: opacity 0.3s;
}
.news-back__btn::before {
  content: "‹";
  font-size: 1.8rem;
  line-height: 1;
}
.news-back__btn:hover {
  opacity: 0.6;
}

.news-sidebar {
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .news-sidebar {
    margin-top: 0;
    position: sticky;
    top: 120px;
  }
}

.news-sidebar-section {
  margin-bottom: 24px;
  padding: 20px 24px;
  background-color: #f0f3f9;
  border-radius: 12px;
}

.news-sidebar-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #b2b2b2;
}

.news-sidebar-list li {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid rgba(178, 178, 178, 0.4);
}
.news-sidebar-list li:last-child {
  border-bottom: none;
}
.news-sidebar-list li a {
  color: #333333;
  transition: color 0.2s;
}
.news-sidebar-list li a:hover {
  color: #62b0e3;
}

.news-sidebar-archive select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #b2b2b2;
  border-radius: 6px;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #ffffff;
  cursor: pointer;
}

.news-empty {
  padding: 48px 0;
  text-align: center;
  color: #b2b2b2;
  font-size: 1.4rem;
}/*# sourceMappingURL=style.css.map */