@charset "UTF-8";
/* =========================================
   variables
   - 色 / フォントサイズ / スペーシング / ブレイクポイント
   ========================================= */
/* ----- Color ----- */
/* ----- Typography ----- */
/* clampはそのまま使う方針（元CSS維持） */
/* ----- Layout ----- */
/* ----- Breakpoints (max-width) ----- */
/* =========================================
   mixins
   - メディアクエリ / 共通パターン
   ========================================= */
/* ----- Media Query（max-width）----- */
/* PCサイズを明示したい時用（任意） */
/* ----- 共通：flex-box ----- */
/* ----- 共通：中央揃えコンテナ ----- */
/* ----- 共通：グラデーションテキスト ----- */
/* ----- 共通：ボタンスタイル（BEMのElementにも使用可）----- */
/* グラデーション背景 */
/* グラデーションボタン */
/* グラデーション枠線 */
.fw-bold {
  font-weight: bold;
}

/* =========================================
   reset
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  margin: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  border-radius: 0;
  border: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(section) {
  /* sectionの上下余白は style.scss で上書き制御 */
  margin: 0;
}

/* =========================================
   Global Base
   ========================================= */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", sans-serif;
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.7;
  color: #000000;
  background-color: #ffffff;
  /* 後勝ちで上書き（元CSS踏襲） */
  font-family: "Noto Sans JP", sans-serif;
}

/* common */
img {
  max-width: 100%;
  height: auto;
}

/* 共通コンテナ（通常） */
.l-container {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

/* お問い合わせ用コンテナ */
.l-container--contact {
  max-width: 752px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

/* section 共通余白 */
.section {
  padding-block: 80px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .section {
    padding-block: 60px;
    overflow: hidden;
  }
}
@media (max-width: 468px) {
  .section {
    padding-block: 40px;
  }
}

.half-section {
  padding-block: 40px;
}
@media (max-width: 768px) {
  .half-section {
    padding-block: 30px;
  }
}
@media (max-width: 468px) {
  .half-section {
    padding-block: 20px;
  }
}

br.sp_br {
  display: none !important;
}
@media (max-width: 468px) {
  br.sp_br {
    display: block !important;
  }
}
br.pc_br {
  display: block !important;
}
@media (max-width: 468px) {
  br.pc_br {
    display: none !important;
  }
}

/* タイトル（h2） */
h2,
.c-section__title {
  font-size: clamp(20px, 15px + 1.25vw, 30px);
  font-weight: 700;
  color: #0048a0;
  line-height: 1.3;
}

/* CTAボタン例（BEM） */
.c-btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-image: linear-gradient(to right, #0048a0, #018de1);
  color: #fff;
}
.c-btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* =========================================
   Header
   ========================================= */
.site-header {
  background-color: #fff;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
.site-header__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 13px;
}
.site-header__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* PCは横並び用に一旦戻す */
}
@media (min-width: calc(768px + 1px)) {
  .site-header__brand {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.site-header__logoImg {
  display: block;
  width: auto;
  max-width: 56px;
}
.site-header__logoImg--pc {
  display: block;
}
.site-header__logoImg--sp {
  display: none;
}
.site-header__ctaBtn {
  font-weight: bold;
  background: #fdca26;
  color: #000000;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 9px;
}
@media (max-width: 1440px) {
  .site-header__inner {
    gap: 20px;
  }
  .site-header__logoImg--pc {
    display: none;
  }
  .site-header__logoImg--sp {
    display: block;
    width: clamp(8.125rem, 4.204rem + 13.38vw, 10.625rem);
  }
  .site-header__brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .site-header__tagline {
    font-size: 13px;
  }
  .site-header__ctaBtn {
    font-size: 15px;
    padding: 12px 32px;
  }
}
@media (max-width: 768px) {
  .site-header__inner {
    align-items: center;
    gap: 16px;
  }
  .site-header__brand {
    align-items: center;
  }
  .site-header__tagline {
    white-space: normal;
    text-align: center;
  }
  .site-header__ctaBtn {
    width: 100%;
    text-align: center;
    padding: 12px clamp(0.375rem, -2.174rem + 8.7vw, 2rem);
    font-size: clamp(0.813rem, 0.518rem + 1vw, 1rem);
  }
}

/* =========================================
   Clients (logo slider 2 rows)
   ========================================= */
.clients {
  background-color: #fff;
}
.clients__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.clients__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clients__list-top {
  display: none;
  margin: 0 0 40px;
}
.clients__list-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto 0;
}
@media (max-width: 768px) {
  .clients__list-bottom {
    text-align: center;
    display: block;
  }
}
.clients__listItem {
  width: 45.4545454545%;
}
.clients__row {
  display: flex;
  overflow: hidden;
}
.clients__row--top {
  height: 80px;
  margin-block: 15px;
}
@media (max-width: 768px) {
  .clients__row--top {
    height: 55px;
    margin-block: 10px;
  }
}
.clients__row--top .clients__track:first-child {
  -webkit-animation: clients-loop-top-1 70s linear -35s infinite;
          animation: clients-loop-top-1 70s linear -35s infinite;
}
.clients__row--top .clients__track:last-child {
  -webkit-animation: clients-loop-top-2 70s linear 0s infinite;
          animation: clients-loop-top-2 70s linear 0s infinite;
}
.clients__row--bottom {
  height: 110px;
}
@media screen and (max-width: 768px) {
  .clients__row--bottom {
    height: 55px;
  }
}
.clients__row--bottom .clients__track:first-child {
  -webkit-animation: clients-loop-bottom-1 70s linear -35s infinite;
          animation: clients-loop-bottom-1 70s linear -35s infinite;
}
.clients__row--bottom .clients__track:last-child {
  -webkit-animation: clients-loop-bottom-2 70s linear 0s infinite;
          animation: clients-loop-bottom-2 70s linear 0s infinite;
}
.clients__track {
  display: flex;
  will-change: transform;
}
.clients__item {
  min-width: 150px;
  height: auto;
  margin: auto 0 auto 70px;
}
@media screen and (max-width: 768px) {
  .clients__item {
    min-width: 75px;
    margin: auto 0 auto 28px;
  }
}
.clients__logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 80px;
}
@media (max-width: 468px) {
  .clients__logo {
    width: 75px;
    height: 45px;
  }
}
.clients__title {
  font-size: clamp(14px, 12px + 0.5vw, 18px);
}

/* Keyframes */
@-webkit-keyframes clients-loop-top-1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes clients-loop-top-1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes clients-loop-top-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes clients-loop-top-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes clients-loop-bottom-1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes clients-loop-bottom-1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@-webkit-keyframes clients-loop-bottom-2 {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes clients-loop-bottom-2 {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
/* =========================================
  solution
   ========================================= */
.solution__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.solution__title {
  display: inline-block;
  background: linear-gradient(to right, #3f3f3f, #bababa);
  padding: 10px;
  color: #fff;
  position: relative;
  bottom: -20px;
  left: 20px;
}
.solution__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: flex-start;
  flex-wrap: wrap;
  background: #3f3f3f;
  padding: 40px 30px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .solution__list {
    display: block;
  }
}
.solution__list > * {
  color: #ffffff;
}
.solution__listItem {
  margin-right: 5px;
  margin-bottom: 10px;
}
.solution__listItem:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 20px;
  background: url(../images/worries.svg) no-repeat center center/contain;
}
.solution__listItem:nth-child(2n) {
  margin-left: 0;
}
.solution__after {
  text-align: center;
}
.solution__after svg {
  margin: 20px 0;
}
.solution__afterText {
  font-size: clamp(20px, 17px + 0.75vw, 26px);
  color: #0048a0;
  font-weight: bold;
}
.solution__afterText-em {
  background: linear-gradient(to right, #0048a0, #018de1);
  padding: 10px;
  color: #fff;
  display: inline-block;
  margin-right: 10px;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding-block: 80px;
}
@media (max-width: 768px) {
  .about {
    padding-block: 60px;
  }
}
@media (max-width: 468px) {
  .about {
    padding-block: 40px;
  }
}
.about__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.about__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .about__row {
    display: block;
  }
}
.about__figure {
  width: 45.4545454545%;
}
@media (max-width: 768px) {
  .about__figure {
    width: 100%;
  }
}
.about__header {
  margin-bottom: 40px;
  width: 45.4545454545%;
}
@media (max-width: 768px) {
  .about__header {
    margin-bottom: 28px;
    width: 100%;
  }
}
.about__title {
  position: relative;
  font-size: clamp(20px, 15px + 1.25vw, 30px);
  font-weight: 700;
  color: #0048a0;
  margin-bottom: 16px;
  display: inline-block;
}
@media (max-width: 768px) {
  .about__title {
    display: block;
  }
}
.about__title::before {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #0048a0;
  bottom: -10px;
  right: 0;
}
.about__lead {
  line-height: 1.9;
}
.about__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-inline: auto;
}
.about__logos--top {
  margin-bottom: 50px;
}
.about__logos--bottom {
  gap: 32px;
}
@media (max-width: 768px) {
  .about__logos {
    gap: 28px;
  }
}
@media (max-width: 468px) {
  .about__logos {
    gap: clamp(0.625rem, -0.35rem + 3.33vw, 1.25rem);
  }
}
.about__logoItem {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 142px;
}
@media (max-width: 468px) {
  .about__logoItem {
    max-width: 100px;
  }
}
@media (max-width: 468px) {
  .about__logoItem:nth-child(1) {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about__logoItem:nth-child(1) .about__logoImg {
    width: clamp(4.563rem, -0.02rem + 15.67vw, 7.5rem);
  }
}
.about__logoItem--partner {
  max-width: 170px;
}
@media (max-width: 468px) {
  .about__logoItem--partner {
    max-width: 150px;
  }
}
.about__logoImg {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================
   Charm of Korean Visitors
   ========================================= */
.charm {
  overflow: hidden;
}
.charm__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.charm__header {
  text-align: left;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .charm__header {
    margin-bottom: 50px;
  }
}
.charm__title {
  font-size: clamp(20px, 15px + 1.25vw, 30px);
  /* 元CSSの後勝ち維持 */
  font-weight: 700;
  color: #0048a0;
  margin-bottom: 12px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(to right, #0048a0, #018de1);
  padding: 10px;
  color: #fff;
}
.charm__intro {
  line-height: 27px;
}
.charm__row {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
@media (max-width: 1440px) {
  .charm__row {
    display: block;
  }
}
.charm__row--top {
  margin-bottom: 40px;
}
.charm__row--bottom {
  margin-top: 20px;
}
@media (max-width: 1440px) {
  .charm__row--bottom {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .charm__row {
    gap: 28px;
  }
}
@media (max-width: 468px) {
  .charm__row {
    flex-direction: column;
    gap: 20px;
  }
  .charm__row--bottom.charm__row--bottom {
    flex-direction: column-reverse;
  }
}
.charm__panel {
  flex: 1 1 0;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
}
.charm__panel::before {
  content: "";
  position: absolute;
  right: -10px;
  width: 100vw;
  background-color: #f7f7f7;
  z-index: -1;
  border-radius: 0 15px 15px 0;
  height: 328px;
}
@media (max-width: 1440px) {
  .charm__panel::before {
    height: 100%;
  }
}
.charm__panel--right {
  justify-content: flex-start;
}
.charm__panel--right::before {
  content: "";
  position: absolute;
  left: -10px;
  width: 100vw;
  background-color: #f7f7f7;
  z-index: -1;
  border-radius: 15px 0 0 15px;
  height: 285px;
}
.charm__panel--right .charm__panelInner {
  padding: 32px 0 32px clamp(0.625rem, -6.932rem + 11.49vw, 3.125rem);
}
@media (max-width: 468px) {
  .charm__panel--right .charm__panelInner {
    padding: 32px 0;
  }
}
.charm__panelInner {
  padding: 32px 0 32px 0;
}
@media (max-width: 768px) {
  .charm__panelInner {
    padding: 50px 28px;
  }
}
@media (max-width: 468px) {
  .charm__panelInner {
    padding: 20px 0;
    letter-spacing: -1px;
  }
}
.charm__heading {
  font-size: clamp(20px, 17px + 0.75vw, 26px);
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 16px;
}
.charm__heading-em {
  color: #0048a0;
  font-weight: 700;
}
.charm__text {
  line-height: 27px;
  margin-bottom: 12px;
}
@media (max-width: 468px) {
  .charm__text {
    line-height: 23px;
    font-size: 17px;
  }
}
.charm__source {
  font-size: 12px;
}
.charm__source a {
  text-decoration: underline;
}
.charm__figure {
  flex: 0 0 clamp(25rem, 18.309rem + 13.92vw, 28.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .charm__figure {
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .charm__figure {
    flex-basis: 300px;
  }
}
@media (max-width: 468px) {
  .charm__figure {
    flex-basis: auto;
  }
}
.charm__image {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1440px) {
  .charm__figure {
    margin-top: 35px;
  }
}
@media (max-width: 468px) {
  .charm__header {
    text-align: left;
  }
  .charm__figure {
    justify-content: center;
  }
}

/* =========================================
   Points
   ========================================= */
.points {
  background-color: #f5faff;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .points.section {
    overflow: visible;
  }
}
@media (max-width: 768px) {
  .points {
    margin-top: 0;
  }
}
.points__spTitle {
  display: block;
  color: #0048a0;
  text-align: center;
}
.points__wrap {
  margin-top: -100px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .points__wrap {
    margin-top: -75px;
  }
}
.points__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.points__header {
  margin-bottom: 48px;
  text-align: left;
}
.points__title {
  font-size: clamp(20px, 15px + 1.25vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  color: #0048a0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.points__subtitle {
  font-size: 16px;
  margin-top: 12px;
}
.points__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
}
@media (max-width: 768px) {
  .points__row {
    display: block;
  }
}
.points__item {
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  width: 30.303030303%;
  margin-bottom: 20px;
  padding: 15px;
}
@media (max-width: 1440px) {
  .points__item {
    width: 45.4545454545%;
  }
}
@media (max-width: 768px) {
  .points__item {
    width: 100%;
  }
}
.points__itemTitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #0048a0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
}
.points__itemTitle-icon {
  content: "";
  display: inline-block;
  width: 43px;
  height: 43px;
  padding-right: 15px;
}
.points__itemTitle-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.points__text {
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 20px;
}
.points__image {
  margin-top: 8px;
  margin-top: auto;
}
.points__img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   CTA Banner
   ========================================= */
.cta-banner {
  width: 100%;
  position: relative;
  background: url(../images/cta/cta_bg_img.jpg) no-repeat center center/cover;
  padding-block: 60px;
}
@media (max-width: 468px) {
  .cta-banner {
    padding-block: 40px;
  }
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 752px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.cta-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cta-banner__content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}
.cta-banner__text {
  font-size: clamp(20px, 15px + 1.25vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}
.cta-banner__btn {
  background: #fdca26;
  padding: 14px 34px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-size: 120%;
  background-position: left center;
}
.cta-banner__btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  background-position: right center;
}

/* =========================================
benefit
   ========================================= */
.benefit__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.benefit__row-reverce {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.benefit__title {
  margin-bottom: 10px;
}
.benefit__sectionTitle {
  font-size: 18px;
  font-weight: 300;
  background: linear-gradient(to right, #0048a0, #018de1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefit__catch .benefit__row-left {
  width: 45.4545454545%;
}
@media (max-width: 768px) {
  .benefit__catch .benefit__row-left {
    width: 100%;
  }
}
.benefit__catch .benefit__row-right {
  width: 45.4545454545%;
}
@media (max-width: 768px) {
  .benefit__catch .benefit__row-right {
    width: 100%;
  }
}
.benefit__catchTitle {
  font-size: clamp(20px, 17px + 0.75vw, 26px);
  color: #0048a0;
  margin-bottom: 30px;
}
.benefit__catchText {
  margin-bottom: 30px;
}
.benefit__text-em {
  color: #0048a0;
}
.benefit__section {
  margin-bottom: 70px;
}
.benefit__section .border-bottom {
  border-bottom: 1px solid #0048a0;
}
.benefit__section-1 .benefit__summary {
  font-weight: bold;
  text-align: center;
  font-size: clamp(20px, 17px + 0.75vw, 26px);
}
.benefit__section-1 .benefit__simulation {
  background: #f5faff;
  padding: 20px;
  overflow: hidden;
}
.benefit__section-1 .benefit__simulation .benefit__row {
  gap: 20px;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .benefit__section-1 .benefit__simulation .benefit__row {
    display: block;
  }
}
.benefit__section-1 .benefit__simulation .benefit__row-left {
  width: calc(30% - 20px);
}
@media (max-width: 768px) {
  .benefit__section-1 .benefit__simulation .benefit__row-left {
    width: 80%;
    margin-bottom: 40px;
  }
}
.benefit__section-1 .benefit__simulation .benefit__row-right {
  width: calc(60% - 30px);
  text-align: center;
}
@media (max-width: 768px) {
  .benefit__section-1 .benefit__simulation .benefit__row-right {
    width: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
}
.benefit__section-1 .benefit__simulation .benefit__row-right > figure {
  margin: 20px;
}
@media (max-width: 768px) {
  .benefit__section-1 .benefit__simulation .benefit__row-right > figure {
    margin: 30px auto;
    max-width: 414px;
  }
}
@media (max-width: 468px) {
  .benefit__section-1 .benefit__simulation .benefit__row-right > figure {
    margin: 30px 0;
    max-width: 100%;
  }
}
.benefit__section-1 .benefit__simulation .benefit__row-right > figcaption {
  display: block;
  padding-bottom: 40px;
}
.benefit__section-1 .benefit__simulationTitle {
  position: relative;
  margin-bottom: 16px;
}
.benefit__section-1 .benefit__simulationTitle::before {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #0048a0;
  bottom: -10px;
  right: 0;
  z-index: 1;
}
.benefit__section-1 .small {
  font-size: 0.8em;
}
.benefit__section-3 .benefit__row-left {
  width: 45.4545454545%;
}
@media (max-width: 768px) {
  .benefit__section-3 .benefit__row-left {
    width: 100%;
  }
}
.benefit__section-3 .benefit__row-right {
  width: 45.4545454545%;
}
@media (max-width: 768px) {
  .benefit__section-3 .benefit__row-right {
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .benefit__section-3 .benefit__basis.benefit__row {
    margin-top: 30px;
  }
}
.benefit__section-3 .benefit__basis.benefit__row .benefit__row-left {
  width: 20%;
}
@media (max-width: 1440px) {
  .benefit__section-3 .benefit__basis.benefit__row .benefit__row-left {
    width: 100%;
  }
}
.benefit__section-3 .benefit__basis.benefit__row .benefit__row-right {
  width: 80%;
}
@media (max-width: 1440px) {
  .benefit__section-3 .benefit__basis.benefit__row .benefit__row-right {
    width: 100%;
  }
}
.benefit__section-3 .benefit__basis.benefit__row .benefit__basisTitle {
  margin-bottom: 20px;
}
.benefit__section-3 .benefit__basis.benefit__row .benefit__basisList {
  background: #f5faff;
  padding: 20px;
}
.benefit__section-3 .benefit__basis.benefit__row .benefit__basisItem {
  margin-bottom: 20px;
}
.benefit__section-3 .benefit__basis.benefit__row .benefit__basisItem::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 20px;
  background: url(../images/benefit/check.png) no-repeat center center/contain;
}
.benefit__section-3 .benefit__basis.benefit__row .benefit__basisItem > .benefit__row-left {
  width: calc(40% - 16px - 20px);
  font-weight: 300;
}
@media (max-width: 1440px) {
  .benefit__section-3 .benefit__basis.benefit__row .benefit__basisItem > .benefit__row-left {
    width: calc(100% - 16px - 20px);
  }
}
.benefit__section-3 .benefit__basis.benefit__row .benefit__basisItem > .benefit__row-right {
  width: 60%;
}
@media (max-width: 1440px) {
  .benefit__section-3 .benefit__basis.benefit__row .benefit__basisItem > .benefit__row-right {
    padding-left: 36px;
    width: 100%;
  }
}

/* =========================================
 comparison
   ========================================= */
.comparison__title {
  font-size: clamp(20px, 15px + 1.25vw, 30px);
  /* 元CSSの後勝ち維持 */
  font-weight: 700;
  color: #0048a0;
  margin-bottom: 12px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(to right, #0048a0, #018de1);
  padding: 10px;
  color: #fff;
}
.comparison__table {
  margin: 40px 0 0;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.comparison__table-inner img {
  max-width: 100%;
  min-width: 1000px;
  vertical-align: top;
}
@media (max-width: 768px) {
  .comparison__table-inner img {
    min-width: 800px;
  }
}
@media (max-width: 468px) {
  .comparison__table-inner img {
    min-width: 700px;
  }
}

/* =========================================
 spec
   ========================================= */
.spec__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.spec__row-left {
  width: 35%;
  text-align: center;
  margin: 20px auto;
}
@media (max-width: 768px) {
  .spec__row-left {
    width: 50%;
  }
}
.spec__row-right {
  width: 60%;
}
@media (max-width: 768px) {
  .spec__row-right {
    width: 100%;
  }
}
.spec__row-right td,
.spec__row-right th {
  border-top: 1px solid #ececec;
  padding: 20px 10px;
}
.spec__row-right th {
  background: #8c8c8c;
  color: #ffffff;
  width: 100px;
}
@media (max-width: 768px) {
  .spec__row-right th {
    width: 100%;
  }
}
.spec__row-right td {
  border-right: 1px solid #8c8c8c;
}
.spec__row-right tr:first-child th, .spec__row-right tr:first-child td {
  border-top: 1px solid #8c8c8c;
}
.spec__row-right tr:last-child th, .spec__row-right tr:last-child td {
  border-bottom: 1px solid #8c8c8c;
}
@media (max-width: 768px) {
  .spec__row-right td,
.spec__row-right th {
    padding: 10px;
    text-align: left;
    border: 1px solid #8c8c8c;
    display: block;
    width: 100%;
  }
  .spec__row-right br {
    display: none;
  }
}

/* =========================================
   Flow
   ========================================= */
.flow__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.flow__header {
  margin-bottom: 32px;
}
.flow__title {
  font-size: clamp(20px, 15px + 1.25vw, 30px);
  font-weight: 700;
  color: #0048a0;
  margin-bottom: 8px;
}
.flow__subtitle {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
}
.flow__list {
  display: flex;
  gap: 32px 32px;
  flex-wrap: wrap;
}
@media (max-width: 468px) {
  .flow__list {
    flex-direction: column;
    gap: 20px;
  }
}
.flow__step {
  position: relative;
  background-color: #fff;
  border: 1px solid #0048a0;
  padding: 20px 22px;
  box-sizing: border-box;
  min-height: 160px;
  width: calc(25% - 32px);
}
@media (max-width: 768px) {
  .flow__step {
    width: 100%;
  }
}
.flow__step:nth-child(4)::after {
  content: none;
}
.flow__step::after {
  content: "…";
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  color: #0048a0;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 768px) {
  .flow__step::after {
    right: unset;
    top: unset;
    left: 50%;
    bottom: -26px;
    transform: translateX(-50%) rotate(90deg);
  }
}
.flow__stepHead {
  margin-bottom: 10px;
}
.flow__stepLabel {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(to right, #0048a0, #018de1);
  padding: 10px;
  color: #fff;
  color: #fff;
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
}
.flow__stepText {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.8;
}

/* =========================================
   FAQ
   ========================================= */
.faq__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}
.faq__side {
  flex: 0 0 180px;
  padding-top: 16px;
}
@media (max-width: 468px) {
  .faq__side {
    flex-basis: auto;
    padding-top: 0;
  }
}
.faq__title {
  text-align: center;
  font-size: clamp(20px, 15px + 1.25vw, 30px);
  font-weight: 700;
  color: #0048a0;
  margin-bottom: 38px;
}
.faq__subtitle {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
}
.faq__content {
  position: relative;
  flex: 1 1 auto;
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background-color: #fff;
  position: relative;
  padding: 20px 24px;
  border: 1px solid #ececec;
}
@media (max-width: 468px) {
  .faq__item {
    padding: 10px;
    border: 1px solid #ececec;
  }
}
.faq__item--open {
  border-color: #ececec;
}
.faq__item--open .faq__answer {
  display: block;
}
.faq__item--open .faq__toggle::after {
  opacity: 0;
}
.faq__item--open .faq__qText {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.faq__item--open .faq__qLabel {
  padding-bottom: 10px;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.faq__qLabel {
  color: #0048a0;
  font-weight: 700;
  font-size: 18px;
}
.faq__qText {
  flex: 1 1 auto;
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  font-weight: 700;
}
.faq__toggle {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: -10px;
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: #000;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}
.faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
  display: none;
}
.faq__answerInner {
  padding: 10px 0 0 0;
  display: flex;
  gap: 16px;
}
.faq__aLabel {
  font-weight: 700;
  font-size: 18px;
  color: #fdca26;
}
.faq__aText {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.9;
}
.faq__aText .text__link {
  border-bottom: 1px solid #000000;
}
@media (max-width: 468px) {
  .faq__aText {
    line-height: 24px;
  }
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  background-color: #f7f7f7;
}
.contact__inner {
  max-width: 752px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  position: relative;
}
.contact__header {
  margin-bottom: 32px;
}
.contact__title {
  font-size: clamp(20px, 15px + 1.25vw, 30px);
  font-weight: 700;
  color: #0048a0;
  margin-bottom: 8px;
}
.contact__lead {
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.7;
}
.contact__badge {
  position: absolute;
  right: 40px;
  top: 190px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #fdca26;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
@media (max-width: 468px) {
  .contact__badge {
    right: 16px;
    top: auto;
    bottom: 220px;
  }
}

/* =========================================
   Contact Form
   ========================================= */
.contact-form {
  margin-top: 24px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}
.contact-form__row--textarea {
  align-items: flex-start;
}
@media (max-width: 468px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.contact-form__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 468px) {
  .contact-form__label {
    margin-bottom: 4px;
  }
}
.contact-form__labelText {
  display: inline-block;
}
@media (max-width: 468px) {
  .contact-form__labelText {
    font-weight: 400;
  }
}
.contact-form__required {
  color: #0048a0;
  margin-left: 2px;
}
.contact-form__field {
  width: 100%;
}
.contact-form__control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  font-size: clamp(0.938rem, 0.714rem + 0.46vw, 1.063rem);
  line-height: 1.5;
  box-sizing: border-box;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact-form__control::-moz-placeholder {
  color: #c0c0c0;
}
.contact-form__control::placeholder {
  color: #c0c0c0;
}
.contact-form__control:focus {
  outline: none;
  border-color: #0048a0;
}
.contact-form__control--textarea {
  resize: vertical;
  min-height: 180px;
}
.contact-form__control--select {
  padding-right: 32px;
  cursor: pointer;
}
.contact-form__selectWrap {
  position: relative;
}
.contact-form__selectArrow {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #555;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-form__privacy {
  margin-top: 24px;
  margin-bottom: 24px;
}
.contact-form__privacy-box {
  padding: 30px;
  background: #ffffff;
  margin: 20px 0;
  height: 300px;
  overflow-y: scroll;
}
.contact-form__privacyText {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 12px;
}
@media (max-width: 468px) {
  .contact-form__privacyText {
    line-height: 16px;
  }
}
.contact-form__agree {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.contact-form__checkbox {
  width: 16px;
  height: 16px;
}
.contact-form__agreeLabel {
  font-size: 13px;
}
.contact-form__submit {
  text-align: center;
  margin-top: 12px;
}
.contact-form__submitBtn {
  min-width: 260px;
  padding: 12px 40px;
  border: none;
  border-radius: 4px;
  background-image: linear-gradient(to right, #0048a0, #018de1);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}
.contact-form__submitBtn:hover {
  opacity: 0.92;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background-color: #ffffff;
  padding-block: 20px;
  color: #000000;
  font-size: 13px;
}
.footer__inner {
  max-width: 1052px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
  text-align: center;
}
.footer__copy {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 12px;
}

/* =========================================
   Main Visual
   ========================================= */
.mv {
  display: flex;
  width: 100%;
  min-height: 464px;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
  background-image: url("../images/hero/fv_main_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.mv *:not(.mv__btn) {
  color: #ffffff;
}
@media (max-width: 768px) {
  .mv {
    min-height: 464px;
    flex-direction: column;
    max-height: none;
    margin-top: 72px;
  }
}
.mv__left {
  flex: 0 0 55%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .mv__left {
    justify-content: flex-start;
    flex-basis: auto;
    min-height: 260px;
  }
}
.mv__leftInner {
  padding-block: 48px;
}
@media (max-width: 768px) {
  .mv__leftInner {
    padding-block: 40px;
    margin: 0;
  }
}
@media (max-width: 468px) {
  .mv__leftInner {
    padding-block: 32px;
    margin: 0;
  }
}
.mv__eyebrow {
  display: inline-block;
  font-size: clamp(14px, 12px + 0.5vw, 18px);
  letter-spacing: 0.08em;
  position: relative;
  margin-bottom: 12px;
  margin-top: 12px;
  padding-top: 12px;
}
.mv__eyebrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #ffffff;
  right: 0;
}
.mv__emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px -10px;
  max-width: 500px;
}
@media (max-width: 768px) {
  .mv__emblem {
    max-width: 40%;
  }
}
@media (max-width: 468px) {
  .mv__emblem {
    max-width: 150px;
  }
}
.mv__emblem--pc {
  display: flex;
}
.mv__emblem--sp {
  display: none;
}
@media (max-width: 768px) {
  .mv__emblem--pc {
    display: none;
  }
  .mv__emblem--sp {
    display: block;
  }
}
.mv__emblem--item {
  padding: 20px 10px 30px;
}
.mv__title {
  font-size: clamp(1.625rem, -0.453rem + 3.16vw, 2.313rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.mv__title-contain {
  margin: 20px 0;
}
@media (max-width: 768px) {
  .mv__title-contain + p {
    display: none;
  }
}
.mv__title span {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transform: translate(20%, 140%);
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.1);
}
.mv__title span:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-40%);
  transition: transform 0.6s cubic-bezier(0.65, 0.02, 0.23, 1);
}
.mv__title span.row {
  overflow: hidden;
  line-height: 1;
  display: block;
  transform: none;
  margin-bottom: 10px;
}
.mv__title span.row:before {
  display: none;
}
.mv__title .animate {
  transform: translate(0, 0);
}
.mv__title .animate:before {
  transform: translateY(100%);
}
@media (max-width: 768px) {
  .mv__title {
    font-size: 28px;
  }
}
@media (max-width: 468px) {
  .mv__title {
    font-size: 24px;
  }
}
.mv__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.mv__cta--pc {
  display: inline-flex;
}
.mv__cta--sp {
  display: none;
}
@media (max-width: 768px) {
  .mv__cta--pc {
    display: none;
  }
  .mv__cta--sp {
    display: block;
    width: 100%;
    text-align: center;
    margin: 20px 0;
  }
}
.mv__btn {
  display: inline-block;
  background: #fdca26;
  color: #000000;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-size: 120%;
  background-position: left center;
}
@media (max-width: 768px) {
  .mv__btn {
    width: 80%;
  }
}
.mv__btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  background-position: right center;
}
.mv__right {
  flex: 0 0 45%;
  flex-wrap: wrap;
  padding-inline: 0 40px;
}
@media (max-width: 1440px) {
  .mv__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 40px;
  }
}
@media (max-width: 768px) {
  .mv__right {
    flex: 0 0 100%;
  }
}
@media (max-width: 468px) {
  .mv__right {
    padding-inline: 16px;
    margin-left: 0;
    padding: 0;
  }
}
.mv__panel {
  width: 100%;
  max-width: 360px;
  padding: 28px 24px;
  box-sizing: border-box;
  position: relative;
  width: clamp(28.875rem, 9.981rem + 28.74vw, 35.125rem);
}
@media (max-width: 1440px) {
  .mv__panel {
    max-width: 562px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .mv__panel {
    padding: 0 24px 28px;
    margin-top: -70px;
  }
}
@media (max-width: 468px) {
  .mv__panel {
    padding: 24px 18px;
  }
}
.mv__panel--pc {
  display: block;
}
.mv__panel--sp {
  display: none;
}
@media (max-width: 768px) {
  .mv__panel--pc {
    display: none;
  }
  .mv__panel--sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.mv__panelInner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 468px) {
  .mv__panelInner {
    max-width: 50%;
  }
}
.mv__mainImg {
  aspect-ratio: 230/361;
}
.mv__mainImg img {
  max-width: 360px;
}
@media (max-width: 1440px) {
  .mv__mainImg img {
    width: 100%;
  }
}
.mv__featureLogo {
  flex: 0 0 clamp(5rem, 1.953rem + 6.34vw, 7.5rem);
}
@media (max-width: 768px) {
  .mv__featureLogo {
    flex: 0 0 clamp(3.75rem, 1.8rem + 6.67vw, 5rem);
  }
}

/* =========================================
   Animations utilities
   ========================================= */
.fade-up-target {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}
.fade-up-target.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-left-target {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease-out;
}
.fade-left-target.is-show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right-target {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease-out;
}
.fade-right-target.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
  比較表　comparison
   ========================================= */
.comparison .promos {
  max-width: 1140px;
  margin: 0 auto;
}
.comparison .promos::after {
  content: "";
  display: block;
  clear: both;
}
.comparison .promo {
  margin: 1em 0.5em 1.625em;
  padding: 0.25em 0 2em;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.625;
  text-align: center;
}
.comparison .promo .promo__ttl {
  margin: 0.25em 0 0;
  font-size: 170%;
  font-weight: normal;
  background: #ececec;
  border-radius: 6px;
  margin: 10px 30px;
  color: #000000;
}
@media (min-width: 40em) {
  .comparison .promo {
    display: inline;
    float: left;
    width: 20%;
    margin: 1em 0 0;
  }
  .comparison .promo.first {
    border-right: none;
  }
}
.comparison .promo .features {
  border-radius: 12px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
  background: #ffffff;
  z-index: 1;
}
.comparison .promo .features::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  box-shadow: 0 0 4px 1px rgba(20, 20, 20, 0.8);
}
.comparison .promo li {
  padding: 0.25em 0;
}
.comparison .scale button {
  background: #64aaa4;
}
.comparison .scale button:hover {
  background: #4e8d88;
}
@media (min-width: 40em) {
  .comparison .scale {
    transform: scale(1.2);
  }
  .comparison .scale > .features {
    box-shadow: none;
    position: relative;
    background: transparent;
    position: relative;
  }
  .comparison .scale > .features::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    /* 一番下に敷く */
    border-radius: 8px;
    background: linear-gradient(to right, #0048a0, #018de1);
  }
  .comparison .scale > .features::after {
    content: "";
    position: absolute;
    /* ボックスのサイズから線として出したい部分の分だけ小さくする */
    /* border-size: 2px; にしたいときは2*2px（上下or左右の分） */
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
    z-index: -1;
    /* グラデーションの上に被せる、かつ表示したいテキストより下にする */
    border-radius: 8px;
    background: white;
  }
  .comparison .scale > .features::before {
    box-shadow: 0 0 4px 1px rgba(20, 20, 20, 0.8);
  }
  .comparison .scale .price {
    color: #64aaa4;
  }
}
/*# sourceMappingURL=style.css.map */