@charset "utf-8";
@import "variables.css";
/*
Description: レイアウトのスタイルシート
Author: Quail,inc.
Version: 1.0.0
*/

/*----------------------------------------
  画面幅
  mobile: 520px;
  tablet: 960px;
----------------------------------------*/

/*----------------------------------------
	header
----------------------------------------*/

.l-header {
  min-height: inherit;
  position: fixed;
  top: 30px;
  left: 30px;
  right: 30px;
  width: auto;
  background: rgba(255, 255, 255, 0.97);
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 7px;
  z-index: var(--layerHeader);
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.15);
  font-family: var(--FontNotoSans);
}

.l-header__logo {
  width: 100%;
  max-width: 416px;
}

.l-header__logo img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.l-header__wrap {
  display: flex;
  align-items: center;
  gap: 47px;
  margin-left: 47px;
}

.l-header__list {
  display: flex;
  gap: 30px;
}

.l-header__link {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--black) !important;
}

.l-header__button {
  display: block;
  position: relative;
  background-color: var(--red);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
  padding: 21px 25px 22px 62px;
  border-radius: 5px;
  border: solid 1px var(--red);
}

.l-header__button::before,
.l-header__button::after {
  content: "";
  width: 23px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: opacity ease 0.5s;
}

.l-header__button::before {
  background-image: url("../../img/renewal/common/icon_mail.svg");
  opacity: 1;
}

.l-header__button::after {
  background-image: url("../../img/renewal/common/icon_mail_red.svg");
  opacity: 0;
}

.l-header-hamburger {
  display: none;
}

/*----------------------------------------
	hamburger-menu
----------------------------------------*/

.l-hamburger-menu {
  font-family: var(--FontNotoSans);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  padding: 108px 30px 28px;
  z-index: var(--layerHamburgerMenu);
  transition: all ease 0.5s;
  display: none;
}

.l-hamburger-menu.is-active {
  display: block;
}

.l-hamburger-menu__list {
  border-bottom: 1px solid var(--medium-gray);
  margin-inline: -5px;
}

.l-hamburger-menu__item {
  border-top: 1px solid var(--medium-gray);
}

.l-hamburger-menu__link {
  display: block;
  width: 100%;
  padding-block: 19px 22px;
  padding-left: 7px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--black) !important;
}

.l-hamburger-menu__button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
  margin-top: 20px;
  border-radius: 5px;
  background-color: var(--black);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 800;
}

.l-hamburger-menu__button:first-of-type {
  margin-top: 40px;
}

.l-hamburger-menu__button--red {
  background-color: var(--red) !important;
}

.l-hamburger-menu__button--red::before {
  content: "";
  width: 22px;
  height: 17px;
  background-image: url("../../img/renewal/common/icon_mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.l-hamburger-menu__sub-list {
  margin-top: 37px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.l-hamburger-menu__sub-link {
  position: relative;
  color: var(--soft-black) !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.l-hamburger-menu__sub-link--external::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../../img/renewal/common/icon_external.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

/*----------------------------------------
	footer
----------------------------------------*/

.l-footer {
  font-family: var(--FontNotoSans);
  border-top: 7px solid var(--red);
}

.l-footer__wrap {
  padding: 92px 78px 144px 58px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.l-footer__logo {
  display: block;
  width: 100%;
  max-width: 622px;
}

.l-footer__logo img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.l-footer__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-top: 32px;
}

.l-footer__inner {
  display: flex;
  gap: 66px;
}

.l-footer__menu {
  display: flex;
  gap: 46px;
  margin-top: 16px;
}

.l-footer__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.l-footer__link {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: var(--black) !important;
}

.l-footer__copy {
  margin-inline: 2px;
  padding: 55px 35px 73px;
  border-top: 1px solid var(--medium-gray);
}

.l-footer__copy p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: #7c7c7c;
}

.l-footer__button {
  display: block;
  width: 190px;
  padding-block: 21px 22px;
  text-align: center;
  border-radius: 6px;
  background-color: var(--black);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid var(--black);
}

.l-footer__sub-list {
  margin-top: 37px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.l-footer__sub-link {
  position: relative;
  color: var(--soft-black) !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.l-footer__sub-link--external::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../../img/renewal/common/icon_external.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

/*----------------------------------------
  l-cta
----------------------------------------*/

.l-cta {
  font-family: var(--FontNotoSans);
  position: relative;
  z-index: var(--layerMainContent);
  padding: 185px 5% 194px;
  background-image: url("../../img/renewal/cta/bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.l-cta__content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  background-color: var(--red);
  padding: 45px 63px 45px 61px;
  justify-content: space-between;
  border-radius: 10px;
}

.l-cta__content-left {
  padding-bottom: 7px;
}

.l-cta__content-divider {
  border-left: 1px dashed var(--white);
}

.l-cta__sub-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}

.l-cta__sub-title strong {
  font-family: var(--FontInter);
  font-size: 35px;
}

.l-cta__sub-title strong span {
  font-weight: 800;
  font-size: 21px;
}

.l-cta__title {
  width: 100%;
  max-width: 321px;
  margin-top: 12px;
}

.l-cta__title img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.l-cta__text {
  margin-top: 23px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: var(--white);
}

.l-cta__accent-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-cta__accent-text::before,
.l-cta__accent-text::after {
  content: "";
  width: 1px;
  height: 32px;
  background-color: var(--white);
}

.l-cta__accent-text::before {
  transform: rotate(-25deg);
  margin-right: 26px;
}

.l-cta__accent-text::after {
  transform: rotate(25deg);
  margin-left: 14px;
}

.l-cta__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  margin-top: 15px;
  padding: 5px 6px 5px 35px;
  border-radius: 5px;
  gap: 56px;
}

.l-cta__button-text {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--red);
  white-space: nowrap;
  padding-left: 63px;
  transition: opacity ease 0.5s;
}

.l-cta__button-text::before {
  content: "";
  position: absolute;
  background-image: url("../../img/renewal/common/icon_mail_red.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 31px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.l-cta__button-text span {
  display: block;
  background: linear-gradient(transparent 60%, var(--yellow) 40%);
}

.l-cta__button-arrow {
  position: relative;
  width: 40px;
  height: 110px;
  background-color: var(--red);
  border-radius: 6px;
  overflow: hidden;
}

.l-cta__button-arrow::before {
  content: "";
  width: 12px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../../img/renewal/common/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform 0.3s ease;
}

.l-cta__tel-label {
  width: fit-content;
  margin: 35px auto 0;
  padding: 4px 34px 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--white);
  border-radius: 40px;
  color: var(--white);
}

.l-cta__tel-num {
  display: block;
  position: relative;
  width: fit-content;
  margin: 17px auto 0;
  padding-left: 39px;
  font-family: var(--fontJost);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: var(--white) !important;
}

.l-cta__tel-num::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../../img/renewal/common/icon_phone.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.l-cta__tel-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
  text-align: center;
  margin-top: 4px;
  color: var(--white);
}

/*----------------------------------------
	main-visual
----------------------------------------*/

.l-main-visual {
  font-family: var(--FontNotoSans);
  width: 100%;
  height: 480px;
  position: relative;
  padding-bottom: 23px;
  background-color: var(--pale-orange);
  display: grid;
  grid-template-rows: 1fr auto;
}

.l-main-visual--large {
  height: 630px;
}

.l-main-visual::after {
  content: "";
  display: block;
  width: 461px;
  height: 461px;
  top: -134px;
  right: -122px;
  background-image: url("../../img/renewal/common/decoration_symbol.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  z-index: var(--layerMainContent);
}

.l-main-visual__content {
  margin-top: 140px;
  padding-inline: 150px;
  place-content: center;
}

.l-main-visual__image {
  width: calc(100% - 80px);
  margin-bottom: 80px;
  padding-top: 140px;
  padding-left: 150px;
  place-content: center;
  border-bottom-right-radius: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: var(--layerMainContent);
}

.l-main-visual__image[data-page="overview"] {
  background-image: url("../../img/renewal/overview/mv_image.webp");
}

.l-main-visual__image[data-page="about"] {
  background-image: url("../../img/renewal/about/mv_image.webp");
}

.l-main-visual__title {
  font-size: 50px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.l-main-visual__title--white {
  color: var(--white);
}

.l-main-visual__sub-title {
  display: block;
  font-family: var(--fontJost);
  font-size: 16px;
  font-weight: 500;
  color: var(--red);
  margin-bottom: 13px;
  line-height: 1;
}

.l-main-visual__sub-title--white {
  color: var(--white);
}

.l-main-visual__breadcrumbs {
  padding-inline: 87px;
}

/*----------------------------------------
	breadcrumbs
----------------------------------------*/

.l-breadcrumbs {
  font-family: var(--FontNotoSans);
  display: flex;
  justify-content: end;
}

.l-breadcrumbs__item {
  color: #aaaaaa;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.l-breadcrumbs__item::before {
  content: "・";
  padding-inline: 2px;
}

.l-breadcrumbs__item:first-child:before {
  display: none;
}

.l-breadcrumbs__link {
  color: var(--red) !important;
}

/*----------------------------------------
	link-list
----------------------------------------*/

.l-link-list {
  padding: 130px 5%;
}

.l-link-list__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
}

.l-link-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 33px;
  border: 8px solid var(--medium-gray);
}

.l-link-list__text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  transition: opacity ease 0.5s;
}

.l-link-list__text span {
  display: block;
  font-family: var(--FontJost);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

.l-link-list__arrow {
  position: relative;
  width: 40px;
  height: 110px;
  background-color: var(--black);
  border-radius: 6px;
  overflow: hidden;
}

.l-link-list__arrow::before {
  content: "";
  width: 12px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../../img/renewal/common/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform 0.3s ease;
}

/*----------------------------------------
	course
----------------------------------------*/

.l-course {
  max-width: 1180px;
  margin: 0 auto;
}

.l-course__tabs {
  display: flex;
  gap: 15px;
}

.l-course-tab-item {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  width: calc((100% - 15px) / 2);
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.l-course-tab-item.is-active {
  background: var(--white);
}

.l-course-tab-item__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.l-course-tab-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--red);
}

.l-course-tab-item__label {
  display: inline-block;
  padding: 8px 30px;
  border: 1px solid var(--white);
  border-radius: 30px;
  width: 130px;
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.l-course-tab-item__label--one-lesson {
  border: 1px solid #bdbdbd;
  color: #4f4f4f;
}

.l-course-tab-item.is-active .l-course-tab-item__label {
  border: 1px solid #bdbdbd;
}

.l-course-content {
  display: none;
  background: var(--white);
  padding: 60px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.l-course-content.is-active {
  display: block;
}

.l-course-content-table__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: center;
}

.l-course-content-table__note {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  text-align: right;
}

.l-course-table {
  margin: 20px auto 0;
  border-spacing: 0 5px;
}

.l-course-table__header,
.l-course-table__data {
  width: 200px;
  height: 55px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0;
}

.l-course-table__header {
  color: var(--white);
  background: rgba(218, 71, 58, 0.7);
  border-left: 1px solid var(--red);
}

.l-course-table__header:first-child {
  background: var(--red);
  color: var(--white);
}

.l-course-table__header--green {
  background: rgba(41, 180, 150, 0.7);
  border-left: 1px solid var(--green);
}

.l-course-table__header--green:first-child {
  background: var(--green);
}

.l-course-table__data {
  color: var(--black);
  background: #f6f6f6;
  border-left: 1px solid #e0e0e0;
}

.l-course-table__data:first-child {
  background: #e0e0e0;
}

.l-course-table__data.l-course-table__data--white {
  background: #ffffff;
}

.l-course-table__body .l-course-table__row {
  margin-top: 5px;
}

.l-course__toggle-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.l-course-toggle-item {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  background: #f6f6f6;
  padding: 35px;
}

.l-course-toggle-item-title {
  position: relative;
}

.l-course-toggle-item-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2.5px;
  background: var(--red);
  transition: transform 0.3s ease;
}

.is-open .l-course-toggle-item-title::before {
  transform: translateY(-50%) rotate(45deg);
}

.l-course-toggle-item-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 18px;
  height: 2.5px;
  background: var(--red);
  transition: transform 0.3s ease;
}

.is-open .l-course-toggle-item-title::after {
  transform: translateY(-50%) rotate(135deg);
}

.l-course-toggle-item-title__text {
  max-width: 87.5%;
  margin-right: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0;
  position: relative;
  padding-left: 23px;
}

.l-course-toggle-item-title__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6.5px;
  width: 15px;
  height: 15px;
  background: var(--red);
  border-radius: 50%;
}

.l-course-toggle-item-content {
  padding-top: 20px;
  margin-left: 23px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.l-course__box {
  margin-top: 50px;
  padding: 60px;
  background: var(--white);
  border-radius: 8px;
}

@media screen and (max-width: 1350px) {
  .l-header {
    padding: 15px;
  }

  .l-header__wrap {
    gap: 20px;
    margin-left: 15px;
  }

  .l-header__list {
    gap: 15px;
  }

  .l-header__link {
    font-size: 13px;
  }

  .l-header__button {
    padding: 21px 15px 22px 52px;
    font-size: 13px;
  }

  .l-header__button::before {
    left: 18px;
  }
}

/*----------------------------------------
  hover_animation
----------------------------------------*/

@media (hover: hover) {
  /*----------------------------------------
    header_hover
  ----------------------------------------*/

  .l-header__logo:hover {
    opacity: 0.5;
  }

  .l-header__link:hover {
    opacity: 0.5;
  }

  .l-header__button:hover {
    background-color: var(--white);
    color: var(--red) !important;
  }

  .l-header__button:hover::before {
    opacity: 0;
  }

  .l-header__button:hover::after {
    opacity: 1;
  }

  /*----------------------------------------
    footer_hover
  ----------------------------------------*/

  .l-footer__logo:hover {
    opacity: 0.5;
  }

  .l-footer__link:hover {
    opacity: 0.5;
  }

  .l-footer__button:hover {
    background-color: var(--white);
    color: var(--black) !important;
  }

  .l-footer__sub-link:hover {
    opacity: 0.5;
  }

  /*----------------------------------------
    l-cta_hover
  ----------------------------------------*/

  .l-cta__button:hover .l-cta__button-text {
    opacity: 0.5;
  }

  .l-cta__button:hover .l-cta__button-arrow::before {
    animation: arrowLoop 0.3s forwards;
  }

  .l-cta__tel-num:hover {
    opacity: 0.5;
  }

  /*----------------------------------------
    breadcrumbs_hover
  ----------------------------------------*/

  .l-breadcrumbs__link:hover {
    opacity: 0.5;
  }

  /*----------------------------------------
    link-list_hover
  ----------------------------------------*/

  .l-link-list__link:hover .l-link-list__text {
    opacity: 0.5;
  }

  .l-link-list__link:hover .l-link-list__arrow::before {
    animation: arrowLoop 0.3s forwards;
  }
}

@keyframes arrowLoop {
  0% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  49% {
    transform: translate(150%, -50%);
    opacity: 1;
  }
  50% {
    transform: translate(-250%, -50%);
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

/*----------------------------------------
  tablet
----------------------------------------*/

@media screen and (max-width: 960px) {
  /*----------------------------------------
    header_tablet
  ----------------------------------------*/

  .l-header {
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 19px 15px 15px;
    display: flex;
    border-radius: 0;
  }

  .l-header__logo {
    max-width: 249px;
  }

  .l-header__wrap {
    display: none;
  }

  .l-header-hamburger {
    display: block;
    background-color: var(--black);
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 50%;
    position: relative;
    transition: all ease 0.3s;
    flex-shrink: 0;
  }

  .l-header-hamburger.is-active {
    gap: 0;
  }

  .l-header-hamburger span {
    width: 20px;
    height: 2px;
    background-color: var(--white);
    transition: all ease 0.3s;
  }

  .l-header-hamburger.is-active span {
    position: absolute;
  }

  .l-header-hamburger.is-active span:nth-of-type(1) {
    transform: rotate(45deg);
  }

  .l-header-hamburger.is-active span:nth-of-type(2) {
    display: none;
  }

  .l-header-hamburger.is-active span:nth-of-type(3) {
    transform: rotate(-45deg);
  }

  /*----------------------------------------
    footer_tablet
  ----------------------------------------*/

  .l-footer {
    padding-inline: 20px;
  }

  .l-footer__wrap {
    padding: 0;
    gap: 13px;
    flex-direction: column;
  }

  .l-footer__info {
    padding-block: 58px 49px;
  }

  .l-footer__logo {
    max-width: 320px;
  }

  .l-footer__text {
    font-size: 17px;
    margin-top: 14px;
  }

  .l-footer__inner {
    flex-direction: column;
    gap: 43px;
  }

  .l-footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 0;
    padding: 43px 10px 0;
    border-top: 1px solid var(--medium-gray);
  }

  .l-footer__copy {
    margin-inline: 0;
    padding: 45px 0 54px;
    text-align: center;
  }

  .l-footer__copy p {
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    color: #7c7c7c;
  }

  .l-footer__sub-menu {
    padding: 0 10px 50px;
  }

  .l-footer__button {
    width: 100%;
  }

  .l-footer__sub-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /*----------------------------------------
    l-cta_tablet
  ----------------------------------------*/

  .l-cta {
    background-image: url("../../img/renewal/cta/bg_sp.webp");
  }

  .l-cta__content {
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    gap: 40px;
  }

  .l-cta__content-left {
    padding-bottom: 0;
  }

  .l-cta__content-divider {
    width: 100%;
    border-left: none;
    border-top: 1px dashed var(--white);
  }

  .l-cta__sub-title {
    text-align: center;
  }

  .l-cta__title {
    margin: 12px auto 0;
  }

  /*----------------------------------------
    l-cta-contact_tablet
  ----------------------------------------*/

  .l-cta-contact__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .l-cta-contact__tel {
    grid-column: 1 / -1;
  }

  /*----------------------------------------
    main-visual_tablet
  ----------------------------------------*/

  .l-main-visual {
    height: 336px;
    padding-bottom: 19px;
  }

  .l-main-visual--large {
    height: 582px;
  }

  .l-main-visual::after {
    width: 190px;
    height: 190px;
    top: 34px;
    right: -59px;
  }

  .l-main-visual__image {
    width: calc(100% - 54px);
    margin-top: 80px;
    margin-bottom: 28px;
    padding-top: 0;
    padding-left: 30px;
    border-bottom-right-radius: 20px;
  }

  .l-main-visual__image[data-page="overview"] {
    background-image: url("../../img/renewal/overview/mv_image_sp.webp");
  }

  .l-main-visual__image[data-page="about"] {
    background-image: url("../../img/renewal/about/mv_image_sp.webp");
  }

  .l-main-visual__content {
    margin-top: 80px;
    padding-inline: 30px;
    padding-bottom: 57px;
    place-content: end;
  }

  .l-main-visual__title {
    font-size: 26px;
  }

  .l-main-visual__sub-title {
    font-size: 14px;
    margin-bottom: 9px;
  }

  .l-main-visual__breadcrumbs {
    padding-inline: 20px;
  }

  /*----------------------------------------
    breadcrumbs_tablet
  ----------------------------------------*/

  .l-breadcrumbs__item {
    font-size: 10px;
  }

  /*----------------------------------------
    link-list_tablet
  ----------------------------------------*/

  .l-link-list__text {
    font-size: 20px;
  }
}

@media screen and (max-width: 520px) {
  /*----------------------------------------
    l-cta_sp
  ----------------------------------------*/

  .l-cta {
    padding: 60px 45px;
  }

  .l-cta__content {
    gap: 20px;
    background-color: var(--red);
    padding: 16px 20px 29px;
    border-radius: 8px;
  }

  .l-cta__sub-title {
    font-size: 14px;
  }

  .l-cta__sub-title strong {
    font-size: 22px;
  }

  .l-cta__sub-title strong span {
    font-size: 16px;
  }

  .l-cta__title {
    max-width: 200px;
  }

  .l-cta__text {
    margin-top: 17px;
    font-size: 14px;
  }

  .l-cta__text br {
    display: none;
  }

  .l-cta__accent-text {
    font-size: 12px;
  }

  .l-cta__accent-text::before,
  .l-cta__accent-text::after {
    height: 25px;
  }

  .l-cta__accent-text::before {
    margin-right: 16px;
  }

  .l-cta__accent-text::after {
    margin-left: 5px;
  }

  .l-cta__button {
    margin-top: 11px;
    padding: 5px 5px 5px 21px;
    border-radius: 6px;
    gap: 29px;
  }

  .l-cta__button-text {
    font-size: 15px;
    line-height: 1.65;
    padding-left: 40px;
  }

  .l-cta__button-text::before {
    width: 25px;
    height: 18px;
  }

  .l-cta__button-text span {
    display: block;
    background: linear-gradient(transparent 60%, var(--yellow) 40%);
  }

  .l-cta__button-arrow {
    width: 29px;
    height: 80px;
    border-radius: 4px;
  }

  .l-cta__button-arrow::before {
    width: 10px;
    height: 7px;
  }

  .l-cta__tel-label {
    font-size: 12px;
    margin: 27px auto 0;
    padding: 5px 27px 7px;
    border-radius: 36px;
  }

  .l-cta__tel-num {
    margin: 14px auto 0;
    padding-left: 36px;
    font-size: 30px;
  }

  .l-cta__tel-num::before {
    width: 27px;
    height: 27px;
  }

  .l-cta__tel-text {
    font-size: 10px;
  }

  /*----------------------------------------
    l-cta-contact_sp
  ----------------------------------------*/

  .l-cta-contact {
    padding: 65px 25px 66px;
  }

  .l-cta-contact__heading {
    font-size: 44px;
    letter-spacing: -0.01em;
  }

  .l-cta-contact__title {
    margin-top: 4px;
    font-size: 16px;
    letter-spacing: 0em;
  }

  .l-cta-contact__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: 0em;
    margin-top: 40px;
    text-align: left;
  }

  .l-cta-contact__list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 45px auto 0;
  }

  .l-cta-contact__tel {
    grid-column: auto;
  }

  .l-cta-contact__item-link {
    padding: 10px 17px 10px 42px;
  }

  .l-cta-contact__item-text {
    font-size: 16px;
    line-height: 1.35;
  }

  .l-cta-contact__item-icon[data-icon="calculator"] {
    width: 20px;
    margin-right: 21px;
  }

  .l-cta-contact__item-icon[data-icon="mail"] {
    margin-right: 16px;
  }

  .l-cta-contact__item-arrow {
    width: 37px;
    height: 60px;
  }

  .l-cta-contact__item-arrow::before {
    width: 11px;
  }

  .l-cta-contact__tel-link {
    padding: 18px 32px;
  }

  .l-cta-contact__tel-title {
    font-weight: 800;
  }

  .l-cta-contact__tel-number {
    gap: 12px;
  }

  /*----------------------------------------
    link-list_sp
  ----------------------------------------*/

  .l-link-list {
    padding: 60px 25px;
  }

  .l-link-list__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .l-link-list__link {
    padding: 19px;
    border: 6px solid var(--medium-gray);
  }

  .l-link-list__arrow {
    height: 60px;
  }

  .l-link-list__arrow::before {
    height: 8px;
  }
}

/*----------------------------------------
  sp
----------------------------------------*/

@media screen and (max-width: 767px) {
  .l-course__tabs {
    gap: 5px;
  }
  .l-course-tab-item {
    width: calc((100% - 5px) / 2);
    height: 60px;
    border-top-left-radius: 2.5px;
    border-top-right-radius: 2.5px;
  }
  .l-course-tab-item__container {
    gap: 5px;
  }
  .l-course-tab-item__title {
    font-size: 16px;
    line-height: 1;
  }
  .l-course-tab-item__label {
    padding: 4px 6px;
    font-size: 12px;
    line-height: 1;
    width: 65px;
  }
  .l-course-content {
    padding: 40px 10px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  .l-course-content-table__text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.02em;
    text-align: left;
  }
  .l-course-content-table__note {
    font-size: 14px;
    margin-top: 10px;
  }
  .l-course-table {
    margin: 10px auto 0;
    display: block;
    overflow-x: scroll;
    max-width: 340px;
  }
  .l-course-table__header,
  .l-course-table__data {
    min-width: 108px;
    width: 108px;
    height: 42px;
    font-size: 12px;
  }
  .l-course__toggle-list {
    margin-top: 30px;
    gap: 10px;
  }
  .l-course-toggle-item {
    padding: 30px 20px;
  }
  .l-course-toggle-item-title::before,
  .l-course-toggle-item-title::after {
    width: 16px;
  }
  .l-course-toggle-item-title__text {
    font-size: 13px;
    max-width: 90%;
  }
  .l-course-toggle-item-title__text::before {
    width: 11px;
    height: 11px;
    top: 5px;
  }
  .l-course-toggle-item-content {
    font-size: 13px;
  }
  .l-course__box {
    padding: 40px 10px;
    border-radius: 6px;
  }
}
