@charset "UTF-8";
/*================================================
ブレイクポイント
================================================*/
/*================================================
カラー
================================================*/
:root {
  --primary: #231F76;
  --secondary: #00A19B;
  --text: #353535;
  --title: #f2faff;
  --bg: #f8fbf4;
  --table-bg: #ecf3e6;
  --accent: #fff83d;
  --optional: #b6b6b6;
  --gradient-1: linear-gradient(270deg, #E60012 0%, #f8a900 100%);
  --gradient-2: linear-gradient(270deg, #00A19B 0%, #06efe7 100%);
  /*================================================
  水戸しんきん用*/
  --footer-bg: #fff;
}

/*================================================
フォント情報
================================================*/
:root {
  --font: "Noto Serif JP", serif;
  --font-sub: "Noto Sans JP", sans-serif;
  --font-copyright: "Zen Maru Gothic", sans-serif;
}

html {
  font-size: 1.1428571429vw;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/*================================================
変数
================================================*/
/* 基本設定
===================================== */
body {
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

.wrapper {
  overflow: hidden;
}

.inner {
  max-width: 60rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/* 共通パーツ
===================================== */
a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    text-decoration: underline;
  }
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUp {
  -webkit-animation: fadeUp 0.5s ease;
          animation: fadeUp 0.5s ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
}

.delay-1 {
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
}

.delay-3 {
  animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
}

.delay-4 {
  animation-delay: 0.65s;
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
}

.delay-5 {
  animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
}

/* header
===================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.375rem;
  background: rgba(255,255,255,0.5);
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    position: absolute;
    height: 3.125rem;
  }
}

.header__inner {
  height: inherit;
  padding-inline: 7.5rem 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-inline: 1.25rem;
  }
}

.header__logo {
  width: 16rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 9.375rem;
  }
}

.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
}

.header-btn {
  display: inline-block;
  width: 19.375rem;
  height: 3.125rem;
  line-height: 3.125rem;
  text-align: center;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 1.5625rem;
  background-color: var(--blue);
  position: relative;
}
.header-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.4375rem;
  height: 0.75rem;
  background: url(../img/btn-arrow.png) no-repeat center center/contain;
}
.header-btn--simuration {
  padding-right: 0.4375rem;
  background: var(--primary);
}
.header-btn--simuration::after {
  right: 0.8125rem;
}
.header-btn--web {
  background: var(--gradient-1);
}
.header-btn--web::after {
  right: 1.25rem;
}

/* footer
===================================== */
.footer {
  padding-top: 1.5625rem;
  padding-bottom: 1.5rem;
  color: #000;
  background: var(--footer-bg);
}
@media screen and (max-width: 767px) {
  .footer {
    margin-bottom: 8.25rem;
    padding-top: 1.875rem;
    padding-bottom: 1.25rem;
  }
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 1.25rem;
  }
}
.footer__logo img {
  width: 11.375rem;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    width: 9.375rem;
  }
}
.footer__logo span {
  padding-left: 0.625rem;
  margin-top: 0.3125rem;
  text-align: center;
  display: block;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .footer__logo span {
    font-size: 0.625rem;
  }
}

.footer__text {
  margin-bottom: 3.125rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__text {
    margin-bottom: 1.875rem;
    font-size: 0.75rem;
  }
}

.footer__copyright small,
.footer__copyright span {
  font-family: var(--font-copyright);
  font-size: 0.875rem;
  color: var(--secondary);
}
@media screen and (max-width: 767px) {
  .footer__copyright small,
  .footer__copyright span {
    font-size: 0.625rem;
  }
}
.footer__copyright span {
  display: block;
}

.footer hr {
  height: 5px;
  background-color: var(--secondary);
}

/* mv
===================================== */
.mv {
  padding-top: 6.875rem;
  padding-bottom: 5.625rem;
  background: url(../img/mv-bg.png) no-repeat top center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}

.mv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .mv__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.mv__content {
  width: 50%;
  padding-top: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__content {
    width: 100%;
  }
}

.mv__fukidashi {
  margin-inline: auto;
  margin-bottom: 0.625rem;
  padding-top: 0.8125rem;
  width: 24.9375rem;
  height: 4rem;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1;
  background: url(../img/mv-fukidashi.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .mv__fukidashi {
    padding-top: 0.4375rem;
    width: 18.75rem;
    height: 2.5rem;
    font-size: 1.125rem;
  }
}

.mv__text-1 {
  margin-bottom: 0.9375rem;
  font-size: 1.625rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__text-1 {
    margin-bottom: 0.625rem;
    padding-bottom: 0.3125rem;
    font-size: 1.125rem;
  }
}

.mv__title {
  margin-bottom: 0.75rem;
  font-size: 2.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .mv__title {
    margin-bottom: 0.625rem;
    padding-bottom: 0.3125rem;
    font-size: 1.5rem;
  }
}
.mv__title span {
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .mv__title span {
    font-size: 2.5rem;
  }
}

.mv__text-2 {
  margin-bottom: 1.5625rem;
  margin-left: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .mv__text-2 {
    margin-bottom: 2.5rem;
  }
}
.mv__text-2 img {
  width: 30.4375rem;
}
@media screen and (max-width: 767px) {
  .mv__text-2 img {
    width: 18.75rem;
  }
}
.mv__text-2 span {
  color: #E60012;
  font-weight: 800;
  font-size: 80%;
  text-align: left;
  display: block;
  max-width: 30.4375rem;
  margin-inline: auto;
  margin-top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .mv__text-2 span {
    max-width: 18.75rem;
    font-size: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .mv__button {
    text-align: center;
    top: auto;
    right: auto;
  }
}

.mv-btn {
  display: inline-block;
  width: 30rem;
  height: 5.3125rem;
  line-height: 5.3125rem;
  text-align: center;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: normal;
  border-radius: 2.625rem;
  background: var(--gradient-1);
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv-btn {
    padding-top: 0.5625rem;
    width: 18.75rem;
    height: 3.125rem;
    line-height: 1.5;
    font-size: 1.125rem;
    border-radius: 1.5625rem;
    border: 0.125rem solid #fff;
  }
}
.mv-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 1.3125rem;
  background: url(../img/btn-arrow.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .mv-btn::after {
    right: 0.9375rem;
    width: 0.4375rem;
    height: 0.75rem;
  }
}

.mv__text-3 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .mv__text-3 {
    display: inline-block;
    padding-inline: 0.3125rem;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 0.3125rem;
    background: rgba(0, 0, 0, 0.5);
  }
}

.mv__image {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__image {
    margin-top: -7.5rem;
    width: 100%;
    z-index: -1;
  }
}
.mv__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 34.5625rem;
}
@media screen and (max-width: 767px) {
  .mv__image img {
    position: static;
    width: 100%;
  }
}

/* reason
===================================== */
.reason {
  padding-top: 3.375rem;
  padding-bottom: 5.1875rem;
}
@media screen and (max-width: 767px) {
  .reason {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.reason__title {
  margin-bottom: 2.5rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason__title {
    margin-bottom: 1.25rem;
    text-align: center;
    font-size: 1.25rem;
  }
}
.reason__title span {
  font-size: 4.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 767px) {
  .reason__title span {
    font-size: 2rem;
  }
}
.reason__title .num {
  font-size: 7.875rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .reason__title .num {
    font-size: 3.125rem;
  }
}

.reason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .reason__list {
    gap: 1.25rem;
  }
}

.reason__item-number {
  margin-bottom: 1.4375rem;
  padding-left: 1.875rem;
  width: 8.375rem;
  height: 3.4375rem;
  background: url(../img/reason-point-line.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .reason__item-number {
    margin-bottom: 0.625rem;
    padding-left: 1.5rem;
    width: 6.25rem;
    height: 2.5rem;
    background: url(../img/reason-point-line.png) no-repeat center center/contain;
  }
}
.reason__item-number span {
  color: var(--secondary);
  font-style: italic;
  font-size: 1.875rem;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .reason__item-number span {
    font-size: 1.25rem;
  }
}

.reason__item-title {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .reason__item-title {
    font-size: 1.5rem;
  }
}
.reason__item-title .marker {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, var(--accent)));
  background: linear-gradient(180deg, transparent 50%, var(--accent) 50%);
}
@media screen and (max-width: 767px) {
  .reason__item-title .marker {
    font-size: 1.5rem;
  }
}
.reason__item-title .small {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .reason__item-title .small {
    font-size: 1.125rem;
  }
}
.reason__item-title .note {
  margin-top: 0.625rem;
  display: block;
  text-align: right;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .reason__item-title .note {
    margin-top: 0.3125rem;
    margin-right: 2.1875rem;
    font-size: 0.875rem;
  }
}

.reason__item-first {
  margin-left: -5.625rem;
  margin-right: -13.75rem;
  padding: 4.25rem 13.75rem 2.3125rem 5.625rem;
  border-radius: 13.5625rem 0 0 0;
  background: var(--bg);
}
@media screen and (max-width: 767px) {
  .reason__item-first {
    margin-left: 0;
    margin-right: 0;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    border-radius: 1.25rem 1.25rem 1.25rem 1.25rem;
  }
}
.reason__item-first .reason__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .reason__item-first .reason__item-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}
.reason__item-first .reason__item-content {
  width: calc(100% - 30rem - 1.25rem);
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .reason__item-first .reason__item-content {
    width: 100%;
    padding-left: 0;
  }
}
.reason__item-first .reason__item-image {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .reason__item-first .reason__item-image {
    width: 100%;
  }
}
.reason__item-first .reason__item-image img {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .reason__item-first .reason__item-image img {
    width: 100%;
  }
}
.reason__item-first .reason__item-image figcaption {
  margin-top: 0.625rem;
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  letter-spacing: normal;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .reason__item-first .reason__item-image figcaption {
    margin-top: 0.3125rem;
    font-size: 0.625rem;
  }
}
.reason__item-first .reason__item-image figcaption a {
  text-decoration: underline;
}

.reason__item-second {
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .reason__item-second {
    padding-left: 0;
  }
}
.reason__item-second .readon__item-table {
  margin-top: 1rem;
  text-align: right;
  position: relative;
}
.reason__item-second .reason__item-fukidashi {
  position: absolute;
  top: -7.6875rem;
  right: 0;
  margin-left: auto;
  padding-top: 0.3125rem;
  width: 24.875rem;
  height: 6.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: url(../img/reason-fukidashi.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .reason__item-second .reason__item-fukidashi {
    top: -5rem;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 18.75rem;
    height: 4.0625rem;
    background: url(../img/reason-fukidashi.png) no-repeat center center/contain;
  }
}
.reason__item-second .reason__item-fukidashi p {
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .reason__item-second .reason__item-fukidashi p {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}
.reason__item-second .reason__item-fukidashi p span {
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: normal;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason__item-second .reason__item-fukidashi p span {
    font-size: 0.875rem;
  }
}
.reason__item-second .reason__item-fukidashi p span::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12.1875rem;
  height: 0.5rem;
  background: url(../img/reason-dots.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .reason__item-second .reason__item-fukidashi p span::before {
    top: -0.0625rem;
    width: 7.1875rem;
    height: 0.25rem;
  }
}
.reason__item-second .table {
  margin-left: auto;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .reason__item-second .table {
    margin-top: 6.25rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .reason__item-second tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.reason__item-second .table__period th,
.reason__item-second .table__period td {
  width: 9.0625rem;
  height: 3.875rem;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.25rem;
  letter-spacing: normal;
  background: var(--secondary);
  border-bottom: 0.125rem solid #fff;
}
@media screen and (max-width: 767px) {
  .reason__item-second .table__period th,
  .reason__item-second .table__period td {
    display: block;
    width: 10.3125rem;
    height: 3.125rem;
    font-size: 0.875rem;
    line-height: 3.125rem;
    border-bottom: none;
  }
}
.reason__item-second .table__period td {
  border-left: 0.125rem solid #fff;
}
@media screen and (max-width: 767px) {
  .reason__item-second .table__period td {
    border-left: none;
    border-top: 0.125rem solid #fff;
  }
}
.reason__item-second .table__payment th,
.reason__item-second .table__payment td {
  width: 9.0625rem;
  height: 3.875rem;
  text-align: center;
  vertical-align: middle;
  font-family: var(--font-sub);
  font-size: 1.25rem;
  letter-spacing: normal;
  background: var(--table-bg);
  border-bottom: 0.125rem solid #fff;
}
@media screen and (max-width: 767px) {
  .reason__item-second .table__payment th,
  .reason__item-second .table__payment td {
    display: block;
    width: 10.3125rem;
    height: 3.125rem;
    font-size: 0.875rem;
    line-height: 3.125rem;
    border-bottom: none;
    border-left: 0.125rem solid #fff;
  }
}
.reason__item-second .table__payment td {
  border-left: 0.125rem solid #fff;
}
@media screen and (max-width: 767px) {
  .reason__item-second .table__payment td {
    border-top: 0.125rem solid #fff;
  }
}
.reason__item-second .table__note {
  margin-top: 1.25rem;
  font-family: var(--font-sub);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.7857142857;
}
@media screen and (max-width: 767px) {
  .reason__item-second .table__note {
    margin-top: 0.625rem;
    font-size: 0.625rem;
  }
}

.reason__item-third {
  margin-left: -5.625rem;
  margin-right: -13.75rem;
  padding: 4.25rem 13.75rem 2.3125rem 5.625rem;
  border-radius: 13.5625rem 0 0 0;
  background: var(--bg);
}
@media screen and (max-width: 767px) {
  .reason__item-third {
    margin-left: 0;
    margin-right: 0;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    border-radius: 1.25rem 1.25rem 1.25rem 1.25rem;
  }
}
.reason__item-third .reason__item-content {
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .reason__item-third .reason__item-content {
    padding-left: 0;
  }
}
.reason__item-third .reason__item-icons {
  margin-top: -12.125rem;
  display: grid;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  grid-template-columns: repeat(4, 10.625rem);
  grid-template-rows: repeat(2, auto);
  gap: 2.5rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .reason__item-third .reason__item-icons {
    margin-top: 1.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template-columns: repeat(2, 7.5rem);
    grid-template-rows: repeat(3, auto);
    gap: 1.25rem;
  }
}
.reason__item-third .reason__item-icon:nth-child(1) {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .reason__item-third .reason__item-icon:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.reason__item-third .reason__item-icon:nth-child(2) {
  grid-column: 4/5;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .reason__item-third .reason__item-icon:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.reason__item-third .reason__item-icon:nth-child(3) {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .reason__item-third .reason__item-icon:nth-child(3) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.reason__item-third .reason__item-icon:nth-child(4) {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .reason__item-third .reason__item-icon:nth-child(4) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.reason__item-third .reason__item-icon:nth-child(5) {
  grid-column: 3/4;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .reason__item-third .reason__item-icon:nth-child(5) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.reason__item-third .reason__item-icon:nth-child(6) {
  grid-column: 4/5;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .reason__item-third .reason__item-icon:nth-child(6) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
.reason__item-third figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-family: var(--font-sub);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .reason__item-third figcaption {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
  }
}

.reason__item-fourth {
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .reason__item-fourth {
    padding-left: 0;
  }
}

.reason__item-boxes {
  margin-top: 4.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .reason__item-boxes {
    margin-top: 5rem;
    gap: 0.3125rem;
  }
}

.reason__item-box {
  width: 23.9375rem;
  color: #564c41;
  font-family: var(--font-sub);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: normal;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason__item-box {
    width: 12.5rem;
    font-size: 0.75rem;
  }
}

.box__head {
  padding-left: 1rem;
  height: 3.75rem;
  line-height: 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .box__head {
    padding-left: 0;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
  }
}
.box__head::before {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 3.75rem;
  width: 2rem;
  height: 0.625rem;
  background: #ececec;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (max-width: 767px) {
  .box__head::before {
    bottom: -0.3125rem;
    left: 1.875rem;
    width: 1.25rem;
    height: 0.3125rem;
  }
}

.box__fukidashi {
  position: absolute;
  top: -9.375rem;
  right: 0.9375rem;
  padding-top: 0.3125rem;
  width: 20.3125rem;
  height: 6.5625rem;
  text-align: center;
  background: url(../img/reason-fukidashi-2.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .box__fukidashi {
    top: -4.375rem;
    right: -0.625rem;
    width: 12.5rem;
    height: 3.75rem;
    background: url(../img/reason-fukidashi-2.png) no-repeat center center/contain;
  }
}
.box__fukidashi p {
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.8181818182;
}
@media screen and (max-width: 767px) {
  .box__fukidashi p {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}
.box__fukidashi p span {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.8181818182;
  position: relative;
}
@media screen and (max-width: 767px) {
  .box__fukidashi p span {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}
.box__fukidashi p span::after {
  content: "";
  position: absolute;
  top: -0.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8.4375rem;
  height: 0.3125rem;
  background: url(../img/reason-box-dots.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .box__fukidashi p span::after {
    top: -0.0625rem;
    width: 4.375rem;
    height: 0.1875rem;
  }
}

.box__body {
  padding: 1.5rem 2.5rem 1.9375rem;
}
@media screen and (max-width: 767px) {
  .box__body {
    padding: 1.25rem 0.625rem;
  }
}

.reason__item-box--general::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1rem;
  width: 11.125rem;
  height: 15.5625rem;
  background: url(../img/reason-box-img-1.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .reason__item-box--general::after {
    width: 4.375rem;
    height: 6.25rem;
  }
}
.reason__item-box--general .box__head {
  background: #ececec;
}
.reason__item-box--general .box__body {
  background: #f6f6f6;
}

.reason__item-box--myself::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 13.0625rem;
  height: 15.0625rem;
  background: url(../img/reason-box-img-2.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .reason__item-box--myself::after {
    width: 5.3125rem;
    height: 6.25rem;
  }
}
.reason__item-box--myself .box__head {
  color: #fff;
  background: var(--secondary);
}
.reason__item-box--myself .box__head::before {
  background: var(--secondary);
}
.reason__item-box--myself .box__body {
  color: var(--secondary);
  background: var(--table-bg);
}

/* compare
===================================== */
.compare {
  padding-top: 5.1875rem;
  padding-bottom: 7.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .compare {
    padding-top: 1.875rem;
    padding-bottom: 3.125rem;
  }
}
.compare::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 82.9375rem;
  height: 24.25rem;
  border-radius: 0 12.5rem 0 0;
  background: var(--gradient-2);
}
@media screen and (max-width: 767px) {
  .compare::before {
    width: 100%;
    height: 12.5rem;
    border-radius: 0 3.125rem 0 0;
  }
}

.compare__inner {
  max-width: 61rem;
}

.compare__heading {
  margin-bottom: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .compare__heading {
    margin-bottom: 1.875rem;
    gap: 0.625rem;
  }
}

.compare__subtitle {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .compare__subtitle {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.compare__title {
  color: #fff;
  font-size: 4.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.1142857143;
}
@media screen and (max-width: 767px) {
  .compare__title {
    font-size: 1.5rem;
  }
}

.compare__table {
  border: 0.5rem solid #fff;
  border-radius: 0.625rem;
  font-family: var(--font-sub);
}
@media screen and (max-width: 767px) {
  .compare__table {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    border: 0.25rem solid #fff;
    border-radius: 0.3125rem;
  }
}
.compare__table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.compare__table thead th {
  background: var(--bg-green-2);
}
@media screen and (max-width: 767px) {
  .compare__table thead th {
    padding: 0.625rem 0.3125rem;
    font-size: 0.75rem;
  }
}
.compare__table thead .compare__general-title {
  width: 25.375rem;
  height: 4.75rem;
  vertical-align: middle;
  font-size: 1.25rem;
  font-weight: 500;
  background: #dcdcdc;
  border-right: 0.25rem solid #fff;
}
@media screen and (max-width: 767px) {
  .compare__table thead .compare__general-title {
    width: 12.5rem;
    height: auto;
    font-size: 0.75rem;
    border-right: 0.125rem solid #fff;
  }
}
.compare__table thead .compare__asahikawa-title {
  width: 25.375rem;
  height: 4.75rem;
  vertical-align: middle;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  background: var(--secondary);
}
@media screen and (max-width: 767px) {
  .compare__table thead .compare__asahikawa-title {
    width: 12.5rem;
    height: auto;
    font-size: 0.75rem;
    border-left: 0.125rem solid #fff;
  }
}
.compare__table thead .compare__table-title {
  border-left: 0.25rem solid #fff;
}
@media screen and (max-width: 767px) {
  .compare__table thead .compare__table-title {
    width: 5rem;
  }
}
.compare__table tbody tr {
  border-top: 0.1875rem solid #fff;
}
@media screen and (max-width: 767px) {
  .compare__table tbody tr {
    border-top: 0.0625rem solid #fff;
  }
}
.compare__table tbody th {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  vertical-align: middle;
  background: #848484;
}
@media screen and (max-width: 767px) {
  .compare__table tbody th {
    padding: 0.625rem 0.3125rem;
    font-size: 0.75rem;
  }
}
.compare__table tbody td {
  vertical-align: top;
}
.compare__table tbody .compare__table-general {
  background: #ececec;
  border-right: 0.25rem solid #fff;
}
@media screen and (max-width: 767px) {
  .compare__table tbody .compare__table-general {
    border-right: 0.125rem solid #fff;
  }
}
.compare__table tbody .compare__table-asahikawa {
  background: var(--table-bg);
  border-left: 0.25rem solid #fff;
}
@media screen and (max-width: 767px) {
  .compare__table tbody .compare__table-asahikawa {
    border-left: 0.125rem solid #fff;
  }
}

.compare__table-body {
  padding: 1.5rem 0.625rem 1.0625rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .compare__table-body {
    padding: 0.625rem 0.3125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.3125rem;
  }
}

.compare__table-image {
  width: 4.375rem;
}
@media screen and (max-width: 767px) {
  .compare__table-image {
    width: 2.5rem;
  }
}
.compare__table-image img {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .compare__table-image img {
    margin-top: 0;
  }
}
.compare__table-image .triangle {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .compare__table-image .triangle {
    margin-top: 0;
  }
}

.compare__table-text {
  width: calc(100% - 4.375rem - 0.9375rem);
  color: #564c41;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .compare__table-text {
    width: 100%;
    gap: 0.3125rem;
  }
}
.compare__table-text h3 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .compare__table-text h3 {
    font-size: 0.875rem;
  }
}
.compare__table-text p {
  font-size: 1rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .compare__table-text p {
    font-size: 0.625rem;
  }
}

.compare__table-note {
  margin-top: 1.25rem;
  text-align: right;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .compare__table-note {
    margin-top: 0.3125rem;
    font-size: 0.625rem;
  }
}

/* 
/* simulation
===================================== */
.simulation {
  padding-bottom: 8.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .simulation {
    padding-bottom: 1.875rem;
  }
}
.simulation::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 82.9375rem;
  height: 70%;
  border-radius: 12.5rem 0 0 12.5rem;
  background: var(--gradient-2);
}
@media screen and (max-width: 767px) {
  .simulation::before {
    width: 100%;
    border-radius: 0;
  }
}

.simulation__inner {
  max-width: 62.5rem;
}

.simulation__heading {
  margin-left: 1.25rem;
  margin-bottom: 4.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .simulation__heading {
    margin-left: 0;
    margin-bottom: 1.875rem;
    gap: 0.625rem;
  }
}

.simulation__subtitle {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .simulation__subtitle {
    font-size: 0.875rem;
  }
}

.simulation__title {
  font-size: 4.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 767px) {
  .simulation__title {
    font-size: 1.5rem;
  }
}

.simulation__box {
  padding: 3.8125rem 2.75rem 2.3125rem;
  background: #fff;
  border-radius: 6.25rem 0 6.25rem 0;
  -webkit-box-shadow: 0 0 1rem rgba(163, 195, 173, 0.39);
          box-shadow: 0 0 1rem rgba(163, 195, 173, 0.39);
}
@media screen and (max-width: 767px) {
  .simulation__box {
    padding: 5rem 1.25rem 1.875rem;
    border-radius: 3.125rem 0 3.125rem 0;
  }
}

.simulation__form {
  margin-inline: 9.75rem;
  font-family: var(--font-sub);
}
@media screen and (max-width: 767px) {
  .simulation__form {
    margin-inline: 0;
  }
}

.loan-form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .loan-form__list {
    gap: 1.25rem;
  }
}

.loan-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .loan-form__item {
    gap: 0.625rem;
  }
}

.loan-form__label {
  width: 16.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .loan-form__label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 7.5rem;
    gap: 0.3125rem;
    font-size: 0.875rem;
  }
}

.required,
.optional {
  padding-bottom: 0.125rem;
  width: 4.5625rem;
  height: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .required,
  .optional {
    width: 2.5rem;
    height: 1.25rem;
    font-size: 0.75rem;
    border-radius: 0.625rem;
  }
}

.required {
  background: var(--secondary);
}

.optional {
  background: var(--optional);
}

.loan-form__body {
  width: calc(100% - 16.5625rem - 1.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .loan-form__body {
    width: calc(100% - 7.5rem - 0.625rem);
    gap: 0.3125rem;
  }
}
.loan-form__body span {
  padding-top: 0.625rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .loan-form__body span {
    padding-top: 0.3125rem;
    font-size: 0.75rem;
  }
}
.loan-form__body--bonus, .loan-form__body--rate {
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .loan-form__body--bonus, .loan-form__body--rate {
    padding-right: 0.8125rem;
  }
}

.loan-form__submit {
  margin: 3.75rem auto 3.4375rem;
  width: 30.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .loan-form__submit {
    margin: 1.875rem auto 2.5rem;
    width: 18.75rem;
  }
}
.loan-form__submit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3125rem;
  height: 0.75rem;
  background: url(../img/btn-arrow-2.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .loan-form__submit::before {
    right: 1.25rem;
    width: 0.75rem;
    height: 0.4375rem;
  }
}

input[type=number] {
  margin-left: auto;
  width: 8.625rem;
  height: 4.75rem;
  text-align: center;
  color: var(--text);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 0.625rem;
  background: #f9f9f9;
  -webkit-box-shadow: 0 0 0.625rem rgba(143, 143, 143, 0.28) inset;
          box-shadow: 0 0 0.625rem rgba(143, 143, 143, 0.28) inset;
  -moz-appearance: textfield;
}
@media screen and (max-width: 767px) {
  input[type=number] {
    width: 3.75rem;
    height: 2.5rem;
    font-size: 1.25rem;
    border-radius: 0.3125rem;
    -webkit-box-shadow: 0 0 0.3125rem rgba(143, 143, 143, 0.28) inset;
            box-shadow: 0 0 0.3125rem rgba(143, 143, 143, 0.28) inset;
  }
}
input[type=number]::-webkit-input-placeholder {
  color: #aeaeae;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
input[type=number]::-moz-placeholder {
  color: #aeaeae;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
input[type=number]:-ms-input-placeholder {
  color: #aeaeae;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
input[type=number]::-ms-input-placeholder {
  color: #aeaeae;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
input[type=number]::placeholder {
  color: #aeaeae;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  input[type=number]::-webkit-input-placeholder {
    font-size: 1.25rem;
  }
  input[type=number]::-moz-placeholder {
    font-size: 1.25rem;
  }
  input[type=number]:-ms-input-placeholder {
    font-size: 1.25rem;
  }
  input[type=number]::-ms-input-placeholder {
    font-size: 1.25rem;
  }
  input[type=number]::placeholder {
    font-size: 1.25rem;
  }
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.loan-form__select {
  margin-left: auto;
  width: 6.875rem;
  height: 4.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .loan-form__select {
    width: 3.125rem;
    height: 2.5rem;
  }
}
.loan-form__select::before {
  content: "";
  position: absolute;
  top: 2.375rem;
  right: 0.75rem;
  width: 0.875rem;
  height: 0.5rem;
  background: url(../img/icon-arrow-select.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .loan-form__select::before {
    top: 1.25rem;
    right: 0.375rem;
    width: 0.625rem;
    height: 0.3125rem;
  }
}

select {
  padding-right: 0.75rem;
  width: 6.875rem;
  height: 4.75rem;
  text-align: center;
  color: #aeaeae;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 0.625rem;
  background: #f9f9f9;
  -webkit-box-shadow: 0 0 0.625rem rgba(143, 143, 143, 0.28) inset;
          box-shadow: 0 0 0.625rem rgba(143, 143, 143, 0.28) inset;
}
select.is-select {
  color: var(--text);
}
@media screen and (max-width: 767px) {
  select {
    width: 3.125rem;
    height: 2.5rem;
    font-size: 1.25rem;
    border-radius: 0.3125rem;
    -webkit-box-shadow: 0 0 0.3125rem rgba(143, 143, 143, 0.28) inset;
            box-shadow: 0 0 0.3125rem rgba(143, 143, 143, 0.28) inset;
  }
}
select option {
  color: var(--text);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  select option {
    font-size: 1.25rem;
  }
}

input[type=submit] {
  display: inline-block;
  padding-right: 0.1875rem;
  width: 30.25rem;
  height: 6.875rem;
  line-height: 6.875rem;
  text-align: center;
  color: #fff;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: normal;
  border-radius: 3.4375rem;
  background-color: var(--primary);
}
@media screen and (max-width: 767px) {
  input[type=submit] {
    width: 18.75rem;
    height: 3.125rem;
    line-height: 3.125rem;
    font-size: 1.125rem;
    border-radius: 1.5625rem;
    -webkit-box-shadow: 0 0.3125rem 0 var(--blue-shadow);
            box-shadow: 0 0.3125rem 0 var(--blue-shadow);
  }
}

.simulation__result {
  padding-top: 3.6875rem;
  border-top: 0.0625rem dashed var(--text);
}
@media screen and (max-width: 767px) {
  .simulation__result {
    padding-top: 1.875rem;
  }
}

.simulation__result-title {
  margin-left: 1.375rem;
  margin-bottom: 2.5625rem;
  color: var(--primary);
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 2.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .simulation__result-title {
    margin-left: 0;
    margin-bottom: 1.25rem;
    text-align: center;
    font-size: 1.25rem;
    padding-left: 1.25rem;
  }
}
.simulation__result-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 0.25rem solid var(--primary);
}
@media screen and (max-width: 767px) {
  .simulation__result-title::before {
    left: 0.625rem;
    width: 1rem;
    height: 1rem;
    border: 0.125rem solid var(--primary);
  }
}

.simulation__result-table {
  margin-inline: 1.9375rem 3.4375rem;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: var(--font-sub);
}
@media screen and (max-width: 767px) {
  .simulation__result-table {
    margin-inline: 0;
  }
}
.simulation__result-table p {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2.6666666667;
}
@media screen and (max-width: 767px) {
  .simulation__result-table p {
    font-size: 0.75rem;
    line-height: 3;
  }
}
.simulation__result-table p span {
  display: inline-block;
  padding-right: 0.9375rem;
  width: 15rem;
  color: var(--primary);
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  .simulation__result-table p span {
    padding-right: 0.3125rem;
    width: 8.125rem;
    font-size: 1.125rem;
    line-height: 2;
  }
}
.simulation__result-table .simulation__result-note {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .simulation__result-table .simulation__result-note {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}

#simulationResult[aria-hidden=true] {
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: height 0.5s, opacity 0.5s;
  transition: height 0.5s, opacity 0.5s;
}

#simulationResult[aria-hidden=false] {
  height: auto;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
}

/* flow
===================================== */
.flow {
  padding-top: 9.625rem;
  padding-bottom: 7.6875rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.flow__heading {
  margin-bottom: 5.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.625rem;
}
@media screen and (max-width: 767px) {
  .flow__heading {
    margin-bottom: 1.875rem;
    gap: 0.625rem;
  }
}

.flow__title {
  font-size: 4.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 1.75rem;
  }
}

.flow__text {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow__text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.flow__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .flow__steps {
    gap: 1.875rem;
  }
}

.flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .flow__step {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0.625rem;
  }
}
.flow__step:first-child .flow__step-number span::before {
  content: "";
  position: absolute;
  top: 5.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.125rem;
  height: 39.0625rem;
  background: var(--secondary);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow__step:first-child .flow__step-number span::before {
    top: 2.5rem;
    width: 0.0625rem;
    height: 42.5rem;
  }
}

.flow__step-number span {
  padding-bottom: 0.3125rem;
  width: 7.625rem;
  height: 7.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--secondary);
  font-size: 1.75rem;
  font-weight: 500;
  border-radius: 50%;
  border: 0.125rem solid var(--secondary);
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__step-number span {
    padding-bottom: 0.125rem;
    width: 3.75rem;
    height: 3.75rem;
    font-size: 0.875rem;
    border: 0.0625rem solid var(--secondary);
  }
}

.flow__step-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .flow__step-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.flow__step-text {
  width: calc(100% - 19.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .flow__step-text {
    padding-top: 0.625rem;
    width: 100%;
    gap: 0.3125rem;
  }
}
.flow__step-text h3 {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow__step-text h3 {
    font-size: 1.125rem;
  }
}
.flow__step-text p {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow__step-text p {
    font-size: 0.75rem;
  }
}

.flow__step-image {
  width: 19.5rem;
}
@media screen and (max-width: 767px) {
  .flow__step-image {
    width: 100%;
  }
}

/* faq
===================================== */
.faq {
  padding-top: 6.375rem;
  padding-bottom: 9.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 82.9375rem;
  height: 24.25rem;
  border-radius: 0 12.5rem 0 0;
  background: var(--gradient-2) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .faq::before {
    width: 100%;
    height: 9.375rem;
    border-radius: 0 3.125rem 0 0;
  }
}

.faq__inner {
  max-width: 62.5rem;
}

.faq__title {
  margin-bottom: 4.0625rem;
  padding-left: 1.25rem;
  color: #fff;
  font-size: 4.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .faq__title {
    margin-bottom: 1.875rem;
    padding-left: 0;
    font-size: 1.5rem;
  }
}

.faq__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .faq__boxes {
    gap: 0.625rem;
  }
}

.faq-box {
  width: 100%;
  border-radius: 1.25rem;
  background: #fff;
  -webkit-box-shadow: 0 0 1rem rgba(163, 195, 173, 0.39);
          box-shadow: 0 0 1rem rgba(163, 195, 173, 0.39);
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq-box {
    border-radius: 0.3125rem;
    -webkit-box-shadow: 0 0 0.5rem rgba(163, 195, 173, 0.39);
            box-shadow: 0 0 0.5rem rgba(163, 195, 173, 0.39);
  }
}

.faq-box__q {
  padding: 2.5625rem 6.25rem 1.9375rem 3.3125rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq-box__q {
    padding: 0.9375rem 2.5rem 0.9375rem 0.9375rem;
    gap: 0.625rem;
  }
}
.faq-box__q::after {
  content: "";
  position: absolute;
  top: 3.875rem;
  right: 3.25rem;
  width: 2.0625rem;
  height: 1.125rem;
  background: url(../img/faq-arrow-icon.png) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq-box__q::after {
    top: 1.875rem;
    right: 0.625rem;
    width: 1rem;
    height: 0.625rem;
  }
}

.is-open .faq-box__q::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.faq-box__q-icon {
  padding-bottom: 0.5rem;
  width: 3.125rem;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.875rem;
  line-height: 1;
  border-radius: 0.625rem 0 0.625rem 0;
  background: var(--secondary);
}
@media screen and (max-width: 767px) {
  .faq-box__q-icon {
    padding-bottom: 0.25rem;
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1.25rem;
    border-radius: 0.3125rem 0 0.3125rem 0;
  }
}

.faq-box__q-text {
  width: calc(100% - 3.125rem - 1.1875rem);
  text-align: left;
  font-family: var(--font-sub);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq-box__q-text {
    width: calc(100% - 1.875rem - 0.625rem);
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.faq-box__body {
  display: none;
}
.faq-box__body.is-open {
  display: block;
}

.faq-box__a {
  padding: 0 3.4375rem 2.5rem 3.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .faq-box__a {
    padding: 0 0.9375rem 0.9375rem 0.9375rem;
    gap: 0.625rem;
  }
}

.faq-box__a-icon {
  padding-bottom: 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--secondary);
  font-family: var(--font-sub);
  font-size: 1.875rem;
  line-height: 1;
  border-radius: 0.625rem 0 0.625rem 0;
  border: 0.0625rem solid var(--secondary);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .faq-box__a-icon {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1.25rem;
  }
}

.faq-box__a-text {
  padding-top: 0.3125rem;
  width: calc(100% - 3.125rem - 1.1875rem);
  font-family: var(--font-sub);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .faq-box__a-text {
    padding-top: 0;
    width: calc(100% - 1.875rem - 0.625rem);
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/* summary
===================================== */
.summary {
  padding-bottom: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .summary {
    padding-bottom: 3.125rem;
  }
}

.summary__title {
  margin-bottom: 4.875rem;
  margin-left: 3.75rem;
  font-size: 4.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .summary__title {
    margin-bottom: 1.875rem;
    margin-left: 0.625rem;
    font-size: 1.5rem;
  }
}

.summary__content dl dt {
  margin-inline: auto;
  padding-left: 3.125rem;
  width: 57.5rem;
  height: 2.75rem;
  color: var(--secondary);
  font-family: var(--font-sub);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  background: url(../img/summary-line.png) no-repeat top center/100% 2.75rem;
}
@media screen and (max-width: 767px) {
  .summary__content dl dt {
    padding-left: 1.25rem;
    width: 100%;
    height: 1.875rem;
    font-size: 0.875rem;
    line-height: 1.5;
    background: url(../img/summary-line.png) no-repeat top center/100% 1.875rem;
  }
}
.summary__content dl dd {
  padding: 1.875rem 4.375rem 3.75rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .summary__content dl dd {
    padding: 0.625rem 0 1.875rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.summary__content dl dd h3 {
  margin-top: 2.5rem;
  margin-left: -2.1875rem;
  margin-bottom: 1.875rem;
  padding-left: 2.1875rem;
  padding-bottom: 0.9375rem;
  width: 54.875rem;
  color: var(--secondary);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  border-bottom: 0.0625rem dashed var(--secondary);
}
@media screen and (max-width: 767px) {
  .summary__content dl dd h3 {
    margin-top: 1.25rem;
    margin-left: 0;
    margin-bottom: 0.625rem;
    padding-left: 0.625rem;
    padding-bottom: 0.625rem;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    border-bottom: 0.0625rem dashed var(--secondary);
  }
}

/*追記「金利テーブル」*/
#rate-term .item-wrapper {
  display: flex;
  margin-bottom: 10px;
}
.label {
  width: 8em; /* ここで揃えたい幅を指定 */
}
.value {
  flex: 1; /* 残りの幅を自動で埋める */
}


/*追記「金利テーブル」*/
.summary__content dl dd .summary__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .summary__content dl dd .summary__list {
    gap: 1.25rem;
  }
}
.summary__content dl dd .summary__item-title {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .summary__content dl dd .summary__item-title {
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    padding-left: 0.9375rem;
  }
}
.summary__content dl dd .summary__item-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: #66b6d2;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .summary__content dl dd .summary__item-title::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.summary__content dl dd .summary__item-table {
  table-layout: fixed;
  border-collapse: collapse;
  text-align: center;
}
.summary__content dl dd .summary__item-table thead th {
  width: 11.0625rem;
  height: 3.125rem;
  vertical-align: middle;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-right: 0.125rem solid #fff;
  background: var(--table-bg);
}
@media screen and (max-width: 767px) {
  .summary__content dl dd .summary__item-table thead th {
    padding: 0.625rem;
    width: 9.0625rem;
    height: auto;
    font-size: 0.875rem;
  }
}
.summary__content dl dd .summary__item-table thead th:last-child {
  border-right: none;
}
.summary__content dl dd .summary__item-table tbody .table-bg {
  background: var(--table-bg);
}
.summary__content dl dd .summary__item-table tbody th,
.summary__content dl dd .summary__item-table tbody td {
  width: 14.0625rem;
  height: 3.125rem;
  vertical-align: middle;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .summary__content dl dd .summary__item-table tbody th,
  .summary__content dl dd .summary__item-table tbody td {
    padding: 0.625rem;
    width: 9.0625rem;
    height: auto;
    font-size: 0.875rem;
  }
}
.sp__item-table tfoot td {
    border-top: 1px solid #ccc;
    border-left: none;
    border-right: none;
    border-bottom: none;
    text-align: left;
    padding: 8px;
}
@media screen and (max-width: 767px) {
  .rates__item-table tbody tr:nth-child(3) td span,
  .rates__item-table tbody tr:nth-child(4) td span {
      font-size: 1.1rem;
  }
}
/*================================================
  テーブル1行目のデザイン改修
================================================*/

/* 1行目の背景色を#00A19Bに変更し、縦線を入れる */
.summary__content dl dd .summary__item-table tbody tr:first-child th,
.summary__content dl dd .summary__item-table tbody tr:first-child td {
    background-color: #00A19B; /* ご指定の背景色 */
    color: #fff;               /* 背景が濃いため文字を白に変更（推奨） */
    border-right: 0.125rem solid #fff; /* 縦の枠線を白で追加 */
    border-bottom: none;       /* 下線が重複して太くなるのを防ぐ調整 */
}
/* 1行目の「一番右」のセルだけ、右の枠線を消す */
.summary__content dl dd .summary__item-table tbody tr:first-child td:last-child {
    border-right: none;
}

/*================================================
  テーブル列幅の調整
================================================*/

/* 1列目（th）の幅をテーブル全体の60%にする */
.summary__content dl dd .summary__item-table tbody th {
    width: 60%;
}
/* 残りの2列（td）の幅をそれぞれ20%にする（残り40% ÷ 2列） */
.summary__content dl dd .summary__item-table tbody td {
    width: 20%;
}

/*================================================
  テーブル内テキストの左寄せ調整
================================================*/

/* 1列目（th）のうち、2行目以降（:not(:first-child)）を左寄せにする */
.summary__content dl dd .summary__item-table tbody tr:not(:first-child) th {
    text-align: left;
    padding-left: 1rem; /* 左側に少し余白を入れて読みやすくする */
}
/*================================================
  3行目の上下に枠線を追加
================================================*/

/* 3行目（nth-child(3)）のセルに対し、上下にグレーの線を引く */
.summary__content dl dd .summary__item-table tbody tr:nth-child(3) th,
.summary__content dl dd .summary__item-table tbody tr:nth-child(3) td {
    border-top: 1px solid #ccc;    /* 上の線 */
    border-bottom: 1px solid #ccc; /* 下の線 */
}
/*金利テーブルココまで*/

.summary__link {
  margin-top: 0.625rem;
  text-align: center;
}
.summary__link a {
  display: inline-block;
  color: var(--secondary);
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-bottom: 0.625rem;
  border-bottom: 0.0625rem solid var(--secondary);
}
@media screen and (max-width: 767px) {
  .summary__link a {
    font-size: 0.875rem;
    padding-bottom: 0.3125rem;
  }
}

/* notes
===================================== */
.notes {
  padding-top: 5.75rem;
  padding-bottom: 8.875rem;
  padding-left: 3.9375rem;
  margin-right: 3.9375rem;
  border-radius: 0 12.5rem 12.5rem 0;
  background: var(--gradient-2);
}
@media screen and (max-width: 767px) {
  .notes {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    padding-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
}

.notes__inner {
  max-width: 62.5rem;
}

.notes__title {
  margin-bottom: 3.75rem;
  color: var(--title);
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .notes__title {
    margin-bottom: 1.875rem;
    font-size: 1.5rem;
  }
}

.notes__box {
  width: 62.5rem;
  padding: 5rem 2.5rem 4.375rem 1.875rem;
  font-family: var(--font-sub);
  border-radius: 6.25rem 0 6.25rem 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .notes__box {
    width: 100%;
    padding: 2.5rem 0.9375rem 2.5rem 0.9375rem;
    border-radius: 3.125rem 0 3.125rem 0;
  }
}
.notes__box h3 {
  margin-bottom: 2rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .notes__box h3 {
    margin-bottom: 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.notes__box p {
  margin-top: 2em;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .notes__box p {
    margin-top: 1em;
    margin-left: 0;
  }
}

.notes__list {
  list-style: decimal;
}

.notes__item {
  margin-left: 1.25rem;
  padding-left: 0.625rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .notes__item {
    margin-left: 1rem;
    padding-left: 0.3125rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.notes__item:last-child {
  margin-left: 1.875rem;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .notes__item:last-child {
    margin-left: 1.25rem;
  }
}
.notes__item span {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .notes__item span {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}

/* privacy
===================================== */
.privacy {
  padding-block: 5.1875rem;
  background: url(../img/privacy-bg.png) no-repeat bottom center/100% 41.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    background: url(../img/privacy-bg.png) no-repeat bottom center/100% 23.75rem;
  }
}

.privacy__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.625rem;
}
@media screen and (max-width: 767px) {
  .privacy__heading {
    gap: 1.25rem;
  }
}

.privacy__attention {
  margin-left: 1rem;
  width: 18.25rem;
  height: 3.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--secondary);
  border-radius: 1.6875rem 0 1.6875rem 0;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .privacy__attention {
    margin-left: 0;
    width: 11.25rem;
    height: 1.875rem;
    font-size: 1rem;
    border-radius: 0.9375rem;
  }
}

.privacy__title {
  margin-bottom: 3.375rem;
  color: var(--blue);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .privacy__title {
    margin-bottom: 1.875rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.privacy__box {
  width: 100%;
  height: 20rem;
  padding: 1.875rem;
  font-family: var(--font-sub);
  border-radius: 0.625rem;
  background: #fff;
  -webkit-box-shadow: 0 0 1rem rgba(215, 215, 215, 0.67);
          box-shadow: 0 0 1rem rgba(215, 215, 215, 0.67);
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .privacy__box {
    height: 15rem;
    padding: 0.9375rem;
    border-radius: 0.3125rem;
    -webkit-box-shadow: 0 0 0.5rem rgba(215, 215, 215, 0.67);
            box-shadow: 0 0 0.5rem rgba(215, 215, 215, 0.67);
  }
}
.privacy__box p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .privacy__box p {
    font-size: 0.75rem;
  }
}
.privacy__box .privacy__table-1 {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__table-1 {
    margin-top: 0.9375rem;
  }
}
.privacy__box .privacy__table-1 p {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__table-1 p {
    margin-bottom: 0.3125rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.privacy__box .privacy__table-1 table {
  table-layout: fixed;
  border-collapse: collapse;
}
.privacy__box .privacy__table-1 table th,
.privacy__box .privacy__table-1 table td {
  padding: 0.9375rem 0.625rem 0.9375rem 0.9375rem;
  border: 0.0625rem solid var(--text);
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__table-1 table th,
  .privacy__box .privacy__table-1 table td {
    padding: 0.625rem 0.3125rem;
    font-size: 0.75rem;
  }
}
.privacy__box .privacy__table-1 table th {
  width: 50%;
}
.privacy__box .privacy__table-2 {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__table-2 {
    margin-top: 0.9375rem;
  }
}
.privacy__box .privacy__table-2 p {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__table-2 p {
    margin-bottom: 0.3125rem;
    font-size: 0.75rem;
  }
}
.privacy__box .privacy__table-2 table {
  table-layout: auto;
  border-collapse: collapse;
}
.privacy__box .privacy__table-2 table th,
.privacy__box .privacy__table-2 table td {
  padding: 0.9375rem 0.625rem 0.9375rem 0.9375rem;
  border: 0.0625rem solid var(--text);
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__table-2 table th,
  .privacy__box .privacy__table-2 table td {
    padding: 0.625rem 0.3125rem;
    font-size: 0.75rem;
  }
}
.privacy__box .privacy__table-2 table .info {
  width: 65%;
}
.privacy__box .privacy__table-2 table .term {
  width: 35%;
}
.privacy__box .privacy__table-2 table td div {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__table-2 table td div {
    margin-top: 1.25rem;
  }
}
.privacy__box .privacy__table-2 table td div .space {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__table-2 table td div .space {
    margin-top: 0.625rem;
    display: block;
  }
}
.privacy__box .privacy__table-2 table td .space-2 {
  display: block;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__table-2 table td .space-2 {
    margin-top: 3rem;
  }
}
.privacy__box .privacy__table-2 table .border {
  position: relative;
}
.privacy__box .privacy__table-2 table .border::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50.3125rem;
  height: 3.4375rem;
  border-top: 0.0625rem dashed var(--text);
  border-left: 0.0625rem dashed var(--text);
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__table-2 table .border::after {
    width: 19rem;
    border-left: none;
    height: 3.125rem;
  }
}
.privacy__box .privacy__company {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__company {
    margin-top: 0.9375rem;
  }
}
.privacy__box .privacy__company p {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__company p {
    margin-bottom: 0.3125rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.privacy__box .privacy__company .privacy__company-item {
  padding: 0.9375rem;
  border: 0.0625rem solid var(--text);
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__company .privacy__company-item {
    padding: 0.625rem;
    font-size: 0.75rem;
  }
}
.privacy__box .privacy__company .privacy__company-item:nth-child(2n) {
  border-top: none;
}
.privacy__box .privacy__age {
  margin-right: 1.25rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .privacy__box .privacy__age {
    margin-right: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

.privacy__download {
  margin-top: 2rem;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .privacy__download {
    margin-top: 0.9375rem;
    margin-left: 0;
  }
}
.privacy__download p ,p.privacy__area {
  margin-bottom: 1.4375rem;
  font-family: var(--font-sub);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .privacy__download p ,p.privacy__area {
    margin-bottom: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
  }
}
.privacy__download a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .privacy__download a {
    margin-inline: auto;
    gap: 0.625rem;
  }
}
.privacy__download a img {
  width: 2.375rem;
}
.privacy__download a span {
  color: var(--primary);
  font-family: var(--font-sub);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-bottom: 0.625rem;
  border-bottom: 0.0625rem solid var(--primary);
}
@media screen and (max-width: 767px) {
  .privacy__download a span {
    font-size: 0.875rem;
    padding-bottom: 0.3125rem;
    text-align: center;
    line-height: 1.5;
  }
}

.privacy__agree {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .privacy__agree {
    margin-top: 1.25rem;
    gap: 0.625rem;
  }
}
.privacy__agree input[type=checkbox] {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.625rem;
  background: #fff;
  -webkit-box-shadow: 0 0 0.625rem rgba(215, 215, 215, 0.67) inset;
          box-shadow: 0 0 0.625rem rgba(215, 215, 215, 0.67) inset;
  border: 0.1875rem solid var(--primary);
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .privacy__agree input[type=checkbox] {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.3125rem;
    -webkit-box-shadow: 0 0 0.3125rem rgba(215, 215, 215, 0.67) inset;
            box-shadow: 0 0 0.3125rem rgba(215, 215, 215, 0.67) inset;
    border: 0.125rem solid var(--primary);
  }
}
.privacy__agree input[type=checkbox]:checked {
  background: var(--primary);
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.privacy__agree input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0.875rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.875rem;
  height: 1.5rem;
  border-right: 0.25rem solid #fff;
  border-bottom: 0.25rem solid #fff;
}
@media screen and (max-width: 767px) {
  .privacy__agree input[type=checkbox]:checked::before {
    top: 0.1875rem;
    left: 0.375rem;
    width: 0.5rem;
    height: 0.75rem;
    border-right: 0.125rem solid #fff;
    border-bottom: 0.125rem solid #fff;
  }
}
.privacy__agree label {
  font-family: var(--font-sub);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .privacy__agree label {
    font-size: 1rem;
  }
}

.privacy__button {
  margin-top: 2.1875rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .privacy__button {
    margin-top: 1.875rem;
    margin-bottom: 1.25rem;
  }
}

.privacy-btn {
  display: inline-block;
  width: 30.25rem;
  height: 6rem;
  line-height: 6rem;
  text-align: center;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: normal;
  border-radius: 0.625rem;
  background: var(--gradient-1);
  position: relative;
}
@media screen and (max-width: 767px) {
  .privacy-btn {
    width: 18.75rem;
    height: 3.125rem;
    line-height: 3.125rem;
    font-size: 1.125rem;
    border-radius: 1.5625rem;
  }
}
.privacy-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.0625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 1.3125rem;
  background: url(../img/btn-arrow.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .privacy-btn::before {
    right: 1.25rem;
    width: 0.4375rem;
    height: 0.75rem;
  }
}

.privacy__note {
  text-align: center;
  font-family: var(--font-sub);
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .privacy__note {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/* fixed-btn
===================================== */
.fixed-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}

.fixed-btn__container {
  border-top: 0.125rem solid #fff;
  background: var(--table-bg);
  padding: 1.25rem 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

.fixed-btn--simulation {
  display: inline-block;
  width: 20.9375rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: normal;
  border-radius: 1.5625rem;
  background-color: var(--primary);
  position: relative;
}
.fixed-btn--simulation::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.4375rem;
  height: 0.75rem;
  background: url(../img/btn-arrow.png) no-repeat center center/contain;
}

.fixed-btn--web {
  display: inline-block;
  width: 20.9375rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: normal;
  border-radius: 1.5625rem;
  background: var(--gradient-1);
  position: relative;
}
.fixed-btn--web::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.4375rem;
  height: 0.75rem;
  background: url(../img/btn-arrow.png) no-repeat center center/contain;
}