@charset "UTF-8";
body {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
}

main {
  height: 300vh;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

li {
  list-style: none;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #87CEFA;
}
@media screen and (min-width:900px) {
  .header {
    padding-inline: 40px;
  }
}

.header__inner {
  padding: 13.5px 20px;
}
@media screen and (min-width:900px) {
  .header__inner {
    display: grid;
    grid-template-columns: 150px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 17px;
  }
}

.header__logo {
  width: 150px;
  height: auto;
  font-size: 24px;
}
.header__logo a {
  width: 100%;
  height: 100%;
}

.header__nav {
  display: none;
}
@media screen and (min-width:900px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-column-gap: 22px;
       -moz-column-gap: 22px;
            column-gap: 22px;
    -webkit-transition: translate 0.5s ease;
    transition: translate 0.5s ease;
  }
  .header__nav.js-show {
    translate: 0;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
.header__list li a {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  padding-inline: 8px;
}
@media screen and (min-width:900px) {
  .header__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .header__list li a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    padding-inline: 8px;
  }
}

.header__btn {
  padding: 8px 26px;
  background: #fff;
  border: 1px solid #fff;
  background: #87CEFA;
  font-size: 20px;
  border-radius: 100vmax;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .header__btn:hover {
    background: transparent;
    color: #fff;
  }
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #87CEFA;
  border: none;
}
@media screen and (min-width:900px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 278px;
  height: 100vh;
  height: 100svh;
  background: #87CEFA;
  overflow-y: scroll;
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
  padding-left: 34px;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
  margin-bottom: 40px;
}
.drawer__list li a {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.drawer__btn {
  display: inline-block;
  padding: 6px 30px;
  background: #fff;
  border-radius: 100vmax;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

section {
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
  font-weight: 700;
}

.title {
  font-size: 40px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:900px) {
  .title {
    font-size: 50px;
  }
}

.concept {
  background: #adffdf;
  margin-top: 100px;
  overflow: auto;
}
@media screen and (min-width:600px) {
  .concept {
    margin-top: 80px;
  }
}
@media screen and (min-width:900px) {
  .concept {
    margin-top: 70px;
  }
}

.concept__inner {
  margin: 0 30px;
}

.concept-title {
  font-size: 40px;
}
@media screen and (min-width:900px) {
  .concept-title {
    font-size: 50px;
  }
}

.concept-text1 {
  font-size: 20px;
}
@media screen and (min-width:900px) {
  .concept-text1 {
    font-size: 26px;
  }
}

figure {
  margin: 0 20px;
}

.member {
  background: #00ffff;
  padding: clamp(390px, 20vw, 600px) 0;
}
@media screen and (min-width:600px) {
  .member {
    padding: 570px 0;
  }
}

.member__inner {
  top: 0;
  max-width: 600px;
}

.member__contents {
  position: relative;
  z-index: 2;
}

.member__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 8px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
@media screen and (min-width:600px) {
  .member__cards {
    margin-top: 48px;
  }
}

.member__card {
  width: calc(50% - 7.5px);
}

.member-card__inner {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.member-card__img {
  display: block;
  overflow: hidden;
  width: 100%;
}

.member-card__heading {
  display: block;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:600px) {
  .member-card__heading {
    font-size: 16px;
  }
}
.member-card__heading--text {
  display: block;
  width: 100%;
  padding: 5px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:600px) {
  .member-card__heading--text {
    font-size: 16px;
  }
}

.history {
  background: #7fffd4;
  position: relative;
  padding: 300px 0;
}

.history__inner {
  max-width: 640px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width:900px) {
  .history__inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.history-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 14px;
  text-align: left;
}
@media screen and (min-width:900px) {
  .history-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    padding-top: 12px;
    padding-bottom: 11.3px;
    padding-left: 16px;
  }
}

.history-table__header {
  position: relative;
  height: 100%;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
}
.history-table__header::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ED0E0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width:600px) {
  .history-table__header {
    font-size: 16px;
  }
}
@media screen and (min-width:900px) {
  .history-table__header {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.history-table__data {
  position: relative;
  padding-left: 1.5em;
  line-height: 24px;
  font-size: 20px;
}
@media screen and (min-width:900px) {
  .history-table__data {
    line-height: 26px;
  }
}

/* ================================
   Action CSS
=============================== */
.action {
  padding-top: 20px;
  padding-bottom: 100px;
  height: auto;
  background: #00fa9a;
}
@media screen and (min-width:600px) {
  .action {
    padding-block: 40px 40px;
  }
}

.action__inner {
  width: min(880px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
  position: relative;
}

.action__swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  padding: 16px 0;
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: unset;
  border-radius: 8px;
}

.action__heading {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:900px) {
  .action__heading {
    margin-top: 23px;
    font-size: 20px;
  }
}

.action__text {
  margin-top: 16px;
  font-size: 20px;
}
@media screen and (min-width:900px) {
  .action__text {
    margin-top: 24px;
  }
}

.action__swiper-container,
.action__swiper,
.action__swiper-wrapper,
.action__swiper-slide {
  position: relative;
}

/* 位置のreset */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

/* =============================
   ナビゲーションボタン
============================= */
/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: ""; /* デフォルトのものを初期化 */
}

/* 各ボタンのカスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
}

.swiper-button-prev {
  left: -20px;
}

.swiper-button-next {
  right: -20px;
}

/* =============================
   ページネーション (bullets)
============================= */
/* 位置の設定 (枠組み) */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: calc(100% + 1px);
}

/* それぞれのページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  width: 12px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #d9d9d9;
  margin-inline: 5.5px;
}

/* activeな部分 */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #000;
}

.contact {
  background: #ffffe0;
  padding-block: 94px 130px;
  height: auto;
}

.contact__inner {
  width: min(729px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.contact__row {
  display: grid;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:600px) {
  .contact__row {
    grid-template-columns: 212px 1fr;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}

.contact__row--acfs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact__head {
  font-size: 14px;
}
@media screen and (min-width:600px) {
  .contact__head {
    font-size: 20px;
    line-height: normal;
  }
}
.contact__head span.--must {
  position: relative;
  display: inline-block;
}
.contact__head span.--must::after {
  content: "必須";
  position: absolute;
  top: calc(50% + 1px);
  translate: 0 -50%;
  left: calc(100% + 14px);
  font-size: 12px;
  line-height: normal;
  display: inline-block;
  padding: 1px 7px;
  border-radius: 4px;
  background: #AEEFF8;
  white-space: nowrap;
}

input[type=text],
input[type=email],
select,
textarea {
  border-radius: 0;
  width: 100%;
  border: none;
  padding: 12px 24px;
  background: #F0F0F0;
  font-size: 16px;
  line-height: normal;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #5A5A5A;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #5A5A5A;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #5A5A5A;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #5A5A5A;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #5A5A5A;
}

textarea {
  height: 243px;
  resize: vertical;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.contact__select-wrap {
  position: relative;
}
.contact__select-wrap svg {
  position: absolute;
  top: calc(50% + 13px);
  translate: 0 -50%;
  right: 10.69px;
  width: 17.313px;
  height: auto;
  pointer-events: none;
}

.contact__acceptance {
  grid-template-columns: 1fr;
  text-align: center;
  font-size: 20px;
}
.contact__acceptance a {
  font-weight: 700;
  color: #000;
}

.contact__underline {
  text-decoration: underline;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__submit {
  text-align: center;
}
.contact__submit input[type=submit] {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  padding: 11px 63px;
}

.contact__error-message {
  color: red;
  font-weight: 700;
  font-size: 16px;
  margin-top: 6px;
}

.sns-links__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  padding-top: 20px;
}

.sns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  padding: 10px 0;
}

.sns-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(45deg, #feda70, #fa7e11, #d62970, #962fb0, #4f5bd0);
  border-radius: 6px;
  width: 30px;
  height: 30px;
  height: 30px;
  margin: 0 auto;
}

.sns-facebook {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background: #1877C0;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

.sns-link__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
}

.footer__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px 0;
}