@charset "UTF-8";
:root {
  --c-white: #fff;
  --c-black: #323232;
  --c-green: #C7D500;
  --c-blue: #35B0EC;
  --c-yellow: #FFFF64;
  --c-lightblue: #E6F5FC;
  --font-en: "Lora", "Georgia", serif;
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

html {
  font-size: 100%;
}

body {
  font-family: var(--font-ja);
  color: var(--c-black);
  font-weight: bold;
  background-color: #fff;
  word-break: normal;
  overflow-wrap: break-word;
}

a {
  color: var(--c-black);
  text-decoration: none;
}

img {
  width: 100%;
  vertical-align: top;
}

li {
  list-style: none;
}

.inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 10vw, 120px);
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .inner {
    padding: 0 34px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0;
  }
}

.sec-title {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec-title {
    margin-bottom: 35px;
    padding: 0 5px;
  }
}
.sec-title--main {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.875rem;
  line-height: normal;
  letter-spacing: 0.05em;
  color: var(--c-blue);
  margin-bottom: 8px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sec-title--main {
    letter-spacing: 0.03;
    line-height: 1.15;
    font-size: clamp(24px, 6vw, 45px);
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
}
.sec-title--main:not(.flow__sec-title--small):not(.flow__sec-title--wrap):not(.sec-title--no-underline)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background-color: #FED321;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s ease-out;
}
@media screen and (max-width: 768px) {
  .sec-title--main:not(.flow__sec-title--small):not(.flow__sec-title--wrap):not(.sec-title--no-underline)::after {
    height: min(8px, 1.0666666667vw);
  }
}
.sec-title--main.is-shown:not(.flow__sec-title--small):not(.flow__sec-title--wrap):not(.sec-title--no-underline)::after {
  transform: scaleX(1);
}
.sec-title--sub {
  font-size: 1.125rem;
  line-height: normal;
  font-weight: bold;
  color: var(--c-black);
}
@media screen and (max-width: 768px) {
  .sec-title--sub {
    font-size: clamp(18px, 3.7333333333vw, 28px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(120px, 39.7333333333vw, 298px);
  padding: min(16px, 1.3333333333vw);
  border-radius: 400px;
  color: var(--c-white);
  font-weight: 500;
  font-size: clamp(16px, 3.0666666667vw, 23px);
  transition: opacity 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: clamp(16px, 4vw, 30px);
    min-width: clamp(120px, 65.3333333333vw, 490px);
    padding: min(20px, 2.6666666667vw) min(32px, 4.2666666667vw);
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 23px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--c-white);
  border-right: 2px solid var(--c-white);
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.4s;
}
.btn:hover {
  opacity: 0.7;
}
.btn:hover::after {
  right: 18px;
}
.btn--green {
  background-color: var(--c-green);
}
.btn--blue {
  background-color: var(--c-blue);
}
.btn--compact {
  padding: min(8px, 1.0666666667vw) min(22px, 2.9333333333vw);
}

.cta {
  display: flex;
  justify-content: center;
  gap: min(56px, 7.4666666667vw);
  margin-top: min(65px, 5.4166666667vw);
  padding: min(24px, 2vw) 0;
  background: linear-gradient(0deg, #B9E9FF 10%, #EFFAFF 75%);
}
@media screen and (max-width: 768px) {
  .cta {
    padding: min(50px, 6.6666666667vw) 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

@media screen and (min-width: 769px) {
  .u-sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u-tab {
    display: none;
  }
}
@media screen and (min-width: 961px) {
  .u-tab {
    display: none;
  }
}

.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------------------
header
-------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid var(--c-blue);
  transition: height 0.3s ease;
  background-color: var(--c-white);
}
.header.is-scrolled {
  height: 60px;
}
@media screen and (max-width: 960px) {
  .header.is-scrolled {
    height: min(92px, 12.2666666667vw);
  }
}
@media screen and (max-width: 960px) {
  .header {
    height: min(100px, 13.3333333333vw);
  }
}
.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 961px) and (max-width: 1119px) {
  .header__inner {
    padding: 0 34px;
  }
}
@media screen and (max-width: 960px) {
  .header__inner {
    display: none;
  }
}
.header__logo-img {
  width: 65px;
  transition: width 0.3s ease;
}

.header.is-scrolled .header__logo-img {
  width: 46px;
}
.header.is-scrolled .sp-header__logo-img {
  width: min(64px, 8.5333333333vw);
}
.header.is-scrolled .gnav__menu-cta,
.header.is-scrolled .sp-header__cta {
  display: none;
}

.gnav {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 961px) and (max-width: 1119px) {
  .gnav {
    gap: 20px;
  }
}
.gnav__menu {
  display: flex;
  gap: min(20px, 1.6666666667vw);
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (min-width: 961px) and (max-width: 1119px) {
  .gnav__menu {
    gap: min(20px, 1.6666666667vw);
  }
}
.gnav__link {
  position: relative;
}
.gnav__link:hover {
  opacity: 0.8;
}
.gnav__menu-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 961px) and (max-width: 1119px) {
  .gnav__menu-cta {
    gap: 14px;
  }
}
.gnav__item-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.gnav__cta-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--c-black);
  text-wrap: nowrap;
}
.gnav__link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-white);
}
.gnav__link-cta--green {
  background-color: var(--c-green);
}
.gnav__link-cta--blue {
  background-color: var(--c-blue);
}

@media screen and (min-width: 961px) {
  .sp-header__inner {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .sp-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.sp-header__top {
  position: relative;
  z-index: 950;
  background-color: var(--c-white);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 min(30px, 4vw);
}
.sp-header__logo-img {
  width: min(91px, 12.1333333333vw);
  transition: width 0.3s ease;
}
.sp-header__actions {
  display: flex;
  gap: min(30px, 4vw);
  align-items: center;
}
.sp-header__cta {
  display: flex;
  gap: min(20px, 2.6666666667vw);
}
.sp-header__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(2px, 0.2666666667vw);
}
.sp-header__cta-label {
  font-size: clamp(6px, 1.6vw, 12px);
  font-weight: 500;
  color: var(--c-black);
  text-wrap: nowrap;
}
.sp-header__link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(80px, 24vw, 180px);
  padding: min(12px, 1.6vw) min(22px, 2.9333333333vw);
  border-radius: 40px;
  color: var(--c-white);
  font-size: clamp(12px, 2.9333333333vw, 22px);
  font-weight: 500;
}
.sp-header__link-cta--green {
  background-color: var(--c-green);
}
.sp-header__link-cta--blue {
  background-color: var(--c-blue);
}

@media screen and (min-width: 961px) {
  .hamburger {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .hamburger {
    position: relative;
    width: min(40px, 8vw);
    height: min(60px, 8vw);
    transition: all 0.5s;
    cursor: pointer;
    z-index: 1000;
  }
}
@media screen and (max-width: 960px) {
  .hamburger__line {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--c-blue);
    transition: all 0.5s;
  }
  .hamburger__line:nth-child(1) {
    top: calc(50% - 11px);
  }
  .hamburger__line:nth-child(2) {
    top: calc(50% - 1px);
  }
  .hamburger__line:nth-child(3) {
    top: calc(50% + 9px);
  }
}

/* .open付与後の× */
@media screen and (max-width: 960px) {
  .open .hamburger__line:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
}
@media screen and (max-width: 960px) {
  .open .hamburger__line:nth-child(2) {
    opacity: 0;
  }
}
@media screen and (max-width: 960px) {
  .open .hamburger__line:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}

@media screen and (min-width: 961px) {
  .sp-nav {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .sp-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: min(100px, 13.3333333333vw);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: var(--c-white);
    z-index: 900;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s, top 0.3s ease;
  }
}
@media screen and (max-width: 960px) {
  .header.is-scrolled .sp-nav {
    top: min(92px, 12.2666666667vw);
  }
}
.sp-nav__menu {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sp-nav__item {
  flex: 1;
  border-bottom: 1px solid #D5D5D5;
}
.sp-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 500;
}
.sp-nav__menu-cta {
  display: flex;
  justify-content: center;
  gap: min(30px, 4vw);
  margin: min(80px, 10.6666666667vw) 0;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 500;
  color: var(--c-white);
}
.sp-nav__link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(120px, 40vw, 300px);
  padding: min(12px, 1.6vw) min(30px, 4vw);
  border-radius: 60px;
  color: var(--c-white);
}
.sp-nav__link-cta--green {
  background-color: var(--c-green);
}
.sp-nav__link-cta--blue {
  background-color: var(--c-blue);
}

/* .open付与後の#navi */
.open #navi {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/*-------------------------------------------
mv
-------------------------------------------*/
.mv {
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 960px) {
  .mv {
    padding-top: min(100px, 13.3333333333vw);
  }
}
.mv__photo-pc {
  width: 100%;
  height: max(400px, 39.8333333333vw);
  background-image: url(../img/mv_bg-pc.webp);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .mv__photo-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .mv__photo-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mv__photo-sp {
    width: 100%;
    aspect-ratio: 1500/1112;
    background-image: url(../img/mv_bg-sp-2.png);
    background-size: cover;
    background-position: center;
  }
}
.mv__main-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .mv__main-area {
    flex-direction: column;
  }
}
.mv__catch {
  position: absolute;
  top: 40px;
  right: 20px;
  z-index: 2;
  width: 55%;
}
@media screen and (max-width: 768px) {
  .mv__catch {
    position: static;
    width: 100%;
    text-align: center;
  }
}
.mv__heading {
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--c-blue);
  font-size: max(24px, 2.75vw);
}
@media screen and (max-width: 768px) {
  .mv__heading {
    font-size: clamp(14px, 6.6666666667vw, 50px);
    position: absolute;
    bottom: 4.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
.mv__heading-large {
  font-size: max(32px, 4.3333333333vw);
}
.mv__heading-large:first-of-type {
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .mv__heading-large:first-of-type {
    padding-left: min(20px, 2.6666666667vw);
  }
}
@media screen and (max-width: 768px) {
  .mv__heading-large {
    font-size: clamp(18px, 9.3333333333vw, 70px);
    text-align: center;
  }
}
.mv__heading-mid {
  font-size: max(36px, 3.3333333333vw);
}
@media screen and (max-width: 768px) {
  .mv__heading-mid {
    font-size: clamp(16px, 7.7333333333vw, 58px);
  }
}
.mv__sub {
  font-size: max(13px, 1.8333333333vw);
  letter-spacing: 0.06em;
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .mv__sub {
    position: absolute;
    right: 4vw;
    top: 1.4%;
    padding: 0;
    text-align: right;
    font-size: clamp(13px, 4.2666666667vw, 32px);
  }
}
@media screen and (max-width: 768px) {
  .mv__sub-line {
    display: block;
  }
}
.mv__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    padding: 0 30px;
  }
}
.mv__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(30px, 4vw);
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .mv__badges {
    width: 100%;
    gap: min(12px, 1.6vw);
    margin-top: min(30px, 4vw);
  }
}
.mv__badge-img {
  width: auto;
  height: clamp(20px, 6.8333333333vw, 82px);
}
@media screen and (max-width: 768px) {
  .mv__badge-img {
    width: auto;
    height: clamp(30px, 10.9333333333vw, 82px);
  }
}
.mv__point-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  gap: min(20px, 2.6666666667vw);
  margin-top: min(20px, 1.6666666667vw);
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .mv__point-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .mv__point-list {
    grid-template-columns: 1fr 1fr;
    margin-top: min(35px, 4.6666666667vw);
  }
}
.mv__point-item {
  padding: min(16px, 2.1333333333vw) min(35px, 4.6666666667vw);
  border-radius: 300px;
  box-shadow: 0 0 5px 3px color-mix(in srgb, var(--c-blue) 50%, transparent);
  font-size: clamp(12px, 2.1333333333vw, 16px);
  text-align: center;
  line-height: 1.2;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .mv__point-item {
    padding: min(26px, 3.4666666667vw) min(35px, 4.6666666667vw);
    font-size: clamp(10px, 2.9333333333vw, 22px);
    letter-spacing: 1.8;
  }
}
.mv__point-underline {
  background: linear-gradient(transparent 80%, var(--c-green) 80%);
  font-size: clamp(14px, 2.4vw, 18px);
}
@media screen and (max-width: 768px) {
  .mv__point-underline {
    font-size: clamp(13px, 3.3333333333vw, 25px);
  }
}
@media screen and (max-width: 768px) {
  .mv__cta {
    margin-top: min(60px, 8vw);
    padding-top: min(40px, 5.3333333333vw);
  }
}
.mv__cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mv__cta-label {
  font-size: clamp(13px, 2.4vw, 18px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .mv__cta-label {
    font-size: clamp(13px, 3.7333333333vw, 28px);
  }
}

/*-------------------------------------------
media
-------------------------------------------*/
.media__inner {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .media__inner {
    padding-top: min(50px, 6.6666666667vw);
    padding-bottom: min(70px, 9.3333333333vw);
  }
}
.media__sec-title {
  margin-bottom: 28px;
}
.media__img-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(70px, 5.8333333333vw);
}
@media screen and (max-width: 768px) {
  .media__img-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 40px min(41px, 5.4666666667vw);
  }
}
@media screen and (max-width: 768px) {
  .media__img-item:first-child {
    grid-column: 1/3;
  }
}
.media__img {
  height: clamp(40px, 4.1666666667vw, 50px);
}
@media screen and (max-width: 768px) {
  .media__img {
    height: clamp(40px, 7.5vw, 90px);
  }
}

/*-------------------------------------------
problem
-------------------------------------------*/
.problem {
  padding-top: 69px;
  background-color: var(--c-lightblue);
}
@media screen and (max-width: 768px) {
  .problem {
    padding-top: min(50px, 6.6666666667vw);
  }
}
.problem__sec-title--main {
  margin-bottom: 8px;
}
.problem__list {
  display: grid;
  grid-template-columns: repeat(5, 178px);
  justify-content: center;
  gap: min(18px, 2.4vw);
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .problem__list {
    grid-template-columns: repeat(4, 178px);
    gap: min(14px, 1.8666666667vw);
  }
}
@media screen and (max-width: 768px) {
  .problem__list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(23px, 3.0666666667vw);
    padding: 0 min(25px, 3.3333333333vw);
  }
}
.problem__item {
  text-align: center;
  padding: 8px 10px 24px;
  box-shadow: 0 0 3px 3px color-mix(in srgb, var(--c-blue) 40%, transparent);
  border-radius: 10px;
  background-color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .problem__item {
    padding: min(5px, 0.6666666667vw) min(9px, 1.2vw) min(18px, 2.4vw) min(9px, 1.2vw);
    border-radius: 11px;
  }
}
.problem__item-num {
  font-family: var(--font-en);
  font-size: 2.8125rem;
  font-weight: 550;
  color: var(--c-green);
}
@media screen and (max-width: 768px) {
  .problem__item-num {
    font-size: clamp(40px, 7.0666666667vw, 53px);
  }
}
.problem__item-text {
  font-size: 0.875rem;
  line-height: 1.5em;
  font-weight: 500;
  border-top: 2px solid var(--c-green);
  padding-top: 16px;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .problem__item-text {
    font-size: clamp(13px, 2.6666666667vw, 20px);
    line-height: 1.4;
    border-top: 2.2px solid var(--c-green);
    padding-top: min(14px, 1.8666666667vw);
    margin-top: min(8px, 1.0666666667vw);
  }
}
.problem__alart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(30px, 2.5vw);
  text-align: center;
  font-size: clamp(16px, 1.9166666667vw, 23px);
  letter-spacing: 0.06em;
  background-color: var(--c-green);
  padding: 14px 30px;
  border-radius: 200px;
  color: var(--c-white);
  margin-top: 36px;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .problem__alart {
    justify-content: space-between;
    padding: 17px 28px;
    font-size: clamp(16px, 3.4666666667vw, 26px);
    line-height: 1.2em;
    margin: 32px min(65px, 8.6666666667vw);
  }
}
.problem__alart::before, .problem__alart::after {
  content: "";
  flex-shrink: 0;
  width: min(32px, 2.6666666667vw);
  height: min(29px, 2.4166666667vw);
  background-image: url(../img/icon_!.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .problem__alart::before, .problem__alart::after {
    width: min(52px, 6.9333333333vw);
    height: min(47px, 6.2666666667vw);
  }
}
.problem__solution {
  position: relative;
  margin-top: 60px;
  background: linear-gradient(0deg, #0B8AD6 0%, #47BFFA 100%);
}
.problem__solution-text {
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  color: var(--c-yellow);
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .problem__solution-text {
    font-size: clamp(24px, 5.6vw, 42px);
    padding: 16px 0 32px 0;
    line-height: 1.1em;
    letter-spacing: 0.05em;
  }
}
.problem__solution-text--small {
  font-size: 1.5625rem;
  color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .problem__solution-text--small {
    font-size: clamp(16px, 4.2666666667vw, 32px);
  }
}
.problem__solution::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 20px solid #0B8AD6;
}
@media screen and (max-width: 768px) {
  .problem__solution::after {
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
  }
}

/*-------------------------------------------
reason
-------------------------------------------*/
.reason {
  padding-top: 65px;
}
@media screen and (max-width: 768px) {
  .reason {
    padding-top: 40px;
  }
}
.reason__list {
  margin: 40px 0 76px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .reason__list {
    margin: min(20px, 2.6666666667vw) 0 min(60px, 8vw) 0;
    gap: min(40px, 5.3333333333vw);
  }
}
.reason__item {
  display: flex;
  align-items: flex-start;
  gap: 34px;
}
@media screen and (max-width: 768px) {
  .reason__item {
    flex-direction: column;
  }
}
.reason__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .reason__item--reverse {
    flex-direction: column;
  }
}
.reason__item--01 .reason__text-area {
  width: 52%;
}
.reason__item--01 .reason__img-area {
  width: 48%;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .reason__item--01 .reason__img-area {
    height: clamp(280px, 29.5833333333vw, 355px);
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .reason__item--01 .reason__img-area {
    height: clamp(190px, 61.3333333333vw, 460px);
    overflow: hidden;
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  .reason__item--01 .reason__img-area img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .reason__item--01 .reason__img-area img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.reason__item--02 .reason__text-area {
  width: 40%;
}
.reason__item--02 .reason__img-area {
  width: 62%;
  padding: 40px 4px;
}
@media screen and (max-width: 768px) {
  .reason__item--02 .reason__img-area {
    padding: min(36px, 4.8vw) 16px;
  }
}
.reason__item--03 {
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .reason__item--03 {
    gap: 34px;
  }
}
.reason__item--03 .reason__text-area {
  width: 44%;
}
.reason__item--03 .reason__img-area {
  width: 58%;
}
.reason__item--04 .reason__text-area {
  width: 40%;
}
.reason__item--04 .reason__img-area {
  width: 60%;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .reason__item--01 .reason__text-area, .reason__item--01 .reason__img-area, .reason__item--02 .reason__text-area, .reason__item--02 .reason__img-area, .reason__item--03 .reason__text-area, .reason__item--03 .reason__img-area, .reason__item--04 .reason__text-area, .reason__item--04 .reason__img-area {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .reason__item--01 .reason__img-area, .reason__item--02 .reason__img-area, .reason__item--03 .reason__img-area, .reason__item--04 .reason__img-area {
    width: calc(100% - min(50px, 6.6666666667vw) * 2);
  }
}
.reason__text-area {
  padding-top: min(13px, 1.0833333333vw);
}
.reason__label {
  padding: 10px 32px 10px 21px;
  background-color: var(--c-blue);
  color: var(--c-white);
  border-radius: 0 60px 60px 0;
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 450;
  font-size: 28px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .reason__label {
    padding: min(15px, 2vw) min(45px, 6vw) min(13px, 1.7333333333vw) min(31px, 4.1333333333vw);
    font-size: clamp(20px, 5.6vw, 42px);
  }
}
.reason__label--small {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  .reason__label--small {
    font-size: clamp(16px, 4vw, 30px);
  }
}
.reason__title {
  color: var(--c-blue);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.03em;
  padding: 14px 0 16px 0;
}
@media screen and (max-width: 768px) {
  .reason__title {
    text-align: center;
    font-size: clamp(20px, 4.6666666667vw, 35px);
    padding: 22px 0 14px 0;
  }
}
.reason__text {
  font-size: 1.0625rem;
  line-height: 1.7;
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .reason__text .u-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .reason__text {
    font-size: clamp(16px, 3.2vw, 24px);
    line-height: 1.4;
  }
}
.reason__img-area {
  padding: 16px 24px;
  box-shadow: 0 0 5px 5px color-mix(in srgb, var(--c-blue) 25%, transparent);
  border-radius: 10px;
  min-height: min(280px, 27.1666666667vw, 326px);
}
@media screen and (max-width: 768px) {
  .reason__img-area {
    border-radius: 20px;
    min-height: none;
  }
}
.reason__img-area--02 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 61%;
  padding: 8px 4px;
}
.reason__img-text {
  display: flex;
  align-items: flex-start;
  padding-top: 8px;
  font-size: clamp(12px, 2vw, 15px);
  color: var(--c-blue);
  font-weight: 600;
}
.reason__img-text::before {
  content: "";
  flex-shrink: 0;
  width: min(26px, 2.1666666667vw);
  height: min(26px, 2.1666666667vw);
  background-image: url(../img/icon_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .reason__img-text::before {
    width: min(26px, 3.4666666667vw);
    height: min(26px, 3.4666666667vw);
  }
}
@media screen and (max-width: 768px) {
  .reason__title, .reason__text, .reason__img-area {
    margin: 0 min(50px, 6.6666666667vw);
  }
}
@media screen and (max-width: 768px) {
  .reason__title {
    margin: 0 min(10px, 1.3333333333vw);
  }
}

/*-------------------------------------------
movie
-------------------------------------------*/
.movie {
  background-color: #DBDFE2;
  padding: 50px 0 77px 0;
}
@media screen and (max-width: 768px) {
  .movie {
    padding: 60px 0;
  }
}
.movie__video-area {
  padding: 0 min(80px, 6.6666666667vw);
}
@media screen and (max-width: 768px) {
  .movie__video-area {
    padding: 0 min(30px, 4vw);
  }
}

/*-------------------------------------------
feature
-------------------------------------------*/
.feature {
  padding: 60px 0 57px 0;
  background-color: #E6F5FC;
}
.feature__sub-title--small {
  font-size: 1rem;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  .feature__sub-title--small {
    font-size: clamp(14px, 2.6666666667vw, 20px);
  }
}
.feature__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: min(49px, 4.0833333333vw) min(20px, 1.6666666667vw);
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .feature__list {
    grid-template-columns: repeat(4, 1fr);
    gap: min(49px, 4.0833333333vw) min(20px, 1.6666666667vw);
  }
  .feature__list .feature__item:nth-child(9) {
    grid-column: 2/3;
  }
  .feature__list .feature__item:nth-child(10) {
    grid-column: 3/4;
  }
}
@media screen and (max-width: 768px) {
  .feature__list {
    grid-template-columns: repeat(auto-fit, minmax(clamp(100px, 22.6666666667vw, 170px), 1fr));
    gap: min(41px, 5.4666666667vw) min(20px, 2.6666666667vw);
    padding: 0 min(40px, 5.3333333333vw);
  }
}
@media screen and (max-width: 477px) {
  .feature__list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(41px, 5.4666666667vw) min(40px, 5.3333333333vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .feature__item {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.feature__modal-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  aspect-ratio: 1;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 5px 12px rgba(70, 70, 70, 0.38);
  background-color: var(--c-white);
}
@media screen and (min-width: 769px) {
  .feature__modal-btn {
    width: 151px;
    gap: 0;
  }
}
.feature__modal-btn:hover {
  opacity: 0.6;
}
.feature__modal-btn:active {
  box-shadow: 0 2px 4px rgba(70, 70, 70, 0.38);
  transform: translateY(2px);
}
.feature__modal-icon {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .feature__modal-icon {
    width: clamp(60px, 13.3333333333vw, 100px);
    margin-bottom: 0;
  }
}
.feature__title {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--c-blue);
}
@media screen and (max-width: 768px) {
  .feature__title {
    font-size: clamp(18px, 2.6666666667vw, 20px);
  }
}
.feature__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 79.5vw, 954px);
  height: clamp(400px, 53vw, 636px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border-radius: 0 0 20px 20px;
}
.feature__modal--01 {
  background-image: url(../img/modal_bg-pc-01.png);
}
@media screen and (max-width: 768px) {
  .feature__modal--01 {
    background-image: url(../img/modal_bg-sp-01.png);
  }
}
.feature__modal--01 .feature__modal-stat::before {
  top: 65%;
  height: 1.2rem;
}
@media screen and (max-width: 768px) {
  .feature__modal--01 .feature__modal-stat::before {
    top: 50%;
    height: 4rem;
  }
}
.feature__modal--02 {
  background-image: url(../img/modal_bg-pc-02.png);
}
@media screen and (max-width: 768px) {
  .feature__modal--02 {
    background-image: url(../img/modal_bg-sp-02.png);
  }
}
.feature__modal--03 {
  background-image: url(../img/modal_bg-pc-03.png);
}
@media screen and (max-width: 768px) {
  .feature__modal--03 {
    background-image: url(../img/modal_bg-sp-03.png);
  }
}
.feature__modal--04 {
  background-image: url(../img/modal_bg-pc-04.png);
}
@media screen and (max-width: 768px) {
  .feature__modal--04 {
    background-image: url(../img/modal_bg-sp-04.png);
  }
}
.feature__modal--05 {
  background-image: url(../img/modal_bg-pc-05.png);
}
@media screen and (max-width: 768px) {
  .feature__modal--05 {
    background-image: url(../img/modal_bg-sp-05.png);
  }
}
.feature__modal--06 {
  background-image: url(../img/modal_bg-pc-06.png);
}
@media screen and (max-width: 768px) {
  .feature__modal--06 {
    background-image: url(../img/modal_bg-sp-06.png);
  }
}
.feature__modal--06 .feature__modal-img-item:first-child {
  position: relative;
}
.feature__modal--06 .feature__modal-img-item:first-child img {
  width: min(300px, 25vw);
}
@media screen and (max-width: 768px) {
  .feature__modal--06 .feature__modal-img-item:first-child img {
    width: 100%;
  }
}
.feature__modal--06 .feature__modal-img-item:first-child .feature__modal-img-caption {
  position: absolute;
  left: 35%;
  bottom: 3%;
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .feature__modal--06 .feature__modal-img-item:first-child .feature__modal-img-caption {
    bottom: -2%;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__modal--06 .feature__modal-img-item:first-child .feature__modal-img-caption {
    left: 50%;
    bottom: -30px;
  }
}
.feature__modal--06 .feature__modal-img-item:last-child img {
  width: min(410px, 34.1666666667vw);
}
@media screen and (max-width: 768px) {
  .feature__modal--06 .feature__modal-img-item:last-child img {
    margin-top: 30px;
    width: 100%;
  }
}
.feature__modal--07 {
  background-image: url(../img/modal_bg-pc-07.png);
}
.feature__modal--07 .feature__modal-tag {
  padding-right: 13px;
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .feature__modal--07 .feature__modal-header {
    height: 85px;
  }
  .feature__modal--07 .feature__modal-body {
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .feature__modal--07 {
    background-image: url(../img/modal_bg-sp-07.png);
  }
}
@media screen and (max-width: 768px) {
  .feature__modal--07 .feature__modal-header {
    height: min(250px, 33.3333333333vw);
  }
}
.feature__modal--08 {
  background-image: url(../img/modal_bg-pc-08.png);
}
@media screen and (max-width: 768px) {
  .feature__modal--08 {
    background-image: url(../img/modal_bg-sp-08.png);
  }
}
.feature__modal--08 .feature__modal-tag {
  padding-right: 13px;
}
@media screen and (max-width: 768px) {
  .feature__modal--08 .feature__modal-header {
    height: min(220px, 29.3333333333vw);
  }
}
.feature__modal--09 {
  background-image: url(../img/modal_bg-pc-09.png);
}
@media screen and (max-width: 768px) {
  .feature__modal--09 {
    background-image: url(../img/modal_bg-sp-09.png);
  }
}
@media screen and (max-width: 768px) {
  .feature__modal--09 .feature__modal-header {
    height: min(230px, 30.6666666667vw);
  }
}
.feature__modal--09 .feature__modal-tag {
  padding-right: 13px;
}
.feature__modal--09 .feature__modal-img-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(20px, 1.6666666667vw);
}
.feature__modal--09 .feature__modal-img-list .feature__modal-img-item:last-child {
  grid-column: 1/3;
}
.feature__modal--09 .feature__modal-img-list .feature__modal-img-item:not(:last-child) img {
  width: auto;
  height: min(170px, 14.1666666667vw);
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .feature__modal--09 .feature__modal-img-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: min(20px, 2.6666666667vw);
  }
  .feature__modal--09 .feature__modal-img-list .feature__modal-img-item:last-child {
    grid-column: unset;
  }
  .feature__modal--09 .feature__modal-img-list .feature__modal-img-item:not(:last-child) img {
    height: auto;
    padding-top: 0;
  }
  .feature__modal--09 .feature__modal-img-list .feature__modal-img-item:nth-child(1) img {
    width: min(589px, 78.5333333333vw);
  }
  .feature__modal--09 .feature__modal-img-list .feature__modal-img-item:nth-child(2) img {
    width: min(354px, 47.2vw);
  }
  .feature__modal--09 .feature__modal-img-list .feature__modal-img-item:nth-child(3) img {
    width: min(589px, 78.5333333333vw);
  }
}
.feature__modal--10 {
  background-image: url(../img/modal_bg-pc-10.png);
}
@media screen and (max-width: 768px) {
  .feature__modal--10 {
    background-image: url(../img/modal_bg-sp-10.png);
  }
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .feature__modal--10 .feature__modal-body {
    padding-top: 50px;
  }
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .feature__modal {
    width: 90%;
    aspect-ratio: 3/2;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .feature__modal {
    width: clamp(280px, 92vw, 690px);
    height: auto;
    border-radius: 0 0 min(30px, 4vw) min(30px, 4vw);
  }
}
.feature__modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.feature__modal-header {
  position: relative;
  flex-shrink: 0;
  padding-top: min(10px, 0.8333333333vw);
  padding-left: min(30px, 2.5vw);
}
@media screen and (max-width: 768px) {
  .feature__modal-header {
    padding-top: min(13px, 1.7333333333vw);
    padding-left: min(30px, 4vw);
    height: min(210px, 28vw);
  }
}
.feature__modal-title {
  font-size: min(35px, 2.9166666667vw);
  letter-spacing: 0.1em;
  color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .feature__modal-title {
    font-size: clamp(20px, 7.3333333333vw, 55px);
  }
}
.feature__modal-tag {
  display: inline-block;
  margin-top: 6px;
  padding: min(6px, 0.5vw) min(31px, 2.5833333333vw) min(6px, 0.5vw) min(20px, 1.6666666667vw);
  background-color: var(--c-white);
  border-radius: 0 40px 40px 0;
  font-size: clamp(14px, 1.25vw, 15px);
}
@media screen and (max-width: 768px) {
  .feature__modal-tag {
    margin-top: min(18px, 2.4vw);
    padding: min(10px, 1.3333333333vw) min(30px, 4vw) min(10px, 1.3333333333vw) min(20px, 2.6666666667vw);
    font-size: clamp(12px, 3.0666666667vw, 23px);
  }
}
.feature__modal-close {
  position: absolute;
  top: min(27px, 3.6vw);
  right: min(32px, 4.2666666667vw);
  width: 26px;
  height: 26px;
  background-image: url(../img/icon_close.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.feature__modal-body {
  flex: 1;
  align-items: center;
  overflow-y: auto;
  display: flex;
  gap: min(24px, 3.2vw);
  padding-left: min(30px, 4vw);
  padding-bottom: min(18px, 2.4vw);
  padding-right: min(30px, 4vw);
}
@media screen and (max-width: 768px) {
  .feature__modal-body {
    flex-direction: column;
  }
}
.feature__modal-text-group {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .feature__modal-text-group {
    width: 95%;
    text-align: left;
  }
}
.feature__modal-stat {
  position: relative;
  margin-top: min(38px, 3.1666666667vw);
  padding-left: 20px;
  font-size: clamp(18px, 1.9166666667vw, 23px);
  letter-spacing: 0.05em;
  color: var(--c-blue);
}
.feature__modal-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(8px, 0.6666666667vw);
  height: 100%;
  background-color: var(--c-blue);
}
@media screen and (max-width: 768px) {
  .feature__modal-stat {
    margin-top: min(38px, 5.0666666667vw);
    padding-left: min(20px, 2.6666666667vw);
    font-size: clamp(18px, 4vw, 30px);
  }
}
.feature__modal-stat-highlight {
  font-size: clamp(18px, 3.3333333333vw, 40px);
}
@media screen and (max-width: 768px) {
  .feature__modal-stat-highlight {
    font-size: clamp(24px, 4.5833333333vw, 55px);
  }
}
.feature__modal-problem, .feature__modal-solution {
  margin-top: min(38px, 3.1666666667vw);
}
@media screen and (max-width: 768px) {
  .feature__modal-problem, .feature__modal-solution {
    margin-top: min(34px, 4.5333333333vw);
  }
}
.feature__modal-problem-label, .feature__modal-solution-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding-bottom: min(20px, 1.6666666667vw);
}
.feature__modal-problem-label::before, .feature__modal-solution-label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .feature__modal-problem-label::before, .feature__modal-solution-label::before {
    width: min(27px, 3.6vw);
  }
}
@media screen and (max-width: 768px) {
  .feature__modal-problem-label, .feature__modal-solution-label {
    font-size: clamp(16px, 3.3333333333vw, 25px);
    padding-bottom: min(18px, 2.4vw);
  }
}
.feature__modal-problem-label {
  color: #FF3D3A;
}
.feature__modal-problem-label::before {
  background-image: url(../img/icon_modal-red.png);
}
.feature__modal-solution-label {
  color: var(--c-blue);
}
.feature__modal-solution-label::before {
  background-image: url(../img/icon_modal-blue.png);
}
.feature__modal-problem-list, .feature__modal-solution-list {
  padding-left: 15px;
  font-size: 0.875rem;
  font-weight: 450;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .feature__modal-problem-list, .feature__modal-solution-list {
    padding-left: min(14px, 1.8666666667vw);
    font-size: clamp(16px, 2.9333333333vw, 22px);
  }
}
.feature__modal-problem-list li, .feature__modal-solution-list li {
  position: relative;
  margin-bottom: min(18px, 1.5vw);
}
.feature__modal-problem-list li:last-child, .feature__modal-solution-list li:last-child {
  margin-bottom: 0;
}
.feature__modal-problem-list li::before, .feature__modal-solution-list li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: min(4.5px, 0.375vw) solid transparent;
  border-bottom: min(4.5px, 0.375vw) solid transparent;
  border-left: min(7.79px, 0.6491666667vw) solid;
}
@media screen and (max-width: 768px) {
  .feature__modal-problem-list li::before, .feature__modal-solution-list li::before {
    border-top: min(7px, 0.9333333333vw) solid transparent;
    border-bottom: min(7px, 0.9333333333vw) solid transparent;
    border-left: min(12.12px, 1.616vw) solid;
  }
}
.feature__modal-problem-list li::before {
  border-left-color: #FF3D3A;
}
.feature__modal-solution-list li::before {
  border-left-color: var(--c-blue);
}
.feature__modal-img-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature__modal-img-caption {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 450;
}
@media screen and (max-width: 768px) {
  .feature__modal-img-caption {
    font-size: clamp(14px, 2.9333333333vw, 22px);
  }
}
.feature__mask {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s;
}
.feature__mask.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*-------------------------------------------
compare
-------------------------------------------*/
.compare {
  margin-top: min(69px, 5.75vw);
  padding-bottom: min(63px, 5.25vw);
}
@media screen and (max-width: 768px) {
  .compare {
    margin-top: min(55px, 7.3333333333vw);
    padding-bottom: min(60px, 8vw);
  }
}
.compare__sec-title {
  margin-bottom: 40px;
}
.compare__table-wrap {
  width: clamp(320px, 79.75vw, 957px);
  margin: 0 auto;
  border-radius: min(25px, 2.0833333333vw);
  overflow: hidden;
  box-shadow: 0 0 5px 3px rgba(140, 140, 140, 0.2);
}
@media screen and (max-width: 768px) {
  .compare__table-wrap {
    width: clamp(280px, 93.3333333333vw, 700px);
    overflow-x: auto;
    border-radius: min(25px, 3.3333333333vw);
  }
  .compare__table-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
  }
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .compare__table {
    min-width: clamp(500px, 93.3333333333vw, 700px);
  }
}
.compare__th, .compare__td {
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 0 min(20px, 1.6666666667vw) 0 min(40px, 3.3333333333vw);
}
@media screen and (max-width: 768px) {
  .compare__th, .compare__td {
    padding: 0 min(16px, 2.1333333333vw);
  }
}
.compare__th {
  height: min(68px, 5.6666666667vw);
  font-size: clamp(18px, 1.6666666667vw, 20px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .compare__th {
    height: min(72px, 9.6vw);
    font-size: clamp(14px, 3.0666666667vw, 23px);
  }
}
.compare__td {
  height: min(79px, 6.5833333333vw);
  font-size: clamp(12px, 1.3333333333vw, 16px);
  border-top: 1px solid #BEBEBE;
}
@media screen and (max-width: 768px) {
  .compare__td {
    height: min(83px, 11.0666666667vw);
    font-size: clamp(12px, 2.4vw, 18px);
  }
}
.compare__th--item, .compare__td--item {
  width: min(224px, 18.6666666667vw);
  position: sticky;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .compare__th--item, .compare__td--item {
    width: min(113px, 15.0666666667vw);
  }
}
.compare__th--self, .compare__td--self {
  width: min(369px, 30.75vw);
}
@media screen and (max-width: 768px) {
  .compare__th--self, .compare__td--self {
    width: min(290px, 38.6666666667vw);
  }
}
.compare__th--coreca, .compare__td--coreca {
  width: min(364px, 30.3333333333vw);
}
@media screen and (max-width: 768px) {
  .compare__th--coreca, .compare__td--coreca {
    width: min(287px, 38.2666666667vw);
  }
}
.compare__th--item {
  background-color: #fff;
}
.compare__th--self {
  background-color: #D9D9D9;
}
.compare__th--coreca {
  background-color: var(--c-blue);
  color: var(--c-white);
}
.compare__td--coreca {
  background-color: var(--c-lightblue);
  color: var(--c-blue);
}
.compare__td--item {
  background-color: var(--c-lightblue);
  color: var(--c-blue);
  text-align: center;
  font-size: clamp(14px, 1.5833333333vw, 19px);
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .compare__td--item {
    font-size: clamp(12px, 2.4vw, 18px);
    padding: 0 min(10px, 1.3333333333vw);
  }
}
.compare__td--self {
  color: var(--c-black);
}
.compare__cell {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .compare__cell {
    gap: 20px;
  }
}
.compare__icon {
  flex-shrink: 0;
}
.compare__icon--sankaku {
  width: min(32px, 2.6666666667vw);
}
@media screen and (max-width: 768px) {
  .compare__icon--sankaku {
    width: min(35px, 4.6666666667vw);
  }
}
.compare__icon--batsu {
  width: min(28px, 2.3333333333vw);
}
@media screen and (max-width: 768px) {
  .compare__icon--batsu {
    width: min(32px, 4.2666666667vw);
  }
}
.compare__icon--maru {
  width: min(30px, 2.5vw);
}
@media screen and (max-width: 768px) {
  .compare__icon--maru {
    width: min(35px, 4.6666666667vw);
  }
}
.compare__scroll-hint {
  display: none;
  margin-top: 12px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--c-black);
  text-align: right;
  padding-right: min(30px, 4vw);
}
@media screen and (max-width: 526px) {
  .compare__scroll-hint {
    display: block;
  }
}

/*-------------------------------------------
voice
-------------------------------------------*/
.voice {
  background-color: var(--c-lightblue);
  padding: 67px 0 99px 0;
}
@media screen and (max-width: 768px) {
  .voice {
    padding: min(60px, 8vw) min(60px, 8vw) min(80px, 10.6666666667vw) min(60px, 8vw);
  }
}
.voice__inner {
  padding: 0 min(140px, 11.6666666667vw);
}
@media screen and (max-width: 768px) {
  .voice__inner {
    padding: 0;
  }
}
.voice__sec-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .voice__sec-title {
    margin-bottom: min(50px, 6.6666666667vw);
  }
}
.voice__list {
  display: flex;
  background-color: var(--c-white);
  padding: min(40px, 3.3333333333vw) min(37px, 3.0833333333vw) min(20px, 1.6666666667vw) min(37px, 3.0833333333vw);
  border-radius: min(20px, 1.6666666667vw);
  position: relative;
}
@media screen and (max-width: 768px) {
  .voice__list {
    padding-top: min(40px, 5.3333333333vw);
    border-radius: min(30px, 4vw);
  }
}
.voice__item {
  width: clamp(280px, 31.4166666667vw, 377px);
  margin: 0 min(35px, 2.9166666667vw);
  background-color: var(--c-white);
  border-radius: min(20px, 1.6666666667vw);
  box-shadow: 0 0 5px 1px rgba(140, 140, 140, 0.2);
}
@media screen and (max-width: 768px) {
  .voice__item {
    width: clamp(300px, 68.9333333333vw, 517px);
    border-radius: min(30px, 4vw);
    margin: 0 min(35px, 4.6666666667vw);
  }
}
.voice__photo {
  position: relative;
  width: 100%;
  height: min(210px, 17.5vw);
}
@media screen and (max-width: 768px) {
  .voice__photo {
    height: min(234px, 31.2vw);
  }
}
.voice__photo-main {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: min(20px, 1.6666666667vw) min(20px, 1.6666666667vw) 0 0;
}
@media screen and (max-width: 768px) {
  .voice__photo-main {
    border-radius: min(30px, 4vw) min(30px, 4vw) 0 0;
  }
}
.voice__photo-face {
  position: absolute;
  right: max(-23px, -1.9166666667vw);
  bottom: max(-57px, -4.75vw);
  width: min(150px, 12.5vw);
  height: min(150px, 12.5vw);
  border-radius: 50%;
  border: 3px solid var(--c-white);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .voice__photo-face {
    right: max(-20px, -2.6666666667vw);
    bottom: max(-54px, -7.2vw);
    width: min(174px, 23.2vw);
    height: min(174px, 23.2vw);
    border: 6px solid var(--c-white);
  }
}
.voice__content {
  padding: min(20px, 1.6666666667vw) min(23px, 1.9166666667vw) min(27px, 2.25vw) min(22px, 1.8333333333vw);
}
@media screen and (max-width: 768px) {
  .voice__content {
    padding: min(16px, 2.1333333333vw) min(32px, 4.2666666667vw) min(27px, 3.6vw) min(32px, 4.2666666667vw);
  }
}
.voice__tags {
  display: flex;
  gap: 8px;
}
.voice__tag {
  display: inline-block;
  font-size: 0.6875rem;
  padding: min(6px, 0.5vw) min(17px, 1.4166666667vw) min(8px, 0.6666666667vw) min(17px, 1.4166666667vw);
  border-radius: 50px;
  color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .voice__tag {
    font-size: clamp(12px, 2.8vw, 21px);
    padding: min(8px, 1.0666666667vw) min(16px, 2.1333333333vw);
    border-radius: 82px;
  }
}
.voice__tag--blue {
  background-color: var(--c-blue);
}
.voice__tag--green {
  background-color: var(--c-green);
}
.voice__title {
  margin-top: 16px;
  font-size: clamp(14px, 1.25vw, 15px);
  line-height: 1.5;
  color: var(--c-blue);
}
@media screen and (max-width: 768px) {
  .voice__title {
    margin-top: min(14px, 1.8666666667vw);
    font-size: clamp(16px, 4vw, 30px);
    line-height: 1.25;
  }
}
.voice__text {
  margin-top: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.55;
  color: var(--c-black);
}
@media screen and (max-width: 768px) {
  .voice__text {
    margin-top: min(12px, 1.6vw);
    font-size: min(20px, 2.6666666667vw);
    line-height: min(28px, 3.7333333333vw);
  }
}
.voice__company {
  margin-top: 16px;
  text-align: right;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--c-blue);
}
@media screen and (max-width: 768px) {
  .voice__company {
    margin-top: min(20px, 2.6666666667vw);
    font-size: clamp(16px, 3.3333333333vw, 25px);
  }
}
.voice__company--wamu {
  margin-top: 0px;
}
.voice .slick-prev,
.voice .slick-next {
  width: min(60px, 5vw);
  height: min(60px, 5vw);
  background-color: var(--c-blue);
  border: 6px solid var(--c-white);
  border-radius: 50%;
  z-index: 10;
}
.voice .slick-prev::before,
.voice .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: min(15px, 1.25vw);
  height: min(15px, 1.25vw);
  border-top: 3px solid var(--c-white);
  border-right: 3px solid var(--c-white);
}
@media screen and (max-width: 768px) {
  .voice .slick-prev::before,
  .voice .slick-next::before {
    width: min(15px, 2vw);
    height: min(15px, 2vw);
  }
}
@media screen and (max-width: 768px) {
  .voice .slick-prev,
  .voice .slick-next {
    width: min(65px, 8.6666666667vw);
    height: min(65px, 8.6666666667vw);
  }
}
.voice .slick-prev {
  left: calc(min(60px, 5vw) / -2);
}
.voice .slick-prev::before {
  left: 50%;
  transform: translate(-20%, -50%) rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .voice .slick-prev {
    left: calc(min(55px, 7.3333333333vw) / -2);
  }
}
.voice .slick-next {
  right: calc(min(60px, 5vw) / -2);
}
.voice .slick-next::before {
  left: 50%;
  transform: translate(-80%, -50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .voice .slick-next {
    right: calc(min(55px, 7.3333333333vw) / -2);
  }
}
.voice .slick-dots {
  position: absolute;
  left: 0;
  bottom: max(-33px, -2.75vw);
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .voice .slick-dots {
    bottom: max(-30px, -4vw);
  }
}
.voice .slick-dots li button {
  width: min(19px, 1.5833333333vw);
  height: min(19px, 1.5833333333vw);
  border-radius: 50%;
  background-color: var(--c-white);
  text-indent: -9999px;
}
@media screen and (max-width: 768px) {
  .voice .slick-dots li button {
    width: min(19px, 2.5333333333vw);
    height: min(19px, 2.5333333333vw);
  }
}
.voice .slick-dots li.slick-active button {
  background-color: var(--c-green);
  border-color: var(--c-green);
}

/*-------------------------------------------
flow
-------------------------------------------*/
.flow {
  padding-top: min(50px, 4.1666666667vw);
  margin-bottom: min(70px, 5.8333333333vw);
}
@media screen and (max-width: 768px) {
  .flow {
    padding-top: min(55px, 7.3333333333vw);
    padding-right: 10px;
    padding-left: 10px;
  }
}
.flow__sec-title {
  margin-bottom: 10px;
}
.flow__sec-title--small {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .flow__sec-title--small {
    font-size: clamp(20px, 4.2666666667vw, 32px);
    line-height: 1;
    padding: 0;
  }
}
.flow__sec-title-highlight {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .flow__sec-title-highlight {
    padding-bottom: 12px;
  }
}
.flow__sec-title-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background-color: #FED321;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s ease-out;
}
@media screen and (max-width: 768px) {
  .flow__sec-title-highlight::after {
    height: min(8px, 1.0666666667vw);
  }
}
.flow__sec-title--wrap.is-shown .flow__sec-title-highlight::after {
  transform: scaleX(1);
}
.flow__sec-subtitle {
  margin-bottom: min(29px, 2.4166666667vw);
}
@media screen and (max-width: 768px) {
  .flow__sec-subtitle {
    margin-bottom: min(36px, 3vw);
  }
}
.flow__list {
  display: flex;
  justify-content: center;
  gap: min(41px, 3.4166666667vw);
}
@media screen and (max-width: 768px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(20px, 2.6666666667vw) min(20px, 2.6666666667vw);
    padding: 0 min(30px, 2.5vw);
  }
}
.flow__item {
  position: relative;
  width: clamp(150px, 16.95vw, 203.4px);
}
@media screen and (max-width: 768px) {
  .flow__item {
    width: clamp(150px, 41vw, 307.5px);
  }
}
.flow__bubble {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: min(16px, 1.3333333333vw) min(19px, 1.5833333333vw) min(37px, 3.0833333333vw) min(19px, 1.5833333333vw);
  background-image: url(../img/flow_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .flow__bubble {
    padding: min(20px, 2.6666666667vw) min(29px, 3.8666666667vw) min(57px, 7.6vw) min(33px, 4.4vw);
  }
}
.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 95%;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: min(15.945px, 1.32875vw) solid transparent;
  border-bottom: min(15.945px, 1.32875vw) solid transparent;
  border-left: min(27.62px, 2.3016666667vw) solid var(--c-blue);
}
@media screen and (max-width: 768px) {
  .flow__item:not(:last-child)::after {
    border-top: min(24.105px, 3.214vw) solid transparent;
    border-bottom: min(24.105px, 3.214vw) solid transparent;
    border-left: min(41.76px, 5.568vw) solid var(--c-blue);
  }
}
.flow__num {
  font-size: clamp(20px, 3.25vw, 39px);
  font-weight: 550;
  font-family: var(--font-en);
  color: var(--c-yellow);
}
@media screen and (max-width: 768px) {
  .flow__num {
    font-size: clamp(14px, 7.8666666667vw, 59px);
    line-height: 1;
  }
}
.flow__title {
  width: 100%;
  margin-top: min(5px, 0.4166666667vw);
  padding-bottom: 6px;
  border-bottom: 2px solid rgb(255, 255, 255);
  font-size: clamp(14px, 1.6666666667vw, 20px);
  color: var(--c-yellow);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__title {
    margin-top: 0;
    padding-bottom: min(16px, 2.1333333333vw);
    border-bottom: min(4px, 0.5333333333vw) solid rgb(255, 255, 255);
    font-size: clamp(14px, 4vw, 30px);
  }
}
.flow__text {
  margin-top: 10px;
  font-size: clamp(12px, 1.1666666667vw, 14px);
  line-height: 1.5;
  color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .flow__text {
    margin-top: min(24px, 3.2vw);
    font-size: clamp(12px, 3.0666666667vw, 23px);
  }
}
.flow__text--long {
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .flow__text--long {
    margin-top: 2px;
  }
}

/*-------------------------------------------
support
-------------------------------------------*/
.support {
  padding-top: 50px;
  padding-bottom: 60px;
  background-color: var(--c-lightblue);
}
@media screen and (max-width: 768px) {
  .support {
    padding: min(54px, 7.2vw) 0 min(60px, 8vw) 0;
  }
}
@media screen and (max-width: 768px) {
  .support__sec-title {
    padding-left: min(38px, 5.0666666667vw);
    padding-right: min(38px, 5.0666666667vw);
  }
}
.support__sec-subtitle {
  margin-bottom: min(40px, 3.3333333333vw);
  font-size: clamp(18px, 1.6666666667vw, 20px);
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .support__sec-subtitle {
    margin-bottom: min(45px, 6vw);
    font-size: clamp(18px, 3.4666666667vw, 26px);
    line-height: 1.55;
  }
}
.support__highlight {
  font-size: 1.4375rem;
  background: linear-gradient(transparent 80%, var(--c-green) 80%);
}
@media screen and (max-width: 768px) {
  .support__highlight {
    font-size: clamp(24px, 4.6666666667vw, 35px);
  }
}
.support__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .support__list {
    grid-template-columns: 1fr;
    gap: min(33px, 4.4vw);
    padding: 0 min(70px, 9.3333333333vw);
  }
}
.support__item {
  background-color: var(--c-white);
  border-radius: 10px;
  padding-top: min(13px, 1.0833333333vw);
  padding-bottom: min(17px, 1.4166666667vw);
  box-shadow: 0 0 5px 5px color-mix(in srgb, var(--c-blue) 25%, transparent);
  min-height: 160px;
}
@media screen and (max-width: 768px) {
  .support__item {
    border-radius: min(20px, 2.6666666667vw);
    padding-top: min(16px, 2.1333333333vw);
    padding-bottom: min(27px, 3.6vw);
    min-height: 0;
  }
}
.support__title {
  text-align: center;
  padding-left: min(35px, 2.9166666667vw);
  padding-right: min(35px, 2.9166666667vw);
  padding-bottom: min(16px, 1.3333333333vw);
  font-size: clamp(20px, 2.0833333333vw, 25px);
  color: var(--c-blue);
}
@media screen and (max-width: 768px) {
  .support__title {
    padding-bottom: min(15px, 2vw);
    font-size: clamp(18px, 4.6666666667vw, 35px);
  }
}
.support__divider {
  width: 100%;
  height: 1px;
  background-color: var(--c-blue);
}
@media screen and (max-width: 768px) {
  .support__divider {
    height: min(3px, 0.4vw);
  }
}
.support__text {
  padding-top: 16px;
  padding-left: min(40px, 3.3333333333vw);
  padding-right: min(40px, 3.3333333333vw);
  font-size: clamp(12px, 1.1666666667vw, 14px);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .support__text {
    padding-left: min(40px, 5.3333333333vw);
    padding-right: min(40px, 5.3333333333vw);
    font-size: clamp(14px, 2.9333333333vw, 22px);
    line-height: 1.5;
  }
}

/*-------------------------------------------
faq
-------------------------------------------*/
.faq {
  padding-top: min(50px, 4.1666666667vw);
  padding-bottom: min(100px, 8.3333333333vw);
}
@media screen and (max-width: 768px) {
  .faq {
    padding-top: min(56px, 7.4666666667vw);
    padding-bottom: min(46px, 6.1333333333vw);
  }
}
.faq__inner {
  padding: 0 min(169px, 14.0833333333vw);
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding: 0 min(50px, 6.6666666667vw);
  }
}
.faq__sec-title {
  margin-bottom: 0;
}
.faq__list {
  padding-top: min(40px, 3.3333333333vw);
}
@media screen and (max-width: 768px) {
  .faq__list {
    padding-top: min(34px, 4.5333333333vw);
  }
}
.faq__item {
  margin-bottom: min(40px, 3.3333333333vw);
  border-radius: min(15px, 1.25vw);
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
.faq__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .faq__item {
    margin-bottom: min(40px, 5.3333333333vw);
    border-radius: min(15px, 2vw);
  }
}
.faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: min(16px, 1.3333333333vw) min(30px, 2.5vw);
  background-color: var(--c-blue);
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .faq__question {
    padding: min(21px, 2.8vw) min(30px, 4vw);
    min-height: min(120px, 16vw);
    gap: min(20px, 2.6666666667vw);
  }
}
.faq__label {
  flex-shrink: 0;
  font-size: clamp(20px, 4.1666666667vw, 50px);
  font-family: "Georgia";
}
@media screen and (max-width: 768px) {
  .faq__label {
    font-size: clamp(18px, 6vw, 45px);
  }
}
.faq__label--dot {
  font-size: clamp(14px, 5.3333333333vw, 40px);
}
@media screen and (max-width: 768px) {
  .faq__label--dot {
    font-size: clamp(20px, 4.1666666667vw, 50px);
  }
}
.faq__label--q {
  color: var(--c-white);
}
.faq__label--a {
  color: var(--c-blue);
}
.faq__question-text {
  flex: 1;
  font-size: clamp(20px, 2.0833333333vw, 25px);
  padding-left: min(16px, 1.3333333333vw);
}
@media screen and (max-width: 768px) {
  .faq__question-text {
    font-size: clamp(16px, 4vw, 30px);
    padding-left: 0;
  }
}
.faq__icon {
  flex-shrink: 0;
  position: relative;
  width: 16px;
  height: 16px;
}
.faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(15px, 1.25vw);
  height: min(15px, 1.25vw);
  border-top: 3px solid var(--c-white);
  border-right: 3px solid var(--c-white);
  transform: translate(-50%, -50%) rotate(135deg);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .faq__icon::before {
    width: min(20px, 2.6666666667vw);
    height: min(20px, 2.6666666667vw);
    border-top: min(5px, 0.6666666667vw) solid var(--c-white);
    border-right: min(5px, 0.6666666667vw) solid var(--c-white);
  }
}
.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}
.faq__answer {
  display: none;
  background-color: var(--c-white);
}
.faq__item.is-open .faq__answer {
  max-height: 500px;
}
.faq__answer-inner {
  display: flex;
  align-items: center;
  gap: min(16px, 1.3333333333vw);
  padding: min(16px, 1.3333333333vw) min(20px, 1.6666666667vw);
}
.faq__answer-inner--long {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .faq__answer-inner {
    padding: min(21px, 2.8vw) min(30px, 4vw);
  }
}
.faq__answer-text {
  flex: 1;
  padding-left: min(16px, 1.3333333333vw);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--c-black);
}
@media screen and (max-width: 768px) {
  .faq__answer-text {
    padding-left: min(26px, 3.4666666667vw);
    font-size: clamp(14px, 2.9333333333vw, 22px);
  }
}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer {
  display: flow-root;
}
.footer__bg {
  position: relative;
  pointer-events: none;
  margin-top: min(-100px, -8.3333333333vw);
  background-image: url(../img/footer_bg-pc.webp);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  max-width: 2400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .footer__bg {
    margin-top: 0;
    background-image: url(../img/footer_bg-sp.webp);
    height: min(577px, 76.9333333333vw);
    padding: min(56px, 7.4666666667vw) 0 min(20px, 2.6666666667vw);
  }
}
.footer__title {
  font-size: clamp(20px, 2.3333333333vw, 28px);
  line-height: 1.3;
  padding-top: min(146px, 12.1666666667vw);
  color: var(--c-blue);
}
@media screen and (min-width: 1201px) {
  .footer__title {
    padding-top: max(120px, 10vw);
  }
}
@media screen and (max-width: 768px) {
  .footer__title {
    max-width: 100%;
    font-size: clamp(20px, 5.0666666667vw, 38px);
    padding-top: 0;
    padding-left: min(49px, 6.5333333333vw);
  }
}
.footer__title--large {
  font-size: clamp(18px, 3.3333333333vw, 40px);
}
@media screen and (max-width: 768px) {
  .footer__title--large {
    font-size: clamp(22px, 7.3333333333vw, 55px);
  }
}
.footer__text {
  margin-top: min(8px, 0.6666666667vw);
  padding-bottom: min(46px, 3.8333333333vw);
  max-width: clamp(280px, 37.5vw, 450px);
  font-size: clamp(13px, 1.5vw, 18px);
  line-height: 1.5;
  color: var(--c-black);
}
@media screen and (max-width: 768px) {
  .footer__text {
    margin-top: min(15px, 2vw);
    padding-bottom: min(42px, 5.6vw);
    padding-left: min(47px, 6.2666666667vw);
    max-width: 100%;
    font-size: clamp(14px, 3.3333333333vw, 25px);
    letter-spacing: 0.03em;
  }
}
.footer__cta {
  margin-top: 0;
  padding: min(28px, 2.3333333333vw) 0;
  gap: min(30px, 2.5vw);
}
@media screen and (max-width: 768px) {
  .footer__cta {
    padding: min(48px, 6.4vw) 0;
    gap: min(31px, 4.1333333333vw);
  }
}
@media screen and (max-width: 768px) {
  .footer__cta .btn {
    padding: min(24px, 3.2vw);
  }
}

/*-------------------------------------------
fixedcta
-------------------------------------------*/
.fixed-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(20px, 2.6666666667vw);
  padding: min(12px, 1.6vw) min(16px, 2.1333333333vw);
  background-color: rgba(42, 141, 189, 0.9);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.fixed-cta.is-show {
  transform: translateY(0);
}
.fixed-cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(8px, 1.0666666667vw);
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .fixed-cta__item {
    flex: 1;
  }
}
.fixed-cta__label {
  color: var(--c-white);
  font-weight: 500;
  font-size: clamp(10px, 1.7333333333vw, 13px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fixed-cta__label {
    font-size: clamp(10px, 2vw, 15px);
  }
}
@media screen and (max-width: 768px) {
  .fixed-cta .btn {
    min-width: 0;
    width: 100%;
    font-size: clamp(14px, 2.6666666667vw, 20px);
  }
  .fixed-cta .btn::after {
    width: min(12px, 1.6vw);
    height: min(12px, 1.6vw);
  }
}

/*-------------------------------------------
お問い合わせモーダル
-------------------------------------------*/
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s;
}
.form-modal[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.form-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.form-modal__dialog {
  position: relative;
  z-index: 1;
  background: var(--c-white);
  border-radius: 12px;
  padding: 4px 24px 28px;
  max-width: 680px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
.form-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.form-modal__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--c-blue);
}

body.has-modal-open {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */