@charset "UTF-8";
/* 基本スタイル・変数など */
.u-color-accent {
  color: #390e79;
}

.p-top__card {
  background: linear-gradient(45deg, #8e2de2 0%, #2b9fff 100%);
  color: #fff;
  padding: 24px;
  border-radius: 16px;
  font-weight: 700;
  text-align: center;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.is-pc {
  display: none;
}
@media screen and (min-width: 767px) {
  .is-pc {
    display: block;
  }
}

.is-sp {
  display: block;
}
@media screen and (min-width: 767px) {
  .is-sp {
    display: none;
  }
}

.inner {
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 40px;
  }
}

.inner--wide {
  max-width: 1200px;
}

.color-accent {
  color: #390e79;
}

.text-sp {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (min-width: 767px) {
  .text-sp {
    font-size: 1rem;
  }
}

@-webkit-keyframes slide-tsukushi {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes slide-tsukushi {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.fadein-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.fadein-up.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes slide-ltr {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slide-ltr {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slide-rtl {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes slide-rtl {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*=============================================================
桜の花びらのアニメーション
==============================================================*/
/* 桜を表示するコンテナのスタイル */
.cherry-blossom-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

/* 桜の花びらのスタイル */
.petal {
  position: absolute;
  background-color: #ffc0cb; /* 花びらの色 */
  border-radius: 150% 0 150% 0;
  -webkit-animation: animate-petal 10s linear;
          animation: animate-petal 10s linear;
}

.petal::after {
  content: "";
  position: absolute;
  top: -14%;
  left: -10%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffc0cb;
  border-radius: 150% 0 150% 0;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

/* 花びらが降るアニメーション */
@-webkit-keyframes animate-petal {
  0% {
    top: 0;
    opacity: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100vh;
    -webkit-transform: rotate(3000deg);
            transform: rotate(3000deg);
  }
}
@keyframes animate-petal {
  0% {
    top: 0;
    opacity: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100vh;
    -webkit-transform: rotate(3000deg);
            transform: rotate(3000deg);
  }
}
/* ヘッダーのスタイル */
.link-opacity {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.link-opacity :hover {
  opacity: 0.6;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 55px;
  z-index: 999;
  border-top: 3px solid #7129d1;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.6s ease 0.2s, -webkit-transform 0.6s ease 0.2s;
  transition: opacity 0.6s ease 0.2s, -webkit-transform 0.6s ease 0.2s;
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s, -webkit-transform 0.6s ease 0.2s;
}
@media screen and (min-width: 900px) {
  .header {
    height: 110px;
  }
}
.header.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__inner {
  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;
  padding: 0 3px 0 13px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding: calc(19 / 1440 * 100vw) calc(14 / 1440 * 100vw) 0 calc(24 / 1440 * 100vw);
  }
}

.header__logo {
  position: relative;
  width: 120px;
}
@media screen and (min-width: 900px) {
  .header__logo {
    width: 241px;
  }
}

.header.is-checked .header__logo img {
  opacity: 0;
}

.header.is-checked .header__logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/top/tsukushikai_icon_02.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header__nav {
  position: relative;
  padding-left: 50px;
  padding-block: 27px;
  padding-right: 363px;
  display: none;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  border-radius: 40px;
  color: #333;
  text-decoration: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__nav-list {
  gap: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item {
  position: relative;
}
.header__nav-item ::before {
  content: "●";
  color: #6e1a6a;
  font-size: 11px;
  margin-right: 4px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-54%);
          transform: translateY(-54%);
  left: -20px;
}
.header__nav-item a {
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .header__nav-item a {
    font-size: 18px;
  }
}

.header__nav-item a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px; /* 下線の余白調整 */
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header__nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #6e1a6a; /* テキストと同じ色 */
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.header__nav-item a:hover::after {
  width: 100%;
}

.header__line-button {
  display: none;
  position: absolute;
  right: -4px;
}
@media screen and (min-width: 767px) {
  .header__line-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.line-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 320px;
  height: 90px;
  border-radius: 9999px;
  background-color: #00b900;
  padding-left: 7px;
}

.line-button__text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  font-size: clamp(14px, 18 / 1440 * 100vw, 18px);
  color: #fff;
  line-height: 1.4;
  text-align: center;
}
.line-button__text span {
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .line-button__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 232px;
    word-break: break-word;
  }
}

.line-button__text span:nth-child(1) {
  padding-right: 30px;
}

.line-button__icon {
  width: 57px;
  height: 57px;
}

.header__line-icon-sp {
  margin-left: auto;
  padding-right: 10px;
  display: block;
}
@media screen and (min-width: 1200px) {
  .header__line-icon-sp {
    display: none;
  }
}

.line-icon-sp img {
  width: 46px;
  height: 46px;
}
@media screen and (min-width: 900px) {
  .line-icon-sp img {
    width: 70px;
    height: 70px;
  }
}

.header__drawer-button {
  display: block;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  position: relative;
}
@media screen and (min-width: 900px) {
  .header__drawer-button {
    display: none;
  }
}

.header__drawer-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
}

/*=============================================================
drawer
==============================================================*/
.drawer-content {
  background: #7129d1;
  color: #fff;
  font-size: clamp(14px, 23 / 1440 * 100vw, 18px);
  font-weight: 500;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 120px;
  z-index: 210;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer-content.is-checked {
  opacity: 1;
  visibility: visible;
}

.drawer-content__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer-content__list {
  width: 270px;
  margin-inline: auto;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed;
}

.drawer-content__list:nth-child(1) {
  border-top: 1px dashed;
}

.drawer-content__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer__icon {
  position: relative;
  top: 0;
  width: 55px;
  height: 55px;
  background: #7129d1;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 900px) {
  .drawer__icon {
    width: 90px;
    height: 90px;
  }
}
.drawer__icon.is-checked {
  background: #fff;
}
@media screen and (min-width: 1200px) {
  .drawer__icon {
    display: none;
  }
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 50%;
  left: 22%;
  width: 35px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #7129d1;
}
@media screen and (min-width: 900px) {
  .drawer__icon.is-checked .drawer-icon__bar:nth-of-type(1) {
    width: 45px;
    left: 27%;
  }
}
.drawer__icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
  width: 35px;
  left: 20%;
  background: #7129d1;
}
@media screen and (min-width: 900px) {
  .drawer__icon.is-checked .drawer-icon__bar:nth-of-type(3) {
    width: 45px;
    left: 25%;
  }
}

.drawer-icon__bar {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background: #fff;
  -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;
}
@media screen and (min-width: 900px) {
  .drawer-icon__bar {
    width: 55px;
  }
}
.drawer-icon__bar:nth-of-type(1) {
  top: 35%;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 40% px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 65%;
}

.drawer-content__list-text {
  font-size: 18px;
}

.drawer__line-button {
  margin-top: 50px;
}

.drawer__line-button {
  max-width: 350px;
  margin-inline: auto;
}
@media screen and (min-width: 767px) {
  .drawer__line-button {
    max-width: 400px;
  }
}

.line-button--drawer {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 9999px;
  background-color: #00b900;
  padding-left: 7px;
  -webkit-transition: -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  transition: transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  width: 100%;
  height: 57px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 15px 0 20px;
  -webkit-box-shadow: 0 6px 0 #009900;
          box-shadow: 0 6px 0 #009900;
  z-index: 3;
}
.line-button--drawer:active {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-box-shadow: 0 3px 0 #009900;
          box-shadow: 0 3px 0 #009900;
}

.line-button__icon--drawer {
  width: 36px;
  height: 36px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 20%;
}
.line-button__icon--drawer img {
  width: 100%;
  height: 100%;
}

.line-button__arrow--drawer {
  padding-top: 10px;
  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;
  font-size: 1.5rem;
  margin-left: 12px;
}
.line-button__arrow--drawer svg {
  width: 35px;
  height: 35px;
}

.drawer-button__text-main {
  font-size: 18px;
  font-weight: bold;
}

/*=============================================================
  footer
  ==============================================================*/
.footer {
  padding-inline: 20px;
  padding-top: 70px;
  padding-bottom: 40px;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 150px;
  }
}

.footer__inner {
  max-width: 1080px;
  margin-inline: auto;
}
@media screen and (min-width: 767px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 90px;
  }
}

.footer__info {
  text-align: left;
}

.footer__logo img {
  width: 200px;
  height: auto;
}

.footer__address {
  margin-top: 10px;
}

.footer__address-name {
  font-size: 12px;
  margin-bottom: 30px;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .footer__address-name {
    margin-bottom: 18px;
    font-size: 14px;
  }
}

.footer__address-text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .footer__address-text {
    font-size: 16px;
  }
}

.footer__nav {
  margin-top: 80px;
}
@media screen and (min-width: 767px) {
  .footer__nav {
    margin-top: 0;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
}
@media (max-width: 365px) {
  .footer__nav-list {
    gap: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__nav-list {
    gap: 90px;
  }
}

.footer__nav-group {
  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;
}

.footer__nav-sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .footer__nav-sublist {
    gap: 34px;
  }
}

.footer__nav-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-left: 16px;
}
@media (max-width: 365px) {
  .footer__nav-link {
    font-size: 11px;
  }
}
@media screen and (min-width: 900px) {
  .footer__nav-link {
    font-size: 18px;
  }
}

.footer__nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #800080;
  border-radius: 50%;
}

.footer__copyright {
  margin-top: 40px;
  padding: 30px 0 20px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #333;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 14px;
    padding: 0 0 20px;
  }
}

@media screen and (min-width: 900px) {
  .footer__info {
    text-align: left;
  }
  .footer__nav {
    margin-top: 0;
  }
  .footer__nav-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer__nav-item {
    text-align: left;
  }
}
/* 固定フッター */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #eef1fd;
  z-index: 999;
  border: 3px solid #7129d1;
  border-top: none;
}
@media screen and (min-width: 900px) {
  .fixed-footer {
    height: 117px;
  }
}

.fixed-footer__inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding-inline: 60px;
  padding-block: 10px;
  max-width: 480px;
  margin-inline: auto;
}
@media screen and (min-width: 767px) {
  .fixed-footer__inner {
    padding-inline: 80px;
  }
}
@media screen and (min-width: 900px) {
  .fixed-footer__inner {
    max-width: 915px;
  }
}
@media screen and (min-width: 1200px) {
  .fixed-footer__inner {
    max-width: 960px;
  }
}

.footer__button {
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer__button {
    display: none;
  }
}

.line-button {
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 20%;
}

.line-button--footer {
  position: relative;
  width: 100%;
  height: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 24px;
  -webkit-box-shadow: 0 6px 0 #009900;
  box-shadow: 0 6px 0 #009900;
  z-index: 3;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .line-button--footer {
    height: 70px;
    max-width: 643px;
  }
}

.line-button--footer .line-button__icon--footer {
  position: relative;
  left: -79px;
  width: 32px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 20%;
  margin-right: -10px;
}
@media (max-width: 365px) {
  .line-button--footer .line-button__icon--footer {
    width: calc(32 / 375 * 100vw);
    left: calc(-79 / 375 * 100vw);
  }
}
@media screen and (min-width: 900px) {
  .line-button--footer .line-button__icon--footer {
    width: 40px;
    height: 40px;
  }
}
.line-button--footer .line-button__icon--footer img {
  width: 100%;
  height: auto;
}

.footer__button-text {
  position: absolute;
  width: 70%;
  top: 50%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.footer__button-text-main {
  font-weight: bold;
  font-size: 9px;
}
@media (max-width: 365px) {
  .footer__button-text-main {
    font-size: 2.4657534247vw;
  }
}
@media screen and (min-width: 900px) {
  .footer__button-text-main {
    font-size: 18px;
  }
}

@media screen and (min-width: 900px) {
  .is-pc-size {
    font-size: 22px;
  }
}

.footer__button-text-sub {
  font-weight: bold;
  font-size: 12px;
}
@media (max-width: 365px) {
  .footer__button-text-sub {
    font-size: 3.0136986301vw;
  }
}
@media screen and (min-width: 900px) {
  .footer__button-text-sub {
    display: none;
  }
}

.footer__button-text-pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__button-text-pc {
    display: block;
    font-size: 22px;
  }
}

.line-button__arrow--footer {
  padding-top: 10px;
  position: relative;
  left: 100px;
}
@media (max-width: 365px) {
  .line-button__arrow--footer {
    width: 7.397260274vw;
    height: 7.397260274vw;
    left: 27.397260274vw;
    padding-top: 0;
  }
}
.line-button__arrow--footer svg {
  width: 27px;
  height: 27px;
}

.footer__bg-left {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 136px;
  height: 151px;
}
@media (max-width: 365px) {
  .footer__bg-left {
    width: 37.2602739726vw;
    height: 41.3698630137vw;
  }
}
.footer__bg-left img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .footer__bg-left {
    display: none;
  }
}

.footer__bg-right {
  position: absolute;
  bottom: -26px;
  right: -7px;
  width: 109px;
  height: 113px;
}
@media (max-width: 365px) {
  .footer__bg-right {
    width: 29.8630136986vw;
    height: 30.9589041096vw;
  }
}
.footer__bg-right img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .footer__bg-right {
    display: none;
  }
}

/* 固定フッターPC */
.footer__button-pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__button-pc {
    position: absolute;
    right: 3px;
    top: 20%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    max-width: 607px;
    background-color: #00b900; /* LINEカラーなどに合わせて */
    border-radius: 40px;
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    color: #fff;
    -webkit-box-shadow: 0 6px 0 #009900;
            box-shadow: 0 6px 0 #009900;
    z-index: 999;
    -webkit-transition: -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
    transition: -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    transition: transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
    -webkit-animation: bounce 2s ease-in-out infinite;
            animation: bounce 2s ease-in-out infinite;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .footer__button-pc {
    right: -46px;
    max-width: 643px;
  }
}
.footer__button-pc:active {
  -webkit-transform: translateY(calc(-50% + 6px));
          transform: translateY(calc(-50% + 6px));
  -webkit-box-shadow: none;
          box-shadow: none;
}

.line-button--footer-pc {
  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;
  text-decoration: none;
  color: #fff;
  width: 100%;
  height: 100%;
}

.line-button__icon--footer-pc {
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 20%;
  position: relative;
  left: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.line-button__icon--footer-pc img {
  width: 41px;
  height: 41px;
}

.footer__button-text-pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__button-text-pc {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    gap: 10px;
    height: 100%;
    font-size: 22px;
    font-weight: bold;
  }
}
.footer__button-text-pc p {
  line-height: 1.4;
}

@media screen and (min-width: 900px) {
  .footer__button-text-main-pc {
    font-size: 18px;
    font-weight: bold;
  }
}

@media screen and (min-width: 900px) {
  .footer__button-text-sub-pc {
    margin-top: 25px;
    font-size: 22px;
    font-weight: bold;
  }
}

.line-button__arrow--footer-pc {
  padding-top: 10px;
  position: relative;
  left: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.line-button__arrow--footer-pc svg {
  width: 37px;
  height: 37px;
}

.is-pc-size {
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .is-pc-size {
    font-size: 22px;
  }
}

.footer__bg-pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__bg-pc {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
  }
  .footer__bg-pc img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer__bg-pc {
    width: 375px;
  }
}

.footer__bg-pc-text-wrap {
  background: #fff;
  padding: 6px;
  border-radius: 10px;
  position: absolute;
  top: 98px;
  left: 24px;
}
@media screen and (min-width: 1200px) {
  .footer__bg-pc-text-wrap {
    top: 136px;
    left: 24px;
  }
}

.footer__bg-pc-text {
  color: #6618cd;
  font-size: 13px;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .footer__bg-pc-text {
    font-size: 16px;
  }
}

.line-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 9999px;
  background-color: #00b900;
  padding-left: 7px;
  -webkit-transition: -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  transition: transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.line-button:active {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-box-shadow: 0 3px 0 #009900;
          box-shadow: 0 3px 0 #009900;
}

/* ▼ 新しい大ボタンサイズ指定 */
.line-button--large {
  position: relative;
  width: 100%;
  height: 57px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 24px;
  -webkit-box-shadow: 0 6px 0 #009900;
          box-shadow: 0 6px 0 #009900;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .line-button--large {
    height: 90px;
    padding: 0 32px;
  }
}

.line-button__icon {
  width: 41px;
  height: 41px;
}
@media screen and (min-width: 900px) {
  .line-button__icon {
    width: 70px;
    height: 70px;
  }
}
.line-button__icon img {
  width: 100%;
  height: 100%;
}

.line-button--large .line-button__text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .line-button--large .line-button__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: calc(100% - 48px - 64px - 8px);
    word-break: break-word;
  }
}

.line-button--large .line-button__icon {
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 20%;
}
@media screen and (min-width: 900px) {
  .line-button--large .line-button__icon {
    width: 75px;
    height: 75px;
  }
}

.line-button__text-main {
  font-size: 10px;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .line-button__text-main {
    font-size: 16px;
    margin-bottom: -8px;
  }
}

.line-button__text-sub {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .line-button__text-sub {
    font-size: 26px;
  }
}

.line-button__text span:nth-child(1) {
  padding-right: 30px;
}

.line-button__arrow {
  padding-top: 10px;
  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;
  font-size: 1.5rem;
  margin-left: 12px;
}
.line-button__arrow svg {
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 900px) {
  .line-button__arrow svg {
    width: 48px;
    height: 48px;
  }
}

.line-button-bounce-wrapper {
  -webkit-animation: bounce 2s ease-in-out infinite;
          animation: bounce 2s ease-in-out infinite;
  will-change: transform;
}

.shine-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: linear-gradient(-25deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: translateX(-25%) rotate(-25deg);
          transform: translateX(-25%) rotate(-25deg);
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

.shine-layer.shining {
  -webkit-animation: shine 0.8s ease-in-out forwards;
          animation: shine 0.8s ease-in-out forwards;
}

.shine-effect {
  -webkit-animation: bounce 2s ease-in-out infinite;
          animation: bounce 2s ease-in-out infinite;
}

.shine-effect-footer {
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

@-webkit-keyframes shine {
  0% {
    -webkit-transform: translateX(-100%) rotate(-25deg);
            transform: translateX(-100%) rotate(-25deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100%) rotate(-25deg);
            transform: translateX(100%) rotate(-25deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100%) rotate(-25deg);
            transform: translateX(100%) rotate(-25deg);
    opacity: 0;
  }
}

@keyframes shine {
  0% {
    -webkit-transform: translateX(-100%) rotate(-25deg);
            transform: translateX(-100%) rotate(-25deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100%) rotate(-25deg);
            transform: translateX(100%) rotate(-25deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100%) rotate(-25deg);
            transform: translateX(100%) rotate(-25deg);
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* ===========================
section__lead
=========================== */
.section__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.7;
  background: -webkit-gradient(linear, left top, right top, from(#3c1aa7), color-stop(14%, #3c1aa7), color-stop(15%, #5630d9), color-stop(32%, #5630d9), color-stop(33%, #3c55ec), color-stop(55%, #3c55ec), color-stop(56%, #2c6cf7), color-stop(75%, #2c6cf7), color-stop(76%, #1f7aff), to(#1f7aff));
  background: linear-gradient(90deg, #3c1aa7 0%, #3c1aa7 14%, #5630d9 15%, #5630d9 32%, #3c55ec 33%, #3c55ec 55%, #2c6cf7 56%, #2c6cf7 75%, #1f7aff 76%, #1f7aff 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 900px) {
  .section__lead {
    font-size: 36px;
  }
}

.section__lead-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  letter-spacing: 0.05em;
}

.wrapper {
  overflow: hidden;
  scroll-behavior: smooth;
  min-height: 100vh; /* ビューポート全体の高さを確保 */
  border: 3px solid #7129d1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
  padding-bottom: 70px;
}
@media screen and (min-width: 900px) {
  .wrapper {
    padding-bottom: 120px;
  }
}

/*=============================================================
index.php
==============================================================*/
.container {
  padding-top: 90px;
}
@media screen and (min-width: 900px) {
  .container {
    padding-top: 150px;
  }
}

/*=============================================================
Fv
==============================================================*/
.fv {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  width: 100%;
  height: 125.2747252747vw;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv__bg {
    height: 826px;
  }
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .fv__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 48vw;
    height: 536px;
    background: url("../images/top/top_fv_bg_02.png") no-repeat left center;
    background-size: cover;
    z-index: 1;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .fv__bg::before {
    height: 670px;
    max-height: 670px;
  }
}
@media screen and (min-width: 900px) {
  .fv__bg picture,
  .fv__bg img {
    position: relative;
    z-index: 0;
  }
}

.fv__bg-picture {
  display: block;
}
.fv__bg-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .fv__bg-picture {
    display: none;
  }
}

.fv__bg-left,
.fv__bg-right,
.fv__moya {
  display: none;
}

@media screen and (min-width: 900px) {
  .fv__bg-left,
  .fv__bg-right,
  .fv__moya {
    display: block;
  }
}
.fv__moya {
  position: absolute;
  display: none;
  bottom: calc(216 / 1440 * 100vw);
  left: 0;
  border-radius: 20px;
  width: 180px;
  height: 179px;
  background: radial-gradient(circle, rgba(255, 248, 120, 0.5) 0%, rgba(255, 248, 120, 0.4) 40%, rgba(255, 248, 120, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .fv__moya {
    bottom: calc(60 / 1440 * 100vw);
    display: block;
  }
}

.fv__inner {
  max-width: 600px;
  margin: 0 auto;
  height: 100%;
  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;
}
@media screen and (min-width: 767px) {
  .fv__inner {
    display: block;
    max-width: 1180px;
    padding-top: 90px;
    padding-inline: clamp(16px, 2.5vw, 30px);
    margin: 0;
  }
}

.fv__contents {
  position: relative;
  padding-top: calc(174 / 375 * 100vw);
  width: 100%;
  max-width: calc(375 / 375 * 100vw);
  margin-inline: auto;
  padding-inline: calc(15 / 375 * 100vw);
}
@media screen and (min-width: 900px) {
  .fv__contents {
    max-width: 600px;
    padding-top: 135px;
    padding-inline: 0;
    margin-right: auto;
    margin-left: 110px;
  }
}

.fv_bg-passed {
  position: absolute;
  top: calc(127 / 375 * 100vw);
  left: calc(-1 / 375 * 100vw);
}
@media screen and (min-width: 900px) {
  .fv_bg-passed {
    top: calc(30 / 1440 * 100vw);
    left: calc(-20 / 1440 * 100vw);
  }
}
.fv_bg-passed img {
  width: calc(139 / 375 * 100vw);
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv_bg-passed img {
    width: calc(219 / 1440 * 100vw);
    height: calc(160 / 1440 * 100vw);
    max-width: 240px;
    max-height: 174px;
  }
}

.fv_lead {
  position: relative;
}
.fv_lead::before {
  content: "";
  background: #feef45;
  display: block;
  position: absolute;
  top: calc(59 / 375 * 100vw);
  left: 6px;
  width: calc(130 / 375 * 100vw);
  height: 10px;
  z-index: -1;
  max-width: 218px;
}
@media screen and (min-width: 900px) {
  .fv_lead::before {
    top: calc(115 / 1440 * 100vw);
    width: calc(252 / 1440 * 100vw);
    max-width: 436px;
    height: 15px;
  }
}
.fv_lead::after {
  content: "";
  background: #feef45;
  display: block;
  position: absolute;
  bottom: calc(30 / 375 * 100vw);
  left: 6px;
  width: calc(300 / 375 * 100vw);
  height: 10px;
  z-index: -1;
  max-width: 504px;
}
@media screen and (min-width: 900px) {
  .fv_lead::after {
    bottom: calc(60 / 1440 * 100vw);
    width: calc(596 / 1440 * 100vw);
    max-width: 700px;
    height: 15px;
  }
}
.fv_lead img {
  width: calc(343 / 375 * 100vw);
}
@media screen and (min-width: 900px) {
  .fv_lead img {
    width: calc(657 / 1440 * 100vw);
    max-width: 780px;
  }
}

.fv__slider-wrap {
  position: relative;
  bottom: calc(-21 / 375 * 100vw);
}
@media screen and (min-width: 900px) {
  .fv__slider-wrap {
    bottom: calc(70 / 1440 * 100vw);
  }
}
@media screen and (min-width: 1200px) {
  .fv__slider-wrap {
    bottom: calc(-55 / 1440 * 100vw);
  }
}

.fv__slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: slide-tsukushi 20s linear infinite;
          animation: slide-tsukushi 20s linear infinite;
}

.fv__slider-item {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(41px, 268.7 / 1440 * 100vw, 126.7px);
  color: #4d3cdf;
  opacity: 0.8;
  white-space: nowrap;
  padding-right: 2rem;
}
@keyframes slide-tsukushi {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.fv__badges-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: calc(-55 / 375 * 100vw);
}
@media screen and (min-width: 900px) {
  .fv__badges-wrap {
    margin-top: -180px;
    display: block;
    padding-left: 80px;
  }
}

.fv__badges-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(7 / 375 * 100vw);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-inline: 0;
  list-style: none;
}
@media screen and (min-width: 900px) {
  .fv__badges-items {
    gap: calc(5 / 1440 * 100vw);
  }
}

.fv__badges-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(104 / 375 * 100vw);
  height: calc(142 / 375 * 100vw);
}
.fv__badges-item img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 900px) {
  .fv__badges-item {
    width: 155px;
    height: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__badges-item {
    width: 176px;
    height: 241px;
  }
}

/*=============================================================
school-section
==============================================================*/
.school__section {
  margin-top: 14px;
}
@media screen and (min-width: 900px) {
  .school__section {
    margin-top: 25px;
  }
}

.section__head {
  text-align: center;
}

.school__section-lead {
  font-size: 28px;
  margin-bottom: 0;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#1f7aff), color-stop(16%, #1f7aff), color-stop(17%, #3c55ec), color-stop(33%, #3c55ec), color-stop(34%, #5630d9), color-stop(50%, #5630d9), color-stop(51%, #3c55ec), color-stop(67%, #3c55ec), color-stop(68%, #1f7aff), color-stop(83%, #1f7aff), color-stop(84%, #5630d9), to(#5630d9));
  background: linear-gradient(90deg, #1f7aff 0%, #1f7aff 16%, #3c55ec 17%, #3c55ec 33%, #5630d9 34%, #5630d9 50%, #3c55ec 51%, #3c55ec 67%, #1f7aff 68%, #1f7aff 83%, #5630d9 84%, #5630d9 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 900px) {
  .school__section-lead {
    font-size: 36px;
  }
}

.section__lead-text {
  font-weight: 500;
}

.school__slider-wrap {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .school__slider-wrap {
    margin-top: 40px;
  }
}

.school__slider {
  overflow: hidden;
  position: relative;
}
.school__slider__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.school__slider__track img {
  height: 66px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: calc(46 / 375 * 100vw);
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .school__slider__track img {
    max-height: calc(66 / 1440 * 100vw);
  }
}
.school__slider.slider01 .school__slider__track {
  -webkit-animation-name: slide-ltr;
          animation-name: slide-ltr;
  -webkit-animation-duration: 70s;
          animation-duration: 70s;
}
@media screen and (min-width: 767px) {
  .school__slider.slider01 .school__slider__track {
    -webkit-animation-duration: 90s;
            animation-duration: 90s;
  }
}
.school__slider.slider02 .school__slider__track {
  -webkit-animation-name: slide-rtl;
          animation-name: slide-rtl;
  -webkit-animation-duration: 70s;
          animation-duration: 70s;
}
@media screen and (min-width: 767px) {
  .school__slider.slider02 .school__slider__track {
    -webkit-animation-duration: 90s;
            animation-duration: 90s;
  }
}
.school__slider.slider03 .school__slider__track {
  -webkit-animation-name: slide-ltr;
          animation-name: slide-ltr;
  -webkit-animation-duration: 70s;
          animation-duration: 70s;
}
@media screen and (min-width: 767px) {
  .school__slider.slider03 .school__slider__track {
    -webkit-animation-duration: 90s;
            animation-duration: 90s;
  }
}

.school__slider__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.line-button-section {
  position: relative;
  z-index: 20;
  margin-top: 40px;
  margin-inline: auto;
  max-width: 500px;
  padding-inline: 12.5px;
}
@media screen and (min-width: 900px) {
  .line-button-section {
    margin-top: 60px;
    max-width: 840px;
    padding-inline: 32px;
  }
}

.line-button__text-head {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(10px, 13 / 375 * 100vw, 13px);
  font-weight: bold;
  text-align: center;
}
.line-button__text-head::before {
  content: "＼";
  position: absolute;
  top: 55%;
  left: -15px;
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #00b900;
}
@media screen and (min-width: 767px) {
  .line-button__text-head::before {
    left: -25px;
  }
}
.line-button__text-head::after {
  content: "／";
  position: absolute;
  display: block;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -15px;
  color: #00b900;
}
@media screen and (min-width: 767px) {
  .line-button__text-head::after {
    right: -25px;
  }
}
@media screen and (min-width: 900px) {
  .line-button__text-head {
    font-size: 18px;
  }
}

.worry-section {
  margin-top: -25px;
  padding-top: 32px;
  position: relative;
  background-image: url("../images/top/top_worries_bg_02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(400 / 375 * 100vw);
  max-height: 400px;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .worry-section {
    height: calc(670 / 1440 * 100vw);
    max-height: 460px;
    min-height: 420px;
    margin-top: -55px;
    padding-top: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section {
    height: 720px;
    max-height: 720px;
    padding-top: 65px;
  }
}

.worry-section__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 900px) {
  .worry-section__inner {
    margin-top: 27px;
  }
}

.worry-section .worry-section__title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 24px;
  color: linear-gradient(to right, #7129d1, #2d6cdf);
  background: -webkit-gradient(linear, left top, right top, from(#1f7aff), color-stop(16%, #1f7aff), color-stop(17%, #3c55ec), color-stop(33%, #3c55ec), color-stop(34%, #5630d9), color-stop(50%, #5630d9), color-stop(51%, #3c55ec), color-stop(67%, #3c55ec), color-stop(68%, #1f7aff), color-stop(83%, #1f7aff), color-stop(84%, #5630d9), to(#5630d9));
  background: linear-gradient(90deg, #1f7aff 0%, #1f7aff 16%, #3c55ec 17%, #3c55ec 33%, #5630d9 34%, #5630d9 50%, #3c55ec 51%, #3c55ec 67%, #1f7aff 68%, #1f7aff 83%, #5630d9 84%, #5630d9 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}
@media screen and (min-width: 900px) {
  .worry-section .worry-section__title {
    font-size: 30px;
    margin-bottom: 32px;
  }
}
.worry-section .worry-section__title .lead-accent {
  color: linear-gradient(to right, #7129d1, #2d6cdf);
  font-size: 30px;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .worry-section .worry-section__title .lead-accent {
    font-size: 38px;
  }
}

.lead-accent {
  color: linear-gradient(to right, #7129d1, #2d6cdf);
  font-size: 28px;
}
@media screen and (min-width: 900px) {
  .lead-accent {
    font-size: 36px;
  }
}

.worry-section__contents {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .worry-section__contents {
    max-width: 680px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__contents {
    max-width: 740px;
  }
}

.worry-section__bubble {
  position: absolute;
  z-index: 15;
  max-width: 150px;
}
@media screen and (min-width: 900px) {
  .worry-section__bubble {
    max-width: 180px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble {
    max-width: 300px;
  }
}

.worry-section__bubble-img {
  width: 118px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 767px) {
  .worry-section__bubble-img {
    width: 130px;
    height: 110px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble-img {
    width: 150px;
    height: 150px;
  }
}

.worry-section__bubble-text1 {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  color: #3d3191;
  line-height: 1.6;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble-text1 {
    font-size: 8px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble-text1 {
    font-size: clamp(0px, 13 / 375 * 100vw, 13px);
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble-text1 {
    font-size: 18px;
    top: 43%;
  }
}

.worry-section__bubble-text5 {
  position: absolute;
  top: 52%;
  left: 46%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  color: #3d3191;
  line-height: 1.6;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble-text5 {
    font-size: 8px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble-text5 {
    font-size: clamp(0px, 13 / 375 * 100vw, 13px);
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble-text5 {
    font-size: 18px;
    top: 49%;
  }
}

.worry-section__bubble-text {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  color: #3d3191;
  line-height: 1.6;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble-text {
    font-size: 8px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble-text {
    font-size: clamp(0px, 13 / 375 * 100vw, 13px);
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble-text {
    font-size: 18px;
    top: 49%;
  }
}

/* 吹き出し位置 */
.worry-section__bubble--left-top {
  top: 9px;
  left: -2px;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--left-top {
    top: 0px;
    left: -12px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--left-top {
    top: -32px;
    left: 53px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--left-top {
    top: 3px;
    left: -24px;
  }
}
.worry-section__bubble--left-top img {
  width: 143px;
  height: auto;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--left-top img {
    width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--left-top img {
    width: 165px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--left-top img {
    width: 257px;
    height: 183px;
  }
}

.worry-section__bubble--left-bottom {
  top: 129px;
  left: -9px;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--left-bottom {
    top: 103px;
    left: -9px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--left-bottom {
    top: 98px;
    left: 23px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--left-bottom {
    top: 225px;
    left: -72px;
  }
}
.worry-section__bubble--left-bottom img {
  width: 122px;
  height: auto;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--left-bottom img {
    width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--left-bottom img {
    width: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--left-bottom img {
    width: 246px;
    height: 154px;
  }
}
.worry-section__bubble--left-bottom::before {
  content: "";
  position: absolute;
  top: 75px;
  right: calc(50% - 46px);
  width: 15px;
  height: 12px;
  background-image: url("../images/top/top_fukidashi_2_sub2.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--left-bottom::before {
    top: 61px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--left-bottom::before {
    top: 99px;
    right: calc(50% - 56px);
    width: 18px;
    height: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--left-bottom::before {
    top: 113px;
    right: calc(50% - 108px);
    width: 25px;
    height: 15px;
  }
}
.worry-section__bubble--left-bottom::after {
  content: "";
  position: absolute;
  display: block;
  top: 84px;
  right: calc(50% - 54px);
  width: 12px;
  height: 12px;
  background-image: url("../images/top/top_fukidashi_2_sub.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--left-bottom::after {
    top: 71px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--left-bottom::after {
    top: 110px;
    right: calc(50% - 73px);
    width: 17px;
    height: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--left-bottom::after {
    top: 128px;
    right: calc(50% - 128px);
    width: 17px;
    height: 15px;
  }
}

.worry-section__bubble--right-top {
  top: 3px;
  right: 22px;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--right-top {
    top: -9px;
  }
}
@media screen and (min-width: 767px) {
  .worry-section__bubble--right-top {
    top: -10px;
    right: 40px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-top {
    top: -41px;
    right: 127px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--right-top {
    top: -29px;
    right: 26px;
  }
}
.worry-section__bubble--right-top img {
  width: 110px;
  height: auto;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--right-top img {
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-top img {
    width: 135px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--right-top img {
    width: 200px;
    height: 143px;
  }
}

.worry-section__bubble--right-middle {
  position: absolute;
  top: 97px;
  right: -15px;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--right-middle {
    top: 50px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-middle {
    top: 40px;
    right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--right-middle {
    top: 93px;
    right: -95px;
  }
}
.worry-section__bubble--right-middle img {
  width: 114px;
  height: auto;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--right-middle img {
    width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-middle img {
    width: 155px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--right-middle img {
    width: 215px;
    height: 159px;
  }
}
.worry-section__bubble--right-middle::before {
  content: "";
  position: absolute;
  top: 55px;
  right: calc(50% + 50px);
  width: 11px;
  height: 12px;
  background-image: url("../images/top/top_fukidashi_2_sub2.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-middle::before {
    width: 20px;
    top: 80px;
    right: calc(50% + 63px);
    width: 18px;
    height: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--right-middle::before {
    top: 114px;
    right: calc(50% + 105px);
    width: 27px;
    height: 18px;
  }
}
.worry-section__bubble--right-middle::after {
  content: "";
  position: absolute;
  display: none;
  top: 85px;
  right: calc(50% + 70px);
  width: 12px;
  height: 12px;
  background-image: url("../images/top/top_fukidashi_2_sub.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-middle::after {
    display: block;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-middle::after {
    top: 90px;
    right: calc(50% + 80px);
    width: 13px;
    height: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--right-middle::after {
    top: 130px;
    right: calc(50% + 139px);
    width: 17px;
    height: 16px;
  }
}

.worry-section__bubble--right-bottom {
  top: 188px;
  right: -20px;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--right-bottom {
    top: 120px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-bottom {
    top: 144px;
    right: 66px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--right-bottom {
    top: 298px;
    right: -94px;
  }
}
.worry-section__bubble--right-bottom img {
  width: 107px;
  height: auto;
}
@media screen and (max-width: 350px) {
  .worry-section__bubble--right-bottom img {
    width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-bottom img {
    width: 140px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--right-bottom img {
    width: 216px;
    height: 138px;
  }
}
.worry-section__bubble--right-bottom::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 89px;
  width: 14px;
  height: 12px;
  background-image: url("../images/top/top_fukidashi_2_sub2.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-bottom::before {
    top: 26px;
    right: calc(50% + 75px);
    width: 17px;
    height: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--right-bottom::before {
    top: 5px;
    right: calc(50% + 73px);
    width: 25px;
    height: 17px;
  }
}
.worry-section__bubble--right-bottom::after {
  content: "";
  position: absolute;
  display: block;
  top: 2px;
  right: 105px;
  width: 11px;
  height: 14px;
  background-image: url("../images/top/top_fukidashi_2_sub.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 900px) {
  .worry-section__bubble--right-bottom::after {
    top: 21px;
    right: calc(50% + 94px);
    width: 13px;
    height: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__bubble--right-bottom::after {
    top: -3px;
    right: calc(50% + 100px);
    width: 17px;
    height: 15px;
  }
}

.worry-section__decoration {
  position: absolute;
  z-index: 0;
}
@media screen and (max-width: 350px) {
  .worry-section__decoration img {
    width: 25px;
    height: 25px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__decoration img {
    width: 45px;
    height: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__decoration img {
    width: 55px;
    height: 60px;
  }
}

.worry-section__decoration--left {
  top: 48px;
  left: calc(50% - 40px);
}
@media screen and (max-width: 350px) {
  .worry-section__decoration--left {
    top: 8px;
    left: calc(50% - 45px);
  }
}
@media screen and (min-width: 767px) {
  .worry-section__decoration--left {
    top: 48px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__decoration--left {
    top: 7px;
    left: calc(50% - 103px);
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__decoration--left {
    top: 171px;
    left: calc(50% - 218px);
  }
}

.worry-section__decoration--right {
  top: 30px;
  left: calc(50% + 20px);
}
@media screen and (max-width: 350px) {
  .worry-section__decoration--right {
    top: -2px;
    left: calc(50% + 8px);
  }
}
@media screen and (min-width: 767px) {
  .worry-section__decoration--right {
    top: 38px;
  }
}
@media screen and (min-width: 900px) {
  .worry-section__decoration--right {
    top: -20px;
    left: calc(50% + 15px);
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__decoration--right {
    top: 30px;
    left: calc(50% + 15px);
  }
}

.worry-section__people {
  position: absolute;
  bottom: 0;
  z-index: -5;
  width: 100%;
  text-align: center;
  margin-top: 80px;
}
@media screen and (min-width: 900px) {
  .worry-section__people {
    margin-top: 100px;
  }
}

.worry-section__people-img-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 395px;
  margin-inline: auto;
  bottom: 210px;
}
@media screen and (min-width: 900px) {
  .worry-section__people-img-wrap {
    bottom: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__people-img-wrap {
    bottom: 443px;
  }
}
.worry-section__people-img-wrap .worry-section__people-img-left,
.worry-section__people-img-wrap .worry-section__people-img-right {
  position: absolute;
}

.worry-section__people-img-left {
  left: calc(50% - 100px);
  z-index: 13;
}
@media screen and (min-width: 900px) {
  .worry-section__people-img-left {
    left: calc(50% - 180px);
  }
}
.worry-section__people-img-left img {
  width: calc(155 / 375 * 100vw);
  max-width: 155px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .worry-section__people-img-left img {
    width: calc(311 / 1440 * 100vw);
    max-width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .worry-section__people-img-left img {
    max-width: 311px;
  }
}

.worry-section__people-img-right {
  left: calc(50% - 30px);
  z-index: 12;
}
@media screen and (min-width: 900px) {
  .worry-section__people-img-right {
    left: calc(50% - 50px);
  }
}
.worry-section__people-img-right img {
  width: calc(136 / 375 * 100vw);
  max-width: 145px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .worry-section__people-img-right img {
    width: calc(280 / 1440 * 100vw);
    max-width: 180px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .worry-section__people-img-right img {
    max-width: 280px;
  }
}

/*=============================================================
about
==============================================================*/
.about {
  position: relative;
  margin-top: -33px;
  padding-top: 60px;
  padding-bottom: 80px;
  z-index: 20;
  overflow: hidden;
}
@media screen and (max-width: 350px) {
  .about {
    margin-top: -49px;
  }
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: -19px;
    padding-bottom: 110px;
  }
}
@media screen and (min-width: 1200px) {
  .about {
    margin-top: -104px;
  }
}
@media (min-width: 1300px) {
  .about {
    margin-top: -65px;
  }
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#6a0ce0), to(#3685f2));
  background: linear-gradient(90deg, #6a0ce0, #3685f2);
  -webkit-clip-path: polygon(0 0, 45% 0, 50% 30px, 55% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 45% 0, 50% 30px, 55% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
  height: 38%;
}
@media screen and (min-width: 900px) {
  .about::before {
    height: 60%;
    -webkit-clip-path: polygon(0 0, 47% 0, 50% 35px, 53% 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 47% 0, 50% 35px, 53% 0, 100% 0, 100% 100%, 0 100%);
  }
}

.about__inner {
  padding-inline: 30px;
}

.about__heading {
  text-align: center;
}

.about__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.7;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .about__title {
    font-size: 36px;
  }
}

.about__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .about__subtitle {
    font-size: 16px;
  }
}

.about__subtitle br {
  margin-left: 8px;
}

.about__contents {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 4px 9px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 9px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .about__contents {
    margin-top: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1180px;
    margin-inline: auto;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

@media screen and (min-width: 900px) {
  .about__image {
    width: 50%;
  }
}
.about__image img {
  width: 100%;
}

.about__text-box {
  background-color: #fff;
  padding-block: 30px;
  padding-inline: 10px;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about__text-box {
    width: 50%;
    padding-block: 0;
    padding-inline: 30px;
    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;
  }
}

.about__text {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .about__text {
    font-size: 20px;
  }
}

.about__highlight {
  font-weight: bold;
  color: #333;
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, rgba(254, 239, 69, 0.6)));
  background: linear-gradient(to bottom, transparent 55%, rgba(254, 239, 69, 0.6) 55%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.2em;
  line-height: 1.6;
}

.about__cutout {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 50px;
  background: #fff;
  -webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  z-index: 1;
}

/*=============================================================
reason
==============================================================*/
#features {
  scroll-margin-top: 100px;
}

.reason__inner {
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 900px) {
  .reason__inner {
    max-width: 1000px;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .reason__inner {
    padding-inline: 0;
  }
}

.reason .reason__inner h2 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .reason .reason__inner h2 {
    font-size: 36px;
    padding-bottom: 0;
    margin-bottom: 30px;
  }
}

.reason__item {
  position: relative;
  margin-inline: auto;
  max-width: 355px;
}
@media screen and (min-width: 900px) {
  .reason__item {
    max-width: 100%;
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.reason .reason__inner .reason-margin {
  margin-top: 0;
}

.reason__number1 {
  position: absolute;
  top: -18px;
  left: -20px;
  font-size: 40px;
  font-weight: bold;
  color: #4d8bff;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .reason__number1 {
    font-size: 48px;
    top: -40px;
    left: -28px;
  }
}

.reason__number {
  position: absolute;
  top: -35px;
  left: -20px;
  font-size: 40px;
  font-weight: bold;
  color: #4d8bff;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .reason__number {
    font-size: 48px;
    top: 50px;
    left: -28px;
    top: 4px;
  }
}

@media screen and (min-width: 900px) {
  .number__2 {
    left: calc(50% - 20px);
  }
}

.reason__content {
  margin-top: -30px;
}
@media screen and (min-width: 900px) {
  .reason__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 35px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 90px;
    padding-inline: 0;
    margin-top: 45px;
  }
}

.reason__image {
  position: relative;
  width: 100%;
  max-width: 330px;
}
@media screen and (min-width: 900px) {
  .reason__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
.reason__image img {
  width: 100%;
  height: auto;
}

.reason__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .reason__text {
    margin-top: 30px;
    width: 45%;
  }
}
@media screen and (min-width: 1200px) {
  .reason__text {
    width: 100px;
  }
}

.reason__heading {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .reason__heading {
    font-size: 23px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .reason__heading {
    font-size: 25px;
  }
}

.reason__heading-highlight {
  background: -webkit-gradient(linear, left top, right top, from(#7129d1), to(#2d6cdf));
  background: linear-gradient(to right, #7129d1, #2d6cdf);
  color: #fff;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  padding-inline: 5px;
}
.reason__heading-highlight:nth-of-type(2) {
  margin-top: 5px;
}

.reason__heading-highlight-about-2 {
  padding-left: 5px;
  padding-right: 0;
}

.reason__description-highlight {
  color: #7129d1;
  font-weight: bold;
}

.reason__description {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
}
@media screen and (min-width: 900px) {
  .reason__description {
    font-size: 20px;
  }
}

.reason__balloon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 163px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 330px;
}
@media screen and (min-width: 900px) {
  .reason__balloon {
    position: relative;
    width: 100%;
    width: 505px;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .reason__balloon {
    width: 542px;
  }
}
@media screen and (min-width: 900px) {
  .reason__item:nth-child(2) .reason__balloon {
    bottom: 0;
  }
}
@media screen and (min-width: 900px) {
  .reason__item:nth-child(3) .reason__balloon {
    bottom: -120px;
  }
}

@media screen and (min-width: 900px) {
  .direction-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 900px) {
  .reason__item .reason__balloon.reason__balloon-1 {
    bottom: -60px;
    right: 70px;
  }
}

.reason__balloon-wrap {
  position: absolute;
  top: -144px;
  left: -12px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .reason__balloon-wrap {
    top: -170px;
    left: 27px;
  }
}

.reason__balloon-wrap2 {
  position: absolute;
  top: -144px;
  right: -69px;
  width: 100%;
  left: auto;
}
@media screen and (min-width: 900px) {
  .reason__balloon-wrap2 {
    top: -232px;
    right: -60px;
  }
}

.reason__balloon-wrap3 {
  position: absolute;
  top: -144px;
  left: -12px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .reason__balloon-wrap3 {
    top: -136px;
    left: -89px;
  }
}

.reason__balloon-img {
  display: block;
  height: auto;
  width: 274px;
}
@media screen and (min-width: 900px) {
  .reason__balloon-img {
    width: 435px;
  }
}

.reason__balloon-text {
  position: absolute;
  position: absolute;
  top: 5%;
  width: 266px;
  padding: 10px 12px 25px 25px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 350px) {
  .reason__balloon-text {
    font-size: 8px;
  }
}
@media screen and (min-width: 900px) {
  .reason__balloon-text {
    top: 15%;
    left: 7%;
    padding: 0px;
    width: 360px;
    font-size: min(19 / 1440 * 100vw, 18px);
  }
}

.reason__balloon-text2 {
  position: absolute;
  position: absolute;
  top: 5%;
  width: 266px;
  padding: 10px 12px 25px 25px;
  font-size: 11px;
  line-height: 1.6;
  color: #333;
  font-weight: 600;
}
@media screen and (max-width: 350px) {
  .reason__balloon-text2 {
    font-size: 8px;
  }
}
@media screen and (min-width: 900px) {
  .reason__balloon-text2 {
    top: 11%;
    left: 7%;
    padding: 0px;
    width: 360px;
    font-size: min(19 / 1440 * 100vw, 18px);
  }
}

.reason__balloon-person {
  position: absolute;
  bottom: 0;
  right: 8px;
}
@media screen and (min-width: 900px) {
  .reason__balloon-person {
    width: 145px;
    right: -20px;
  }
}
@media screen and (min-width: 900px) {
  .reason__balloon-person img {
    width: 106px;
  }
}

.reason__balloon-person-2 {
  position: absolute;
  bottom: -17px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .reason__balloon-person-2 {
    width: 145px;
    bottom: 32px;
  }
}
@media screen and (min-width: 900px) {
  .reason__balloon-person-2 img {
    width: 116px;
  }
}

.reason__balloon-person-3 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 900px) {
  .reason__balloon-person-3 {
    width: 145px;
    right: 109px;
    bottom: -60px;
  }
}
@media screen and (min-width: 900px) {
  .reason__balloon-person-3 img {
    width: 120px;
  }
}

/*=============================================================
service
==============================================================*/
.service {
  background-color: #eef1fd;
  position: relative;
  margin-top: -40px;
  padding-top: 55px;
  padding-bottom: 55px;
}
@media screen and (min-width: 900px) {
  .service {
    padding-block: 85px;
    margin-top: 15px;
  }
}

.service__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 16px;
}

.service__inner .service__title {
  text-align: center;
  margin-bottom: calc(20 / 375 * 100vw);
}
@media screen and (min-width: 900px) {
  .service__inner .service__title {
    margin-bottom: 30px;
    font-size: 36px;
  }
}

.service__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: calc(30 / 375 * 100vw);
}
@media screen and (min-width: 900px) {
  .service__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px 23px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 327px;
    width: calc((100% - 64px) / 3);
  }
}

.service__image {
  width: 47%;
  height: calc(120 / 375 * 100vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 900px) {
  .service__image {
    width: 100%;
    height: 221px;
  }
}

.service__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 0;
}
@media screen and (min-width: 900px) {
  .service__text {
    width: 100%;
    height: 135px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.service__text-title {
  font-weight: bold;
  font-size: calc(16 / 375 * 100vw);
  line-height: 1.4;
  margin-bottom: calc(8 / 375 * 100vw);
}
@media screen and (min-width: 900px) {
  .service__text-title {
    font-size: calc(20 / 1440 * 100vw);
    margin-bottom: calc(12 / 1440 * 100vw);
  }
}

.service__text-description {
  font-size: calc(13 / 375 * 100vw);
  line-height: 1.7;
  font-weight: 500;
  color: #333;
  text-indent: 0;
}
@media screen and (min-width: 900px) {
  .service__text-description {
    font-size: calc(16 / 1440 * 100vw);
    text-align: left;
  }
}

/*=============================================================
compare-section
==============================================================*/
.comparison {
  padding: calc(60 / 375 * 100vw) 0;
}
@media screen and (min-width: 900px) {
  .comparison {
    padding: calc(70 / 1440 * 100vw) 0;
  }
}

.comparison__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 16px;
}

.comparison__title {
  text-align: center;
  margin-bottom: calc(40 / 375 * 100vw);
}
@media screen and (min-width: 900px) {
  .comparison__title {
    margin-bottom: calc(60 / 1440 * 100vw);
  }
}

.comparison__scroll {
  -webkit-overflow-scrolling: touch;
}

.comparison__table {
  width: 760px;
  border-collapse: collapse;
  background-color: #eef1fd;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .comparison__table {
    width: 800px;
  }
}
@media screen and (min-width: 900px) {
  .comparison__table {
    width: 100%;
  }
}

.comparison__table th {
  border: 1px solid #cccccc;
  padding: calc(10 / 375 * 100vw) calc(8 / 375 * 100vw);
  text-align: center;
  font-size: calc(11 / 375 * 100vw);
  line-height: 1.5;
  word-break: break-word;
}
@media screen and (min-width: 900px) {
  .comparison__table th {
    padding: 16px;
    font-size: 20px;
  }
}

.comparison__table td {
  border: 1px solid #cccccc;
  padding: calc(10 / 375 * 100vw) calc(8 / 375 * 100vw);
  text-align: center;
  font-size: calc(14 / 375 * 100vw);
  line-height: 1.5;
  word-break: break-word;
}
@media screen and (min-width: 900px) {
  .comparison__table td {
    padding: 16px;
    font-size: 20px;
  }
}

.comparison__table td.padding-left {
  padding-left: 30px;
}
@media screen and (min-width: 900px) {
  .comparison__table td.padding-left {
    padding-left: 35px;
  }
}

.pay-about-text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .pay-about-text {
    font-size: 16px;
  }
}

.comparison__table th:nth-child(n+2),
.comparison__table td:nth-child(n+2) {
  width: 25%;
}

.comparison__table th {
  background-color: #ffffff;
  font-weight: bold;
}

.comparison__table td {
  background-color: #ffffff;
}

.comparison__table th:nth-child(2),
.comparison__table td:nth-child(2) {
  color: #7129d1;
  background-color: #eef1fd;
  border-left: 5px solid #6a0ce0;
  border-right: 5px solid #6a0ce0;
}

/* 2列目かつ1行目（ロゴ行）だけ border-top */
.comparison__table tr:first-child th:nth-child(2) {
  border-top: 4px solid #6a0ce0;
}

/* 2列目かつ最後の行だけ border-bottom */
.comparison__table tr:last-child td:nth-child(2) {
  border-bottom: 4px solid #6a0ce0;
}

/* 左端列（1列目）だけ背景グレー */
.comparison__table th:nth-child(1),
.comparison__table td:nth-child(1) {
  background-color: #ececec;
  width: 13%;
}
@media screen and (min-width: 900px) {
  .comparison__table th:nth-child(1),
  .comparison__table td:nth-child(1) {
    width: 18%;
  }
}

.comparison__table-heading img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .comparison__table-heading img {
    width: 167px;
  }
}

.logo-bg {
  background: -webkit-gradient(linear, left top, right top, from(#7129d1), color-stop(#5a3fd9), to(#355bd8));
  background: linear-gradient(to right, #7129d1, #5a3fd9, #355bd8);
}

.comparison__table-heading:nth-child(3),
.comparison__table-heading:nth-child(4) {
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .comparison__table-heading:nth-child(3),
  .comparison__table-heading:nth-child(4) {
    font-size: 26px;
  }
}

.comparison__table-data.highlight {
  font-size: 40px;
  font-weight: bold;
  color: linear-gradient(to right, #7129d1, #2d6cdf);
}
@media screen and (min-width: 900px) {
  .comparison__table-data.highlight {
    font-size: 48px;
  }
}

.comparison__table-data.highlight-pay {
  font-size: 40px;
}
@media screen and (min-width: 900px) {
  .comparison__table-data.highlight-pay {
    font-size: 44px;
  }
}

.comparison__table-data.icon-large {
  font-size: 24px;
}

.comparison__table td.comparison__table-data.icon-large {
  font-size: 32px;
}
@media screen and (min-width: 900px) {
  .comparison__table td.comparison__table-data.icon-large {
    font-size: 40px;
  }
}

.comparison__table td {
  font-weight: bold;
}

.comparison__table th,
.comparison__table td {
  text-align: center;
  vertical-align: middle;
}

/* スクロールバー */
.comparison__scroll-outer {
  padding-bottom: 8px;
  padding-inline: 0;
  background-color: #ddd;
}
@media screen and (min-width: 900px) {
  .comparison__scroll-outer {
    padding-bottom: 0;
  }
}

.comparison__scroll-wrap {
  overflow-x: auto;
  background-color: #ddd;
  border-radius: 10px;
  padding-bottom: 8px;
}
@media screen and (min-width: 900px) {
  .comparison__scroll-wrap {
    padding-bottom: 0;
  }
}

.comparison__scroll-wrap::-webkit-scrollbar {
  height: 12px;
}

.comparison__scroll-wrap::-webkit-scrollbar-track {
  background-color: transparent;
}

.comparison__scroll-wrap::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 10px;
}

.comparison__table td .pay-about-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .comparison__table td .pay-about-text {
    font-size: 16px;
  }
}

/*=============================================================
recommend
==============================================================*/
.recommend {
  background: #eef1fd;
  padding: 40px 10px 150px;
  overflow: hidden;
  position: relative;
  z-index: -5;
}
@media screen and (min-width: 900px) {
  .recommend {
    padding: 80px 10px 128px;
  }
}

.recommend__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding-inline: 0;
}

.recommend__inner .recommend__title {
  font-weight: bold;
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (min-width: 900px) {
  .recommend__inner .recommend__title {
    font-size: 36px;
    margin-bottom: 3px;
  }
}

.recommend__subtitle {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 18px;
}
@media screen and (min-width: 900px) {
  .recommend__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.recommend__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .recommend__cards {
    -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: 24px;
    max-width: 1030px;
  }
}

.recommend__card {
  background: -webkit-gradient(linear, left top, right top, from(#6a0ce0), to(#3685f2));
  background: linear-gradient(90deg, #6a0ce0, #3685f2);
  border-radius: 8px;
  padding: 11px 4px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: -1;
}
.recommend__card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17%;
  -webkit-transform: translateY(-50%);
  transform: translate(-50%, -50%);
  width: calc(100 / 375 * 100vw);
  max-width: 100px;
  height: 100%;
  background: url(../images/top/tsukushikai_icon_01.webp) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .recommend__card::before {
    left: 50%;
    max-width: 165px;
  }
}
@media screen and (min-width: 900px) {
  .recommend__card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 52px 18px;
  }
}

.recommend__card-text {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 900px) {
  .recommend__card-text {
    font-size: 24px;
  }
}

.is-xl {
  display: none;
}
@media (min-width: 1200px) {
  .is-xl {
    display: block;
  }
}

.recommend__bottom {
  margin-top: 26px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .recommend__bottom {
    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;
    margin-top: 85px;
  }
}

.recommend__balloon {
  position: absolute;
  max-width: 600px;
  margin: 0 auto;
  left: calc(50% - 180px);
}
@media screen and (min-width: 900px) {
  .recommend__balloon {
    left: calc(50% - 200px);
  }
}
@media screen and (min-width: 1200px) {
  .recommend__balloon {
    max-width: 767px;
    left: 10px;
  }
}

.recommend__balloon-img {
  height: auto;
  width: calc(300 / 375 * 100vw);
  max-width: 400px;
}
@media screen and (min-width: 900px) {
  .recommend__balloon-img {
    width: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .recommend__balloon-img {
    height: 130px;
    width: 767px;
    max-width: 767px;
  }
}

.recommend__balloon-text {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: min(14 / 375 * 100vw, 16px);
  line-height: 1.8;
  text-align: left;
  color: #333;
}
@media screen and (min-width: 900px) {
  .recommend__balloon-text {
    font-size: 18px;
    width: 80%;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .recommend__balloon-text {
    font-size: 22px;
  }
}

.recommend__person {
  position: absolute;
  bottom: -290px;
  right: -38px;
}
@media screen and (min-width: 767px) {
  .recommend__person {
    right: 60px;
  }
}
@media screen and (min-width: 900px) {
  .recommend__person {
    right: calc(50% - 208px);
    bottom: -425px;
    right: 6%;
  }
}
.recommend__person img {
  width: 140px;
}
@media screen and (min-width: 900px) {
  .recommend__person img {
    width: 270px;
  }
}
@media screen and (min-width: 1200px) {
  .recommend__person {
    width: 280px;
    bottom: -430px;
  }
}

/*=============================================================
voice
==============================================================*/
.voice {
  padding: 43px 0 0;
}
@media screen and (min-width: 900px) {
  .voice {
    padding: 60px 0 0;
  }
}

.voice__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.voice__title {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .voice__title {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

.voice__slider {
  overflow: hidden;
}

.voice__item {
  background: #fff;
  border-radius: 16px;
  padding: 7px;
  height: auto;
  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;
}

.voice__card {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 20px 14px;
  border-radius: 8px;
}

.voice__top {
  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;
  gap: 8px;
  margin-bottom: 24px;
}

.voice__icon img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.voice__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.voice__school {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
@media screen and (min-width: 900px) {
  .voice__school {
    font-size: 20px;
  }
}

.voice__name {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}
@media screen and (min-width: 900px) {
  .voice__name {
    font-size: 14px;
  }
}

.voice__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: 20px;
}

.voice__label {
  display: inline-block;
  background: #5d2de7;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 6px;
  margin-bottom: 8px;
}
@media screen and (min-width: 900px) {
  .voice__label {
    font-size: 13px;
  }
}

.voice__text {
  font-size: 13px;
  color: #333;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .voice__text {
    font-size: 16px;
  }
}

/* Swiper設定 */
.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-slide {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (min-width: 900px) {
  .swiper-slide {
    width: calc((100% - 40px) / 3);
    margin-right: 10px;
  }
}
/* アローアイコン */
.voice__prev,
.voice__next {
  position: absolute;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .voice__prev,
  .voice__next {
    top: 50%;
  }
}

.voice__prev {
  left: -6px;
  background: url(../images/top/arrow-left.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .voice__prev {
    left: 5px;
  }
}

.voice__next {
  right: -6px;
  background: url(../images/top/arrow-right.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .voice__next {
    right: 10px;
  }
}

.line-button-section--bottom {
  margin-top: 25px;
}

/*=============================================================
flow
==============================================================*/
.flow {
  background-color: #eef1fd;
  padding: 40px 0 60px;
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .flow {
    margin-top: 60px;
  }
}

.flow__inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 10px;
}
@media screen and (min-width: 900px) {
  .flow__inner {
    max-width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .flow__inner {
    max-width: 1080px;
    padding-inline: 75px;
  }
}

.section__lead-wrapper {
  text-align: center;
}

.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-top: 25px;
}
@media screen and (min-width: 900px) {
  .flow__item {
    gap: 32px;
  }
}

.flow__item4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 25px;
}
@media screen and (min-width: 900px) {
  .flow__item4 {
    gap: 32px;
    margin-top: -50px;
  }
}

@media screen and (min-width: 900px) {
  .flow__item:last-of-type {
    margin-top: 0;
  }
}

.flow__steps {
  width: 45px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.flow__step {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 54px;
}
@media screen and (min-width: 900px) {
  .flow__step {
    width: 70px;
  }
}

.flow__step-icon {
  position: relative;
}
.flow__step-icon img {
  width: 54px;
}
@media screen and (min-width: 900px) {
  .flow__step-icon img {
    width: 65px;
  }
}

.flow__step-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .flow__step-text-wrapper {
    font-size: 18px;
  }
}

.flow__step-arrow {
  margin-top: 8px;
}

.flow__step-arrow1 {
  position: relative;
  top: 10px;
  width: 2px;
  height: calc(406 / 375 * 100vw);
  max-height: 740px;
  background-color: #7129d1;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .flow__step-arrow1 {
    max-height: 455px;
  }
}
.flow__step-arrow1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #7129d1;
  border-right: 2px solid #7129d1;
}

.flow__step-arrow2 {
  position: relative;
  top: 10px;
  width: 2px;
  height: calc(622 / 375 * 100vw);
  max-height: 960px;
  background-color: #7129d1;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .flow__step-arrow2 {
    max-height: 600px;
  }
}
.flow__step-arrow2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #7129d1;
  border-right: 2px solid #7129d1;
}

.flow__step-arrow3 {
  position: relative;
  top: 10px;
  width: 2px;
  height: calc(250 / 375 * 100vw);
  max-height: 380px;
  background-color: #7129d1;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .flow__step-arrow3 {
    max-height: 135px;
  }
}
.flow__step-arrow3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #7129d1;
  border-right: 2px solid #7129d1;
}

.flow__content-wrapper {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 900px) {
  .flow__content-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
  }
}

.flow__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 900px) {
  .flow__text {
    width: calc(330 / 1440 * 100vw);
    max-width: 350px;
  }
}

.flow__text-title {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}
@media screen and (min-width: 900px) {
  .flow__text-title {
    font-size: 26px;
  }
}

.flow__text-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .flow__text-description {
    font-size: 20px;
  }
}

.flow__line-link {
  color: #5d2de7;
  text-decoration: underline;
}

.flow__image {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-inline: 5px;
}
@media screen and (min-width: 900px) {
  .flow__image {
    width: calc(390 / 1440 * 100vw);
  }
}

.flow__image img {
  width: 100%;
  height: auto;
  max-width: 580px;
}
@media screen and (min-width: 900px) {
  .flow__image img {
    width: calc(376 / 1440 * 100vw);
    max-width: 376px;
  }
}

@media screen and (min-width: 900px) {
  .flow__item:nth-of-type(2) .flow__image,
  .flow__item:nth-of-type(3) .flow__image,
  .flow__item:nth-of-type(4) .flow__image {
    margin-top: 20px;
  }
}

/*=============================================================
question
==============================================================*/
#faq {
  scroll-margin-top: 50px;
}

.question {
  padding-top: 60px;
}
.question .inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 10px;
}

.question__lead {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#3c1aa7), color-stop(14%, #3c1aa7), color-stop(15%, #5630d9), color-stop(32%, #5630d9), color-stop(33%, #3c55ec), color-stop(55%, #3c55ec), color-stop(56%, #2c6cf7), color-stop(75%, #2c6cf7), color-stop(76%, #1f7aff), to(#1f7aff));
  background: linear-gradient(90deg, #3c1aa7 0%, #3c1aa7 14%, #5630d9 15%, #5630d9 32%, #3c55ec 33%, #3c55ec 55%, #2c6cf7 56%, #2c6cf7 75%, #1f7aff 76%, #1f7aff 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .question__lead {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

.question__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: 10px;
}

.question__item {
  border: 2px solid #3a3aff;
  border-radius: 8px;
  padding: 18px 13px 2px 15px;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .question__item {
    padding: 22px 25px 2px 27px;
  }
}

.question__head {
  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;
  cursor: pointer;
}

.question__q-icon {
  position: relative;
  width: 35px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .question__q-icon {
    width: 45px;
    height: 45px;
  }
}

.question__q-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.question__q-letter {
  position: absolute;
  top: 46%;
  left: 48%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .question__q-letter {
    font-size: 24px;
  }
}

.question__question {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 8px;
  font-weight: bold;
  font-size: 16px;
  color: #333;
}
@media screen and (min-width: 900px) {
  .question__question {
    font-size: 24px;
    margin-left: 30px;
  }
}

.question__toggle {
  position: relative;
  width: 42px;
  height: 42px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.question__toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #3a3aff;
  height: 2px;
  width: 28px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 767px) {
  .question__toggle-line {
    width: 38px;
  }
}

.question__toggle-line:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.is-open .question__toggle-line:last-child {
  display: none;
}

.is-open .question__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}

.question__body {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}

.question__a-icon {
  width: 45px;
  height: 45px;
  background-color: #eef1fd;
  border-radius: 50%;
  text-align: center;
  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;
  font-weight: bold;
  color: #3a3aff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 24px;
}

.question__answer {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .question__answer {
    font-size: 18px;
    padding-right: 100px;
  }
}

@media (min-width: 1025px) {
  .section__lead {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .question__list {
    gap: 32px;
  }
}
/*=============================================================
cta
==============================================================*/
.cta {
  margin-top: 30px;
  position: relative;
  width: 100vw;
}
@media screen and (min-width: 900px) {
  .cta {
    margin-top: 60px;
  }
}
.cta picture,
.cta img {
  width: 100%;
  height: auto;
  display: block;
}

.cta__button-area {
  position: absolute;
  text-align: center;
  top: 67%;
  left: 50%;
  width: 100%;
  padding-inline: 15px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .cta__button-area {
    max-width: 900px;
    top: 63%;
  }
}

.cta-head {
  position: relative;
  font-size: min(14 / 375 * 100vw, 16px);
  font-weight: bold;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-filter: drop-shadow(10px 10px 5px #fff);
          filter: drop-shadow(10px 10px 5px #fff);
}
@media screen and (min-width: 900px) {
  .cta-head {
    font-size: 28px;
  }
}
.cta-head::before {
  content: "＼";
  position: absolute;
  top: 55%;
  left: -18px;
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #00b900;
}
@media screen and (min-width: 900px) {
  .cta-head::before {
    left: -28px;
  }
}
.cta-head::after {
  content: "／";
  position: absolute;
  display: block;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -18px;
  color: #00b900;
}
@media screen and (min-width: 900px) {
  .cta-head::after {
    right: -28px;
  }
}

.cta-button__text {
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.cta-button__text-main {
  font-size: min(10 / 375 * 100vw, 16px);
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .cta-button__text-main {
    font-size: 20px;
    margin-bottom: -12px;
  }
}

.cta-button__text-sub {
  font-size: min(16 / 375 * 100vw, 18px);
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .cta-button__text-sub {
    font-size: 28px;
  }
}

.page-fv {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.page-fv__image {
  width: 100%;
  height: 100%;
}
.page-fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-fv__image--experience {
  width: 100%;
  height: 100%;
}
.page-fv__image--experience img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20% center;
     object-position: 20% center;
}
@media screen and (min-width: 900px) {
  .page-fv__image--experience img {
    -o-object-position: center;
       object-position: center;
  }
}

.page-fv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.page-fv__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

@media screen and (min-width: 900px) {
  .page-fv {
    height: 500px;
  }
  .page-fv__title {
    font-size: 40px;
  }
}
.page-fv__breadcrumb {
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
  text-align: left;
  font-size: 14px;
  color: #fff;
  margin-top: -35px;
}

.page-fv__breadcrumb-link {
  color: #fff;
  text-decoration: none;
}

.page-fv__breadcrumb-separator {
  margin: 0 8px;
}

.page-fv__breadcrumb-current {
  color: #fff;
}

/*=============================================================
合格実績一覧
==============================================================*/
.experience-list {
  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;
  max-width: 490px;
  margin-inline: auto;
  margin-top: 60px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .experience-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1040px;
    padding-bottom: 50px;
  }
}

.experience-item {
  background-color: #fff;
  padding-block: 20px;
  padding-inline: 25px;
  border-radius: 8px;
  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: 900px) {
  .experience-item {
    padding-inline: 12px;
    width: calc(50% - 10px);
  }
}

.experience-item__image-area {
  text-align: center;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -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: 767px) {
  .experience-item__image-area {
    gap: 20px;
  }
}
@media screen and (min-width: 900px) {
  .experience-item__image-area {
    gap: 40px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.experience-item__image-wrapper {
  position: relative;
  width: 100px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .experience-item__image-wrapper {
    width: 130px;
  }
}

.experience-item__face {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.experience-item__badge {
  position: absolute;
  top: 0px;
  left: -15px;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 900px) {
  .experience-item__badge {
    width: 61px;
    height: 61px;
    left: -22px;
  }
}
.experience-item__badge img {
  width: 100%;
  height: auto;
}

.experience-item__content {
  background-color: #fff6f6;
  padding: 20px 20px 20px 20px;
  border-radius: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.experience-item__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .experience-item__name {
    font-size: 22px;
  }
}

.experience-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.experience-item__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.experience-item__info-term {
  font-size: 12px;
  background: #e6e6e6;
  padding: 4px 8px;
  width: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .experience-item__info-term {
    font-size: 14px;
  }
}

.experience-item__info-desc {
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 767px) {
  .experience-item__info-desc {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .experience-item__info-desc {
    font-size: 18px;
  }
}

.experience-item__comment {
  font-size: 14px;
  line-height: 1.8;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .experience-item__comment {
    font-size: 18px;
  }
}

.experience-item__comment span {
  color: #eb0000;
}

.article-list {
  padding: 60px 20px;
}

.article-list__inner {
  max-width: 1080px;
  margin-inline: auto;
}

.article-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.article-list__item {
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.article-list__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.article-list__image {
  aspect-ratio: 3/2; /* 横3:縦2の比率に固定 */
  overflow: hidden;
}

.article-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  background-color: #fff;
}

.article-list__content {
  padding: 30px 0 20px;
}

.article-list__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 3px;
  line-height: 1.4;
}
@media screen and (min-width: 900px) {
  .article-list__title {
    font-size: 26px;
  }
}

.article-list__excerpt {
  font-size: 14px;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.7;
}
@media screen and (min-width: 900px) {
  .article-list__excerpt {
    font-size: 16px;
  }
}

.article-list__readmore p {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: #8000ff;
  text-align: right;
  padding-right: 18px;
}
@media screen and (min-width: 900px) {
  .article-list__readmore p {
    font-size: 16px;
  }
}
.article-list__readmore p::after {
  content: "";
  position: absolute;
  background: url(../images/articles/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 13px;
  height: 13px;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

@media (min-width: 768px) {
  .article-list__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px 20px;
  }
  .article-list__item {
    width: calc(50% - 10px);
  }
}
/* --------------------
 ポップアップ
-------------------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.popup-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-content {
  position: relative;
  max-width: 450px;
  width: 90%;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.popup-overlay.is-active .popup-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.popup-content img {
  display: block;
  width: 100%;
  height: auto;
}

.popup__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  padding: 1px 6px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

#popup-img {
  cursor: pointer;
}

/* --------------------
 記事デザイン
-------------------- */
.article {
  margin-top: 60px;
}

.article__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 30px;
}

@media (min-width: 768px) {
  .article__inner {
    padding: 60px 40px;
  }
}
.article__breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.article__eyecatch {
  margin-bottom: 40px;
}

.article__eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

.article__title {
  font-size: 23px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}
@media screen and (min-width: 900px) {
  .article__title {
    font-size: 26px;
  }
}

.article__content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .article__content {
    padding: 40px 0;
  }
}
.article__content img {
  max-width: 840px;
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}

.article__content h2 {
  background: -webkit-gradient(linear, left top, right top, from(#7129d1), to(#2d6cdf));
  background: linear-gradient(to right, #7129d1, #2d6cdf);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .article__content h2 {
    font-size: 22px;
    padding: 16px 20px;
  }
}
.article__content h3 {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 0;
  margin: 50px 0 30px;
}

@media (min-width: 768px) {
  .article__content h3 {
    font-size: 22px;
    padding: 12px 0;
  }
}
.article__content h3::before,
.article__content h3::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#7129d1), to(#2d6cdf));
  background: linear-gradient(to right, #7129d1, #2d6cdf);
}

.article__content h3::before {
  top: 0;
}

.article__content h3::after {
  bottom: 0;
}

.article__content h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 40px 0 20px;
  position: relative;
  padding-left: 20px;
}

@media (min-width: 768px) {
  .article__content h4 {
    font-size: 20px;
  }
}
.article__content h4::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#7129d1), to(#ffffff));
  background: linear-gradient(to bottom, #7129d1, #ffffff);
  border-radius: 2px;
}

.article__content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 20px 0;
}

@media (min-width: 768px) {
  .article__content p {
    font-size: 18px;
  }
}
.article__content p a {
  font-size: 16px;
}

@media screen and (min-width: 900px) {
  .article__content ul,
  .article__content ol {
    margin: 10px 0;
    padding-left: 1.5em;
  }
}

@media (min-width: 768px) {
  .article__content ul,
  .article__content ol {
    margin-top: 0;
    padding-inline: 30px;
  }
}
.article__content li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.wp-block-image {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .wp-block-image {
    margin-top: 60px;
  }
}
/* --------------------
 目次（TOC）デザイン
-------------------- */
.custom-toc {
  width: 560px;
  max-width: 100%;
  margin: 15px auto;
  border-radius: 8px;
  overflow-y: visible;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 900px) {
  .custom-toc {
    padding: 0 24px;
  }
}

.custom-toc__head {
  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;
  background-color: #f5f5f5;
  padding: 10px 15px;
  margin-bottom: 0;
}

.custom-toc__close,
.custom-toc__open {
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.custom-toc__title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
}

.custom-toc__list {
  display: block;
  overflow: hidden;
  max-height: 0;
  padding: 5px;
  -webkit-transition: max-height 0.5s ease, padding-bottom 0.5s ease;
  transition: max-height 0.5s ease, padding-bottom 0.5s ease;
  background-color: #f5f5f5;
  padding-left: 0;
  margin: 0;
  counter-reset: toc-counter;
  padding-bottom: 0;
}
@media screen and (min-width: 900px) {
  .custom-toc__list {
    padding: 0;
  }
}

.custom-toc__list.open {
  max-height: 9999px;
  padding-bottom: 24px;
}

.custom-toc__list > li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 40px;
  counter-increment: toc-counter;
}
@media screen and (min-width: 900px) {
  .custom-toc__list > li {
    padding-left: 48px;
  }
}

.custom-toc__list > li::before {
  content: counter(toc-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  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;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .custom-toc__list > li::before {
    top: 5px;
  }
}

.custom-toc__list > li > ul {
  counter-reset: sub-counter;
  margin-top: 8px;
}
@media screen and (min-width: 900px) {
  .custom-toc__list > li > ul {
    padding-left: 40px;
  }
}

.custom-toc__list > li > ul li {
  position: relative;
  counter-increment: sub-counter;
  margin-bottom: 12px;
  padding-left: 48px;
}

.custom-toc__list > li > ul li::before {
  content: counters(toc-counter, "-") "-" counter(sub-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  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;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.custom-toc__list a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .custom-toc__list a {
    font-size: 16px;
  }
}
.article__content ul {
  list-style-type: disc;
}

.article__content ol {
  list-style-type: decimal;
}

.custom-toc ul,
.custom-toc ol {
  list-style: none;
}