@charset "UTF-8";
:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}
@media (min-width: 769px) {
  body {
    background-image: url("../images/image-body-01.webp"), url("../images/image-body-02.webp");
    background-repeat: no-repeat, no-repeat;
    background-position: left -40px top 1227px, right -40px top 955px;
    background-size: 220px auto, 220px auto;
  }
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(1100px, 100% - 48px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (min-width: 769px) {
  .u-sp-only {
    display: none !important;
  }
}

.u-pc-only {
  display: none !important;
}
@media (min-width: 769px) {
  .u-pc-only {
    display: block !important;
  }
}

.site-header {
  position: relative;
  background-color: #ffffff;
  z-index: 100;
}
@media (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  #main {
    padding-top: 51px;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-inline: 20px;
}
@media (min-width: 769px) {
  .site-header__inner {
    padding-inline: 30px;
  }
}
@media (max-width: 768px) {
  .site-header__inner {
    height: 51px;
  }
}

.site-header__logo {
  height: 34px;
  width: auto;
}
@media (max-width: 768px) {
  .site-header__logo {
    height: 23px;
  }
}

.site-header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
}

.site-header__nav-link {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333333;
}
.site-header__nav-link:not(:last-child)::after {
  content: "｜";
  display: inline-block;
  color: #333333;
  font-size: 15px;
}
.site-header__nav-link:hover {
  color: #009944;
}

.site-header__menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 18px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .site-header__menu-button {
    display: flex;
  }
}

.site-header__menu-icon,
.site-header__menu-icon::before,
.site-header__menu-icon::after {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #009944;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.site-header__menu-icon {
  position: relative;
}
.site-header__menu-icon::before, .site-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.site-header__menu-icon::before {
  top: -7px;
}
.site-header__menu-icon::after {
  top: 7px;
}

.site-header__menu-button[aria-expanded=true] .site-header__menu-icon {
  background-color: transparent;
}
.site-header__menu-button[aria-expanded=true] .site-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header__menu-button[aria-expanded=true] .site-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 51px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  visibility: hidden;
}
.nav-drawer[data-open=true] {
  visibility: visible;
}

.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nav-drawer[data-open=true] .nav-drawer__overlay {
  opacity: 1;
}

.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  transform: translateX(100%);
  transition: transform 0.2s ease;
}

.nav-drawer[data-open=true] .nav-drawer__panel {
  transform: translateX(0);
}

.nav-drawer__cta {
  margin: 34px 24px 21px;
}

.nav-drawer__item {
  margin-inline: 30px;
  border-bottom: 1px solid #bfbfbf;
}

.nav-drawer__link {
  display: block;
  padding-block: 20px;
  font-size: 20px;
  color: #333333;
}

.hero {
  background-color: #e9f5e3;
  background-image: url("../images/bg-hero-sp.webp");
  background-size: cover;
  background-position: center;
  padding-block: 30px 95px;
}
@media (min-width: 769px) {
  .hero {
    background-image: url("../images/bg-hero-pc.webp");
    height: 700px;
    padding-block: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
  }
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 338px;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .hero__visual {
    max-width: 823px;
  }
}

.hero__image {
  width: 100%;
  height: auto;
  aspect-ratio: 338/625;
}
@media (min-width: 769px) {
  .hero__image {
    aspect-ratio: 823/552;
  }
}

.hero__disclaimer {
  position: absolute;
  left: 0;
  bottom: -65px;
  width: 100%;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #000;
  text-shadow: -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff, 0 -2px 0 #ffffff, 0 2px 0 #ffffff, -2px 0 0 #ffffff, 2px 0 0 #ffffff;
}
@media (min-width: 769px) {
  .hero__disclaimer {
    left: 37.3%;
    top: calc(88.6% + 30px);
    width: 62.7%;
    font-size: 14px;
    line-height: 1.6;
  }
}

.cta-bar {
  display: none;
  background-color: #f6f7ed;
  padding-block: 20px;
  text-align: center;
}
@media (min-width: 769px) {
  .cta-bar {
    display: block;
  }
}

.cta-bar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-block: 12px;
  background-color: #ffa200;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  .cta-bar__button {
    width: 450px;
  }
  .cta-bar__button:hover {
    opacity: 0.8;
  }
}
.cta-bar__button--drawer {
  display: flex;
  width: 100%;
  max-width: 327px;
  margin-inline: auto;
  padding: 12px 16px;
}
.cta-bar__button--drawer .cta-bar__label {
  font-size: 16px;
  white-space: nowrap;
}

.cta-bar__icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bar__icon img {
  width: 40px;
  height: 40px;
}

.cta-bar__label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  line-height: 1.6;
}

.brand-intro {
  padding-top: 40px;
  padding-inline: 20px;
  text-align: center;
}
@media (min-width: 769px) {
  .brand-intro {
    padding-block: 60px 48px;
  }
}

.brand-intro__logo {
  display: none;
}
@media (min-width: 769px) {
  .brand-intro__logo {
    display: block;
    width: 139px;
    margin-inline: auto;
    margin-bottom: 46px;
  }
}

.brand-intro__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 5px;
}
@media (min-width: 769px) {
  .brand-intro__title {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.3;
  }
}

.brand-intro__badge {
  display: inline-block;
  background-color: #009944;
  color: #ffffff;
  border-radius: 6px;
  padding: 8px 10px 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 5px;
}
@media (min-width: 769px) {
  .brand-intro__badge {
    font-size: 40px;
    padding: 10px 22px 15px;
    border-radius: 13.8px;
    margin-bottom: 20px;
    line-height: 1;
  }
}

.brand-intro__lead {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #333333;
}
@media (min-width: 769px) {
  .brand-intro__lead {
    font-size: 30px;
    line-height: 1.3;
  }
}

.brand-intro__decoration {
  margin-top: 20px;
  height: 273px;
  background-image: url("../images/image-body-sp.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 769px) {
  .brand-intro__decoration {
    display: none;
  }
}

.merits {
  position: relative;
  padding-block: 40px 56px;
}
@media (min-width: 769px) {
  .merits {
    padding-block: 52px 80px;
  }
}

.merits__inner {
  position: relative;
  z-index: 1;
}

.merits__heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: #333333;
}
.merits__heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 6px;
  margin: 14px auto 0;
  background-color: #009944;
  border-radius: 3px;
}
@media (min-width: 769px) {
  .merits__heading::after {
    margin: 24px auto 0;
  }
}
@media (min-width: 769px) {
  .merits__heading {
    font-size: 48px;
  }
}

.strength {
  margin-top: 50px;
  padding-inline: 20px;
}
@media (min-width: 769px) {
  .strength {
    margin-top: 150px;
    padding-inline: 0;
  }
}
@media (min-width: 769px) {
  .strength:first-of-type {
    margin-top: 50px;
  }
}

.strength__badge {
  display: block;
  width: fit-content;
  margin-inline: auto;
  background-color: #009944;
  color: #ffffff;
  border-radius: 5px;
  padding: 4.5px 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1;
}
@media (min-width: 769px) {
  .strength__badge {
    margin-bottom: 20px;
    font-size: 28px;
    padding: 0 19px 5px 22px;
    line-height: 1.6;
  }
}

.strength__title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: #009944;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .strength__title {
    margin-bottom: 40px;
    font-size: 42px;
  }
}

.strength__lede {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333333;
  margin-bottom: 20px;
  text-align: left;
}
.strength__lede > sup {
  font-size: 14px;
}
@media (min-width: 769px) {
  .strength__lede {
    font-size: 22px;
    text-align: center;
    margin-bottom: 40px;
  }
}

.strength:first-of-type .strength__lede {
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .strength:first-of-type .strength__lede {
    margin-bottom: 10px;
  }
}

.rate-box {
  background-color: #f6f7ed;
  border-radius: 10px;
  padding: 6px 5px 11px;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .rate-box {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 20px;
    padding: 30px 20px 29px;
    text-align: center;
  }
}

.rate-box__text {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .rate-box__text {
    font-size: 30px;
    line-height: 1;
  }
}

.rate-box__main {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .rate-box__main {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }
}

.rate-box__value {
  color: #ffa200;
  font-size: 48px;
}
@media (min-width: 769px) {
  .rate-box__value {
    font-size: 64px;
  }
}

.rate-box__note {
  font-size: 16px;
  font-weight: normal;
}
@media (max-width: 768px) {
  .rate-box__note {
    display: block;
    text-align: center;
  }
}

.strength__lede--note {
  margin-bottom: 30px;
  font-weight: normal;
  font-size: 12px;
  color: #333;
  text-align: center;
}
@media (min-width: 769px) {
  .strength__lede--note {
    margin-bottom: 47px;
  }
}

.rate-box__percent {
  font-size: 26px;
  color: #ffa200;
}
@media (min-width: 769px) {
  .rate-box__percent {
    font-size: 30px;
  }
}

.simulation {
  text-align: center;
  max-width: 436px;
  margin-inline: auto;
}

.simulation__pretitle {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #009944;
  margin-bottom: 5px;
}
@media (min-width: 769px) {
  .simulation__pretitle {
    font-size: 30px;
    margin-bottom: 8px;
  }
}

.simulation__title {
  position: relative;
  display: inline-block;
  background-color: #ffef7b;
  color: #009944;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 4px 6px 6px;
  margin-bottom: 40px;
}
.simulation__title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 28.33px solid #ffef7b;
}
@media (max-width: 768px) {
  .simulation__title::after {
    border-left-width: 12px;
    border-right-width: 12px;
    border-top-width: 17px;
  }
}
@media (min-width: 769px) {
  .simulation__title {
    margin-bottom: 41px;
    font-size: 38px;
    padding: 2px 6px;
    line-height: 1.3;
  }
}

.simulation__caption {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1;
}
@media (min-width: 769px) {
  .simulation__caption {
    font-size: 26px;
    margin-bottom: 21px;
  }
}
.simulation__caption--note {
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
}

.simulation__chart {
  width: 239px;
  height: auto;
  aspect-ratio: 458/590;
  display: inline-block;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .simulation__chart {
    width: 100%;
    aspect-ratio: 892/794;
  }
}

.simulation__source {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #333333;
  line-height: 1.6;
  margin-top: 20px;
}
@media (min-width: 769px) {
  .simulation__source {
    font-size: 14px;
  }
}

.fee-cards {
  display: grid;
  gap: 40px;
}
@media (min-width: 769px) {
  .fee-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-top: 32px;
    margin-inline: auto;
  }
}

.fee-card {
  background-color: #f6f7ed;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
}
@media (min-width: 769px) {
  .fee-card {
    padding: 30px 35px;
  }
}
@media (max-width: 768px) {
  .fee-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 16px;
  }
}

@media (min-width: 769px) {
  .fee-cards .fee-card:nth-child(2) {
    padding-inline: 15px;
  }
}

@media (max-width: 768px) {
  .fee-card__atm,
  .fee-card__cash {
    grid-column: 1;
    grid-row: 1;
  }
}

.fee-card__title {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
}
@media (min-width: 769px) {
  .fee-card__title {
    display: block;
    font-size: 30px;
  }
}

.fee-card__sub {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #333333;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .fee-card__sub {
    margin-bottom: 23px;
  }
}

.fee-card__amount {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffa200;
  line-height: 1;
}
@media (min-width: 769px) {
  .fee-card__amount {
    margin-bottom: 4px;
    display: block;
    font-size: 64px;
  }
}
.fee-card__amount--yen {
  font-size: 26px;
}

.fee-card__image {
  width: 84px;
  height: auto;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .fee-card__image {
    width: 104px;
    margin-bottom: 53px;
  }
  .fee-card__image--cash {
    width: 135px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .fee-card__image {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }
}
@media (min-width: 769px) {
  .fee-card__image--cash {
    margin-bottom: 26px;
  }
}

@media (max-width: 768px) {
  .fee-cards .fee-card:nth-child(1) .fee-card__image {
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .fee-cards .fee-card:nth-child(2) .fee-card__image {
    width: 103px;
    margin-right: 13px;
  }
}

.fee-card__atm-panel {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px 10px 21px;
}
@media (max-width: 768px) {
  .fee-card__atm-panel {
    grid-column: 1/-1;
    margin-top: 20px;
  }
}

.fee-card__atm-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
  margin-bottom: 16px;
}

.fee-card__atm-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.fee-card__atm-logos img {
  width: 124px;
  height: auto;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media (min-width: 769px) {
  .fee-table {
    margin-bottom: 38px;
  }
}

.fee-table caption {
  text-align: left;
  margin-bottom: 12px;
  font-size: 13px;
  color: #333333;
}
@media (min-width: 769px) {
  .fee-table caption {
    font-size: 16px;
  }
}

.fee-table th,
.fee-table td {
  border: 1px solid #bbcbe1;
  text-align: center;
  line-height: 1;
}

.fee-table th {
  padding-block: 9px;
}
@media (min-width: 769px) {
  .fee-table th {
    padding-block: 14px;
  }
}

.fee-table tbody th {
  width: 23%;
}

.fee-table td {
  font-size: 16px;
  background-color: #ffffff;
  padding: 4px;
}
@media (min-width: 769px) {
  .fee-table td {
    font-size: 18px;
    padding: 8px;
  }
}

.fee-table thead th {
  background-color: #f0f0f0;
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  border-bottom-width: 0;
}
@media (min-width: 769px) {
  .fee-table thead th {
    font-size: 18px;
  }
}

.fee-table thead th:first-child {
  background-color: transparent;
  border-top: none;
  border-left: none;
}

.fee-table tbody th {
  color: #ffffff;
  font-weight: 700;
}

.fee-table tbody tr:nth-child(1) th {
  background-color: #009944;
}

.fee-table tbody tr:nth-child(2) th,
.fee-table tbody tr:nth-child(3) th {
  background-color: #526175;
}

.fee-table .fee-table__highlight {
  color: #ffa200;
  font-weight: 700;
  font-size: 24px;
}
@media (min-width: 769px) {
  .fee-table .fee-table__highlight {
    font-size: 20px;
  }
}
.fee-table .fee-table__highlight > strong {
  font-size: 24px;
  font-weight: 700;
}
@media (min-width: 769px) {
  .fee-table .fee-table__highlight > strong {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .fee-table tbody tr:nth-child(2) .fee-table__highlight {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .fee-table__bank-th {
    padding: 6px 4px;
  }
  .fee-table__wrap {
    overflow: hidden;
  }
}
.fee-table__wrap {
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .fee-table__wrap {
    margin-bottom: 39px;
  }
}
@media (max-width: 768px) {
  .fee-table__wrap {
    grid-column: 1/-1;
  }
}

.fee-card__note {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  text-align: left;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .fee-card__note {
    margin-bottom: 9px;
  }
}
@media (max-width: 768px) {
  .fee-card__note {
    grid-column: 1/-1;
  }
}

.fee-card__more {
  display: inline-block;
  font-size: 12px;
  color: #009944;
  text-decoration: underline;
}
@media (min-width: 769px) {
  .fee-card__more {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .fee-card__more {
    grid-column: 1/-1;
  }
}

.achievement {
  display: grid;
  gap: 40px;
  margin-top: 16px;
}
@media (min-width: 769px) {
  .achievement {
    gap: 40px;
    grid-template-columns: 380px 380px;
    justify-content: center;
    max-width: 800px;
    margin-inline: auto;
  }
}

.achievement__text {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333333;
}
@media (min-width: 769px) {
  .achievement__text {
    font-size: 22px;
  }
}
.achievement__text > strong {
  font-size: 22px;
  color: #009944;
}
@media (min-width: 769px) {
  .achievement__text > strong {
    font-size: 26px;
  }
}

.achievement__note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  text-align: right;
}
@media (min-width: 769px) {
  .achievement__note {
    font-size: 16px;
    text-align: left;
    margin-top: 40px;
  }
}

.reasons {
  border-radius: 10px;
  overflow: hidden;
}

.reasons__heading {
  background-color: #009944;
  color: #ffffff;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px;
}
@media (min-width: 769px) {
  .reasons__heading {
    font-size: 26px;
  }
}

.reasons__body {
  background-color: #f6f7ed;
  padding: 20px;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
@media (min-width: 769px) {
  .reasons__body {
    padding: 20px 35px;
  }
}

.reasons__image {
  width: 80px;
  height: auto;
  margin-inline: auto;
  margin-bottom: 16px;
}
@media (min-width: 769px) {
  .reasons__image {
    width: 80px;
  }
}

.reasons__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 769px) {
  .reasons__list {
    gap: 20px;
  }
}

.reasons__item {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: #333333;
}
@media (min-width: 769px) {
  .reasons__item {
    font-size: 26px;
    line-height: 1.6;
  }
  .reasons__item:not(:last-child) {
    padding-bottom: 20px;
  }
}
.reasons__item:not(:last-child) {
  border-bottom: 1px solid #bbcbe1;
  padding-bottom: 14px;
}

.reasons__highlight {
  color: #ffa200;
}

.security {
  display: grid;
  align-items: center;
  margin-top: 16px;
}
@media (min-width: 769px) {
  .security {
    grid-template-columns: 320px 380px;
    gap: 70px;
    justify-content: center;
    max-width: 770px;
    margin-inline: auto;
  }
}

.security__image {
  width: 320px;
  margin-inline: auto;
  order: 2;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .security__image {
    order: initial;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .security__strength {
    order: 1;
  }
}

.security__text {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333333;
}
@media (min-width: 769px) {
  .security__text {
    font-size: 22px;
  }
}

.security__strong {
  font-weight: 700;
  font-size: 22px;
  color: #009944;
}
@media (min-width: 769px) {
  .security__strong {
    font-size: 26px;
  }
}

.sbi {
  margin-top: 16px;
}
@media (min-width: 769px) {
  .sbi {
    display: grid;
    grid-template-columns: 1fr 529px;
    gap: 42px;
    align-items: start;
    max-width: 1101px;
    margin-inline: auto;
  }
}

.sbi__heading {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .sbi__heading {
    margin-bottom: 30px;
    text-align: left;
    font-size: 30px;
  }
}

.sbi__text {
  text-align: left;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333333;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .sbi__text {
    margin-bottom: 24px;
    text-align: left;
    font-size: 22px;
  }
}

.sbi__panel {
  background-color: #f6f7ed;
  border-radius: 10px;
  padding: 20px;
}
@media (min-width: 769px) {
  .sbi__panel {
    padding: 30px;
  }
}

.sbi__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .sbi__list {
    gap: 16px;
  }
}

.sbi__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #009944;
  line-height: 1.3;
}
.sbi__item strong {
  color: #ffa200;
}

.sbi__item picture {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: calc((1lh - 18px) / 2);
}

.sbi__item img {
  width: 18px;
  height: 18px;
}

.sbi__item sup {
  font-size: 14px;
}

.sbi__more {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #009944;
  text-decoration: underline;
}

.sbi__panel--note {
  margin-bottom: 30px;
}

.sbi__lede {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.usage {
  padding-block: 4px 60px;
  background-color: #ffffff;
}
@media (min-width: 769px) {
  .usage {
    padding-block: 100px;
  }
}

.usage__pretitle {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #009944;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .usage__pretitle {
    font-size: 30px;
  }
}

.usage__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
  margin-bottom: 40px;
  line-height: 1;
}
@media (min-width: 769px) {
  .usage__title {
    font-size: 48px;
    margin-bottom: 50px;
  }
}
.usage__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 6px;
  margin: 14px auto 0;
  background-color: #009944;
  border-radius: 3px;
}
@media (min-width: 769px) {
  .usage__title::after {
    margin: 24px auto 0;
  }
}
.usage__title > strong {
  color: #009944;
}

.usage__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-inline: 20px;
}
@media (min-width: 769px) {
  .usage__list {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 435px;
    gap: 40px;
    overflow-x: auto;
    padding-inline: max(24px, (100% - 1100px) / 2);
    padding-bottom: 8px;
    cursor: grab;
    scrollbar-width: none;
  }
  .usage__list::-webkit-scrollbar {
    display: none;
  }
  .usage__list.is-dragging {
    cursor: grabbing;
    user-select: none;
  }
}

.usage-card {
  background-color: #f6f7ed;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
}
@media (min-width: 769px) {
  .usage-card {
    padding: 40px;
  }
}

.usage-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-inline: auto;
  margin-bottom: 10px;
  background-color: #009944;
  color: #ffffff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 769px) {
  .usage-card__number {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
}

.usage-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #009944;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .usage-card__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.usage-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 355/234;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .usage-card__image {
    margin-bottom: 20px;
  }
}

.usage-card__heading {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 769px) {
  .usage-card__heading {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.4;
    text-align: left;
  }
}

.usage-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  text-align: left;
}
@media (min-width: 769px) {
  .usage-card__text {
    font-size: 20px;
  }
}
.usage-card__text > strong {
  color: #009944;
  font-weight: normal;
}

.campaign {
  text-align: center;
}

.campaign__link {
  display: inline-block;
  max-width: 350px;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .campaign__link {
    max-width: 750px;
  }
}

.campaign__image {
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .campaign__image {
    width: 750px;
  }
}

.account-flow {
  background-color: #ffffff;
  padding-block: 60px;
}
@media (min-width: 769px) {
  .account-flow {
    padding-block: 100px;
  }
}

.account-flow__eyebrow {
  text-align: center;
  margin: 0 0 10px;
  color: #009944;
  font-weight: 700;
  letter-spacing: 0.065em;
  font-size: 20px;
}
@media (min-width: 769px) {
  .account-flow__eyebrow {
    font-size: 30px;
    letter-spacing: 0.1em;
  }
}

.account-flow__title {
  margin: 0 0 30px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
  color: #333333;
}
@media (min-width: 769px) {
  .account-flow__title {
    font-size: 48px;
    margin-bottom: 56px;
  }
}
.account-flow__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 6px;
  margin: 14px auto 0;
  background-color: #009944;
  border-radius: 3px;
}
@media (min-width: 769px) {
  .account-flow__title::after {
    margin: 36px auto 0;
  }
}

.flow-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 260px;
  gap: 20px;
  margin-bottom: 40px;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
}
.flow-list::-webkit-scrollbar {
  display: none;
}
.flow-list.is-dragging {
  cursor: grabbing;
  user-select: none;
}
@media (min-width: 769px) {
  .flow-list {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    overflow-x: visible;
    cursor: auto;
  }
}

.flow-card {
  position: relative;
  background-color: #ffffff;
  border: 2px solid #009944;
  border-radius: 10px;
  padding: 15px 4px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .flow-card {
    padding: 45px 10px 24px;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .flow-card {
    width: 260px;
  }
}

.flow-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #009944;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .flow-number {
    position: static;
    transform: none;
    margin-bottom: 5px;
  }
}
@media (min-width: 769px) {
  .flow-number {
    width: 56px;
    height: 56px;
    font-size: 34px;
  }
}

.flow-title {
  margin: 0 0 9px 0;
  color: #333333;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}
@media (min-width: 769px) {
  .flow-title {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 0;
  }
}
.flow-title > sup {
  font-size: 12px;
}
@media (max-width: 768px) {
  .flow-title > sup {
    line-height: 1;
  }
}

.flow-icon {
  margin-top: auto;
  width: 60px;
}
@media (max-width: 768px) {
  .flow-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 85px;
  }
}

.flow-card:nth-child(2) .flow-icon {
  width: 87px;
}

.flow-icon img {
  display: block;
  width: 85%;
  height: auto;
}
@media (min-width: 769px) {
  .flow-icon img {
    width: 100%;
  }
}

.flow-note {
  margin-top: 8px;
  color: #333333;
  font-size: 12px;
  line-height: 1.7;
}
@media (min-width: 769px) {
  .flow-note {
    font-size: 16px;
  }
}

.site-footer {
  padding-bottom: 84px;
}
@media (min-width: 769px) {
  .site-footer {
    padding-bottom: 110px;
  }
}

.site-footer__links {
  padding-block: 0px;
  padding-inline: 20px;
  text-align: center;
  line-height: 3.3;
}
@media (min-width: 769px) {
  .site-footer__links {
    padding-block: 0 30px;
  }
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
}
@media (min-width: 769px) {
  .site-footer__list {
    flex-direction: row;
    justify-content: center;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .site-footer__list li {
    width: 100%;
  }
  .site-footer__list li:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
  }
}

.site-footer__link {
  font-size: 18px;
  color: #333333;
}
.site-footer__link:hover {
  color: #009944;
}
@media (min-width: 769px) {
  .site-footer__list li:not(:last-child) .site-footer__link::after {
    content: "｜";
    display: inline-block;
    margin-inline: 30px;
    color: #333333;
    font-size: 18px;
  }
}

.site-footer__copyright {
  background-color: #009944;
  color: #ffffff;
  text-align: center;
  padding: 12px 24px;
  font-size: 12px;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .site-footer__copyright {
    padding: 26px 24px;
  }
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background-color: #f6f7ed;
  padding: 15px 24px 16px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}
.sticky-cta[data-visible=true] {
  transform: translateY(0);
}
@media (min-width: 769px) {
  .sticky-cta {
    padding-block: 20px;
  }
}

.sticky-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 327px;
  padding: 9px 16px;
  background-color: #ffa200;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease;
}
.sticky-cta__button:hover {
  opacity: 0.8;
}
@media (min-width: 769px) {
  .sticky-cta__button {
    width: 450px;
    max-width: 450px;
    padding-block: 12px;
    padding-inline: 0;
  }
}

.sticky-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  border-radius: 8px;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .sticky-cta__icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }
}

.sticky-cta__icon img {
  width: 30px;
  height: 30px;
}
@media (min-width: 769px) {
  .sticky-cta__icon img {
    width: 40px;
    height: 40px;
  }
}

.sticky-cta__label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media (min-width: 769px) {
  .sticky-cta__label {
    font-size: 24px;
  }
}
