@charset "UTF-8";
body.is-fixed {
  overflow: hidden;
}

.header {
  background: -webkit-gradient(linear, left top, left bottom, from(#eaf4f7), to(#fff));
  background: linear-gradient(180deg, #eaf4f7 0%, #fff 100%);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1210px;
    margin-right: auto;
    margin-left: auto;
  }
}

.header__logo img {
  width: 160px;
  display: block;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 44px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav {
    gap: 15px;
  }
}

.header__link {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__link:hover {
  opacity: 0.6;
}
.header__button {
  display: inline-block;
  padding: 9px 54px;
  color: #f6f7f7;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 3px;
  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);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__button:hover {
  opacity: 0.6;
}

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

.drawer-icon {
  position: relative;
  width: 40px;
  height: 20px;
  z-index: 51;
}
.drawer-icon.is-checked .header__icon-bar {
  background: #fff;
}
.drawer-icon.is-checked .header__icon-bar:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.drawer-icon.is-checked .header__icon-bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .header__icon-bar:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header__icon-bar {
  position: absolute;
  width: 40px;
  height: 3px;
  background: #2082e0;
  top: 0;
  left: 0;
  -webkit-transition: top 0.3s linear, background 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, background 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, background 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, background 0.3s linear, -webkit-transform 0.3s linear;
}
.header__icon-bar:nth-child(2) {
  top: 10px;
}
.header__icon-bar:nth-child(3) {
  top: 20px;
}

.drawer-content {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 142, 221, 0.9)), to(rgba(43, 198, 201, 0.9)));
  background: linear-gradient(180deg, rgba(34, 142, 221, 0.9) 0%, rgba(43, 198, 201, 0.9) 100%);
  padding-top: 130px;
  text-align: center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  -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.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

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

.drawer-content__link {
  display: block;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}
.drawer-content__link:nth-child(1) {
  padding-top: 60.05px;
}
.drawer-content__link:nth-child(2), .drawer-content__link:nth-child(3), .drawer-content__link:nth-child(4) {
  padding-top: 30px;
}

.fv {
  background: -webkit-gradient(linear, left top, left bottom, from(#eaf4f7), to(#fff));
  background: linear-gradient(180deg, #eaf4f7 0%, #fff 100%);
}

.fv__inner {
  padding-top: 20px;
  padding-bottom: 80px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    position: relative;
    padding-top: 30px;
    padding-bottom: 50px;
    padding-inline: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fv__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__image {
    position: absolute;
    text-align: right;
    top: 30px;
    left: calc(50% - 90px);
  }
}
.fv__image img {
  width: 398px;
}
@media screen and (min-width: 768px) {
  .fv__image img {
    width: 650px;
  }
}

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

.fv__logo img {
  width: 250px;
}

.fv__head {
  margin-top: 20px;
}

.fv__head-title {
  color: #2b2b2b;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .fv__head-title {
    text-align: left;
  }
}

.fv__head-text {
  margin-top: 20px;
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .fv__head-text {
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__head-text {
    font-size: 13px;
  }
}

.fv__button {
  margin-top: 30px;
  display: inline-block;
  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);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.fv__button:hover {
  opacity: 0.6;
}
.fv__button a {
  color: #f6f7f7;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 3px;
}

.blog {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .blog {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.blog__inner {
  padding-right: 38px;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .blog__inner {
    max-width: 1280px;
    padding-right: 80px;
    padding-left: 80px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog__inner {
    padding-right: 47px;
    padding-left: 47px;
    margin-right: auto;
    margin-left: auto;
  }
}

.blog__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .blog__head {
    -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: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog__head {
    margin-left: 33px;
  }
}

.blog__title {
  color: #228ddd;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 3.6px;
}
.blog__sub {
  color: #228bde;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 2.66px;
}

.blog__content {
  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: 16px;
}
@media screen and (min-width: 768px) {
  .blog__content {
    margin-top: 58px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .blog__content {
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog__card {
  border-radius: 4px;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
  padding: 12px 15px 16px;
}

.blog__image {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.blog__image img {
  width: 100%;
}

.card__label {
  padding: 3px 32px;
  position: absolute;
  right: 0;
  color: var(--rgb-255255255, #fff);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  background: #2392db;
}

.card__title {
  margin-top: 6px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.card__test {
  margin-top: 4px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.card__button {
  margin-top: 46px;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.card__button:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .card__button {
    margin-top: 60px;
  }
}
.card__button a {
  display: inline-block;
  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);
  padding: 9px 54px;
  color: #f6f7f7;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 3px;
}

.news__inner {
  padding: 60px 15px;
}
@media screen and (min-width: 768px) {
  .news__inner {
    padding: 100px 175px;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .news__inner {
    padding-left: 18.8172043011%;
    padding-right: 18.8172043011%;
  }
}

.news__title {
  color: #238fdc;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 3px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 36px;
    letter-spacing: 3.6px;
  }
}
.news__title::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #2bc8c8;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.news__lists {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .news__lists {
    margin-top: 60px;
  }
}

.news__list {
  padding-top: 10px;
  padding-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .news__list {
    padding-top: 12px;
    padding-bottom: 12px;
    max-width: 930px;
    margin-right: auto;
    margin-left: auto;
  }
}
.news__list:nth-child(5) {
  border-bottom: 1px solid #e3e3e3;
}
.news__list:nth-child(n+2) {
  position: relative;
}
.news__list::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e3e3e3;
  top: 0;
  left: 0;
}

.news__link {
  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;
}
@media screen and (min-width: 768px) {
  .news__link {
    -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: 30px;
  }
}
.news__date {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 16px;
    min-width: 119px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
  }
}

.news__text {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .news__text {
    font-size: 16px;
  }
}

.news__label {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 327px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .news__label {
    margin-right: 0;
    margin-left: 0;
    margin-top: 26px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .news__label {
    max-width: 280px;
  }
}

.news__num {
  border: 1px solid var(--828282, #828282);
  background: var(--ffffff, #fff);
  width: 36px;
  height: 36px;
  text-align: center;
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 1.44px;
  cursor: pointer;
}
.news__button {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__button {
    margin-top: -37px;
    text-align: right;
  }
}
.news__button a {
  display: inline-block;
  padding: 5px 24px;
  border-radius: 2px;
  border: 1px solid #2392db;
  -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: #2392db;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 3px;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.news__button a:hover {
  background: #2392db;
  color: #fff;
}

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

.concept__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
  }
}

.concept__main {
  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;
}
@media screen and (min-width: 768px) {
  .concept__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.concept__image {
  text-align: center;
}
.concept__image img {
  width: 310px;
}
@media screen and (min-width: 768px) {
  .concept__image img {
    width: 450px;
  }
}

.concept__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: 30px;
  max-width: 388px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .concept__content {
    max-width: 45.9183673469%;
  }
}

.concept__title {
  color: #228ddd;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .concept__title {
    font-size: 26px;
  }
}

.concept__text {
  display: block;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}

.concept__button {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__button {
    margin-top: 6px;
    text-align: left;
  }
}
.concept__button a {
  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);
  display: inline-block;
  color: #f6f7f7;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 3px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.concept__button a:hover {
  opacity: 0.6;
}

.seminar {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .seminar {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

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

.seminar__head {
  display: block;
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .seminar__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}

.seminar__title {
  color: #228ddd;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 3.6px;
}

.seminar__sub {
  color: #228bde;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 2.66px;
}

.seminar__boxes {
  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;
}
@media screen and (min-width: 768px) {
  .seminar__boxes {
    margin-top: 38px;
    gap: 40px;
  }
}

.seminar-box {
  border-radius: 6px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
  -webkit-box-shadow: 5px 7px 34px 0px #f1f1f1;
          box-shadow: 5px 7px 34px 0px #f1f1f1;
  padding: 24px 12px 30px;
}
@media screen and (min-width: 768px) {
  .seminar-box {
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}

.seminar-box__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .seminar-box__image {
    width: 29.6296296296%;
  }
}
.seminar-box__image img {
  width: 324px;
}

.seminar-box__body {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .seminar-box__body {
    width: 62.7777777778%;
    margin-top: 0;
  }
}

.seminar-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .seminar-box__head {
    gap: 10px;
  }
}

.seminar-box__tag {
  color: var(--rgb-255255255, #fff);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 2px;
  background: #2392db;
  padding: 6px 12px 5px;
}

.seminar-box__data {
  color: var(--rgb-515151, #333);
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.seminar__title-box {
  margin-top: 14px;
}

.seminar-box__title {
  color: var(--rgb-515151, #333);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.seminar-box__text {
  margin-top: 14px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.seminar-box__button {
  text-align: right;
  margin-top: 30px;
}
.seminar-box__button a {
  text-align: center;
  padding: 8px 44px;
  border-radius: 2px;
  border: 1px solid #2392db;
  display: inline-block;
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.seminar-box__button a:hover {
  background: #2392db;
  color: #fff;
}

.seminar__button {
  margin-top: 46px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .seminar__button {
    margin-top: 40px;
  }
}
.seminar__button a {
  display: inline-block;
  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: #f6f7f7;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 3px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.seminar__button a:hover {
  opacity: 0.6;
}

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

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

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

.price__title {
  color: #228ddd;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 3.6px;
}

.price__sub {
  color: #228bde;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 2.66px;
}

.price__boxes {
  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: 30px;
}
@media screen and (min-width: 768px) {
  .price__boxes {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.price__box {
  border-radius: 10px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
}

.price-box {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .price-box {
    padding-right: 0;
    padding-left: 0;
  }
}

.price-box__head {
  text-align: center;
}

.price-box__plan {
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.price-box__price {
  margin-top: 10px;
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 3.6px;
}

.price-1 {
  color: var(--rgb-515151, #333);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.price__table {
  margin-top: 30px;
  border-collapse: collapse;
  table-layout: fixed;
  width: 261px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .price__table {
    width: 87%;
    margin-top: 30px;
  }
}
.price__table th {
  text-align: left;
  padding: 6px 12px;
  vertical-align: middle;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .price__table th {
    font-size: 12px;
    padding: 6px 10px;
  }
}
.price__table td {
  text-align: right;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  padding: 6px 12px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .price__table td {
    font-size: 12px;
    padding: 6px 10px;
  }
}
.price__table tr {
  border-bottom: 1px solid #c2c2c2;
}

.price__button {
  margin-top: 30px;
  text-align: center;
}
.price__button a {
  padding: 9px 54px;
  display: inline-block;
  border-radius: 50px;
  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: #f6f7f7;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 3px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.price__button a:hover {
  opacity: 0.6;
}

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

.qa__inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .qa__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
  }
}

.qa__title {
  color: #238fdc;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  text-align: center;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 3.6px;
  position: relative;
}
.qa__title::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #2bc8c8;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.qa__boxes {
  margin-top: 51px;
  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;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 48px;
    gap: 18px;
  }
}

.qa-box {
  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;
}
@media screen and (min-width: 768px) {
  .qa-box {
    gap: 0px;
  }
}
.qa-box.is-open .qa-box__head::after {
  background: url(../img/close-icon.png) no-repeat center center/contain;
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  border: 0px solid #707070;
  background: var(--rgb-255255255, #fff);
  position: relative;
}
.qa-box__head .is-size {
  width: 50px;
  height: 150px;
  padding: 60px 15px;
}
@media screen and (min-width: 768px) {
  .qa-box__head .is-size {
    width: 71px;
    height: 78px;
    padding: 25px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 18.039px;
  background: url(../img/open-icon.png) no-repeat center center/contain;
  margin-top: -8px;
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    height: 20px;
    margin-top: -10px;
    right: 14px;
  }
}

.qa-box__icon {
  padding: 7px 15px;
  display: block;
  width: 50px;
  height: 46px;
  border-radius: 10px 0px 0px 10px;
  background: #238fdc;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .qa-box__icon {
    padding: 10px 25px;
    width: 71px;
    height: 51px;
  }
}

.qa-box__text {
  display: block;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 25.5px */
  padding: 10px 42px 10px 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .qa-box__text {
    font-size: 16px;
    padding: 12px 55px 12px 15px;
  }
}

.qa-box__a-body {
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-box__a-body {
    margin-top: 6px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .qa-box__a {
    margin-left: 41px;
  }
}

.qa-box__a-text {
  padding: 10px;
  display: block;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    font-size: 16px;
    padding: 17px 14px;
  }
}

.casestudy {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .casestudy {
    padding-top: 100px;
  }
}

@media screen and (min-width: 768px) {
  .casestudy__inner {
    max-width: 1056px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .case-head {
    margin-left: 0;
  }
}

.casestudy__slide {
  margin-top: 50px;
}

.swiper {
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .swiper {
    padding-left: 0;
    max-width: 996px;
    margin-left: auto;
    margin-right: auto;
  }
}

.swiper-wrapper {
  padding-bottom: 42px;
}

.case__body {
  margin-top: 14px;
  border-radius: 4px;
  background: var(--ffffff, #fff);
}

.case__body-title {
  color: #228ddd;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 25.5px */
}

.case__body__sub {
  margin-top: 10px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 20.4px */
}

.case__body-work {
  margin-top: 10px;
  color: #9d9d9d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 20.4px */
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  margin-top: -40px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  left: 12px;
  background: url(../img/prev.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev {
    left: -36px;
  }
}

.swiper-button-next {
  right: 10px;
  background: url(../img/next.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .swiper-button-next {
    right: -18px;
  }
}

.case__button {
  text-align: center;
  margin-top: 30px;
}
.case__button a {
  display: inline-block;
  color: #2392db;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 3px;
  border-radius: 2px;
  border: 1px solid #2392db;
  -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);
  padding: 9px 54px;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.case__button a:hover {
  background: #2392db;
  color: #fff;
}

.tab {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .tab {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 768px) {
  .tab__inner {
    max-width: 960px;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}

.tab__head {
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .tab__head {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.tab__title {
  color: #228ddd;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 61.2px */
  letter-spacing: 3.6px;
}

.tab__sub {
  color: #228bde;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 2.66px;
}

.tab__content {
  margin-top: 46px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .tab__content {
    margin-top: 80px;
    padding-inline: 0;
  }
}

.tab__list-wrap {
  border: 2px solid #2392db;
  background: #fff;
  position: relative;
}

.tab__list {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .tab__list {
    top: -40px;
  }
}

.tab__list-item {
  width: 122px;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  padding: 9px 29px 10px;
  cursor: pointer;
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
}
@media screen and (min-width: 768px) {
  .tab__list-item {
    width: 200px;
    padding-top: 26px;
    padding-bottom: 26px;
  }
}
.tab__list-item.is-list-active {
  background: #2392db;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
}

.tab__contents {
  display: none;
}

.is-contents-active {
  display: block;
}

.contents__head {
  margin-top: 60px;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents__head {
    margin-top: 90px;
  }
}

.contents__title {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 37.4px */
}

.contents__text {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
}
@media screen and (min-width: 768px) {
  .contents__text {
    margin-bottom: 40px;
  }
}

.tab-table {
  border: 1px solid #dbdbdb;
  border-collapse: collapse;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .tab-table {
    display: none;
  }
}

.contents__table {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .contents__table {
    padding-bottom: 97px;
  }
}

.tab-th {
  width: 160px;
  height: 54px;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #dbdbdb;
  background: #f2f2f2;
  color: var(--333333, #333);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
}

.tab-td {
  padding-left: 10px;
  width: 160px;
  height: 54px;
  vertical-align: middle;
  border: 1px solid #dbdbdb;
  background: var(--ffffff, #fff);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
}

.content__box {
  display: none;
}
@media screen and (min-width: 768px) {
  .content__box {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    place-content: center;
    max-width: 860px;
    padding-right: 30px;
    padding-left: 30px;
    height: 162px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    margin-right: auto;
    margin-left: auto;
  }
}

.box__title1,
.box__title2,
.box__title3,
.box__title4,
.box__title5 {
  padding-top: 14px;
  padding-bottom: 14px;
  border: 1px solid #dbdbdb;
  background: #f2f2f2;
  color: var(--333333, #333);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
}

.box__text1,
.box__text2,
.box__text3,
.box__text4,
.box__text5 {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 14px;
  border: 1px solid #dbdbdb;
  background: var(--ffffff, #fff);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
}

.box__title5 {
  grid-column: 1/2;
}

.box__text5 {
  grid-column: 2/5;
}

@media screen and (min-width: 768px) {
  .list__year {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.list__items {
  padding-top: 44px;
  padding-left: 30px;
  padding-bottom: 112px;
}
@media screen and (min-width: 768px) {
  .list__items {
    padding-top: 80px;
    padding-bottom: 46px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.list__item {
  padding-left: 17px;
  position: relative;
  margin-top: 16px;
  list-style: none;
  position: relative;
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
}
.list__item::before {
  border-radius: 50%; /*丸くする*/
  width: 9px; /*点の幅*/
  height: 9px; /*点の高さ*/
  display: block;
  position: absolute; /*絶対配置*/
  left: 0; /*点の位置*/
  top: 0.6em; /*点の位置*/
  content: "";
  background: #2bcbc6; /*点の色*/
}
@media screen and (min-width: 768px) {
  .list__item::before {
    left: calc(50% - 92px);
  }
}

.list__text {
  margin-top: 2px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
  padding-left: 17px;
}

.basic {
  padding: 58px 30px 168px;
}
@media screen and (min-width: 768px) {
  .basic {
    padding: 123px 150px 212px;
  }
}

.besic__title {
  display: block;
  color: #2392db;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
}

.basic__text {
  display: block;
  margin-top: 14px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
}
@media screen and (min-width: 768px) {
  .basic__text {
    margin-top: 16px;
  }
}

.footer {
  padding-top: 46px;
  background: -webkit-gradient(linear, left top, right top, from(#2390dc), to(#2bc8c8));
  background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 64px;
  }
}

.footer__inner {
  max-width: 1060px;
  padding-left: 30px;
  padding-right: 30px;
  margin-right: auto;
  margin-left: auto;
}

.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;
    gap: 87px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__content {
    gap: 30px;
  }
}

@media screen and (min-width: 768px) {
  .footer__head {
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__head {
    padding-left: 0;
    padding-right: 10px;
  }
}

.footer__head__imgae img {
  width: 160px;
}

.footer__head__text {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .footer__head__text {
    margin-top: 16px;
  }
}

.footer__head__access {
  color: var(--ffffff, #fff);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.footer__head__tel {
  color: var(--ffffff, #fff);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.footer__head__fax {
  color: var(--ffffff, #fff);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.footer__lists {
  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: 768px) {
  .footer__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__lists {
    gap: 20px;
  }
}

.footer__link {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__link:hover {
  opacity: 0.6;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__link {
    font-size: 11px;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__sns {
    padding-left: 10px;
    padding-right: 0;
  }
}

.footer__twitter {
  width: 30px;
  height: 30px;
}
.footer__twitter img {
  width: 100%;
}

.footer__copyright {
  margin-top: 36px;
  padding-top: 11px;
  padding-bottom: 11px;
  color: var(--ffffff, #fff);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}