@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/********************************
* モバイルファースト
********************************/
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}
@media (min-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 600px) {
  html {
    font-size: 62.5%;
  }
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  scroll-behavior: smooth;
}

textarea {
  resize: none;
}

.tab-br {
  display: none;
}
@media (min-width: 768px) {
  .tab-br {
    display: block;
  }
}

.sp-br {
  display: block;
}
@media (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

.main {
  width: 100%;
  font-family: "Yu Gothic", "YuGothic", sans-serif;
  color: #231815;
  line-height: 1.6;
}

.text-red {
  color: #e60012;
  font-weight: bold;
}

.text-orange {
  color: #f47e00;
  font-weight: bold;
}

.announcement {
  padding: 10rem 2rem 4rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .announcement {
    padding: 4rem 2rem;
  }
}
.announcement-box__logo {
  margin-bottom: 2rem;
  max-width: 35rem;
}
@media (min-width: 768px) {
  .announcement-box__logo {
    max-width: 93rem;
  }
}
.announcement-box__logo img {
  width: 100%;
  height: auto;
}

.section-title {
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 3.2rem;
  position: relative;
}
@media (min-width: 768px) {
  .section-title {
    padding: 1.5rem;
    font-size: 3.2rem;
  }
}
.section-title--blue {
  background-color: #004986;
}
.section-title--blue::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 30px 30px 0;
  border-style: solid;
  border-color: #004986 transparent transparent transparent;
}
.section-title--dark-blue {
  background-color: #004986;
}
.section-title--dark-blue::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #004986 transparent transparent transparent;
}

.section-fee {
  background-color: #fff;
  padding-bottom: 4rem;
}
.section-fee .fee-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}
.section-fee .fee-content__price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  border-bottom: 2px solid #ddd;
  display: inline-block;
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .section-fee .fee-content__price {
    font-size: 3.2rem;
  }
}
.section-fee .fee-content__images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 768px) {
  .section-fee .fee-content__images {
    flex-direction: row;
  }
}
.section-fee .fee-content__images figure {
  flex: 1;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-fee .fee-content__images figure {
    min-width: 200px;
    margin: 0;
  }
}
.section-fee .fee-content__images figure img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.section-fee .fee-content__images figure figcaption {
  margin-top: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.section-details {
  background-color: #fff;
  padding-bottom: 4rem;
}
.section-details .details-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}
.section-details .detail-card {
  margin-bottom: 4rem;
  scroll-margin-top: 120px;
}
@media (min-width: 768px) {
  .section-details .detail-card {
    scroll-margin-top: 170px;
  }
}
.section-details .detail-card__header {
  background-color: #53b1ff;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.section-details .detail-card__header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #004986;
}
.section-details .detail-card__header h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .section-details .detail-card__header h3 {
    font-size: 3.2rem;
  }
}
.section-details .detail-card__body {
  padding: 2rem;
  background-color: #fff;
  max-width: 72rem;
  margin: 0 auto;
}
.section-details .detail-card__note {
  margin: 1.5rem 0;
  font-weight: bold;
  font-size: 1.4rem;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .section-details .detail-card__note {
    font-size: 1.8rem;
  }
}
.section-details .detail-card .detail-dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 6.4rem;
  font-size: 1.4rem;
}
.section-details .detail-card .detail-dl dt {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 1rem;
  white-space: normal;
}
.section-details .detail-card .detail-dl dd {
  font-size: 1.8rem;
  margin: 0;
}
@media (min-width: 768px) {
  .section-details .detail-card .detail-dl {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    font-weight: bold;
  }
  .section-details .detail-card .detail-dl dt {
    margin-top: 0;
    white-space: nowrap;
  }
}
.section-details .detail-card__actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-direction: column;
  padding-bottom: 6.4rem;
}
@media (min-width: 768px) {
  .section-details .detail-card__actions {
    flex-direction: row;
  }
}
.section-details .detail-card__sub-action {
  text-align: center;
  border-radius: 8px;
}
.section-details .detail-card__sub-action p {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .section-details .detail-card__sub-action p {
    font-size: 1.6rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
  text-align: center;
  line-height: 1.4;
  min-width: 200px;
  width: 100%;
  max-width: 300px;
  font-size: 1.4rem;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .btn {
    width: auto;
  }
}
.btn:hover {
  opacity: 0.8;
}
.btn--blue {
  background-color: #3199df;
}
.btn--orange {
  background-color: #f47e00;
  font-size: 1.4rem;
  padding: 1.2rem 2rem;
}
@media (min-width: 768px) {
  .btn--orange {
    font-size: 1.6rem;
    padding: 1.2rem 3rem;
  }
}

.section-promo {
  background-color: #fff;
  color: #231815;
  padding: 0;
}
.section-promo .promo-header {
  background-color: #004986;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 0;
}
.section-promo .promo-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #004986 transparent transparent transparent;
}
.section-promo .promo-header h2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .section-promo .promo-header h2 {
    font-size: 3.2rem;
  }
}
.section-promo .promo-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.section-promo .promo-intro {
  margin-bottom: 3rem;
  font-size: 1.4rem;
  text-align: center;
  color: #231815;
}
.section-promo .promo-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section-promo .promo-features .feature-item {
  margin-bottom: 0;
}
.section-promo .promo-features .feature-box {
  background-color: #53b1ff;
  padding: 2rem;
  text-align: center;
  position: relative;
  width: 100%;
}
.section-promo .promo-features .feature-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #014986;
}
.section-promo .promo-features .feature-box h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .section-promo .promo-features .feature-box h3 {
    font-size: 3.2rem;
  }
}
.section-promo .promo-features .feature-text {
  background-color: #fff;
  color: #231815;
  padding: 4rem 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  text-align: center;
}
.section-promo .promo-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  text-align: center;
}
.section-promo .promo-links .text-link {
  color: #53b1ff;
  text-decoration: none;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-promo .promo-links .text-link:hover {
  text-decoration: underline;
}
.section-promo .promo-links .text-link .arrow-icon {
  color: #53b1ff;
  font-size: 1.2rem;
}

.section-faq {
  padding-bottom: 4rem;
  background-color: #fff;
}
.section-faq .section-title {
  position: relative;
  margin-bottom: 0;
}
.section-faq .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #004986 transparent transparent transparent;
}
.section-faq .faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2rem 2rem 0;
}
.section-faq .faq-item {
  margin-bottom: 3rem;
}
.section-faq .faq-q {
  font-weight: bold;
  color: #231815;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .section-faq .faq-q {
    font-size: 1.6rem;
  }
}
.section-faq .faq-q .icon-q {
  background-color: #004986;
  color: #fff;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.section-faq .faq-a {
  display: flex;
  align-items: flex-start;
  font-size: 1.4rem;
  color: #231815;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .section-faq .faq-a {
    font-size: 1.6rem;
  }
}
.section-faq .faq-a .icon-a {
  background-color: #004986;
  color: #fff;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 1.4rem;
  margin-top: 2px;
}
.section-faq .faq-a > div {
  flex: 1;
}
.section-faq .faq-a > p {
  margin: 0;
  flex: 1;
}
.section-faq .faq-a > span:not(.icon-a) {
  flex: 1;
}
.section-faq .faq-a .faq-a-text {
  flex: 1;
}
.section-faq .faq-a .faq-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section-faq .faq-a .faq-links .text-link {
  color: #53b1ff;
  text-decoration: underline;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.section-faq .faq-a .faq-links .text-link .arrow-icon {
  color: #53b1ff;
  font-size: 1.2rem;
}
.section-faq .faq-a .faq-links .text-link:hover {
  text-decoration: none;
}
.section-faq .faq-a .text-link-inline {
  color: #53b1ff;
  text-decoration: underline;
  font-size: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.section-faq .faq-a .text-link-inline .arrow-icon {
  color: #53b1ff;
  font-size: 1.2rem;
}
.section-faq .faq-a .text-link-inline:hover {
  text-decoration: none;
}
.section-faq .faq-note {
  text-align: left;
  font-size: 1.2rem;
  margin-top: 2rem;
  color: #231815;
  max-width: 750px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}
.section-faq .faq-note .text-link-inline {
  color: #53b1ff;
  text-decoration: underline;
  font-size: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.section-faq .faq-note .text-link-inline .arrow-icon {
  color: #53b1ff;
  font-size: 1.2rem;
}
.section-faq .faq-note .text-link-inline:hover {
  text-decoration: none;
}

footer .pageTop {
  display: block !important;
}
/*# sourceMappingURL=style.css.map */
