@charset "UTF-8";
/* ===============================================
# fonts
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,700;1,700&display=swap");
/* ===============================================
# 共通
=============================================== */
:root {
  --main-color: #243754;
  --sub-color: #363C42;
  --accent-color: #C1B453;
  --text-color: #151617;
  --fz40: clamp( 32px, calc( 28.68px + 0.88vw ), 40px );
  --fz38: clamp( 22px, calc( 15.37px + 1.76vw ), 38px );
  --fz32: clamp( 28px, calc( 26.34px + 0.44vw ), 32px );
  --fz26: clamp( 18px, calc( 14.68px + 0.88vw ), 26px );
  --fz24: clamp( 18px, calc( 15.51px + 0.66vw ), 24px );
  --fz20: clamp( 16px, calc( 14.34px + 0.44vw ), 20px );
  --fz18: clamp( 14px, calc( 12.34px + 0.44vw ), 18px );
  --fz16: clamp( 14px, calc( 13.17px + 0.22vw ), 16px );
  --fz15: clamp( 14px, calc( 13.58px + 0.11vw ), 15px );
  --main-text: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif;
  --title-jp-text: "Shippori Mincho", serif;
  --title-en-text: "Cormorant Garamond", serif;
  --transition-normal: all 0.3s ease-out;
  --transition-slow: all 0.5s ease-out;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: var(--text-color);
  font-family: var(--main-text);
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--main-color);
  text-decoration: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

a:hover {
  color: var(--main-color);
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.img-trim img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pc-hide {
  display: none;
}

/* ===============================================
# loading
=============================================== */
.loading {
  position: fixed;
  inset: 0;
  color: #ffffff;
  background-color: var(--main-color);
  z-index: 9999;
}
.loading__text span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.loading__text.is-active span {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.loading .mv__title {
  font-size: var(--fz32);
  line-height: 1.6;
}

/* ===============================================
# parts - circle
=============================================== */
.circle::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #8290A6;
  border-radius: 50%;
}
.circle::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--main-color);
  border-radius: 50%;
}
.circle--white::before {
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.circle--white::after {
  left: 3px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #ffffff;
}

/* ===============================================
# parts - heading
=============================================== */
.heading {
  position: relative;
  text-align: center;
}
.heading__main {
  font-size: var(--fz40);
  font-weight: 700;
  font-family: var(--title-en-text);
  line-height: 1;
  letter-spacing: 0.5px;
  color: var(--main-color);
}
.heading__sub {
  font-size: 14px;
  font-family: var(--title-jp-text);
  line-height: 1;
  letter-spacing: 0;
  margin-top: 8px;
  color: var(--sub-color);
}

.heading02 {
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-right: auto;
}
.heading02 .heading__main {
  font-size: var(--fz40);
  font-weight: 700;
  font-family: var(--title-en-text);
  line-height: 0.7;
  letter-spacing: 0.5px;
  color: var(--main-color);
}
.heading02 .heading__sub {
  font-size: 14px;
  font-family: var(--title-jp-text);
  line-height: 1;
  letter-spacing: 0;
  margin-left: 8px;
  color: var(--sub-color);
}

.heading--white .heading__main {
  color: #ffffff;
}
.heading--white .heading__sub {
  color: #ffffff;
}

/* ===============================================
# header
=============================================== */
.header {
  width: 100%;
  height: 80px;
  padding-left: 40px;
  padding-right: 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}
.header.is-change {
  background-color: var(--main-color);
}
.header__logo {
  margin-right: auto;
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo a img {
  width: 100%;
  max-width: 223px;
  display: block;
}
.header__ul {
  gap: 32px;
}
.header__li {
  text-align: center;
}
.header__li a {
  font-size: var(--fz15);
  color: #ffffff;
}
.header__li a:hover {
  opacity: 0.7;
}
.header__li:last-child {
  margin-right: 32px;
}

/* ===============================================
# drawer
=============================================== */
.drawer__icon {
  z-index: 99;
  text-align: center;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}
.drawer__icon:hover {
  opacity: 0.7;
}
.drawer__icon.is-checked {
  -webkit-transform: translateX(-360px);
          transform: translateX(-360px);
}
.drawer__icon.is-checked .drawer__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #ffffff;
}
.drawer__icon.is-checked .drawer__bar:nth-of-type(2) {
  background: transparent;
}
.drawer__icon.is-checked .drawer__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #ffffff;
}
.drawer__bars {
  display: inline-block;
  width: 24px;
  height: 20px;
  position: relative;
  vertical-align: middle;
}
.drawer__bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background-color: #ffffff;
  width: 100%;
  height: 2px;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}
.drawer__bar:nth-of-type(1) {
  top: 0;
}
.drawer__bar:nth-of-type(2) {
  top: 8px;
}
.drawer__bar:nth-of-type(3) {
  top: 16px;
}
.drawer__background {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}
.drawer__background.is-checked {
  display: block;
  opacity: 0.8;
}
.drawer__content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  z-index: 98;
  width: 360px;
  max-width: 90%;
  height: 100%;
  background-color: var(--main-color);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  text-align: left;
  padding: 32px;
}
.drawer__content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer__logo a:hover {
  opacity: 0.7;
}
.drawer__logo a img {
  width: 100%;
  max-width: 223px;
  display: block;
}
.drawer__list {
  margin-top: 32px;
}
.drawer__li {
  margin-top: 16px;
}
.drawer__li > a {
  position: relative;
  color: #ffffff;
  display: inline-block;
  padding-left: 20px;
}
.drawer__li > a:hover {
  opacity: 0.7;
}
.drawer__li-sub {
  font-size: 13px;
  font-weight: 300;
  margin-top: 4px;
}
.drawer__li-sub:first-child {
  margin-top: 8px;
}
.drawer__li-sub > span {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  color: #ffffff;
}
.drawer__li-sub > span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ffffff;
}
.drawer__info {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: #ffffff;
  margin-top: 32px;
}

/* ===============================================
# main
=============================================== */
main {
  width: 100%;
}

/* ===============================================
# main visual
=============================================== */
.mv {
  width: 100%;
  overflow: hidden;
}
.mv__inner {
  width: 100%;
  height: 800px;
  position: relative;
}
.mv__text-wrap {
  position: absolute;
  top: 55%;
  left: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mv__title {
  font-size: var(--fz38);
  font-weight: 700;
  font-family: var(--title-jp-text);
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.mv__text {
  font-size: var(--fz16);
  line-height: 1.8;
  letter-spacing: 0;
  color: #ffffff;
  margin-top: 16px;
}
.mv__text span {
  font-size: 12px;
}

/* ===============================================
# bnr
=============================================== */
.bnr {
  width: 320px;
  z-index: 8;
  position: absolute;
  right: 8px;
  bottom: 76px;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}
.bnr:hover {
  opacity: 0.7;
  translate: 0 -4px;
}
.bnr__close {
  position: absolute;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 10px;
  color: #ffffff;
  background-color: var(--main-color);
  padding: 4px;
  cursor: pointer;
  top: -22px;
  right: 0;
}
.bnr__close i {
  padding-right: 2px;
}
.bnr__link {
  display: block;
}

/* ===============================================
# contact
=============================================== */
.contact {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 10px rgba(21, 22, 23, 0.25);
          box-shadow: 0 4px 10px rgba(21, 22, 23, 0.25);
  padding: 32px;
  position: relative;
}
.contact::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 60px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--accent-color);
}
.contact--translate {
  margin-top: -60px;
}
.contact__title {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-right: auto;
}
.contact__main {
  font-size: var(--fz32);
  font-weight: 700;
  font-family: var(--title-en-text);
  line-height: 0.7;
  letter-spacing: 0.5px;
  color: var(--main-color);
}
.contact__sub {
  font-size: 14px;
  font-family: var(--title-jp-text);
  line-height: 1;
  letter-spacing: 0;
  margin-left: 8px;
  color: var(--sub-color);
}
.contact__btn-wrap {
  gap: 24px;
}
.contact__btn {
  width: 260px;
  min-height: 56px;
  color: #ffffff;
  background-color: var(--main-color);
  text-align: center;
  padding: 8px;
}
.contact__btn:hover {
  color: #ffffff;
  background-color: var(--accent-color);
  translate: 0 -4px;
}
.contact__btn--mail {
  /* pointer-events: none;
  background-color: var(--text-color);
  opacity: 0.8; */
}
.contact__btn--mail .text {
  padding-left: 22px;
  background-image: url(../img/icon_mail.webp);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 18px 18px;
  line-height: 18px;
  letter-spacing: 0;
}
.contact__btn--tel {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact__btn--tel .num {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 22px;
  background-image: url(../img/icon_tel.webp);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 18px 18px;
  line-height: 18px;
}
.contact__btn--tel .text {
  font-size: 10px;
  margin-top: 4px;
}

/* ===============================================
# message
=============================================== */
.message__body {
  width: 100%;
  max-width: 1000px;
  padding: 24px;
  margin-inline: auto;
  background-color: #FFF1F1;
  border: 1px solid #D32020;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  margin-top: 48px;
}
.message__body:hover {
  opacity: 0.7;
  translate: 0 -4px;
}
.message__title {
  text-align: center;
  color: #D32020;
  line-height: 1.4;
}
.message__title span {
  padding-right: 26px;
  background-image: url(../img/icon_arrow-red.webp);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 18px 8px;
}
.message .modal {
  display: none;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.message .modal__wrap {
  width: 90%;
  max-width: 680px;
  height: 100%;
  margin-inline: auto;
  overflow: auto;
}
.message .modal__body {
  position: relative;
  background-color: #ffffff;
  padding: 48px;
}
.message .modal__title {
  font-size: var(--fz18);
  font-weight: 700;
  text-align: center;
}
.message .modal__text {
  line-height: 2.2;
  margin-top: 24px;
}
.message .modal__info {
  line-height: 1.6;
  margin-top: 16px;
}
.message .modal__info > span {
  font-weight: 700;
}
.message .modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: var(--sub-color);
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.message .modal__close > span {
  display: block;
  font-size: 10px;
  line-height: 1;
}

/* ===============================================
# section
=============================================== */
.section {
  position: relative;
  margin-top: 80px;
}
.section__inner {
  width: 100%;
  max-width: 1360px;
  padding-inline: 40px;
  margin-inline: auto;
}
.section__inner--vertical {
  padding-top: 48px;
  padding-bottom: 80px;
}

/* ===============================================
# features
=============================================== */
.features__inner {
  width: 100%;
  max-width: 1080px;
  margin-top: 48px;
  margin-inline: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.features__img {
  width: 44.4444444444%;
}
.features__img img {
  display: block;
  width: 100%;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
.features__body {
  width: 49.6296296296%;
  margin-bottom: 48px;
}
.features__title {
  font-size: var(--fz24);
  font-weight: 700;
  font-family: var(--title-jp-text);
  line-height: 1.6;
  color: var(--sub-color);
}
.features__text {
  line-height: 2.2;
  letter-spacing: 0;
  margin-top: 24px;
}

/* ===============================================
# point
=============================================== */
.point {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  color: #ffffff;
  background-color: var(--main-color);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: -48px;
  z-index: 1;
}
.point__item {
  width: 33.3333333333%;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  padding: 16px 16px;
}
.point__item:not(:last-child) {
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}
.point__check {
  display: block;
  width: 30px;
  margin-inline: auto;
}
.point__num {
  display: block;
  font-size: var(--fz16);
  font-family: var(--title-jp-text);
  font-style: italic;
  line-height: 1;
  margin-top: 8px;
}
.point__title {
  font-size: var(--fz16);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

/* ===============================================
# concerns
=============================================== */
.concerns {
  position: relative;
  color: #ffffff;
  background-color: var(--main-color);
}
.concerns::before {
  content: "";
  position: absolute;
  width: 35.2941176471%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #394C69;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
  z-index: 0;
}
.concerns .section__inner {
  max-width: 1280px;
}
.concerns__inner {
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 48px;
}
.concerns__img {
  width: 33.3333333333%;
  gap: 8px;
}
.concerns__img img:first-child {
  display: block;
  width: 100%;
}
.concerns__img img:not(:first-child) {
  display: block;
  width: calc(50% - 4px);
}
.concerns__body {
  width: 61.3333333333%;
}
.concerns__item:not(:first-child) {
  margin-top: 32px;
}
.concerns__title {
  position: relative;
  font-size: var(--fz20);
  font-weight: 700;
  font-family: var(--title-jp-text);
  line-height: 1.6;
  padding-left: 20px;
}
.concerns__text {
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0;
  margin-top: 8px;
}

/* ===============================================
# merit
=============================================== */
.merit__bg {
  width: 100%;
  background-image: url(../img/merit_bg.webp);
  background-repeat: no-repeat;
  background-position: top 70% center;
  background-size: cover;
  padding-inline: 20px;
}
.merit__lead {
  font-size: var(--fz26);
  font-weight: 700;
  font-family: var(--title-jp-text);
  text-align: center;
  line-height: 1.6;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 160px;
}
.merit .section__inner {
  position: relative;
  max-width: 1160px;
  background-color: #ffffff;
  padding-top: 24px;
  margin-top: -80px;
}
.merit .section__inner::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 6px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--accent-color);
}
.merit__inner {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 48px;
}
.merit__item {
  width: 29.6296296296%;
}
.merit__body {
  padding: 8px 16px 24px;
}
.merit__title {
  position: relative;
  font-size: var(--fz18);
  font-weight: 700;
  font-family: var(--title-jp-text);
  line-height: 1.6;
  color: var(--sub-color);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.merit__title .line {
  position: relative;
  display: block;
  width: 37.5%;
  height: 1px;
  background-color: var(--main-color);
  margin-left: 16px;
  translate: 0 1px;
}
.merit__title .circle::before {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.merit__title .circle::after {
  left: auto;
  right: 3px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.merit__text {
  line-height: 2;
  margin-top: 8px;
}

/* ===============================================
# introduction
=============================================== */
.introduction {
  background-color: #fafafa;
}
.introduction .section__inner {
  max-width: 1280px;
}
.introduction__inner {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  row-gap: 24px;
  margin-top: 48px;
}
.introduction__item {
  width: 46.6666666667%;
  border: 1px solid var(--main-color);
  padding: 24px;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}
.introduction__item:hover {
  opacity: 0.7;
  translate: 0 -4px;
}
.introduction__head {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.introduction__num {
  width: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.introduction__title {
  font-size: var(--fz18);
  font-weight: 700;
  font-family: var(--title-jp-text);
  line-height: 1.6;
  color: var(--main-color);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 26px;
  background-image: url(../img/icon_arrow-blue.webp);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 18px 8px;
}
.introduction__text {
  line-height: 2;
  padding-left: 48px;
  margin-top: 8px;
}
.introduction .modal {
  display: none;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.introduction .modal__wrap {
  width: 90%;
  max-width: 720px;
  height: 100%;
  margin-inline: auto;
  overflow: auto;
}
.introduction .modal__body {
  position: relative;
  background-color: #ffffff;
  padding: 48px;
}
.introduction .modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: var(--sub-color);
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.introduction .modal__close > span {
  display: block;
  font-size: 10px;
  line-height: 1;
}
.introduction .modal .introduction__title {
  background-image: none;
}
.introduction .modal .introduction__text {
  padding-left: 0;
}
.introduction .modal .introduction__list {
  margin-top: 16px;
  padding: 16px;
  background: #f1f1f1;
}
.introduction .modal .introduction__dl {
  padding: 8px;
}
.introduction .modal .introduction__dl:not(:last-child) {
  border-bottom: 1px solid var(--main-color);
}
.introduction .modal .introduction__dt {
  font-size: var(--fz16);
  font-weight: 700;
  font-family: var(--title-jp-text);
}
.introduction .modal .introduction__dd {
  line-height: 1.8;
  margin-top: 8px;
}

/* ===============================================
# partner
=============================================== */
.partner {
  background-color: var(--main-color);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(54, 60, 66)), color-stop(32%, rgba(54, 60, 66, 0)), color-stop(68%, rgba(54, 60, 66, 0)), to(rgb(54, 60, 66)));
  background-image: linear-gradient(to bottom, rgb(54, 60, 66) 0%, rgba(54, 60, 66, 0) 32%, rgba(54, 60, 66, 0) 68%, rgb(54, 60, 66) 100%);
  padding-top: 119px;
  padding-bottom: 119px;
  margin-top: 0;
}
.partner__inner {
  position: relative;
  padding-inline: 40px;
}
.partner .heading {
  z-index: 1;
}
.partner__lead {
  position: relative;
  font-size: var(--fz26);
  font-weight: 700;
  font-family: var(--title-jp-text);
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
  margin-top: 32px;
  z-index: 1;
}
.partner__slide {
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.partner__body {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 32px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll-x 34s linear infinite;
          animation: scroll-x 34s linear infinite;
}
.partner__img {
  width: 220px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.partner__img img {
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
@-webkit-keyframes scroll-x {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-1512px);
            transform: translateX(-1512px);
  }
}
@keyframes scroll-x {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-1512px);
            transform: translateX(-1512px);
  }
}

/* ===============================================
# flow
=============================================== */
.flow {
  position: relative;
  margin-top: 48px;
  margin-bottom: 48px;
}
.flow .section__inner {
  max-width: 1280px;
}
.flow__inner {
  position: relative;
  border-bottom: 2px solid var(--main-color);
  margin-top: 16px;
}
.flow__inner::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  rotate: 45deg;
}
.flow__text {
  line-height: 2.2;
}
.flow__area {
  max-width: 1080px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-inline: auto;
  margin-top: 48px;
  text-align: center;
}
.flow__item {
  position: relative;
  width: 14.8148148148%;
  padding-bottom: 16px;
}
.flow__num {
  display: block;
  font-size: var(--fz16);
  font-weight: 700;
  font-family: var(--title-jp-text);
  font-style: italic;
  color: var(--accent-color);
  line-height: 1;
  margin-top: 8px;
}
.flow__title {
  font-size: var(--fz16);
  font-weight: 700;
  font-family: var(--title-jp-text);
  color: var(--main-color);
  line-height: 1.6;
  margin-top: 8px;
}
.flow .circle::before {
  top: auto;
  bottom: -7px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.flow .circle::after {
  top: auto;
  bottom: -4px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/* ===============================================
# instance
=============================================== */
.instance__bg {
  position: relative;
  width: 100%;
  background-color: var(--main-color);
  padding-inline: 20px;
}
.instance__bg::before {
  content: "";
  position: absolute;
  width: 30.2941176471%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #394C69;
  -webkit-clip-path: polygon(0 0, 100% 0%, 74.2718446602% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 74.2718446602% 100%, 0% 100%);
  z-index: 0;
}
.instance__lead {
  position: relative;
  font-size: var(--fz26);
  font-weight: 700;
  font-family: var(--title-jp-text);
  text-align: center;
  line-height: 1.6;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 160px;
}
.instance .section__inner {
  position: relative;
  max-width: 1160px;
  background-color: #ffffff;
  padding-top: 24px;
  margin-top: -80px;
}
.instance .section__inner::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 6px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--accent-color);
}
.instance__inner {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 48px;
}
.instance__item {
  width: 29.6296296296%;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}
.instance__body {
  padding: 8px 16px 0;
}
.instance__title {
  position: relative;
  font-size: var(--fz18);
  font-weight: 700;
  font-family: var(--title-jp-text);
  line-height: 1.6;
  color: var(--sub-color);
  text-align: center;
}
.instance__link {
  text-align: center;
  margin-top: 16px;
}
.instance__link > span {
  display: inline-block;
  line-height: 1.4;
  color: var(--main-color);
  padding-right: 26px;
  background-image: url(../img/icon_arrow-blue.webp);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 18px 8px;
  cursor: pointer;
}
.instance .instance__item:has(.instance__link:hover) {
  opacity: 0.7;
  translate: 0 -4px;
}
.instance .modal {
  display: none;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.instance .modal__wrap {
  width: 90%;
  max-width: 720px;
  height: 100%;
  margin-inline: auto;
  overflow: auto;
}
.instance .modal__body {
  position: relative;
  background-color: #ffffff;
  padding: 48px;
}
.instance .modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: var(--sub-color);
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.instance .modal__close > span {
  display: block;
  font-size: 10px;
  line-height: 1;
}
.instance .modal .instance__img {
  display: block;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}
.instance .modal .instance__title {
  color: var(--main-color);
  margin-top: 8px;
}
.instance .modal .instance__text {
  line-height: 2;
  margin-top: 8px;
}
.instance .modal .instance__body {
  background: #f1f1f1;
  padding: 8px 16px;
  margin-top: 16px;
}
.instance .modal .instance__dl {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 8px;
  padding-bottom: 8px;
}
.instance .modal .instance__dl:not(:last-child) {
  border-bottom: 1px solid var(--main-color);
}
.instance .modal .instance__dt {
  width: 60%;
  margin-top: 4px;
}
.instance .modal .instance__dd {
  width: 40%;
  text-align: right;
  margin-top: 4px;
}
.instance .modal .instance__sum {
  text-align: right;
  margin-top: 8px;
}
.instance .modal .instance__sum > span {
  font-size: var(--fz20);
  font-weight: 700;
  font-family: var(--title-jp-text);
  color: var(--main-color);
}

/* ===============================================
# faq
=============================================== */
.faq {
  background-color: #fafafa;
}
.faq__inner {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 48px;
}
.faq__item {
  border: 1px solid var(--main-color);
  cursor: pointer;
}
.faq__item:not(:first-child) {
  margin-top: 24px;
}
.faq__question {
  position: relative;
  font-size: var(--fz15);
  font-weight: 700;
  font-family: var(--title-jp-text);
  line-height: 1.6;
  color: var(--main-color);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  padding: 20px 48px 20px 52px;
}
.faq__question::before {
  position: absolute;
  content: "Q";
  top: 21px;
  left: 24px;
  font-size: var(--fz20);
  font-weight: 600;
  font-family: var(--title-jp-text);
  line-height: 1;
  padding-right: 16px;
}
.faq__question:hover, .faq__question.active {
  color: #ffffff;
  background-color: var(--main-color);
}
.faq__question:hover .plus::before, .faq__question:hover .plus::after, .faq__question.active .plus::before, .faq__question.active .plus::after {
  background-color: #ffffff;
}
.faq__question.active .plus::before, .faq__question.active .plus::after {
  rotate: 45deg;
}
.faq__answer {
  display: none;
  position: relative;
  line-height: 2;
  padding: 20px 48px 20px 52px;
  background-color: #ffffff;
}
.faq__answer::before {
  position: absolute;
  content: "A";
  top: 24px;
  left: 24px;
  font-size: var(--fz20);
  font-weight: 600;
  font-family: var(--title-jp-text);
  line-height: 1;
  color: var(--main-color);
  padding-right: 16px;
}
.faq .plus {
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  top: 26px;
  right: 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.faq .plus::before, .faq .plus::after {
  content: "";
  position: absolute;
  background-color: var(--text-color);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}
.faq .plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq .plus::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faq .faq__item:first-child .faq__answer {
  display: block;
}

/* ===============================================
# cta
=============================================== */
.cta {
  position: relative;
  background-color: var(--main-color);
  padding-top: 48px;
  padding-bottom: 56px;
}
.cta::before {
  content: "";
  position: absolute;
  width: 32.3529411765%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #394C69;
  -webkit-clip-path: polygon(0 0, 100% 0%, 63.1818181818% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 63.1818181818% 100%, 0% 100%);
  z-index: 0;
}
.cta__lead {
  position: relative;
  font-size: var(--fz24);
  font-weight: 700;
  font-family: var(--title-jp-text);
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
}
.cta__inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  margin-top: 40px;
}
.cta__title {
  position: relative;
  line-height: 1.4;
  text-align: center;
  color: #ffffff;
  translate: 0 -50%;
}
.cta__title::before, .cta__title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background-color: #ffffff;
}
.cta__title::before {
  margin-right: 16px;
}
.cta__title::after {
  margin-left: 16px;
}
.cta__list-area {
  gap: 8px 32px;
  padding: 16px 8px 32px;
}
.cta__list {
  gap: 32px;
}
.cta__item {
  gap: 8px;
}
.cta__check {
  display: block;
  width: 30px;
}
.cta__text {
  font-size: var(--fz15);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.cta .contact {
  margin-top: 32px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* ===============================================
# footer
=============================================== */
.footer {
  color: #ffffff;
  background-color: var(--sub-color);
}
.footer__inner {
  width: 100%;
  max-width: 1280px;
  padding-inline: 40px;
  margin-inline: auto;
}
.footer__top {
  border-bottom: 1px solid #ffffff;
  padding: 24px 0 16px;
}
.footer__logo {
  margin-right: auto;
}
.footer__logo a:hover {
  opacity: 0.7;
}
.footer__logo a img {
  width: 100%;
  max-width: 223px;
  display: block;
}
.footer__info {
  font-size: 12px;
  margin-left: 24px;
}
.footer__bottom {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 16px;
}
.footer__ul {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 220px;
          flex: 1 0 220px;
}
.footer__li {
  margin-top: 16px;
}
.footer__li > a {
  position: relative;
  color: #ffffff;
  display: inline-block;
  padding-left: 20px;
}
.footer__li > a:hover {
  opacity: 0.7;
}
.footer__li-sub {
  font-size: 13px;
  font-weight: 300;
  margin-top: 4px;
}
.footer__li-sub:first-child {
  margin-top: 8px;
}
.footer__li-sub > span {
  position: relative;
  display: inline-block;
  padding-left: 36px;
}
.footer__li-sub > span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ffffff;
}

.copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 64px;
}

/* ===============================================
# pageTop
=============================================== */
.page-top {
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
}
.page-top:hover {
  translate: 0 -4px;
}
.page-top span {
  display: inline-block;
  background-image: url(../img/icon_arrow-white.webp);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 8px 18px;
  padding-right: 16px;
}

/* ===============================================
# animation
=============================================== */
.js-animateMainVisual-contact {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-filter: blur(8px);
          filter: blur(8px);
}

.js-animateMainVisual-bnr {
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(8px);
          filter: blur(8px);
}

.js-animateFadeInUp-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-filter: blur(8px);
          filter: blur(8px);
}

.js-animateFadeInLeft-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
  -webkit-filter: blur(8px);
          filter: blur(8px);
}

@media (max-width: 1024px){
  .header {
    height: 68px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .header__logo a img {
    max-width: 190px;
  }
  .header__li {
    display: none;
  }
  .drawer__logo a img {
    max-width: 190px;
  }
  .contact__btn {
    width: 200px;
  }
  .point__title {
    font-size: 14px;
  }
  .merit__bg {
    background-position: center center;
  }
}

@media (max-width: 768px){
  .tb-hide {
    display: none;
  }
  .header {
    height: 62px;
  }
  .mv__inner {
    height: 600px;
  }
  .bnr {
    width: 280px;
  }
  .section {
    margin-top: 56px;
  }
  .section__inner {
    padding-inline: 30px;
  }
  .concerns__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 24px;
  }
  .merit__title .line {
    width: 30%;
  }
  .introduction__item {
    padding: 16px;
  }
  .partner {
    margin-top: 0;
  }
  .instance__title .pc-hide {
    display: block;
  }
}

@media (max-width: 576px){
  .sp-hide {
    display: none;
  }
  .loading .mv__title {
    font-size: 20px;
  }
  .heading02 {
    display: block;
    text-align: center;
  }
  .heading02 .heading__main {
    line-height: 1;
  }
  .heading02 .heading__sub {
    margin-left: 0;
    margin-top: 8px;
  }
  .header {
    height: 54px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .header__logo a img {
    max-width: 170px;
  }
  .drawer__icon.is-checked {
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
  }
  .drawer__content {
    width: 300px;
  }
  .drawer__logo a img {
    max-width: 170px;
  }
  .mv__text-wrap {
    width: 94%;
    top: 30%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .bnr {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .contact::after {
    width: 60px;
    height: 6px;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .contact__title {
    margin-left: auto;
  }
  .contact__btn-wrap {
    gap: 8px;
    margin-top: 16px;
  }
  .contact__btn {
    width: 100%;
  }
  .message__body {
    padding: 16px;
  }
  .message__title span {
    display: block;
  }
  .message__title span .pc-hide {
    display: block;
  }
  .message .modal__body {
    padding: 48px 32px;
  }
  .message .modal__title {
    font-size: 15px;
  }
  .message .modal__text {
    line-height: 1.8;
    margin-top: 16px;
  }
  .message .modal__close {
    top: 8px;
    right: 8px;
  }
  .section__inner {
    padding-inline: 20px;
  }
  .section__inner--vertical {
    padding-bottom: 48px;
  }
  .features__inner {
    margin-top: 24px;
  }
  .features__img {
    width: 100%;
  }
  .features__img img {
    height: 280px;
  }
  .features__body {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .features__text {
    line-height: 1.8;
    margin-top: 16px;
  }
  .point {
    margin-top: 0;
    padding: 0;
  }
  .point__item {
    width: 100%;
  }
  .point__item:not(:last-child) {
    border-right: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }
  .concerns::before {
    width: 40%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 0% 100%, 0% 100%);
  }
  .concerns__img {
    width: 100%;
  }
  .concerns__body {
    width: 100%;
    margin-top: 24px;
  }
  .concerns__item:not(:first-child) {
    margin-top: 24px;
  }
  .concerns__text {
    line-height: 1.8;
  }
  .merit__inner {
    margin-top: 24px;
  }
  .merit__item {
    width: 100%;
  }
  .merit__title {
    font-size: var(--fz20);
  }
  .merit__text {
    line-height: 1.8;
  }
  .introduction__inner {
    margin-top: 24px;
  }
  .introduction__item {
    width: 100%;
  }
  .introduction__head {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
  .introduction__num {
    width: 24px;
  }
  .introduction__title {
    font-size: var(--fz20);
  }
  .introduction__text {
    line-height: 1.8;
    padding-left: 0;
  }
  .introduction .modal__body {
    padding: 48px 16px;
  }
  .introduction .modal__close {
    top: 8px;
    right: 8px;
  }
  .introduction .modal .introduction__list {
    padding: 8px;
  }
  .introduction .modal .introduction__dd {
    line-height: 1.6;
  }
  .partner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .partner__inner {
    padding-inline: 20px;
  }
  .partner__lead .pc-hide {
    display: block;
  }
  .flow {
    margin-top: 48px;
  }
  .flow__inner {
    border-bottom: none;
  }
  .flow__inner::after {
    left: -4px;
    right: auto;
    bottom: 0;
    rotate: 135deg;
  }
  .flow__text {
    line-height: 1.8;
  }
  .flow__area {
    border-left: 2px solid var(--main-color);
  }
  .flow__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 16px;
  }
  .flow__img {
    max-width: 160px;
    margin-left: 16px;
  }
  .flow__num {
    text-align: left;
  }
  .flow__title {
    font-size: var(--fz20);
  }
  .flow .circle::before {
    top: 77px;
    bottom: auto;
    left: -1px;
  }
  .flow .circle::after {
    top: 80px;
    bottom: auto;
    left: -1px;
  }
  .instance__bg::before {
    width: 40%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 0% 100%, 0% 100%);
  }
  .instance__inner {
    margin-top: 24px;
    row-gap: 24px;
  }
  .instance__item {
    width: 100%;
  }
  .instance__title {
    font-size: var(--fz20);
  }
  .instance__title .pc-hide {
    display: none;
  }
  .instance__link {
    margin-top: 8px;
  }
  .instance__link > span {
    display: block;
    border: 1px solid var(--main-color);
    padding: 4px;
    background-position: center right 8%;
  }
  .instance .modal__body {
    padding: 48px 16px;
  }
  .instance .modal__close {
    top: 8px;
    right: 8px;
  }
  .instance .modal .instance__text {
    line-height: 1.8;
  }
  .instance .modal .instance__body {
    padding: 0px 8px;
  }
  .faq__inner {
    margin-top: 24px;
  }
  .faq__question {
    font-weight: 400;
    font-family: var(--main-text);
    padding: 16px 32px;
  }
  .faq__question::before {
    top: 18px;
    left: 8px;
  }
  .faq__answer {
    line-height: 1.8;
    padding: 16px 32px;
  }
  .faq__answer::before {
    top: 19px;
    left: 8px;
  }
  .faq .plus {
    top: 21px;
    right: 8px;
  }
  .cta::before {
    width: 40%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 0% 100%, 0% 100%);
  }
  .cta__lead .pc-hide {
    display: block;
  }
  .cta__title .pc-hide {
    display: block;
  }
  .cta__list-area {
    gap: 16px 32px;
    padding: 16px 24px 32px;
  }
  .cta__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 16px;
  }
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__info {
    margin-left: 0;
    margin-top: 16px;
  }
  .page-top {
    margin-top: 16px;
  }
}