@charset "UTF-8";

:root {
  --red: #4481E5;
  --gold: #FDDE79;
  --blue: #1E65D8;
  --red-dark: #dc5147;
  --coral: #f28e73;
  --pink: #ffeae4;
  --pale: #EFF7FF;
  --ink: #151515;
  --muted: #666;
  --line: #f3d8d4;
  --shadow: 0 8px 22px rgba(80, 33, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f5f1ef;
  color: var(--ink);
  font-family: "LINE Seed JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: .3s;
}
@media screen and (min-width: 769px) {
  a:hover{
    opacity: .7;
  } 
}


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

.page {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}

.header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 82px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 10px;
}

.logo {
  width: 60px;
}

@media screen and (min-width: 769px) {
  .logo {
    margin-top: 20px;
  }
}

.menu-button {
  width: 80px;
  height: 62px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  gap: 3px;
  color: #fff;
  cursor: pointer;
}

.menu-button span {
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
}


.menu-button b {
  font-size: 10px;
  letter-spacing: 0;
}

.sticky-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 50%;
  width: min(100%, 430px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px 9px 18px;
  transform: translate(-50%, -150%);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease;
}

.sticky-header.visible {
  transform: translate(-50%, 0);
}

.sticky-logo,
.sticky-title {
  display: grid;
  color: #111;
  font-weight: 900;
  line-height: 1.15;
  font-size: 18px;
}

.sticky-logo {
  align-items: center;
  display: flex;
}

.sticky-logo img {
  display: inline-block;
  margin-right: .5em;
  width: 52px;
}

.sticky-title span {
  font-size: 11px;
}

.sticky-title b {
  color: #111;
  font-size: 18px;
}

.sticky-header .menu-button {
  width: 66px;
  height: 48px;
  color: #333;
}

.sticky-header .menu-button span {
  width: 30px;
  height: 3px;
  background: #333;
}

.menu-drawer {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: start center;
  margin: auto;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  width: 90%;
}

.menu-drawer.open {
  opacity: 1;
  visibility: visible;
}

.menu-panel {
  position: relative;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 26px 22px;
  background: linear-gradient(180deg, #fff 0%, #EFF7FF 100%);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  transform: translateY(-18px);
  transition: transform 0.22s ease;
}

.menu-drawer.open .menu-panel {
  transform: translateY(0);
}

.menu-panel h2 {
  margin: 0 0 16px;
  color: var(--red);
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.menu-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #333;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.menu-close>b {
  font-size: 10px;
  display: block;
}

.menu-label {
  margin: 0 0 18px;
  color: var(--red);
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.menu-panel nav {
  display: grid;
  gap: 8px;
}

.menu-panel nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 1em 14px;
  border-top: 1px solid #E6EEEF;
  font-size: 14px;
  font-weight: 700;
}

.menu-panel nav a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-top: 2px solid #E6EEEF;
  border-right: 2px solid #E6EEEF;
  transform: rotate(45deg);
}

.menu-campaign {
  margin: 20px 0;
  padding: 18px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  text-align: center;
}

.menu-campaign span {
  font-size: 12px;
  font-weight: 800;
}

.menu-campaign strong {
  display: block;
  margin-top: 8px;
  font-size: 27px;
  line-height: 1.25;
}

.menu-campaign strong b {
  font-size: 43px;
}

.menu-campaign a {
  display: inline-grid;
  place-items: center;
  min-width: 150px;
  min-height: 34px;
  margin-top: 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.drawer-cta {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 900;
  margin-top: 30px!important;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 62px 20px 44px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.2), transparent 25%),
    linear-gradient(180deg, #f17d65 0%, #ef6b5c 52%, #fff 52%);
}

.hero h1 {
  color: var(--gold);
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 900;
}

.hero-label {
  display: inline-flex;
  color: #193189;
  background: var(--gold);
  justify-content: center;
  margin: 10px auto;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  display: grid;
  gap: 0;
  margin-top: 2px;
  font-weight: 900;
  line-height: 1.05;
}

@media screen and (min-width: 769px) {
  .hero-copy {
    display: block;
  }
}

.hero-copy>span {
  font-size: 48px;
}

.hero-copy strong {
  font-size: 48px;
  font-weight: 900;
}

.hero-copy strong span {
  display: inline-block;
  margin: 0 2px;
  font-size: 78px;
  line-height: 0.8;
}

.hero-sub {
  font-size: 18px;
  font-weight: 800;
}

.card-image {
  width: 222px;
  margin: 0 auto;
  /* filter: drop-shadow(0 16px 18px rgba(101, 30, 22, 0.18)); */
}

@media screen and (min-width: 769px) {
  .card-image {
    width: 312px;
  }
}

.award {
  width: 290px;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 12px;
  line-height: 1.55;
}

.award b {
  display: block;
  font-size: 14px;
}

.award img {
  display: inline-block;
  margin-right: .2em;
  height: 1em;
  width: 1em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 0 auto 28px;
  max-width: 450px;
}


.hero-stats span {
  display: block;
  min-height: 48px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 43px;
  font-weight: 900;
  line-height: 1;
}

.hero-stats small {
  display: inline-block;
  margin-right: 3px;
  writing-mode: vertical-rl;
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
}

.primary-cta {
  display: flex;
  margin: auto;
  width: 283px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 7px 0 var(--red-dark);
}

.hero>.text-link {
  display: inline-flex;
  margin: 30px auto 0;
  font-size: 17px;
}

.partner-box>.text-link {
  font-size: 17px;
}

.section {
  padding: 40px 20px;
  background: #fff;
}

@media screen and (min-width: 769px) {
  .section {
    padding: 100px 20px;
  }
}

.section.warm,
.point-section,
.functions {
  background: #DEEFFF;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 22px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .section-heading {
    margin-bottom: 40px;
  }
}

.section-heading>span,
.partner-box>span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 18px;
  border-radius: 999px;
  background: #DEEFFF;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.section-heading h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading h2 br+* {
  color: var(--red);
}

.section-heading p,
.lead {
  margin: 0;
  font-size: 14px;
  color: #111;
}

.lead {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .lead {
    text-align: center;
  }
}

.mini-card {
  width: 222px;
  margin: 10px auto 0;
}

.feature-list,
.reason-grid,
.function-list,
.campaign-cards {
  display: grid;
  gap: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 950px;
}

.reason-grid {
  counter-reset: reason;
}

.feature-list article,
.reason-grid article,
.function-list article,
.campaign-cards article,
.panel,
details {
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-list article {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 195px;
  padding: 15px 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

h3,
h4,
p {
  margin-top: 0;
}

.feature-list h3,
.reason-grid h3,
.function-list h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.55;
}

.feature-list p,
.reason-grid p,
.function-list p {
  margin-bottom: 0;
  font-size: 13px;
}

.reason-grid h3 {
  font-weight: 900;
}

.feature-value {
  color: var(--blue);
  font-size: 54px;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: 0;
  text-align: center;
}

.feature-value span {
  font-size: 33px;
}

.feature-list h3 {
  margin: 0;
  font-size: 16.6px;
  line-height: 1.33;
  text-align: center;
}

.feature-list p {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.7;
}

.reason-grid article {
  counter-increment: reason;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 20px;
  border-radius: 10px;
  background: #eff7ff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}

.reason-number {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  color: #1e65d8;
  font-size: 0;
  line-height: 1;
  font-weight: 900;
}

.reason-number::before {
  content: "理由";
  font-size: 12px;
  line-height: 1.13;
}

.reason-number::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #1e65d8;
  color: #fff;
  content: counter(reason);
  font-size: 14px;
  line-height: 1.13;
}

.speech {
  position: relative;
  max-width: none;
  min-height: 20px;
  margin: -8px 0 -2px;
  padding: 0 0 0 15px;
  border: 0;
  border-left: 3px solid #c3e2ff;
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}

.reason-grid h3 {
  margin: -8px 0 -10px;
  font-size: 16.6px;
  line-height: 1.33;
  text-align: left;
}

.reason-grid p {
  font-size: 14px;
  line-height: 1.7;
}

.reason-stat {
  position: relative;
  display: grid;
  gap: 3px;
  padding-left: 0;
}

.reason-stat strong {
  color: #1e65d8;
  font-size: 20px;
  line-height: 1.13;
  font-weight: 900;
}

.reason-stat strong span {
  font-size: 1em;
}

.reason-stat b {
  font-size: 14px;
  line-height: 1.33;
}

.reason-stat small {
  font-size: 12px;
  line-height: 1.7;
}

.panel {
  padding: 0 20px 40px;
  overflow: hidden;
  max-width: 950px;
  margin: auto;
}

.panel>h3 {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0 -20px 36px;
  background: #DEEFFF;
  font-size: 18px;
  font-weight: 900;
}

.panel>p {
  margin-bottom: 28px;
  text-align: center;
}

#point .panel>p {
  font-size: 16px;
}

.center {
  text-align: center;
  font-size: 16px;
}

.panel .center {
  font-size: 16px;
}

.center strong {
  color: var(--red);
  font-weight: 900;
}
.center strong.large{
  font-size: 26px;
  margin-top: 10px;
  display: block;
}

.point-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 236px;
  max-width: 100%;
  margin: 34px auto 34px;
  text-align: center;
}

.point-flow-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.point-flow-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  padding: 3px 20px;
  border: 1px solid #111;
  border-radius: 4px;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7;
}

.point-flow-ribbon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 33px;
  padding: 6px 10px 3px;
  border-radius: 4px 4px 0 0;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7;
  white-space: nowrap;
}

.point-flow-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 9px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.point-flow-text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
  min-width: 100%;
  margin: 0;
  color: #111;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .01em;
  white-space: nowrap;
}

.point-flow-normal .point-flow-text {
  margin-top: 0;
}

.point-flow-w .point-flow-text {
  margin-top: 9px;
}

.point-flow-text span {
  font-size: 17.879px;
  font-weight: 700;
}

.point-flow-text small {
  font-size: 14px;
  font-weight: 700;
}

.point-flow-text strong {
  color: #111;
  font-size: 25.03px;
  font-weight: 900;
  line-height: 1.3;
}

.point-flow-text b {
  color: #111;
  font-size: 17.879px;
  font-weight: 900;
  line-height: 1.3;
}

.partner-box {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.partner-box h4 {
  margin: 0;
  color: var(--red);
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.partner-box h4 b {
  font-weight: 900;
}

.partner-box img {
  width: 290px;
  border-radius: 10px;
}

@media screen and (min-width: 769px) {
  .partner-box img {
    width: 400px;
  }
}

.investment-accordion {
  padding: 0 5vw 34px;
  background: #fff;
}

.accordion-toggle {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.investment-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: 0 8px 0 rgba(236, 104, 94, 0.25);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.investment-toggle b,
.note-toggle b {
  display: inline-grid;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.investment-panel[hidden],
.note-panel[hidden] {
  display: none;
}

.investment-card {
  margin-top: 22px;
  padding: 26px 18px;
  border: 2px solid var(--red);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #EFF7FF 100%);
  text-align: center;
}

.investment-card .eyebrow {
  margin-bottom: 4px;
  color: var(--red);
  font-weight: 900;
}

.investment-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.4;
}

.investment-card h4 {
  margin: 14px 0 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.broker-list {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 16px 0;
}

.broker-list span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #f4c8c3;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.rate-box {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.rate-box p {
  margin: 0;
  font-weight: 800;
}

.rate-box strong {
  color: var(--red);
  font-size: 18px;
}

.rate-box strong b {
  font-size: 30px;
  font-weight: 900;
}

.rate-box small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.earn-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #DEEFFF;
}

.earn-row span {
  font-weight: 800;
}

.earn-row b {
  color: var(--red);
  font-size: 18px;
}

.earn-row strong {
  font-size: 18px;
  line-height: 1.35;
}

.investment-card .note {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 10px;
}

.annual-point {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.annual-point strong {
  font-size: 28px;
}

.annual-yen {
  margin: 14px 0 18px;
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
}

.annual-yen i {
  color: #90C7FA;
}

.note-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.note-panel {
  margin-top: 10px;
  padding: 0 16px 16px;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-align: left;
  font-size: 10px;
  line-height: 1.8;
}

.howto {
  position: relative;
  display: grid;
  gap: 20px;
  margin: 40px auto 0;
  padding: 38px 30px 20px;
  border: 2px solid #DEEFFF;
  border-radius: 10px;
  max-width: 650px;
}

.howto>span {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 18px;
  background: #fff;
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
}

.howto h4 {
  justify-self: center;
  margin: 0;
  padding: 4px 18px;
  border-radius: 999px;
  background: #DEEFFF;
  color: var(--blue);
  font-size: 14px;
}

.howto h4:nth-of-type(n+2) {
  margin-top: 30px;
}

.howto ol {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.howto li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 700;
}

.howto li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
}

.howto li img {
  width: 127px;
  margin: 6px auto 0;
}

.howto li p {
  font-weight: 400;
}

.app-images {
  width: 50%;
  margin: auto;
}

.app-images img {
  display: block;
}

.app-images span {
  width: 18px;
  height: 14px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--red);
}

.amazon {
  width: 90px;
  margin: 0 auto;
}

.howto p {
  margin: 0;
  font-size: 12px;
}

.compare {
  background: linear-gradient(350deg, #0A5CE3 5.37%, #1D246E 94.95%);
}

.table-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  margin-right: -20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #f1f1f1;
}

.table-wrap::-webkit-scrollbar {
  height: 8px;
}

.table-wrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 999px;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 999px;
}

.partner-table,
.compare-table {
  border-radius: 0;
  box-shadow: none;
  max-width: 700px;
  margin: auto;
}

.partner-table table {
  min-width: 443px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 10px;
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  margin-bottom: 20px;
}

.partner-table th,
.partner-table td {
  border-top: 1px solid #DDE8FC;
  padding: 10px 8px;
  color: #000;
  vertical-align: middle;
}

.partner-table thead th {
  background: #EFF7FF;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

/* .partner-table th:first-child,
.partner-table td:first-child {
  padding-right: 15px;
  padding-left: 15px;
} */

.partner-table td:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-table td:first-child img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.partner-table th:not(:first-child),
.partner-table td:not(:first-child) {
  text-align: center;
}

.partner-table th:nth-child(2),
.partner-table td:nth-child(2) {
  width: 55px;
}

@media screen and (min-width: 769px) {

  .partner-table th:nth-child(2),
  .partner-table td:nth-child(2) {
    width: 75px;
  }
}

.partner-table th:nth-child(3),
.partner-table td:nth-child(3) {
  width: 85px;
}

.partner-table th:nth-child(4),
.partner-table td:nth-child(4) {
  width: 76px;
}

.partner-table tbody tr:nth-child(odd) td {
  background: #fff;
}

.partner-table tbody tr:nth-child(even) td {
  background: #EFF7FF;
}

.partner-table tbody tr.total-row td {
  background: #fff28d;
  color: var(--red);
  font-weight: 700;
}

.partner-table td span {
  font-size: 14px;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: flex;
  width: 82px;
  height: 74px;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 9px;
  line-height: 1.7;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.table-wrap.hint-visible .scroll-hint {
  visibility: visible;
  animation: scrollHint 1.25s ease forwards;
}

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

.scroll-hint span {
  width: 31px;
  height: 36px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: url("../img/ic-scroll-hint.svg") center / contain no-repeat;
}

.scroll-hint span::before {
  display: none;
}

.scroll-hint span::after {
  display: none;
}

.scroll-hint b {
  font-size: 9px;
  font-weight: 400;
  line-height: 1.7;
  white-space: nowrap;
}

@keyframes scrollHint {

  0%,
  70% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
  font-size: 12px;
  text-align: center;
}

th {
  background: var(--red);
  color: #fff;
  padding: 12px 6px;
  white-space: nowrap;
}

td {
  padding: 13px 6px;
  border-top: 1px solid var(--line);
}

tbody tr:nth-child(even) td {
  background: var(--pale);
}

.year-point {
  margin: 28px 0 0;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
}

.point-note-accordion {
  width: 100%;
  max-width: 700px;
  margin: 20px auto 0;
}

.point-note-toggle {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 15px;
  background: #fff;
  color: #111;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.point-note-toggle.open {
  border-radius: 15px 15px 0 0;
}

.point-note-toggle b {
  flex: 0 0 auto;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.point-note-panel {
  padding: 0 20px 20px;
  border-radius: 0 0 15px 15px;
  background: #fff;
  color: #111;
  font-size: 12px;
  line-height: 1.8;
}

.point-note-panel[hidden] {
  display: none;
}

.point-note-panel p {
  margin: 0;
  padding-top: 4px;
}

.function-list-icon {
  width: 50px;
}

.function-list article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  padding: 20px 10px;
}


#flow {
  padding: 40px 0 1px;
}

.flow .section-heading {
  padding: 0 20px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 20px;
  max-width: 700px;
}

@media screen and (min-width: 769px) {
  .tabs {
    margin: 0 auto;
  }
}

.tabs button {
  min-height: 59px;
  border: 0;
  background: #fff;
  color: #999;
  border: 1px solid #999;
  border-bottom: none;
  font-size: 16px;
  cursor: pointer;
  line-height: 1.3;
}

.tabs button:nth-child(1) {
  border-radius: 10px 0 0 0;
  border-right: none;
}

.tabs button:nth-child(2) {
  border-radius: 0 10px 0 0;
  border-left: none;
}

.tabs button.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.flow-summary {
  display: grid;
  gap: 3px;
  width: calc(100% - 40px);
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 20px 10px 35px;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  background: #DDE8FC;
  color: #111;
  text-align: left;
}

.flow-summary p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.flow-summary p:first-child {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.33;
}

.flow-summary p:first-child strong {
  font-weight: 900;
}

.flow.numbered-active .flow-summary {
  border-left-color: #1e65d8;
  background: #DDE8FC;
}

.flow-summary+.steps {
  border-top: 0;
}



.flow.numbered-active .tabs button.active {
  background: #1e65d8;
  color: #fff;
  border-color: #1e65d8;
}

.tab-panel {
  padding-top: 20px;
  padding-bottom: 40px;
  border-top: 2px solid var(--red);
}

#flow-numbered {
  border-top-color: #1e65d8;
}

.tab-panel[hidden] {
  display: none;
}

.steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 5vw 40px;
  list-style: none;
  border-top: 2px solid #EC685E;
}

#flow-numbered .steps {
  border-color: #1E65D8;
  background-color: #DDE8FC;
}

#flow-numberless {
  background-color: #DDE8FC;
}

#flow-numbered {
  background-color: #DDE8FC;
}


.steps li {
  display: grid;
  gap: 8px;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  max-width: 650px;
  width: 100%;
}

.step-heading {
  display: flex;
  align-items: center;
  gap: 4px;
}

.steps b,
.step-heading b {
  width: 20px;
  height: 20px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
}

.flow.numbered-active .steps b,
.flow.numbered-active .step-heading b {
  background: #1e65d8;
}

.em-numbered {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 5px;
  background: #DEEFFF;
  color: #1e65d8;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.em-numberless {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 5px;
  background: #FFF28D;
  color: #000;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.step-body {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.step-body img {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  object-fit: contain;
}

.steps h3 {
  margin: 0;
  font-size: 18px;
}

.steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.flow-note {
  margin: -18px auto 34px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 11px;
  line-height: 1.8;
  max-width: 650px;
  width: 90%;
}

.campaign {
  position: relative;
  background: var(--coral);
  color: #fff;
}

/* .campaign::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 30vw;
  height: 19vw;
  background: url("../img/img-campaign.png") center / contain no-repeat;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .campaign::before {
    width: 446px;
     height: 274px;
}
} */

.campaign .section-heading,
.campaign .period,
.campaign .campaign-cards,
.campaign .primary-cta {
  position: relative;
}

.campaign .section-heading>span {
  background: #fff;
  color: var(--red);
}

.campaign .section-heading h2 {
  color: #fff;
}

.period {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 15px;
  padding: 10px;
  justify-content: center;
  border-radius: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.40);
  color: #111;
  font-size: 13px;
  max-width: 950px;
}

.period b {
  padding: 4px 16px;
  border-radius: 999px;
  background: #333;
  color: #fff;
}

.period span {
  font-weight: 700;
}

.campaign-cards article {
  display: grid;
  height: 100%;
  padding: 16px 20px;
  color: #111;
  text-align: center;
}

.campaign-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.campaign-card:focus-visible article {
  outline: 2px solid #111;
  outline-offset: 4px;
}

.campaign-cards h3 {
  margin-bottom: 0;
  font-size: 18px;
}


.campaign-cards strong {
  display: block;
  color: var(--blue);
  font-size: 35px;
  line-height: 1.25;
  font-weight: 900;
}

.campaign-cards p {
  margin-bottom: 4px;
  font-size: 14px;
}

.campaign-cards small {
  font-size: 14px;
  color: #000;
}
.campaign-cards .smaller{
  font-size: 70%;
}

.campaign-card-detail {
  justify-self: end;
}

.campaign .primary-cta {
  margin-top: 24px;
  color: var(--red);
  box-shadow: 0 7px 0 rgba(154, 51, 42, 0.28);
}

.benefits {
  display: grid;
  gap: 10px;
  padding: 40px 20px;
  background: #347AEC;
  color: #fff;
  text-align: center;
}

.benefits h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.benefits img {
  border-radius: 8px;
}

/* include */
.benefits .inc-cp-bunner-area {
  margin: 10px auto 0;
}

.benefits .inc-cp-bunner-area a {
  display: inline-block;
}

.specs {
  background: #fff;
}

.card-lineup {
  display: grid;
  gap: 20px;
  margin: 0 auto 40px;
  max-width: 950px;
}

@media screen and (min-width: 769px) {
  .card-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card-lineup article {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.card-lineup h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.card-lineup article>img {
  width: 186px;
  border-radius: 7px;
}

.card-lineup article div img {
  width: 100%;
  border-radius: 5px;
}

.card-lineup>.text-link {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.spec-table-group {
  width: 100%;
  max-width: 350px;
  margin: 40px auto 0;
  border-bottom: 1px solid #c3e2ff;
}

.spec-table-group>h3 {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  font-weight: 900;
}

.spec-list {
  display: grid;
  grid-template-columns: minmax(112px, 135px) minmax(0, 1fr);
  overflow: visible;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.spec-list h4,
.spec-list p {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #c3e2ff;
  font-size: 12px;
  line-height: 1.7;
}

.spec-list h4 {
  display: flex;
  align-items: flex-start;
  padding-right: 15px;
  background: transparent;
  color: #777;
  font-weight: 800;
}

.spec-list p {
  padding-left: 0;
  background: #fff;
}

.spec-list strong {
  font-weight: 900;
  color: #1e65d8;
}

@media screen and (min-width: 769px) {
  .spec-table-group {
    max-width: 950px;
  }

  .spec-list {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

.wide-table table {
  min-width: 700px;
  text-align: left;
}

.wide-table th {
  width: 190px;
  padding: 14px 15px;
  text-align: left;
  vertical-align: top;
}

.wide-table td {
  padding: 14px 15px;
  vertical-align: top;
}

.table-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.card-compare {
  background: #DEEFFF;
}

.card-compare .section-heading h2 {
  font-size: 27px;
}

.compare-table {
  margin: auto;
}

@media screen and (min-width: 769px) {
  .compare-table {
    margin: auto;
  }
}

.compare-table table {
  min-width: 760px;
}

.compare-table th,
.compare-table td {
  width: 154px;
  min-width: 154px;
  padding: 14px 12px;
  vertical-align: middle;
}

.compare-table thead th {
  background: #fff;
  color: #111;
  border-bottom: 1px solid #DDE8FC;
}

.compare-table thead th:first-child,
.compare-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  color: #fff;
  border-top: 1px solid #EFF7FF;
  border-bottom: 1px solid #EFF7FF;
}

.compare-table thead th:first-child,
.compare-table tbody tr:nth-child(odd) th {
  background: #1E65D8;
}

.compare-table tbody tr:nth-child(even) th {
  background: #4481E5;
}

.compare-table tbody td {
  color: #111;
  border-top: 1px solid #DDE8FC;
}

.compare-table tbody td:nth-child(2) {
  color: #111;
}

.compare-table {
  border-radius: 20px;
}

.compare-table table {
  min-width: 401px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 20px;
}

.compare-table th,
.compare-table td {
  width: 154px;
  min-width: 154px;
  padding: 10px 15px;
  border-top: 1px solid #DDE8FC;
  text-align: center;
}

.compare-table thead th {
  height: 127px;
  background: #fff;
  border-top: 0;
  border-bottom: 1px solid #DDE8FC;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  line-height: 22px;
}

.compare-table thead th:first-child,
.compare-table tbody th {
  width: 89px;
  min-width: 89px;
  padding: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 20px;
}

.compare-table thead th:first-child {
  background: #1E65D8;
}

.compare-table tbody tr:nth-child(odd) th {
  background: #4481E5;
}

.compare-table tbody tr:nth-child(even) th {
  background: #1E65D8;
}

.compare-table thead th img {
  width: 107px;
  max-width: 100%;
  margin: 0 auto 7px;
  border-radius: 5px;
}

.compare-table thead th:first-child img,
.compare-table .compare-card-link img {
  width: 13px;
  height: 13px;
  margin: 0 0 0 4px;
  border-radius: 0;
  box-shadow: none;
}

.compare-table thead th span,
.compare-table .compare-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  line-height: 22px;
}

.compare-table .compare-card-link {
  color: #0084ff;
  text-decoration: underline;
}

.compare-table tbody td {
  color: #000;
  font-size: 12px;
  line-height: 20px;
}

.compare-table tbody tr:nth-child(odd) td {
  background: #EFF7FF;
}

.compare-table tbody tr:nth-child(even) td {
  background: #fff;
}

.compare-table tbody td strong {
  font-weight: 800;
}

.compare-table tbody td em {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}

.faq details {
  margin: 0 auto 10px;
  padding: 0 20px;
  max-width: 950px;
}

.faq summary {
  min-height: 71px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  cursor: pointer;
}

.faq summary::after {
  content: "+";
  color: #141B34;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: -8px 0 18px;
  font-size: 13px;
  padding-bottom: 30px;
}

.faq-details-head {
  color: var(--blue);
}

.apply-section {
  background:
    radial-gradient(circle at 14% 6%, rgba(255, 238, 111, 0.62), transparent 24%),
    linear-gradient(180deg, #EFF7FF 0%, #ffe7e1 46%, #fff 100%);
}

.apply-section .section-heading {
  margin-bottom: 38px;
}

.apply-section .section-heading h2 {
  font-size: 30px;
}


.choice-block {
  color: #fff;
  display: grid;
  gap: 20px;
  margin: 0 auto 40px;
  max-width: 950px;
}

.choice-block h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
}

.text-link {
  align-items: center;
  gap: 4px;
  color: #0084ff;
  text-decoration: underline;
}

.choice-block .text-link {
  color: #fff;
  text-align: center;
}

.text-link img {
  display: inline-block;
  margin: 0 0 -.15em .25em;
  width: 1em;
  height: 1em;
}


.choice-card {
  color: #000;
  display: grid;
  grid-template-columns: 24px 95px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 111px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.choice-card.selected {
  border-color: #e0cb37;
  background: #ffee6f;
  transform: translateY(-1px);
}

.choice-card input {
  width: 24px;
  height: 24px;
  accent-color: var(--red);
}

.choice-card>img {
  width: 95px;
  border-radius: 5px;
}

.choice-card strong {
  font-size: 16px;
  line-height: 1.5;
}

.choice-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}


.final-apply {
  display: grid;
  gap: 10px;
  text-align: center;
}

.primary-cta.tall {
  width: 350px;
  max-width: 100%;
  height: 85px;
  flex-direction: column;
  margin: 0 auto;
  gap: 2px;
  line-height: 1.3;
  border-radius: 999px;
  background: linear-gradient(90deg, #F98500 0%, #FF3939 100%);
  color: #fff;
  box-shadow: none;
}

.primary-cta.tall.disabled {
  opacity: 0.38;
  pointer-events: none;
}

#apply-link-placeholder[hidden],
.apply-link-option[hidden] {
  display: none !important;
}

.primary-cta.tall small {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.final-apply>p {
  margin: 0 0 10px;
  font-size: 12px;
}

.mini-note {
  padding: 30px;
  border-radius: 10px;
  background: var(--pale);
  color: #333;
  text-align: left;
  font-size: 11px;
  line-height: 1.8;
  margin: auto;
  max-width: 950px;
}

.mini-note p {
  margin-bottom: 6px;
}

.legal-section {
  padding: 40px 20px;
  background: #fff;
}

.legal-section.investment {
  padding-bottom: 56px;
}

.legal-section h2 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.legal-copy {
  font-size: 12px;
  line-height: 1.72;
  color: #222;
  max-width: 950px;
  margin: auto;
}

.legal-copy h3 {
  margin: 16px 0 4px;
  font-size: 11px;
  line-height: 1.72;
}

.legal-copy p {
  margin-bottom: 10px;
}

.footer {
  padding: 32px 20px 128px;
  background: #111;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.footer p {
  margin-bottom: 4px;
  font-weight: 800;
}

.floating-cta {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: 0;
  width: 100%;
  transform: translate(-50%, 110%);
  padding: 12px 20px 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.floating-cta.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.floating-cta.is-hidden-on-apply {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-top-button {
  position: fixed;
  z-index: 22;
  right: 12px;
  bottom: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.scroll-top-button.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-button img {
  width: 22px;
  height: 22px;
  transform: rotate(180deg);
}

.floating-cta>p {
  margin: 0 0 4px;
  color: #111;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}


.floating-cta a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 7px 0 var(--red-dark);
}

@media (min-width: 720px) {
  body {
    padding: 0;
  }
}

/* Design update: full-width PC bands with liquid content. */
.page {
  width: 100%;
  max-width: none;
  box-shadow: none;
}

.header,
.sticky-header {
  width: min(100%, 1000px);
}

.header {
  width: min(100%, 1000px);
}

.header {
  left: 0;
  right: 0;
  height: 64px;
  align-items: center;
  margin: 0 auto;
  padding: 40px 10px 10px 20px;
  transform: none;
}

.header .menu-button {
  position: fixed;
  z-index: 40;
  top: 9px;
  right: 12px;
  width: 57px;
  height: 58px;
  color: #fff;
  background: #1c2876ad;
  padding: 8px 0;
  border-radius: 6px;
}

.header .menu-button span {
  width: 30px;
  height: 3px;
  background: #fff;
}


.sticky-header {
  max-width: 950px;
}

@media screen and (min-width: 769px) {
  .header {
    width: 90%;
    max-width: 950px;
    padding: 9px 12px 9px 18px;
  }

  .header .menu-button,
  .scroll-top-button {
    right: clamp(57px, calc((100vw - 950px) / 2 + 12px), 999px);
  }
}

/* .hero > *,
.section > *,
.benefits > *,
.legal-section > * {
  width: min(100%, 1000px);
  margin-left: auto;
  margin-right: auto;
} */

.hero {
  min-height: auto;
  padding: 60px 20px 64px;
  color: #fff;
  background: linear-gradient(350deg, #0A5CE3 5.37%, #1D246E 94.95%);
}

/* 
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 74px solid var(--red);
  border-left: 174px solid transparent;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .hero::before {
    border-top: 17vh solid var(--red);
    border-left: 40vw solid transparent;
}
} */

.hero>* {
  position: relative;
  z-index: 1;
}

.hero-copy,
.award {
  color: #fff;
}

.hero-copy {
  letter-spacing: -.3em;
  line-height: 1.5;
}


.hero-copy strong span,
.hero-sub {
  color: var(--gold);
}

.card-image {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.card-image.is-leaving {
  opacity: 0;
  transform: translateX(-32px);
}

.card-image.is-entering {
  opacity: 0;
  transform: translateX(32px);
}

.card-image.is-resetting {
  transition: none;
}


.hero-campaign {
  padding: 25px clamp(20px, 5vw, 44px);
  background: #FDDE79;
  text-align: center;
}

.hero-campaign-inner {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.hero-campaign-inner .illust {
  margin: auto;
  width: 106px;
}


.hero-campaign-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 22px;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.hero-campaign-main {
  display: grid;
  justify-items: center;
  color: var(--blue);
  font-weight: 900;
  line-height: 2;

}

.hero-campaign-main p {
  margin: 0 0 -6px;
  font-size: 16px;
}

.hero-campaign-main strong {
  display: inline-flex;
  align-items: flex-end;
  font-weight: 900;
  gap: 4px;
  margin-bottom: -4px;
  font-size: 22px;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .hero-campaign-main strong {
    font-size: 30px;
  }
}

.hero-campaign-main small {
  width: 19px;
  font-size: 16px;
  line-height: 1.05;
}

.hero-campaign-main span {
  /* color: var(--red); */
  font-size: clamp(24px, 10vw, 54px);
  letter-spacing: 0;
}

.hero-campaign-main b {
  font-size: 16px;
  font-weight: 900;
}


.hero-campaign-benefits {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-campaign-benefits article {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-height: 76px;
  padding: 11px 10px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}

.hero-campaign-benefits p {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.33;
}

.hero-campaign-benefits strong {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #1e65d8;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.13;
}

.hero-campaign-benefits small {
  width: 12px;
  color: #111;
  font-size: 11px;
  line-height: 1.12;
}

.hero-campaign-period {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  color: #111;
  font-weight: 800;
}

.hero-campaign-period b {
  padding: 5px 18px;
  border: 1px solid #111;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.13;
}

.hero-campaign-period span {
  font-size: 16px;
  line-height: 1.2;
}

.hero-campaign-link {
  display: block;
  color: #0084ff;
  font-size: 17px;
  text-decoration: underline;
}

.primary-cta,
.floating-cta a,
.drawer-cta {
  background: linear-gradient(90deg, #F98500 0%, #FF3939 100%);
  color: #fff;
  box-shadow: none;
  max-width: 312px;
  margin: auto;
}

:where(#W_Aa,
  #ALL_H,
  #EK_B,
  #ALL_B,
  #MD_Bb,
  #MD_C,
  #W_C,
  #ALL_D,
  #ALL_E,
  #ALL_F,
  #ALL_G,
  .legal-copy) a,
.mini-note a,
.point-note-panel a,
.text-link {
  color: #0084ff !important;
  text-decoration: underline !important;
}

:is(#W_Aa,
  #W_Ab,
  #ALL_H,
  #EK_B,
  #ALL_B,
  #MD_Bb,
  #MD_C,
  #W_C,
  #ALL_D,
  #ALL_E,
  #ALL_F,
  #ALL_G,
  .legal-copy,
  .spec-list,
) a::after {
  background-image: url(../img/icon-link-square.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1em;
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
}

#EK_B,
#W_C,
#ALL_D,
#ALL_E,
#ALL_F,
#ALL_G {
  margin-top: 1.5em;
}

.section {
  padding-right: clamp(20px, 5vw, 44px);
  padding-left: clamp(20px, 5vw, 44px);
}

.section-heading h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0;
  padding: 5px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.section-heading>span {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.35;
}

/* .section-heading h2 br + *,
.section-heading > span br + * {
  color: inherit;
} */

.section-heading .heading-copy,
.section-heading .heading-copy-black,
.section-heading .heading-copy-red {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font: inherit;
  line-height: inherit;
}

.section-heading .heading-copy {
  display: block;
  color: #111;
}

.section-heading .heading-copy-black {
  color: #111;
}

.section-heading .heading-copy-red {
  color: var(--red);
}

#features {
  background-color: #F5F5F5;
}

#campaign,
.apply-section {
  background: linear-gradient(350deg, #0A5CE3 5.37%, #1D246E 94.95%);
}


.investment-accordion {
  background: #f5f5f5;
}

#point {
  background-color: #f5f5f5;
  padding-bottom: 20px;
}

.use-point {
  background-color: #f5f5f5;
}

@media screen and (min-width: 769px) {
  #point {
    padding-bottom: 20px;
  }

  .use-point {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.investment-accordion {
  padding: 0 clamp(20px, 5vw, 44px);
}

@media screen and (min-width: 769px) {
  .investment-accordion {
    padding-bottom: 0;
  }
}

.investment-toggle,
.investment-panel {
  width: 100%;
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

.investment-toggle {
  justify-content: space-between;
  min-height: 82px;
  padding: 18px 24px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  box-shadow: none;
  text-align: left;
}

.investment-toggle.open {
  border-radius: 10px 10px 0 0;
  border-bottom-color: transparent;
}

.investment-toggle b,
.note-toggle b {
  background: transparent;
  color: #111;
}

.investment-panel {
  padding: 0 24px 28px;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: #fff;
}

.investment-card {
  margin: 0 auto;
  padding: 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  max-width: 650px;
}

.investment-card .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 5px 20px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
}

.investment-card h3 {
  margin-bottom: 8px;
  font-size: 26px;
  font-weight: 900;
}

.investment-card .investment-rate-heading {
  color: #111;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.investment-card .investment-rate-heading span {
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.investment-card .investment-rate-heading small {
  color: var(--red);
  font-size: 30px;
}


.rate-box strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.rate-box strong span {
  background-color: #000;
  padding: 4px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  line-height: 1.13;
  margin-right: .5em;
}

.rate-box strong b {
  color: #111;
}

.earn-row {
  position: relative;
  margin-top: 28px;
  padding: 28px 14px 18px;
  border: 2px solid #DEEFFF;
  box-shadow: none;
}

.earn-row>span {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 220px;
  padding: 0 12px;
  transform: translate(-50%, -50%);
  background: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.earn-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #111;
}

.earn-result b {
  color: #111;
  font-size: 12px;
}

.earn-result i {
  flex: 0 0 auto;
  color: #ACA7A6;
  font-style: normal;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.earn-result strong {
  color: #111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

.earn-plus {
  margin: 7px 0 -12px;
  color: #666;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 30px;
}

.earn-head {
  color: #111;
  font-weight: 900;
}

.investment-card .earn-head {
  margin: 40px auto;
  font-size: 20px;
}

.earn-result-inner {
  text-align: left;
  line-height: 1.35;
  font-size: 10px;
}


.usage-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 22px;
  text-align: center;
}

.usage-heading-title {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0;
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.usage-heading p:not(.usage-heading-title) {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.usage-heading strong {
  display: block;
  color: #fff;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

/* 
.usage-heading strong span {
  color: #fff28d;
} */

.note-toggle {
  margin-top: 18px;
  border-radius: 10px;
  background: #f5f5f5;
  color: #111;
}

.note-toggle.open {
  border-radius: 10px 10px 0 0;
  border-bottom-color: transparent;
}

.note-panel {
  margin-top: 0;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: #f5f5f5;
}

.menu-drawer {
  align-items: start;
  place-items: start center;
  background: transparent;
}

.menu-panel {
  width: min(100%, 1000px);
  max-height: calc(100vh - 20px);
  padding: 76px clamp(20px, 5vw, 44px) 28px;
  border-radius: 0 0 22px 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.menu-panel nav {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0 20px;
}

.menu-label {
  color: #bbb;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .8em;
  text-align: left;
  padding-left: 14px;
}

.menu-brand {
  position: absolute;
  top: 9px;
  left: 18px;
  display: flex;
  min-height: 48px;
  align-items: center;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.menu-brand img {
  width: 52px;
  margin-right: 8px;
}

.sticky-logo strong,
.menu-brand strong {
  font-weight: bold;
}

.menu-close {
  top: 10px;
  right: 18px;
  width: 66px;
  height: 48px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 34px;
  line-height: .7;
}

.menu-close>b {
  font-size: 10px;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .menu-panel {
    max-width: 950px;
  }
}

.apply-section .section-heading p {
  color: #fff;
}

#campaign .section-heading>span,
.card-compare .section-heading h2,
.apply-section .section-heading>span {
  background: transparent;
  color: #111;
}

.apply-section .section-heading h2 {
  background: #fff;
  color: #000;
}

#campaign .section-heading h2,
.card-compare .section-heading h2,
.apply-section .section-heading h2 {
  display: inline-flex;
  min-height: 30px;
  padding: 5px 18px;
  border: 1px solid #111;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.15;
}

#campaign .section-heading>span,
.card-compare .section-heading>span,
.apply-section .section-heading>span {
  display: block;
  padding: 0;
  border: 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.35;
}

#campaign .section-heading>span {
  color: #fff;
}

#campaign .section-heading h2 {
  background-color: #fff;
  color: #000;
}

#campaign .primary-cta {
  color: #fff;
  box-shadow: none;
}

.legal-section.investment {
  background: #f5f5f5;
}

.footer {
  display: none;
}

.table-wrap {
  width: 100%;
  overflow: visible;
  margin-right: 0;
  box-shadow: none;
  scrollbar-width: none;
}

.table-wrap::-webkit-scrollbar {
  display: none;
}

.partner-table,
.compare-table {
  width: 100%;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.partner-table table,
.compare-table table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.partner-table th,
.partner-table td,
.compare-table th,
.compare-table td {
  min-width: 0;
  overflow-wrap: anywhere;
}

.partner-table th,
.compare-table th {
  white-space: normal;
}

.compare-table th,
.compare-table td {
  width: 38%;
  padding-right: 8px;
  padding-left: 8px;
}

.compare-table thead th:first-child,
.compare-table tbody th {
  width: 24%;
  min-width: 0;
}

.site-footer {
  padding: 36px 20px 132px;
  background: #111;
  color: #fff;
  text-align: center;
}

.site-footer nav {
  display: flex;
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin: 0 auto 28px;
}

.site-footer a {
  color: #fff;
  font-size: 12px;
  text-decoration: underline;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
}

@media screen and (max-width: 768px) {
  .menu-drawer {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 0;
  }

  .menu-panel {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    max-height: 100dvh;
    overflow-y: auto;
    padding: calc(76px + env(safe-area-inset-top)) 20px calc(28px + env(safe-area-inset-bottom));
    border-radius: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .menu-panel nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 374px) {
  .hero-campaign-benefits strong {
    font-size: 28px;
  }

  .earn-result {
    gap: 7px;
  }

  .earn-result b,
  .earn-result strong {
    font-size: 15px;
  }
}



@media (min-width: 760px) {

  .feature-list,
  .reason-grid,
  .function-list,
  .campaign-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .function-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice-block h3,
  .choice-block .text-link {
    grid-column: 1 / -1;
  }
}