@charset "UTF-8";
:root {
  --font-family-en: "Montserrat", sans-serif;
  --font-family-ja: "Noto Sans JP", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.7;
  --color-base: #333;
  --background-base: #fff;
  --color--key1: #2082df;
  --color--key2: #2392db;
  --color--gradation1: linear-gradient(180deg, rgba(34, 142, 221, 0.9) 0%, rgba(43, 198, 201, 0.9) 100%);
  --color--gradation2: linear-gradient(90deg, #2188de 1.75%, #2bcbc6 97.75%);
  --color--gradation3: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
  --width-inner: 1200px;
}

body {
  font-family: var(--font-family-ja);
  font-size: var(--font-size-base);
  color: var(--color-base);
  line-height: var(--line-height-base);
  background: var(--background-base);
}

.inner {
  padding-inline: 15px;
}

.button {
  display: inline-block;
  text-align: center;
  min-width: 111px;
  max-width: 275px;
  font-weight: 700;
  padding: 9px 54px;
  border-radius: 48px;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.75%, #2188de), color-stop(97.75%, #2bcbc6));
  background: linear-gradient(90deg, #2188de 1.75%, #2bcbc6 97.75%);
  -webkit-box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.button:hover {
  opacity: 0.7;
  cursor: pointer;
}

.button--square {
  display: inline-block;
  padding: 8px 44px;
  border-radius: 2px;
  border: 1px solid #2392db;
  font-size: 14px;
  font-weight: 500;
  color: var(--color--key2);
  min-width: 181px;
}

.heading {
  color: var(--color--key1);
  text-align: left;
  padding-inline: 30px;
}
@media screen and (min-width: 768px) {
  .heading {
    max-width: 1120px;
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.heading-main {
  font-family: var(--font-family-en);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3.6px;
  display: block;
}

.heading-sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.66px;
  display: block;
}

.section {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 100px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 15px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: calc(var(--width-inner) + 40px);
    margin-inline: auto;
    padding-inline: 20px;
  }
}

.header__logo img {
  width: 160px;
  display: block;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 900px) {
  .header__list {
    gap: 46px;
  }
}

.header__item {
  padding: 26px 0;
  position: relative;
}

.header__link {
  font-weight: 500;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2px;
  background-color: var(--color--key1);
  border-radius: 6px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.header__button {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  padding: 9px 54px;
  border-radius: 48px;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.75%, #2188de), color-stop(97.75%, #2bcbc6));
  background: linear-gradient(90deg, #2188de 1.75%, #2bcbc6 97.75%);
  -webkit-box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
  color: #fff;
}

@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 40px;
  height: 20px;
  position: relative;
  z-index: 2000;
}
.drawer-icon--checked {
  position: fixed;
  top: 30px;
  right: 15px;
}
.drawer-icon--checked .drawer-icon__bar {
  background: #fff;
}
.drawer-icon--checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon--checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon--checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: 6px;
  background: var(--color--key1);
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 10px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 20px;
}

.drawer-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color--gradation1);
  text-align: center;
  padding-top: 130px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content--checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 1000;
}

.drawer-content__logo img {
  width: 180px;
}

.drawer-content__menu {
  margin-top: 60px;
}

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

.drawer-content__link {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.mv {
  max-width: calc(100% - 30px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .mv {
    max-width: 1180px;
    padding-inline: 30px;
  }
}

.mv__inner {
  padding: 20px 20px 60px;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding: 30px 20px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 102px;
  }
}

.mv__img {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__img {
    width: 58.0357142857%;
    text-align: right;
  }
}
.mv__img img {
  width: 398px;
}
@media screen and (min-width: 768px) {
  .mv__img img {
    width: 650px;
  }
}

.mv__content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__content {
    text-align: left;
    width: 39.6739130435%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.mv__logo img {
  width: 230px;
}

.mv__head {
  margin-top: 20px;
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .mv__head {
    font-size: 26px;
  }
}

.mv__text {
  margin-top: 20px;
  font-weight: 400;
  line-height: 2;
}

.mv__button {
  margin-top: 30px;
}

.blog {
  padding-top: 0;
}

.blog__inner {
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .blog__inner {
    max-width: 1214px;
    padding-inline: 47px;
  }
}
@media screen and (min-width: 900px) {
  .blog__inner {
    max-width: 1280px;
    padding-inline: 80px;
  }
}

.blog__items {
  margin-top: 58px;
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .blog__items {
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
}
@media screen and (min-width: 900px) {
  .blog__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-item__img {
  position: relative;
  z-index: 1;
}
.blog-item__img img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-item__label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px 32px;
  background: var(--color--key1);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.blog-item__body {
  padding: 12px 0 16px;
}

.blog-item__title {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
}

.blog-item__text {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
}

.blog__button {
  margin-top: 46px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog__button {
    margin-top: 60px;
  }
}
.news__inner {
  padding-inline: 15px;
}

.news-title {
  text-align: center;
  position: relative;
}
.news-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #2bc8c8;
}

@media screen and (min-width: 768px) {
  .news__content {
    max-width: 970px;
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.news__lists {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.news__list {
  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: 10px;
  border-radius: 10px;
  border-bottom: 1px solid #e3e3e3;
}
@media screen and (min-width: 768px) {
  .news__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    padding: 12px 0;
  }
}

.pagination {
  margin-top: 46px;
  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: 20px;
}
@media screen and (min-width: 320px) and (max-width: 375px) {
  .pagination {
    gap: 9px;
  }
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 0;
  }
}

.pagination__link {
  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;
  width: 36px;
  height: 36px;
  color: #707070;
  font-family: var(--font-family-en);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.44px;
  padding: 10px 12px;
  border: 1px solid #828282;
  background: #fff;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.pagination__link:hover {
  background-color: #228ddd;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .news__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 26px;
  }
}

.read__more {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .read__more {
    margin: 0;
  }
}
.read__more a {
  display: inline-block;
  color: var(--color--key2);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  border-radius: 2px;
  border: 1px solid var(--color--key2);
  padding: 5px 24px;
  -webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
.read__more a:hover {
  color: #fff;
  background-color: var(--color--key2);
  border-color: #fff;
}

.news-link__date {
  color: var(--color-base);
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .news-link__date {
    width: 119px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.news-link__title {
  color: #111;
  font-size: 15px;
  font-weight: 400;
}

.concept {
  padding-block: 60px;
}

.concept__inner {
  padding-inline: 20px;
}

.concept__content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__content {
    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;
    max-width: 1000px;
    padding-inline: 10px;
    margin-inline: auto;
    gap: 40px;
  }
}
@media screen and (min-width: 900px) {
  .concept__content {
    gap: 80px;
  }
}

.concept__img img {
  width: 310px;
}
@media screen and (min-width: 768px) {
  .concept__img img {
    width: 450px;
  }
}

.concept__body {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .concept__body {
    width: 450px;
  }
}

.concept__title {
  color: #228ddd;
  font-size: clamp(20px, 2.5vw, 25px);
  font-weight: 700;
}

.concept__text {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}

.concept__button {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .concept__button {
    text-align: left;
  }
}

.seminar__inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .seminar__inner {
    max-width: 1120px;
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.seminar__cards {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}

.seminar-card {
  padding: 24px 12px 30px;
  border-radius: 6px;
  border: 0px solid #707070;
  background: #fff;
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
}
@media screen and (min-width: 768px) {
  .seminar-card {
    padding: 17px;
  }
}

.seminar-card__link {
  color: #333;
}
@media screen and (min-width: 768px) {
  .seminar-card__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.seminar-card__img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .seminar-card__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.seminar-card__img img {
  width: 324px;
  height: auto;
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  .seminar-card__img img {
    width: 100%;
  }
}

.seminar-card__meta {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .seminar-card__meta {
    margin-top: 0;
  }
}

.seminar-card__label {
  display: inline-block;
  padding: 5px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: var(--color--key2);
}

.seminar-card__title {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
}

.seminar-card__text {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
}

.seminar-card__footer {
  text-align: right;
  margin-top: 22px;
}

.seminar-card__button--details {
  display: inline-block;
  padding: 8px 44px;
  border-radius: 2px;
  border: 1px solid #2392db;
  font-size: 14px;
  font-weight: 500;
  color: var(--color--key2);
}

.seminar__footer {
  text-align: center;
  margin-top: 46px;
}

.seminar-card__button--list {
  min-width: 130px;
}

.price {
  padding-block: 60px;
}

.plan__cards {
  margin-top: 46px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  overflow-x: hidden;
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  .plan__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 960px;
    padding-inline: 10px;
    margin-inline: auto;
    overflow-x: scroll;
  }
}
@media screen and (min-width: 768px) {
  .plan__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 960px;
    padding-inline: 10px;
    margin-inline: auto;
    overflow-x: scroll;
  }
}
@media screen and (min-width: 900px) {
  .plan__cards {
    overflow: hidden;
  }
}

.plan-card {
  padding: 30px 20px;
  border-radius: 10px;
  border: 0px solid #707070;
  background: #fff;
  min-width: 300px;
}
@media screen and (min-width: 768px) {
  .plan-card {
    padding-inline: 10px;
    max-width: calc(100% - 20px);
  }
}

.plan-card__table {
  width: 100%;
  max-width: 260px;
  table-layout: fixed;
  border-collapse: collapse;
  vertical-align: middle;
  margin-inline: auto;
}
.plan-card__table th,
.plan-card__table td {
  font-weight: 400;
  border-bottom: 1px solid #c2c2c2;
  padding: 6px 12px;
}
.plan-card__table th {
  text-align: left;
}
.plan-card__table td {
  text-align: right;
}
.plan-card__table thead th,
.plan-card__table thead td {
  text-align: center;
  border: none;
}
.plan-card__table thead th {
  color: var(--color--key2);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
}
.plan-card__table thead td {
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 30px;
}

.plan__price {
  color: var(--color--key2);
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  /* 133.333% */
  letter-spacing: 3.6px;
}

.plan-button {
  display: inline-block;
  margin-top: 30px;
  min-width: 200px;
  text-align: center;
}

.case {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .case {
    padding-block: 100px;
  }
}

.case__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .case__inner {
    margin-inline: auto;
    max-width: 1036px;
  }
}

.case__title .heading {
  padding-inline: 0;
}

.case__slider {
  margin-top: 50px;
}

.case-swiper {
  padding-inline: 8px;
  margin-inline: -8px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .case-swiper {
    padding-inline: 62px;
  }
}

.swiper-slide {
  width: 80%;
}

.case-card__img img {
  width: 100%;
}

.case-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.case-card-content {
  padding: 14px 10px;
}

.case-card-content__title {
  color: #228ddd;
  font-size: 15px;
}

.case-card-content__company {
  color: var(--color-base);
  font-size: 12px;
  font-weight: 700;
}

.case-card-content__category {
  font-size: 12px;
  color: #9d9d9d;
}

.case-card__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.case-card__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-inline: 0 !important;
  background: #e1e1e1;
  opacity: 1;
}
.case-card__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2f7dc8;
}

.case-card__prev,
.case-card__next {
  width: 44px;
  height: 44px;
  margin-top: -44px;
}
.case-card__prev::after,
.case-card__next::after {
  display: none;
}

.case-card__prev {
  left: 0;
  background: url(../img/prev.png) no-repeat center center/contain;
}

.case-card__next {
  right: 0;
  background: url(../img/next.png) no-repeat center center/contain;
}

.case__button {
  text-align: center;
  margin-top: 30px;
}

.cta {
  padding-block: 60px;
  background: var(--color--gradation3);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta {
    padding-block: 80px;
  }
}

.cta__title {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2.6px;
}

.cta__text {
  margin-top: 8px;
  color: #fff;
  letter-spacing: 1.6px;
}

.cta__button {
  margin-top: 17px;
}

.button--cta {
  background: transparent;
  border: 2px solid #fff;
  -webkit-box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
}

.faq {
  padding-block: 60px;
  background: #f4fbff;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

.faq__inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    max-width: 1120px;
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.faq__items {
  margin-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

/* デフォルトの矢印を非表示にする */
summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
}

.faq-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 10px;
  background: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
.faq-item__head:hover {
  opacity: 0.7;
}

.faq-item__head-icon {
  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;
  min-width: 50px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  padding: 0 15px;
  border-radius: 10px 0 0 10px;
  background: #238fdc;
}

.faq-item__head-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 10px 42px 10px 10px;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item__body {
  margin-top: 12px;
  margin-left: 50px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq-item__ans-text {
  font-size: 16px;
  line-height: 1.7;
  padding: 20px;
}

details[open] .faq-item__body {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.footer {
  padding-top: 46px;
  padding-bottom: 11px;
  background: var(--color--gradation3);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 1020px;
    padding-inline: 30px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer__logo {
    text-align: left;
  }
}
.footer__logo img {
  width: 160px;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 7.2916666667%;
    margin-top: 16px;
  }
}

.footer__info {
  margin-top: 24px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__info {
    margin-top: 0;
  }
}
.footer__info dt,
.footer__info dd {
  font-size: 14px;
}
.footer__info dt {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__info dt {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.footer__info dd {
  font-weight: 400;
}

.footer__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.footer__info-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__info-list-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer__nav {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 429px) and (max-width: 768px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 900px) {
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 16px;
    gap: 5px;
  }
}

.footer__nav-item {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__nav-item {
    padding: 0 3px;
    text-align: left;
  }
}
@media screen and (min-width: 900px) {
  .footer__nav-item {
    padding: 0 5px;
    border-right: 1px solid #fff;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .footer__nav-item:last-child {
    border-right: none;
  }
}
@media screen and (min-width: 1200px) {
  .footer__nav-item {
    padding: 0 10px;
    border-right: 1px solid #fff;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .footer__nav-item:last-child {
    border-right: none;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.footer__sns-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
}

.fa-brands {
  color: var(--color--key2);
}

.footer__copyright {
  margin-top: 36px;
  padding-inline: 11px;
}
.footer__copyright small {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}