@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #292b2d;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  min-block-size: 100svb;
}

main {
  overflow-x: clip;
}

a {
  color: inherit;
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}

@media (any-hover: hover) {
  a[href^="tel:"]:hover {
    pointer-events: none;
  }
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
img.full-size {
  width: 100%;
}

ul,
li {
  list-style-type: "";
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  color: inherit;
  font: inherit;
  padding: 0;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-weight: inherit;
  padding: 0;
  width: 100%;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:where(:-moz-any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

:root {
  --fixed-header-height: 100px;
}

@media screen and (max-width: 1200px) {
  html.is-noscroll {
    min-height: 100%;
    min-height: 100dvh;
  }
}

@media screen and (max-width: 1200px) {
  .is-noscroll body {
    box-sizing: border-box;
    height: 100dvh;
    position: fixed;
    width: 100%;
  }
}

.header {
  background-color: #fff;
  height: var(--fixed-header-height);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.header__contents {
  -ms-grid-columns: auto 1fr;
  align-items: center;
  display: -ms-grid;
  display: grid;
  grid-template-areas: "logo menu";
  grid-template-columns: auto 1fr;
  height: 100%;
  margin-inline: auto;
  padding-left: 20px;
}
@media screen and (min-width: 1201px) {
  .header__contents {
    width: min(95%, 1400px);
  }
}

.header__logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: logo;
  width: 225px;
}
@media screen and (min-width: 1201px) {
  .header__logo {
    width: clamp(175px, 15.2027027027vw, 225px);
  }
}

.header-menu__wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1201px) {
  .header-menu__wrap {
    flex-direction: row;
  }
}
@media screen and (max-width: 1200px) {
  .header-menu__wrap {
    background-color: #f6ac2d;
  }
}

.header-menu {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-align: end;
  display: flex;
  grid-area: menu;
  justify-self: end;
}
@media screen and (min-width: 1201px) {
  .header-menu {
    display: block !important;
  }
}
@media screen and (max-width: 1200px) {
  .header-menu {
    background-color: #fff;
    color: #ffffff;
    display: none;
    height: calc(100% - var(--fixed-header-height));
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: var(--fixed-header-height);
    width: 100%;
  }
}

.gnav {
  height: 100%;
  width: 100%;
}

.gnav__list {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1201px) {
  .gnav__list {
    flex-direction: row;
  }
}

.gnav__link {
  font-weight: bold;
  transition: opacity 0.2s ease-in, color 0.3s ease-out;
}
@media screen and (min-width: 1201px) {
  .gnav__link {
    color: #898989;
    font-size: clamp(0.875rem, 1.0810810811vw, 1rem);
  }
}
@media screen and (min-width: 1201px) {
  .gnav__link {
    padding-inline: clamp(10px, 1.0135135135vw, 15px);
  }
}
@media screen and (max-width: 1200px) {
  .gnav__link {
    padding: 1.25em;
  }
}
@media (any-hover: hover) {
  .gnav__link:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}

@media screen and (max-width: 1200px) {
  .header__btn {
    width: 100%;
  }
  .header__btn .btn {
    border-radius: inherit;
    padding: 22px;
    width: 100%;
  }
}

.header-menu-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f6ac2d;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: none;
  height: 100px;
  margin: 0;
  margin-left: auto;
  outline: none;
  padding: 5px;
  position: relative;
  touch-action: manipulation;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 100px;
}
@media screen and (max-width: 1200px) {
  .header-menu-button {
    display: block;
  }
}
.header-menu-button__box {
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.header-menu-button__lines {
  display: block;
  height: 22px;
  position: relative;
  width: 22px;
}
.header-menu-button__line {
  background-color: #fff;
  display: block;
  height: 0;
  left: 0;
  padding-top: 2px;
  position: absolute;
  transition: 0.3s;
  width: 100%;
}
.header-menu-button__line--top {
  top: 0;
}
.is-menu-opened .header-menu-button__line--top {
  -webkit-transform: translateY(-50%) rotate(45deg);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header-menu-button__line--center {
  margin-top: -1px;
  top: 50%;
}
.is-menu-opened .header-menu-button__line--center {
  background-color: rgba(0, 0, 0, 0);
}

.header-menu-button__line--bottom {
  bottom: 0;
}
.is-menu-opened .header-menu-button__line--bottom {
  -webkit-transform: translateY(50%) rotate(-45deg);
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.footer {
  inset-block-start: 100%;
  margin-top: 50px;
}

.footer__contents {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  padding-block: 50px 30px;
  place-items: center;
}

.sns-links {
  -ms-grid-columns: (40px)[3];
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 40px);
}

.sns-links__link {
  aspect-ratio: 1;
  display: -ms-grid;
  display: grid;
  inline-size: 100%;
  place-items: center;
}

.footer__btm {
  background-color: #f6ac2d;
  color: #ffffff;
  display: flex;
  font-size: 0.625rem;
  font-weight: bold;
  justify-content: space-between;
  padding: 18px 40px;
}
.footer__btm small {
  font-size: 0.625rem;
}

.inner {
  margin-inline: auto;
  max-width: 1040px;
  padding-left: 20px;
  padding-right: 20px;
}

.grid {
  display: -ms-grid;
  display: grid;
}

@media screen and (min-width: 768px), print {
  .grid--pc4col {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 768px), print {
  .grid--pc3col {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 768px), print {
  .grid--pc2col {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.heading.--offset {
  position: relative;
  top: -25px;
}
@media screen and (min-width: 768px), print {
  .heading.--offset {
    top: max(-3.90625vw, -50px);
  }
}

.heading__main {
  color: #f6ac2d;
  font-family: "cooper-black-std", serif;
  font-size: max(3.75rem, min(6.7567567568vw, 6.25rem));
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.heading__sub {
  font-weight: bold;
}

.heading-lv2 {
  font-size: 1.875rem;
  font-weight: bold;
}
.heading-lv2.--primary {
  color: #3aa7c2;
}

.btn {
  background-color: #ee782b;
  border-radius: 20px;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  margin-inline: auto;
  padding: 7px;
  text-align: center;
  width: 130px;
}

.fukidashi {
  -webkit-mask: url("../img/common/fukidashi_sp.png") no-repeat center center/100%;
  align-items: center;
  background: #f6ac2d;
  color: #ffffff;
  display: flex;
  height: 90px;
  justify-content: center;
  mask: url("../img/common/fukidashi_sp.png") no-repeat center center/100%;
  text-align: center;
  width: 150px;
}
.fukidashi.--primary {
  background: #3aa7c2;
}
@media screen and (min-width: 768px), print {
  .fukidashi {
    -webkit-mask: url("../img/common/fukidashi.png") no-repeat center center/100%;
    mask: url("../img/common/fukidashi.png") no-repeat center center/100%;
  }
}
@media not all and (min-width: 768px), print {
  .fukidashi p {
    margin-top: -10px;
  }
}

.dot-line {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.dot-line::after {
  -webkit-mask: url("../img/common/line.png") center/auto no-repeat;
  background: currentColor;
  content: "";
  display: block;
  height: 4px;
  mask: url("../img/common/line.png") center/auto no-repeat;
  width: 100%;
}

:root {
  --footer-margin-top: 80px;
}

.js-pagetop-threshold {
  height: 200px;
  position: absolute;
  top: 0;
}

.footer-pagetop {
  bottom: 70px;
  bottom: 95px;
  z-index: 2;
}
.footer-pagetop__link {
  --offset: 5px;
  background-color: #f6ac2d;
  border-radius: 10px;
  bottom: calc(-1 * var(--footer-margin-top) + var(--offset));
  display: block;
  height: 50px;
  opacity: 0;
  position: absolute;
  right: clamp(10px, 1.0135135135vw, 15px);
  visibility: hidden;
  width: 50px;
  z-index: 9;
}
.footer-pagetop__link.is-show {
  opacity: 1;
  visibility: visible;
}
.footer-pagetop__link::after {
  -webkit-transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: "";
  display: block;
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
}

/* メインビジュアル */
.mv {
  font-weight: bold;
  margin-bottom: 110px;
  padding: 195px 20px 15px;
  background: url(../img/bg_mv_sp.png) center 40px/ cover no-repeat;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .mv {
    margin-bottom: 100px;
    padding: 160px 20px 40px;
    background: url(../img/bg_mv.png) center 100px/ cover no-repeat;
  }
}

.mv__title {
  margin-inline: auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 768px), print {
  .mv__title-main {
    width: clamp(500px, 45.2702702703vw, 670px);
  }
}

.mv__title-sub {
  line-height: 1.5;
  margin-top: 0.8333em;
}

.mv__title-copy {
  width: 120px;
  -webkit-transform: translateX(-50%);
  left: 50%;
  position: absolute;
  position: absolute;
  top: -83px;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px), print {
  .mv__title-copy {
    left: -90px;
    top: -57px;
  }
}

.mv-choice {
  margin-top: clamp(24px, 4.73vw, 70px);
}

.mv-choice__title {
  margin-top: 60px;
  color: #ee782b;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 60px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px), print {
  .mv-choice__title {
    margin-top: 70px;
  }
}

.mv-choice__row {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 50px;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .mv-choice__row {
    gap: 215px;
    margin-top: 25px;
  }
}

.mv-choice__btn {
  position: relative;
}
@media not all and (min-width: 768px), print {
  .mv-choice__btn {
    width: 50%;
  }
}
.mv-choice__btn a {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 0;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .mv-choice__btn a {
    width: 250px;
    padding: 22px 20px;
  }
}

.mv-choice__btn a::after {
  -webkit-clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  -webkit-transform: translateY(-50%);
  background-color: #ee782b;
  bottom: 8px;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  content: "";
  display: block;
  height: 12px;
  left: calc(50% - 15px);
  position: absolute;
  transform: translateY(-50%);
  width: 30px;
}
.mv-choice__btn .fukidashi {
  height: 110px;
  line-height: 1.5;
  position: absolute;
  top: -118px;
}
@media screen and (min-width: 768px), print {
  .mv-choice__btn .fukidashi {
    top: -58px;
  }
}
@media not all and (min-width: 768px), print {
  .mv-choice__btn .fukidashi p {
    margin-top: -22px;
  }
}
.mv-choice__btn .fukidashi.--left {
  left: 0;
}
@media screen and (min-width: 768px), print {
  .mv-choice__btn .fukidashi.--left {
    left: -162px;
  }
}
.mv-choice__btn .fukidashi.--right {
  -webkit-transform: scaleX(-1);
  right: 0;
  transform: scaleX(-1);
}
@media screen and (min-width: 768px), print {
  .mv-choice__btn .fukidashi.--right {
    right: -162px;
  }
}
.mv-choice__btn .fukidashi.--right p {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.mv-choice__btn .icon {
  color: #3aa7c2;
  font-size: clamp(1.5rem, 2.3648648649vw, 2.1875rem);
  font-weight: bold;
}
.mv-choice__btn .material-symbols-outlined {
  font-variation-settings: "FILL" 1;
}

.mv-choice__btn .box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px), print {
  .mv-choice__btn .box {
    gap: 15px;
  }
}
.mv-choice__btn .text {
  text-align: center;
  font-size: 14px;
}

.mv-choice__text {
  color: #3aa7c2;
  font-size: clamp(1.25rem, 2.1739130435vw, 1.875rem);
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .mv-choice__text {
    white-space: nowrap;
  }
}

.mv-choice__illust {
  -webkit-transform: translateX(-50%);
  top: 20px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 375px;
  z-index: 1;
}
@media screen and (min-width: 768px), print {
  .mv-choice__illust {
    width: clamp(570px, 39.45945vw, 584px);
    top: -75px;
  }
}

.mv-choice__illust img {
  display: none;
}

.mv-choice__illust img.is-show {
  display: block;
}

/* plan */
.plan-block {
  font-weight: bold;
  padding-bottom: 135px;
}

.plan {
  height: 500px;
  margin-bottom: 65px;
  padding-inline: clamp(20px, 2.027027027vw, 30px);
  position: relative;
}
@media screen and (min-width: 768px), print {
  .plan {
    height: clamp(450px, 33.7837837838vw, 500px);
  }
}

.plan__text {
  font-size: clamp(1.125rem, 1.3513513514vw, 1.25rem);
  margin-bottom: 13px;
}

.plan__list li {
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.plan__list li:not(:first-child) {
  margin-top: 20px;
}
.plan__list li::before {
  aspect-ratio: 1;
  background-color: #f6ac2d;
  border-radius: 50%;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0.25em;
  width: 15px;
}

.plan__row {
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  height: clamp(255px, 19.39vw, 287px);
  margin-top: 37px;
}
@media screen and (min-width: 768px), print {
  .plan__row {
    max-width: unset;
    max-height: unset;
    margin-left: unset;
    margin-right: unset;
    margin-top: 45px;
  }
}

.plan__body {
  padding-bottom: clamp(0px, 2.702vw, 40px);
}
@media screen and (min-width: 768px), print {
  .plan__body {
    margin-left: clamp(205px, 20.27vw, 300px);
  }
}

.plan__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80vw;
  max-width: 130px;
}
.plan__image img {
  -o-object-fit: cover;
  max-height: 230px;
  object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .plan__image {
    width: clamp(200px, 21.96vw, 325px);
    max-width: 325px;
    right: 50px;
  }
  .plan__image img {
    max-height: 470px;
  }
}

.plan__head {
  align-items: center;
  display: -ms-grid;
  display: grid;
  gap: 30px 10px;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  margin-top: -62px;
  direction: rtl;
}
@media screen and (min-width: 768px), print {
  .plan__head {
    gap: 14px clamp(30px, 5.7432432432vw, 85px);
    grid-template-columns: 420px clamp(120px, 9.4594594595vw, 140px);
    grid-template-rows: auto 80px;
    justify-content: flex-end;
    margin-top: -52px;
  }
  .plan__head > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .plan__head > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .plan__head > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .plan__head > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

.plan__head .heading-lv2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  font-size: clamp(1.25rem, 2.027vw, 1.875rem);
  grid-column: 1/3;
  grid-row: 2/3;
}
@media screen and (min-width: 768px), print {
  .plan__head .heading-lv2 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.plan__illust {
  width: clamp(160px, 13.5135135135vw, 200px);
}
.plan__illust img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
}
@media not all and (min-width: 768px), print {
  .plan__illust {
    margin-left: auto;
  }
}

.plan__point {
  aspect-ratio: 1;
  background-color: #3aa7c2;
  border-radius: 50%;
  color: #ffffff;
  display: -ms-grid;
  display: grid;
  font-size: clamp(0.8125rem, 1.0810810811vw, 1rem);
  font-weight: bold;
  line-height: 1.5;
  place-items: center;
  width: clamp(120px, 9.4594594595vw, 140px);
}
@media screen and (min-width: 768px), print {
  .plan__point {
    align-self: flex-end;
    grid-row: 1/3;
    margin-top: 0;
  }
}

.plan__head .plan__point  .text-center {
  direction: ltr;
}

.plan.--reverse {
  height: unset;
  margin-top: clamp(0px, 47.2vw, 177px);
  padding-bottom: 163px;
}
@media screen and (min-width: 768px), print {
  .plan.--reverse {
    margin-top: clamp(250px, 20.2702702703vw, 300px);
    padding-bottom: unset;
  }
}

.plan.--reverse .plan__row {
  height: unset;
}

.plan.--reverse .plan__head {
  margin-top: -80px;
  direction: unset;
}
@media screen and (min-width: 768px), print {
  .plan.--reverse .plan__head {
    margin-top: -100px;
    column-gap: 0;
    -ms-grid-columns: clamp(120px, 9.4594594595vw, 140px) 470px;
    grid-template-columns: clamp(120px, 9.4594594595vw, 140px) 470px;
    justify-content: flex-start;
    direction: rtl;
  }
}
@media screen and (min-width: 768px), print {
  .plan.--reverse .heading-lv2 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 768px), print {
  .plan.--reverse .plan__point {
    grid-column: 1/2;
  }
}

.plan.--reverse .plan__image {
  right: unset;
  left: 40px;
}

@media screen and (min-width: 768px), print {
  .plan.--reverse .plan__body {
    margin-left: clamp(260px, 25.68vw, 380px);
  }
}

.plan-point__image {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -50px;
}
@media screen and (min-width: 768px), print {
  .plan-point__image {
    margin-bottom: -125px;
  }
}

.plan-point__row {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 100px;
  justify-content: center;
  margin-top: clamp(24px, 2.5675675676vw, 38px);
  position: relative;
}
@media screen and (min-width: 768px), print {
  .plan-point__row {
    flex-direction: row;
  }
}
.plan-point__row::after {
  -webkit-transform: translate(-50%, -50%);
  aspect-ratio: 1;
  background: url(../img/common/Icon_cross.png) center/contain no-repeat;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
}

.plan-point__box {
  border: 5px solid #ee782b;
  display: -ms-grid;
  display: grid;
  padding: 15px;
  place-items: center;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .plan-point__box {
    width: 400px;
  }
}
.plan-point__box .tag {
  -webkit-transform: translateX(-50%);
  background-color: #3aa7c2;
  bottom: -15px;
  color: #ffffff;
  font-weight: bold;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100px;
}

.promise {
  margin-top: 64px;
  padding: clamp(30px, 3.3783783784vw, 50px) clamp(25px, 3.3783783784vw, 50px);
}

.promise__title {
  letter-spacing: -0.04em;
  line-height: 1.5;
}

.promise__row {
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: space-between;
  margin-top: clamp(25px, 2.3648648649vw, 35px);
}
@media screen and (min-width: 768px), print {
  .promise__row {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px), print {
  .promise__video {
    width: 53.6312849162%;
  }
}
.promise__video iframe {
  aspect-ratio: 480/270;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .promise__body {
    width: 41.3407821229%;
  }
}

.promise__text + .promise__text {
  margin-top: 50px;
}

/* feature */
.feature {
  position: relative;
}
@media screen and (min-width: 1400px), print {
  .feature {
    max-height: 1100px;
    padding-bottom: 142px;
  }
}

.feature__image {
  position: sticky;
  bottom: 0;
  left: 100%;
  width: clamp(106px, 28.27vw, 252px);
  z-index: 1;
}
@media screen and (min-width: 1400px), print {
  .feature__image {
    position: absolute;
    bottom: 0;
    left: unset;
    right: 0;
    width: clamp(106px, 28.27vw, 252px);
    z-index: 2;
  }
}

.feature-list {
  gap: 90px;
}
@media screen and (min-width: 768px), print {
  .feature-list {
    gap: clamp(30px, 3.3783783784vw, 50px);
  }
}
@media not all and (min-width: 768px), print {
  .feature-list {
    padding-inline: 18px;
  }
}

.feature-list__item {
  -ms-grid-rows: subgrid;
  -ms-grid-row-span: 4;
  display: -ms-grid;
  display: grid;
  gap: 15px;
  grid-row: span 4;
  grid-template-rows: subgrid;
}

.feature-list__number {
  background-color: #3aa7c2;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 4px;
}

.feature-list__title {
  color: #3aa7c2;
  display: -ms-grid;
  display: grid;
  place-items: center;
  line-height: 1.5;
}

/* 流れ */
.flow-block {
  padding-block: clamp(100px, 7.4324324324vw, 110px);
}

.flow__container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.flow__image--sp {
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px), print {
  .flow__image--sp {
    display: none;
  }
}

.flow__image {
  display: none;
}
@media screen and (min-width: 768px), print {
  .flow__image {
    display: block;
    max-width: 270px;
  }
}

.flow.--warning .heading-lv2 {
  color: #898989;
}
.flow.--warning .heading-lv2::after {
  background: #f6ac2d;
}

.flow.--primary {
  padding-top: 225px;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .flow.--primary {
    padding-top: 155px;
  }
}
.flow.--primary::before {
  -webkit-transform: translateX(-50%);
  background: url(../img/common/arrow.png) center/auto no-repeat;
  content: "";
  display: block;
  height: 80px;
  left: 50%;
  position: absolute;
  top: 95px;
  transform: translateX(-50%);
  width: 75px;
}
@media screen and (min-width: 768px), print {
  .flow.--primary::before {
    top: 50px;
  }
}
@media not all and (min-width: 768px), print {
  .flow.--primary .flow__box {
    margin-top: 60px;
  }
}
.flow.--primary .heading-lv2 {
  color: #3aa7c2;
}
.flow.--primary .flow-list___title {
  background-color: #3aa7c2;
}

.flow__box {
  margin-top: 60px;
  padding: 40px 25px 0;
}
@media screen and (min-width: 768px), print {
  .flow__box {
    padding: 25px;
    max-width: 66%;
  }
}

.flow-list {
  gap: 25px;
  gap: 70px;
}
@media screen and (min-width: 768px), print {
  .flow-list {
    gap: min(1.6891891892vw, 25px);
  }
}
@media not all and (min-width: 768px), print {
  .flow-list {
    padding-inline: 18px;
  }
}

.flow .heading-lv2 {
  font-size: clamp(1.25rem, 7.47vw, 1.75rem);
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px), print {
  .flow .heading-lv2 {
    font-size: clamp(1.75rem, 2.027027027vw, 1.875rem);
  }
}

.flow-list___title {
  align-items: center;
  background-color: #f6ac2d;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  gap: 5px;
  justify-content: center;
  line-height: 1;
  min-height: 4.2em;
}
.flow-list___title span {
  display: inline-block;
  font-size: 1rem;
}

.flow__head {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(30px, 3.3783783784vw, 50px);
}
@media screen and (min-width: 768px), print {
  .flow__head {
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-left: 120px;
  }
}
.flow__head .heading-lv2 {
  margin-inline: inherit;
}

/* voice */
.voice {
  padding-bottom: 75px;
}
@media not all and (min-width: 768px), print {
  .voice {
    padding-inline: 20px;
  }
}

.voice-slide {
  padding-bottom: clamp(55px, 5.0675675676vw, 75px);
}

.voice-slide__contents {
  background-color: #fff;
  display: -ms-grid;
  display: grid;
  gap: 30px;
  grid-template-areas: "title" "image" " data" " profile";
  padding: 30px 25px 307px;
}
@media screen and (min-width: 768px), print {
  .voice-slide__contents {
    -ms-grid-rows: auto auto auto;
    -ms-grid-columns: clamp(285px, 25vw, 370px) 1fr;
    grid-template-areas: "image  body";
    grid-template-columns: clamp(285px, 25vw, 370px) 1fr;
    grid-template-rows: auto auto auto;
    padding: clamp(30px, 3.3783783784vw, 50px) clamp(25px, 3.3783783784vw, 50px) 105px;
  }
}

.voice-slide__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
  line-height: 1.5;
}

.voice-slide__body {
  grid-area: body;
}
@media not all and (min-width: 768px), print {
  .voice-slide__body {
    display: contents;
  }
}

.voice-slide__data {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  display: inline-block;
  font-weight: bold;
  grid-area: data;
}
@media screen and (min-width: 768px), print {
  .voice-slide__data {
    margin-top: 30px;
  }
}

.voice-slide__profile {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
  grid-area: profile;
}
@media screen and (min-width: 768px), print {
  .voice-slide__profile {
    margin-top: 15px;
  }
}

.voice-slide__image {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: image;
}

@media screen and (min-width: 768px), print{
  .voice-slide__body {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .voice-slide__image {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.voice-slide__image img {
  width: 100%;
}

.voice-slide__text {
  background-color: #f6ac2d;
  color: #ffffff;
  flex-grow: 1;
  font-weight: bold;
  margin-inline: auto;
  margin-top: -265px;
  padding: 25px 18px 105px;
  width: 85%;
}
@media screen and (min-width: 768px), print {
  .voice-slide__text {
    margin-top: -130px;
    padding: 25px 35px;
    width: min(90%, 900px);
  }
}

.splide__slide__container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.splide__pagination .splide__pagination__page {
  background-color: #fff;
  border-radius: 50%;
  height: 10px;
  margin-inline: 10px;
  opacity: 0.7;
  transition: background-color 0.3s;
  width: 10px;
}

.splide__pagination .splide__pagination__page.is-active {
  -webkit-transform: scale(1);
  background-color: #ee782b;
  opacity: 1;
  transform: scale(1);
}

.splide__arrows {
  margin-inline: auto;
  position: relative;
  top: max(-253.3333333333vw, -950px);
}
@media screen and (min-width: 576px), print {
  .splide__arrows {
    top: -78.125vw;
  }
}
@media screen and (min-width: 768px), print {
  .splide__arrows {
    top: -390px;
  }
}
@media screen and (min-width: 992px), print {
  .splide__arrows {
    width: clamp(835px, 76.3513513514vw, 1130px);
  }
}

.splide__arrow {
  border-radius: inherit;
  opacity: 1;
}

.splide__arrow--prev {
  -webkit-clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
  background-color: #ee782b;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
  height: 40px;
  width: 20px;
}
@media not all and (min-width: 992px), print {
  .splide__arrow--prev {
    left: -13px;
  }
}

.splide__arrow--next {
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: #ee782b;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  height: 40px;
  width: 20px;
}
@media not all and (min-width: 992px), print {
  .splide__arrow--next {
    right: -13px;
  }
}

.splide__slide {
  width: 100%;
}

/* ご利用方法 */
.howto {
  padding-bottom: 230px;
  padding-top: clamp(85px, 8.1081081081vw, 120px);
}

@media not all and (min-width: 768px), print {
  .howto .heading__main {
    font-size: 3.4375rem;
    white-space: nowrap;
  }
}

.howto__block {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .howto__block {
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 30px;
    margin-right: 2%;
    gap: 60px;
  }
}
@media screen and (min-width: 992px), print {
  .howto__block {
    margin-right: 7%;
  }
}
@media not all and (min-width: 768px), print {
  .howto__block {
    align-items: center;
    padding-inline: 20px;
  }
}

.howto-list {
  margin-top: 66px;
}

.howto__block .fukidashi {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  height: 100px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media screen and (min-width: 768px), print {
  .howto__block .fukidashi {
    -webkit-mask: url(../img/common/fukidashi-blue.webp) no-repeat center center / 100%;
    mask: url(../img/common/fukidashi-blue.webp) no-repeat center center / 100%;
    font-size: 1.25rem;
    position: absolute;
    right: 250px;
    top: 20px;
  }
}
@media not all and (min-width: 768px), print {
  .howto__block .fukidashi {
    width: 120px;
  }
}
.howto__block .fukidashi p {
  -webkit-transform: scaleX(-1);
  line-height: 1.5;
  transform: scaleX(-1);
}

.howto-list__item {
  display: flex;
  font-size: clamp(1rem, 1.3513513514vw, 1.25rem);
  font-weight: bold;
  gap: 15px;
}
.howto-list__item + .howto-list__item {
  margin-top: 25px;
}
.howto-list__item span {
  background-color: #ee782b;
  border-radius: 50%;
  color: #ffffff;
  display: -ms-grid;
  display: grid;
  height: clamp(27px, 2.027027027vw, 30px);
  place-items: center;
  width: clamp(27px, 2.027027027vw, 30px);
}

.line-code {
  margin-top: 50px;
  text-align: center;
}

.howto-list__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
}
.howto-list__text-wrap::after {
  -webkit-transform: translate(-50%, -50%);
  color: #ee782b;
  content: "\e5cd";
  font-family: "Material Symbols Outlined";
  font-size: 2.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.howto__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px), print {
  .howto__container {
    display: contents;
  }
}

.howto__container .howto__btn a {
  width: 200px;
}

.howto__image {
  grid-column: 2;
  grid-row: span 2;
  width: 165px;
  margin-left: -20px;
}
@media screen and (min-width: 768px), print {
  .howto__image {
    width: 380px;
  }
}

@media not all and (min-width: 768px), print {
  .howto__btn {
    font-weight: bold;
  }
  .howto__btn a {
    margin-inline: auto;
    padding: 3px;
    width: 250px;
  }
}


.howto-point {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px clamp(15px, 2.027027027vw, 30px);
}
@media screen and (min-width: 992px), print {
  .howto-point {
    position: relative;
    width: 80%;
    max-width: 670px;
    margin-top: 140px;
  }
}

.howto-point__text {
  margin-right: auto;
  text-align: left;
  max-width: 300px;
    margin-right: auto;
    margin-left: auto;
}
@media screen and (min-width: 992px), print {
  .howto-point__text {
    text-align: unset;
    margin-right: unset;
    max-width: unset;
    margin-left: unset;
  }
}

.howto-point__text.mt-30 {
  margin-top: 15px;
}

.howto-point__text .br-pc {
  display: none;
}
@media screen and (min-width: 992px), print {
  .howto-point__text .br-pc {
    display: block;
  }
}


.howto-point__text .fz-2 {
  text-align: center;
  width: 135px;
  font-size: 28px;
  display: block;
  line-height: 1;
}
@media screen and (min-width: 992px), print {
  .howto-point__text .fz-2 {
    text-align: unset;
    width: unset;
    display: inline;
    line-height: unset;
  }
}

@media screen and (min-width: 992px), print {
  .howto-point__text .fz-2 .br {
    display: none;
  }
}

.howto-point__image {
  display: none;
}
@media screen and (min-width: 992px), print {
  .howto-point__image {
    display: block;
    position: absolute;
    top: 14%;
    left: 52%;
    width: clamp(745px, 54.05vw, 800px);
  }
}

.howto-point__title {
  margin-right: auto;
  font-size: clamp(1.125rem, 1.8918918919vw, 1.75rem);
}

.howto-point__picup {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 992px), print {
  .howto-point__picup {
    flex-direction: row;
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
  }
}

.howto-point__detail {
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media not all and (min-width: 992px), print { 
  .howto-point__detail p {
    display: none;
  }
}

.howto-point__image-sp {
  position: absolute;
  bottom: 94%;
  right: -73px;
  width: clamp(250px, (260/992)*100vw, 260px);
  z-index: -1;
}
@media screen and (min-width: 992px), print {
  .howto-point__image-sp {
    display: none;
  }
}

.howto-point__figure {
  text-align: center;
}

.howto-point__round {
  background-color: #ee782b;
  border-radius: 50%;
  color: #ffffff;
  display: -ms-grid;
  display: grid;
  height: 160px;
  margin-inline: auto;
  place-items: center;
  width: 100%;
  max-width: 300px;
}
.howto-point__round p {
  line-height: 1;
}

.howto-point__note {
  font-size: 0.875rem;
}

/* faq */
.qa {
  margin-top: 25px;
}
.qa dt,
.qa dd {
  display: flex;
}

.qa__question {
  align-items: flex-start;
  color: #3aa7c2;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}
.qa__question .qa__icon {
  background-color: #3aa7c2;
}
@media screen and (min-width: 768px), print {
  .qa__question {
    align-items: center;
  }
}

.qa__answer {
  align-items: flex-start;
  padding: 15px 0 75px;
}
.qa__answer .qa__icon {
  background-color: #ee782b;
}

.qa__icon {
  aspect-ratio: 1;
  border-radius: 10px;
  color: #ffffff;
  display: -ms-grid;
  display: grid;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: bold;
  margin-right: 20px;
  place-items: center;
  width: 40px;
}

/* news */
.top-news {
  padding-block: 200px 250px;
  padding-block: clamp(95px, 13.5135135135vw, 200px) clamp(160px, 16.8918918919vw, 250px);
  position: relative;
}
.top-news .inner {
  max-width: 890px;
  padding-inline: 45px;
}

.news-lists {
  margin-top: 70px;
}

.news__link {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2.027027027vw, 30px);
  padding-block: 15px;
}
@media screen and (min-width: 768px), print {
  .news__link {
    flex-direction: row;
  }
}

.top-news__btn {
  margin-top: clamp(30px, 3.3783783784vw, 50px);
}

.top-news__image {
    display: none;
}
@media screen and (min-width: 768px), print {
  .top-news__image {
    display: block;
    position: absolute;
    width: clamp(0px, 25.68vw, 380px);
    right: 90px;
    bottom: 0;
  }
}

/* company */
.company {
  background-color: #d8f6fd;
  padding-bottom: 74px;
}
@media screen and (min-width: 768px), print {
  .company {
    padding-bottom: clamp(0px, 15.5405vw, 230px);
  }
}

.company-about.mt-40 {
  margin-top: 0;
}

@media screen and (min-width: 768px), print {
    .company-about.mt-40 {
      margin-top: 40px;
  }
}

.company-about {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px), print {
  .company-about {
    flex-direction: row;
  }
}

.company-about__body {
  margin-top: 30px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px), print {
  .company-about__body {
    width: 46%;
    padding-bottom: 100px;
    margin-top: 0;
  }
}

.company-about__text {
  margin-top: 25px;
}

.company-about__image {
  max-width: 252px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px), print {
  .company-about__image {
    max-width: unset;
    margin-left: unset;
    margin-right: calc((50vw - 50%) * -1);
    width: clamp(530px , 40.135135vw, 594px);
    position: relative;
    transform: translateX(-10px);
  }
}

.company-about__image img {
  -o-object-fit: cover;
  max-width: 710px;
  object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .company-about__image img {
    position: sticky;
    top: 150px;
  }
}

.company-about__note {
  font-size: 0.875rem;
  margin-top: clamp(20px, 5.0675675676vw, 75px);
}

.company-about.--reverse {
  margin-top: 30px;
}
@media screen and (min-width: 768px), print {
  .company-about.--reverse {
    margin-top: clamp(70px, 6.7567567568vw, 100px);
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px), print {
  .company-about.--reverse .company-about__image {
    margin-left: calc((50vw - 50%) * -1);
    margin-right: unset;
    transform: unset;
  }
}

.company-about.--reverse .company-about__image img {
  top: 150px;
  bottom: unset;
}

.achievement {
  background-color: #fff;
  padding: clamp(40px, 3.3783783784vw, 50px) clamp(25px, 3.3783783784vw, 50px);
}

.achievement-list {
  gap: 100px;
}
@media screen and (min-width: 768px), print {
  .achievement-list {
    gap: 40px;
  }
}

.achievement-list__item {
  -ms-grid-row-span: 2;
  -ms-grid-rows: subgrid;
  display: -ms-grid;
  display: grid;
  gap: 15px;
  grid-row: span 2;
  grid-template-rows: subgrid;
  justify-items: center;
}

.achievement-list__title {
  aspect-ratio: 1;
  background-color: #f6ac2d;
  border-radius: 50%;
  color: #ffffff;
  display: -ms-grid;
  display: grid;
  line-height: 1.5;
  place-items: center;
  width: 200px;
}

.datetime {
  color: #3aa7c2;
  font-weight: bold;
}

.news-section {
  padding-block: 100px 50px;
  position: relative;
}
.news-section::after {
  background: url(../img/bg_mv.png) center/cover no-repeat;
  content: "";
  height: 710px;
  left: 0;
  position: absolute;
  top: 100px;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px), print {
  .news-section::after {
    height: clamp(590px, 39.8648648649vw, 1000px);
  }
}
.news-section .heading {
  background-color: #f6ac2d;
  color: #ffffff;
  padding: 23px;
}
.news-section .heading__main {
  color: #ffffff;
}

.news-section__contents {
  margin-top: clamp(60px, 6.0810810811vw, 90px);
}

.post {
  padding: clamp(30px, 4.0540540541vw, 60px) clamp(27px, 6.7567567568vw, 100px);
}

.post-header__meta {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2.027027027vw, 30px);
}
@media screen and (min-width: 768px), print {
  .post-header__meta {
    flex-direction: row;
  }
}

.post__body p + * {
  margin-top: 27px;
}

.post__body .btn {
  margin-block: 55px;
}

.post__eyecatch {
  margin-block: 45px 30px;
}
@media screen and (min-width: 768px), print {
  .post__eyecatch {
    margin-block: 18px 25px;
  }
}

.post__eyecatch img {
  -o-object-fit: cover;
  aspect-ratio: 800/475;
  object-fit: cover;
  width: 100%;
}

.post-header__title {
  font-weight: bold;
}

@media not all and (min-width: 768px), print {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px), print {
  .pc {
    display: none !important;
  }
}

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

.bg-warning {
  background-color: #feebbe;
}

.border-primary {
  border: 3px solid #3aa7c2;
  border-radius: 20px;
}

.border-warning {
  border: 3px solid #f6ac2d;
  border-radius: 20px;
}

.rounded {
  border-radius: 20px;
}

.fz-1 {
  font-size: clamp(1.75rem, 2.4324324324vw, 2.25rem);
  line-height: 1.5;
}

.fz-2 {
  font-size: clamp(1.25rem, 1.8918918919vw, 1.75rem);
}

.fz-3 {
  font-size: clamp(1.25rem, 1.6216216216vw, 1.5rem);
}

.fz-4 {
  font-size: 1.25rem;
  font-weight: bold;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: clamp(55px, 6.7567567568vw, 100px);
}

.text-warning {
  color: #ee782b;
  font-weight: bold;
}

.text-primary {
  color: #3aa7c2;
  font-weight: bold;
}
/*# sourceMappingURL=sourcemaps/style.css.map */