:root {
  --navy: #063775;
  --navy2: #021f55;
  --blue: #087bd7;
  --sky: #27baff;
  --cyan: #dff7ff;
  --orange: #ff7700;
  --orange2: #ff9a00;
  --yellow: #ffd14d;
  --teal: #006881;
  --ink: #12213f;
  --muted: #5c6d86;
  --line: #b9ddfb;
  --shadow: 0 12px 24px rgba(5, 65, 130, .18);
  font-family: "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  color: var(--ink);
  background: #dff4ff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page {
  width: min(100%, 941px);
  margin: 0 auto;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12px 12px, rgba(7, 143, 216, .08) 2px, transparent 3px) 0 0 / 30px 30px,
    linear-gradient(180deg, #eefaff 0%, #e4f8ff 34%, #f8fdff 100%);
  box-shadow: 0 0 40px rgba(0, 56, 120, .22);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  min-height: 75px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #fff 0 47%, #f8fcff 47% 100%);
  border-bottom: 2px solid #17a9f2;
}

/* ===== Hamburger Button ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  z-index: 200;
  transition: border-color .2s;
}
.hamburger:hover {
  border-color: var(--navy);
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== Nav Overlay ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 20, 60, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ===== Slide Nav ===== */
.slide-nav {
  position: fixed;
  top: 0;
  right: -320px;
  z-index: 200;
  width: 300px;
  max-width: 85vw;
  height: 100dvh;
  background: linear-gradient(180deg, #f0f8ff 0%, #fff 100%);
  box-shadow: -8px 0 30px rgba(0, 30, 80, .2);
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.slide-nav.is-open {
  right: 0;
}
.slide-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 2px solid #17a9f2;
  background: #fff;
}
.slide-nav-logo {
  width: 160px;
  height: auto;
}
.slide-nav-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #0a8ce5, #0052bc);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.slide-nav-close:hover {
  background: linear-gradient(180deg, #0574d7, #003e95);
}
.slide-nav-links {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  flex: 1;
}
.slide-nav-links li {
  border-bottom: 1px solid #e4f0fa;
}
.slide-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.slide-nav-links a:hover {
  background: #e4f3ff;
  color: var(--blue);
}
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eef6ff;
  font-size: 16px;
  flex-shrink: 0;
}
.slide-nav-footer {
  padding: 16px 20px;
  border-top: 2px solid #cde6f9;
  background: #f8fcff;
  text-align: center;
}
.slide-nav-footer p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.slide-nav-cta {
  display: block;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #06c755, #05a847);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(6, 199, 85, .3);
  transition: transform .15s, box-shadow .15s;
}
.slide-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 199, 85, .4);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.logo-mark {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 5px solid #53b6d8;
  border-right-color: var(--navy);
  border-radius: 50%;
  background: #fff;
  transform: rotate(-18deg);
}
.logo-mark::before {
  content: "";
  position: absolute;
  left: 16px;
  top: -2px;
  width: 21px;
  height: 56px;
  background: var(--navy2);
  clip-path: polygon(56% 0, 100% 0, 68% 42%, 100% 42%, 25% 100%, 43% 55%, 10% 55%);
  transform: rotate(18deg);
}
.logo-text {
  color: #2b3548;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 #e4f7ff;
  white-space: nowrap;
}
.header-tel {
  color: var(--navy);
}
.tel-icon {
  width: 20px;
  height: 26px;
  border: 4px solid var(--blue);
  border-radius: 12px 12px 12px 4px;
  transform: rotate(-18deg);
}
.header-tel strong {
	font-size: 16px;
	text-align: center;
	display: block;
}
.header-tel small {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.secure-badge {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 8px;
  align-items: center;
  min-width: 158px;
  padding: 7px 9px;
  border: 2px solid var(--blue);
  border-radius: 6px;
  color: var(--blue);
  background: #fff;
}
.secure-badge b {
  font-size: 15px;
  line-height: 1.1;
}
.secure-badge small {
  grid-column: 2;
  font-size: 11px;
  font-weight: 800;
}
.shield {
  grid-row: 1 / 3;
  width: 34px;
  height: 38px;
  background: var(--blue);
  clip-path: polygon(50% 0, 100% 15%, 92% 75%, 50% 100%, 8% 75%, 0 15%);
}
.shield::after {
  content: "";
  display: block;
  width: 13px;
  height: 8px;
  margin: 12px auto;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 72% 38%, rgba(255,255,255,.7) 0 4px, transparent 5px),
    linear-gradient(135deg, #0a74db 0%, #2fc6ff 42%, #0575cf 100%);
  overflow: hidden;
}
.speed-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(126deg, transparent 0 14%, rgba(255,255,255,.78) 14% 16%, transparent 16% 100%),
    linear-gradient(145deg, transparent 0 49%, rgba(255,255,255,.95) 49% 51%, transparent 51%),
    linear-gradient(156deg, transparent 0 68%, rgba(255,255,255,.78) 68% 70%, transparent 70%),
    radial-gradient(circle at 70% 28%, rgba(255,255,255,.56), transparent 26%),
    repeating-linear-gradient(164deg, rgba(255,255,255,.18) 0 2px, transparent 2px 16px);
  opacity: .78;
}
.hero-copy,
.hero-mascot,
.gift-card,
.rate-row,
.benefit-row,
.rate-row { z-index: 3; }
.benefit-row { z-index: 2; }
.hero-kicker {
  display: inline-block;
  margin: 0 0 4px;
  padding: 2px 10px;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  background: rgba(255,255,255,.86);
  border-radius: 9px;
  text-shadow: 2px 2px 0 #fff;
}
.hero h1 {
  margin: 0;
  color: #083a78;
  font-size: 55px;
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
  text-shadow:
    3px 3px 0 #fff,
    -3px 3px 0 #fff,
    3px -3px 0 #fff,
    -3px -3px 0 #fff,
    7px 7px 0 rgba(0,0,0,.16);
}
.hero h1 span { color: var(--yellow); text-shadow: 2px 2px 0 #fff; }
.hero-main {
  margin: 6px 0 5px;
  color: #101b2f;
  font-size: 27px;
  font-weight: 900;
  line-height: .96;
  text-shadow: 2px 2px 0 #fff;
}
.hero-main em {
  color: var(--orange);
  font-style: normal;
}
.hero-main strong {
  color: var(--orange);
  font-size: 58px;
}
.hero-main small {
  color: var(--orange);
  font-size: 22px;
}
.hero-sub {
  display: inline-block;
  margin: 0;
  padding: 7px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #0b6de9, #004cb8);
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.14);
}
.hero-mascot {
  position: absolute;
  right: 8px;
  top: 34px;
  width: 318px;
  filter: drop-shadow(0 10px 13px rgba(0,32,80,.24));
}
.gift-card {
  position: absolute;
  right: -8px;
  top: 86px;
  width: 78px;
  height: 136px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 15px rgba(0,0,0,.23);
  transform: rotate(9deg);
}
.gift-card span {
  display: block;
  width: 20px;
  height: 18px;
  margin: 30px auto 8px;
  background: #333;
  border-radius: 50% 50% 45% 45%;
}
.gift-card b {
  display: block;
  color: #222;
  font-size: 15px;
  text-align: center;
}
.rate-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 278px;
  position: absolute;
  left: 30px;
  top: 265px;
  margin-top: 0;
}
.rate-card {
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}
.rate-card p {
  margin: 0;
  padding: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}
.rate-first p { background: linear-gradient(180deg, var(--orange2), var(--orange)); }
.rate-repeat p { background: linear-gradient(180deg, #139dff, #005ed4); }
.rate-card strong {
  display: block;
  padding: 6px 0 5px;
  color: var(--orange);
  font-size: 46px;
  line-height: .85;
  font-weight: 900;
}
.rate-repeat strong { color: #075bd1; }
.rate-card span { font-size: .35em; }
.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 67px;
  margin-top: 0;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.benefit-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 37px;
  border-radius: 10px;
  color: #1b2f4f;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}
.yen,
.zero,
.apple {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: #10203f;
  font-style: normal;
}
.yen::before { content: "¥"; font-weight: 900; }
.zero { background: #ff594b; color: #fff; }
.zero::before { content: "¥0"; font-size: 13px; font-weight: 900; }
.apple { background: #e8f3ff; color: #1d7bd8; }
.apple::before { content: "●"; font-size: 18px; }

.cta-hero {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 10px;
  width: auto;
  margin: 0;
}
.line {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #16b832;
  background: #fff;
  font-size: 15px;
  font-weight: 900;
}

.section {
  position: relative;
  margin: 0 30px 10px;
}
.section h2 {
  margin: 0 0 12px;
  color: #142b57;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0;
}
.section h2 span { 
  color: var(--orange);
  font-size: 1.2em;
}
.simulator {
  margin-top: 45px;
  padding-top: 12px;
}
.simulator h2 {
  display: block;
  width: fit-content;
  margin: 0 auto -11px;
  padding: 11px 32px 14px;
  border-radius: 0 0 14px 14px;
  color: #fff;
  background: linear-gradient(180deg, #075fc4, #013e95);
  font-size: 25px;
  box-shadow: var(--shadow);
}
.sim-card {
  display: grid;
  grid-template-columns: 1fr 62px 1.4fr 116px;
  align-items: center;
  gap: 13px;
  min-height: 118px;
  padding: 50px 18px 20px;
  border: 3px solid #cbe4fa;
  border-radius: 13px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.sim-card b {
  display: block;
  margin-bottom: 7px;
  color: #23365b;
  text-align: center;
  font-size: 20px;
}
.sim-input label {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-height: 50px;
  border: 2px solid #a8cbe7;
  border-radius: 7px;
  background: #fff;
  font-weight: 900;
}
.sim-input input {
  width: 60%;
  min-width: 0;
  border: 0;
  color: #111;
  background: transparent;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
}
.sim-input span { font-size: 21px; }
.bolt-arrow {
	width: 48px;
	height: 76px;
	margin: auto;
	background: linear-gradient(180deg, #54c7ff, #006fd6);
	clip-path: polygon(55% 0, 100% 0, 65% 42%, 100% 42%, 28% 100%, 42% 56%, 0 56%);
}
.sim-result strong {
  display: block;
  color: #f24d56;
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  line-height: 1;
}
.sim-card img {
	width: 23%;
	position: absolute;
	right: -5%;
	bottom: 1%;
}
.note {
  margin: 5px 0 0;
  color: #6d7480;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.worries h2 {
  font-size: 2em;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.worry-grid article {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 92px;
  padding: 6px;
  border: 3px solid #d7ecff;
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}
.worry-grid img {
	width: 100%;
	object-fit: contain;
	margin-bottom: 10px;
}
.worry-grid b {
  margin-top: 5px;
  font-size: 20px;
}
.icon-stack,
.icon-watch {
  position: relative;
  width: 50px;
  height: 43px;
}
.icon-stack::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 42px;
  height: 30px;
  border: 2px solid #8fa3b8;
  background: repeating-linear-gradient(0deg, #e8eef6 0 6px, #cfd9e5 6px 8px);
  transform: rotate(-12deg);
}
.icon-stack::after {
  content: "?";
  position: absolute;
  right: 0;
  top: 0;
  color: #78869a;
  font-size: 42px;
  font-weight: 900;
}
.icon-watch::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  width: 42px;
  height: 42px;
  border: 4px solid #587792;
  border-radius: 50%;
  background: #fff;
}
.icon-watch::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 14px;
  width: 4px;
  height: 22px;
  background: #587792;
  box-shadow: 9px 15px 0 -1px #587792;
}
.solution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #142b57;
  font-size: 2em;
  font-weight: 900;
}
.solution img {
  width: 56px;
}
.solution p { margin: 0; }
.solution strong {
	color: var(--orange);
	font-size: 1.2em;
}
.solution::before {
	content: "";
	position: absolute;
	width: 25px;
	height: 40px;
	background: linear-gradient(180deg, #0c82e8, #003caa);
	clip-path: polygon(55% 0, 100% 0, 62% 42%, 100% 42%, 26% 100%, 43% 56%, 0 56%);
	margin: 5px 0 0 0;
  left: 37.5%;
  transform: scale(-1, 1);
}
.solution::after {
	content: "";
	position: absolute;
	width: 25px;
	height: 40px;
	background: linear-gradient(180deg, #0c82e8, #003caa);
	clip-path: polygon(55% 0, 100% 0, 62% 42%, 100% 42%, 26% 100%, 43% 56%, 0 56%);
	margin: 5px 0 0 0;
  right: 37.5%;
}


.reasons {
	padding: 7px 7px 20px;
	border-radius: 12px;
	background: linear-gradient(180deg, #064fb8, #013b99 58%, transparent 100%);
	margin: 1em 30px 2em;
}
.reasons h2 {
	color: #fff;
	font-size: 25px;
	margin: 5px 0 15px;
}
.reason-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.reason-row article {
	position: relative;
	overflow: hidden;
	min-height: 132px;
	padding: 10px;
	border: 2px solid #c8dff5;
	border-radius: 9px;
	background: #fff;
	box-shadow: var(--shadow);
}
.reason-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: #eaf6ff;
  color: #1b7fd5;
  font-size: 28px;
  font-weight: 900;
}
.shield-icon::before { content: "✓"; }
.building-icon::before { content: "▥"; }
.reason-row h3 {
	color: #1a3d77;
	font-size: 20px;
	line-height: 1.3;
	width: fit-content;
	margin: 0 0 0 auto;
}
.reason-row p {
	margin: 0;
	font-size: 17px;
	font-weight: 800;
	margin-top: 10px;
}
.reason-row img {
  width: 40%;
}
.reasons_flex {
	display: flex;
	align-items: center;
}
.rates {
  padding-top: 3px;
}
.rates h2 {
  padding: 7px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  background: linear-gradient(180deg, #167fe8, #0049b9);
  font-size: 24px;
  box-shadow: var(--shadow);
}
.apple-large {
  color: #fff;
  font-size: .9em;
}
.rate-table {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -15px;
  border: 2px solid #c9def0;
  border-radius: 0 0 12px 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.rate-table > div {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  min-height: 35px;
  border-bottom: 1px solid #dce7f0;
}
.rate-table > div:last-child { border-bottom: 0; }
.rate-table span,
.rate-table strong,
.rate-table b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 900;
}
.table-head b:first-of-type {
  color: #fff;
  background: linear-gradient(180deg, #ffa20d, #ff7700);
}
.table-head b:last-of-type {
  color: #fff;
  background: linear-gradient(180deg, #36c4ff, #0574d7);
}
.rate-table strong:nth-child(2) {
  color: var(--orange);
  font-size: 25px;
}
.rate-table strong:nth-child(3) {
  color: var(--blue);
  font-size: 25px;
}
.card-icon {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  background: #66aceb;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.55);
}
.card-icon.gray { background: #bcc7d4; }
.card-icon.gold { background: #f4c85c; }
.card-icon.green { background: #53d9bd; }
.side-mascot {
  position: absolute;
  right: -18px;
  bottom: 2px;
  width: 96px;
  transform: scaleX(-1);
}

.flow {
  padding: 20px 0 10px;
  border: 3px solid #c6dff4;
  border-radius: 12px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.flow h2 {
	font-size: 2em;
	width: fit-content;
	margin: 0 auto 25px;
}
.flow h2::before {
	content: "";
	position: absolute;
	width: 25px;
	height: 40px;
	background: linear-gradient(180deg, #0c82e8, #003caa);
	clip-path: polygon(55% 0, 100% 0, 62% 42%, 100% 42%, 26% 100%, 43% 56%, 0 56%);
	margin: 5px 0 0 0;
  left: 35%;
  transform: scale(-1, 1);
}
.flow h2::after {
	content: "";
	position: absolute;
	width: 25px;
	height: 40px;
	background: linear-gradient(180deg, #0c82e8, #003caa);
	clip-path: polygon(55% 0, 100% 0, 62% 42%, 100% 42%, 26% 100%, 43% 56%, 0 56%);
	margin: 5px 0 0 0;
  right: 35%;
}
.flow-row {
	padding: 0 9px 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
  justify-content: center;
}
.flow-row article {
	position: relative;
	display: flex;
	padding: 15px 5px;
	border: 2px solid #c9e2f6;
	border-radius: 10px;
	background: #fff;
	text-align: center;
	width: 49%;
	align-items: center;
	gap: 10px;
}

.flow-row b {
	color: #fff;
	font-size: 20px;
	background: linear-gradient(180deg, #36c4ff, #0574d7);
	padding: 5px 10px;
	border-radius: 25px;
}
.flow_step {
	display: flex;
	align-items: center;
	gap: 10px;
}
.flow-row h3 {
  margin: 5px 0 5px;
  color: #006ec8;
  font-size: 25px;
}
.flow-row p {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
}
.flow-row img {
  width: 90px;
  min-width: 70px;
  flex-shrink: 0;
}
.flow-icon {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #e9f6ff;
  border: 2px solid #9ed0f4;
}
.phone-flow::after {
  content: "●";
  display: grid;
  place-items: center;
  height: 100%;
  color: #19bd4a;
}
.id-flow::after { content: "ID"; display: grid; place-items: center; height: 100%; color: #6883a0; font-weight: 900; }
.apple-flow::after { content: "●"; display: grid; place-items: center; height: 100%; color: #4d5660; font-size: 25px; }
.bank-flow::after { content: "¥"; display: grid; place-items: center; height: 100%; color: #ffb000; font-size: 28px; font-weight: 900; }

.faq h2,
.company h2 {
  font-size: 2em;
}

.faq h2::before {
	content: "";
	position: absolute;
	width: 25px;
	height: 40px;
	background: linear-gradient(180deg, #0c82e8, #003caa);
	clip-path: polygon(55% 0, 100% 0, 62% 42%, 100% 42%, 26% 100%, 43% 56%, 0 56%);
	margin: 5px 0 0 0;
  left: 34%;
  transform: scale(-1, 1);
}
.faq h2::after {
	content: "";
	position: absolute;
	width: 25px;
	height: 40px;
	background: linear-gradient(180deg, #0c82e8, #003caa);
	clip-path: polygon(55% 0, 100% 0, 62% 42%, 100% 42%, 26% 100%, 43% 56%, 0 56%);
	margin: 5px 0 0 0;
  right: 34%;
}

.company h2::before {
	content: "";
	position: absolute;
	width: 25px;
	height: 40px;
	background: linear-gradient(180deg, #0c82e8, #003caa);
	clip-path: polygon(55% 0, 100% 0, 62% 42%, 100% 42%, 26% 100%, 43% 56%, 0 56%);
	margin: 5px 0 0 0;
  left: 37%;
  transform: scale(-1, 1);
}
.company h2::after {
	content: "";
	position: absolute;
	width: 25px;
	height: 40px;
	background: linear-gradient(180deg, #0c82e8, #003caa);
	clip-path: polygon(55% 0, 100% 0, 62% 42%, 100% 42%, 26% 100%, 43% 56%, 0 56%);
	margin: 5px 0 0 0;
  right: 37%;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 138px;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 3px solid #cde6f9;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.faq-list {
  display: grid;
  gap: 6px;
}
.faq details {
	overflow: hidden;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 4px 10px rgba(7, 74, 140, .08);
	margin-bottom: .5em;
	padding: 10px;
  width: 80%;
}
.faq summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 29px;
  padding: 4px 10px;
  color: #172846;
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "⌄";
  margin-left: auto;
  color: #0091dc;
  font-size: 20px;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq summary span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: #057bd3;
}
.faq details p {
  margin: 0;
  padding: 0 12px 8px 42px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.company-card {
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 10px;
  align-items: end;
  padding: 12px 16px;
  border: 3px solid #cfe5f8;
  border-radius: 13px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow);
}
.company dl {
  display: grid;
  gap: 3px;
  margin: 0;
}
.company dl div {
	display: grid;
	grid-template-columns: 112px 1fr;
	align-items: center;
	min-height: 27px;
	border-bottom: 1px solid #d8e2ec;
	margin-bottom: .5em;
	padding-bottom: .5em;
}
.company dl div:last-child { border-bottom: 0; }
.company dt {
  display: grid;
  place-items: center;
  min-height: 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #0a8ce5, #0052bc);
  font-size: 20px;
  font-weight: 900;
}
.company dd {
  margin: 0;
  padding-left: 13px;
  font-size: 20px;
  font-weight: 900;
}
.company-card img {
  width: 112px;
}

.footer {
	display: flex;
	gap: 8px 20px;
	align-items: center;
	padding: 16px 32px;
	color: #fff;
	background: linear-gradient(90deg, #003485, #0052c2);
}
.footer nav {
  display: flex;
  gap: 22px;
}
.footer a,
.footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}
.footer-logo {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 28px !important;
  font-weight: 900 !important;
}
.footer-logo .logo-mark {
  width: 42px;
  height: 42px;
  border-color: #fff;
  border-right-color: #8ed7ff;
  background: transparent;
}
.footer-logo .logo-mark::before {
  left: 13px;
  width: 18px;
  height: 47px;
  background: #fff;
}

/* ===== Tablet ===== */
@media (max-width: 768px) {
  .header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 14px;
  }
  .header-tel strong { font-size: 13px; }

  .section { margin: 0 16px 16px; }
  .section h2 { font-size: 24px; }

  .sim-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 40px 16px 16px;
  }
  .bolt-arrow { width: 40px; height: 58px; transform: rotate(90deg); }
  .sim-card img { width: 110px; margin: 0 auto; }

  .worry-grid { grid-template-columns: 1fr 1fr; }
  .worry-grid b { font-size: 16px; }

  .reason-row { grid-template-columns: 1fr 1fr; }
  .reason-row article { min-height: 160px; }
  .reason-row h3 { font-size: 17px; }
  .reason-row p { font-size: 14px; }

  .flow-row article { width: 48%; }
  .flow-row h3 { font-size: 20px; }
  .flow-row p { font-size: 14px; }

  .faq details { width: 100%; }
  .faq summary { font-size: 17px; }
  .faq details p { font-size: 15px; }
  .faq_img { width: 25%; }

  .company dl div { grid-template-columns: 100px 1fr; }
  .company dt { font-size: 16px; }
  .company dd { font-size: 16px; }

  .footer-logo, .footer_didiv { width: auto; }

  .section.worries { margin: 2em 16px; }
  .section#faq { margin: 2em 16px; }
  section#flow { margin: 2em 16px; }
  .reasons { margin: 1em 16px 2em; }

  .worries h2 { font-size: 1.6em; }

  .solution { font-size: 1.6em; }
  .solution::before { left: 30%; }
  .solution::after { right: 30%; }

  .flow h2 { font-size: 1.6em; }
  .flow h2::before { left: 28%; }
  .flow h2::after { right: 28%; }
  .company h2::before { left: 28%; }
  .company h2::after { right: 28%; }
}

/* ===== スマホ ===== */
@media (max-width: 620px) {
  /* --- Header --- */
  .header {
    grid-template-columns: 1fr auto;
    gap: 7px;
    padding: 8px 10px;
    min-height: 56px;
  }
  .header-logo { width: 200px; }
  .header-tel { display: none; }
  .logo-mark { width: 38px; height: 38px; border-width: 4px; }
  .logo-mark::before { left: 12px; width: 16px; height: 43px; }
  .logo-text { font-size: 25px; }
  .secure-badge {
    min-width: 42px;
    max-width: 42px;
    grid-template-columns: 1fr;
    padding: 5px 7px;
  }
  .secure-badge b,
  .secure-badge small { display: none; }
  .shield { width: 26px; height: 30px; }

  /* --- Hero --- */
  .hero { height: auto; }

  /* --- Sections --- */
  .section { margin: 0 10px 14px; }
  .section h2 { font-size: 20px; }

  /* --- Simulator --- */
  .simulator { margin-top: 35px; }
  .simulator h2 { width: 100%; font-size: 16px; padding: 10px 8px 12px; }
  .sim-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 32px 12px 12px;
  }
  .sim-card b { font-size: 16px; }
  .sim-input input { font-size: 26px; }
  .sim-input span { font-size: 18px; }
  .bolt-arrow { width: 34px; height: 48px; transform: rotate(90deg); }
  .sim-card img { width: 90px; margin: 0 auto; }
  .sim-results-wrap { grid-template-columns: 1fr 1fr; gap: 6px; }
  .sim-result--first b,
  .sim-result--repeat b { font-size: 11px; }
  .sim-result--first strong,
  .sim-result--repeat strong { font-size: 22px; }
  .rate-badge { font-size: 10px; padding: 1px 6px; }
  .note { font-size: 11px; }

  /* --- Worries --- */
  .section.worries { margin: 1.5em 10px; }
  .worries h2 { font-size: 1.3em; }
  .worries h2::after { right: 5%; width: 18px; height: 30px; }
  .worry-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .worry-grid article { min-height: 70px; padding: 8px 4px; }
  .worry-grid b { font-size: 13px; }

  /* --- Solution --- */
  .solution { font-size: 1.2em; }
  .solution::before { left: 18%; width: 18px; height: 30px; }
  .solution::after { right: 18%; width: 18px; height: 30px; }

  /* --- Reasons --- */
  .reasons { margin: 1em 10px 1.5em; padding: 7px 6px 0; }
  .reasons h2 { font-size: 17px; }
  .reason-row { grid-template-columns: 1fr; gap: 8px; }
  .reason-row article { min-height: auto; padding: 10px; }
  .reasons_flex { gap: 8px; }
  .reason-row img { width: 30%; }
  .reason-row h3 { font-size: 16px; }
  .reason-row p { font-size: 13px; margin-top: 6px; }

  /* --- Rates image --- */
  .rates-img-section { margin: 0 10px 14px; }
  .rate-num--first,
  .rate-num--repeat { font-size: min(4.2vw, 28px); }

  /* --- Flow --- */
  section#flow { margin: 1.5em 10px !important; }
  .flow { padding: 14px 0 8px; }
  .flow h2 { font-size: 8vw; margin-bottom: 16px; }
.flow h2::before {
	left: 20%;
	width: 25px;
	height: 40px;
}
.flow h2::after {
	right: 20%;
	width: 25px;
	height: 40px;
}
  .flow-row { padding: 0 6px 6px; gap: 8px; }
  .flow-row article { width: 100%; padding: 12px 8px; gap: 8px; }
  .flow-icon-img { width: 60px; min-width: 60px; }
  .flow-row b { font-size: 16px; padding: 4px 8px; }
  .flow-row h3 { font-size: 6vw; }
  .flow-row p { font-size: 13px; }
  .flow_step { gap: 8px; }

  /* --- FAQ --- */
  .section#faq { margin: 2.5em 10px !important; }
  .faq h2, .company h2 { font-size: 7vw; }
  .faq-wrap { grid-template-columns: 1fr; padding: 10px; }
  .faq details { width: 100%; padding: 8px; border-radius: 16px; }
  .faq summary { font-size: 5vw; padding: 3px 6px; min-height: 24px; gap: 8px; }
  .faq summary span { width: 24px; height: 24px; font-size: 13px; }
  .faq summary::after { font-size: 16px; }
  .faq details p { font-size: 13px; padding: 0 8px 6px 34px; }
  .faq_img { width: 28%; position: absolute; bottom: 0; right: 0; }

  /* --- Company --- */
  .company-card { grid-template-columns: 1fr; padding: 10px; }
  .company dl div { grid-template-columns: 80px 1fr; }
.company dt {
	font-size: 18px;
	padding: 5px 0;
}
  .company dd { font-size: 16px; padding-left: 8px; }
  .company-card img { width: 100px; margin: 0 auto; }
  .company h2::before { left: 25%; width: 18px; height: 30px; }
  .company h2::after { right: 25%; width: 18px; height: 30px; }

  .cta.cta-bottom .line-logo { width: 100% !important; }

  .cta.cta-bottom {
    margin: 1em auto;
    display: block;
  }

  /* --- Footer --- */
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 14px;
    gap: 12px;
  }
  .footer nav { flex-direction: column; gap: 8px; }
  .footer-logo, .footer_didiv { width: auto !important; }
  .footer-logo { order: -1; }

  /* --- Modal --- */
  .modal-overlay { padding: 10px; }
  .modal-content { border-radius: 12px; max-height: 90vh; }
  .modal-content h2 { font-size: 16px; padding: 14px 40px 14px 16px; }
  .modal-body { padding: 16px; font-size: 13px; }
  .modal-body h3 { font-size: 14px; }
  .modal-table th,
  .modal-table td { padding: 8px; font-size: 12px; }
  .modal-table th { width: 80px; }

  /* --- Rate table (legacy) --- */
  .rate-table > div { grid-template-columns: 1.2fr .75fr .85fr; }
  .rate-table span,
  .rate-table strong,
  .rate-table b { font-size: 12px; }
  .rate-table strong:nth-child(2),
  .rate-table strong:nth-child(3) { font-size: 21px; }
  .side-mascot { display: none; }

  /* --- Misc hero elements --- */
  .hero-kicker { font-size: 20px; }
  .hero h1 { font-size: 47px; }
  .hero-main { max-width: 360px; font-size: 18px; }
  .hero-main strong { font-size: 48px; }
  .hero-main small { font-size: 18px; }
  .hero-sub { font-size: 16px; padding: 8px 14px; }
  .hero-mascot { top: 190px; right: 10px; width: 190px; }
  .gift-card { top: 214px; right: -12px; width: 62px; height: 108px; }
  .rate-row { width: 100%; margin-top: 210px; position: relative; left: auto; top: auto; }
  .rate-card p { font-size: 18px; }
  .rate-card strong { font-size: 57px; }
  .benefit-row {
    grid-template-columns: 1fr;
    gap: 7px;
    position: relative;
    left: auto; right: auto; bottom: auto;
    margin-top: 10px;
  }
  .benefit-row span { min-height: 40px; font-size: 15px; }
  .cta-hero { width: 100%; min-height: 64px; font-size: 18px; border-radius: 15px; }
  .line { width: 42px; height: 42px; font-size: 12px; }
}

/* ===== 小型スマホ (375px以下) ===== */
@media (max-width: 375px) {
  .header-logo { width: 160px; }
  .section h2 { font-size: 7vw; }
  .worries h2 { font-size: 1.1em; }
  .solution { font-size: 1em; }

  .worry-grid b { font-size: 11px; }
  .sim-input input { font-size: 22px; }
  .sim-result--first strong,
  .sim-result--repeat strong { font-size: 18px; }
  .sim-result--first b,
  .sim-result--repeat b { font-size: 10px; flex-direction: column; gap: 2px; }

  .flow-row h3 { font-size: 16px; }
  .flow-row p { font-size: 12px; }

  .faq summary { font-size: 18px; }
  .faq details p { font-size: 16px; }

  .company dl div { grid-template-columns: 90px 1fr; }

  .rate-num--first,
  .rate-num--repeat { font-size: min(3.5vw, 22px); }

.reasons h2 {
	font-size: 6vw;
	margin: 15px 0 20px;
}
  .reason-row h3 { font-size: 14px; }
  .reason-row p {
	font-size: 16px;
	padding-bottom: 15px;
}
}


.header-logo {
	width: 318px;
	height: auto;
}
.hero_btn {
	position: absolute;
	bottom: 9.6%;
	font-size: 2.5em;
	right: 0;
	left: 0;
	margin: 0 auto;
	font-weight: bold;
	text-align: center;
	width: 78%;
	height: 2.6em;
}
.hero_arrow {
	position: absolute;
	bottom: 6%;
	font-size: 2.5em;
	right: 20%;
	background-color: #fff;
	width: 45px;
	height: 45px;
	border-radius: 65%;
	color: #fa6801;
	text-align: center;
}
.hero_mail {
	position: absolute;
	bottom: 6%;
	width: 45px;
	left: 23%;
}
.simulation_img {
	position: absolute;
	top: -5%;
	right: 0;
	left: 0;
	margin: 0 auto;
}

.sim-input input:focus-visible {
  border: 2px dashed rgba(220, 20, 60, 0);
  border-radius: 3px;
  outline: none;
}

/* Dual simulator results */
.sim-results-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sim-result--first,
.sim-result--repeat {
  padding: 8px 6px;
  border-radius: 10px;
  text-align: center;
}
.sim-result--first {
  border: 3px solid #ff9b22;
  background: linear-gradient(180deg, #fff8ef, #fff);
}
.sim-result--repeat {
  border: 3px solid #139dff;
  background: linear-gradient(180deg, #eef7ff, #fff);
}
.sim-result--first b,
.sim-result--repeat b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 18px;
  color: #23365b;
}
.rate-badge {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.rate-badge--first {
  background: linear-gradient(180deg, #ffa20d, #ff7700);
}
.rate-badge--repeat {
  background: linear-gradient(180deg, #36c4ff, #0574d7);
}
.sim-result--first strong {
  display: block;
  color: #f24d56;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
}
.sim-result--repeat strong {
  display: block;
  color: #075bd1;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
}

/* sim-results mobile handled in main media query above */

.section.worries {
	margin: 3em 30px;
}

/* Image-based rate table */
.rates-img-section {
  padding: 0;
}
.rates-img-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}
.rates-bg-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.rate-num {
  position: absolute;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.02em;
}
.rate-num--first {
  color: #ff7700;
  left: 39.5%;
  width: 25%;
  font-size: min(5.2vw, 48px);
}
.rate-num--repeat {
  color: #0a6dd6;
  left: 68%;
  width: 28%;
  font-size: min(5.2vw, 48px);
}
/* Vertical positions for each of the 4 rows */
.rate-row1 { top: 21%; }
.rate-row2 { top: 30.5%; }
.rate-row3 { top: 39.5%; }
.rate-row4 { top: 48.5%; }
.rate-row5 { top: 56.5%; }
.rate-row6 { top: 64.5%; }
.rate-row7 { top: 72.5%; }
.rate-row8 { top: 81%; }

.footer-logo, .footer_didiv {
	width: 50%;
  line-height: 2.5;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .55);
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s ease;
}
.modal-overlay.is-active {
  display: flex;
  opacity: 1;
}
.modal-content {
  position: relative;
  width: min(100%, 680px);
  max-height: 85vh;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 30, 80, .3);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform .25s ease;
}
.modal-overlay.is-active .modal-content {
  transform: translateY(0);
}
.modal-content h2 {
  margin: 0;
  padding: 18px 50px 18px 24px;
  color: #fff;
  background: linear-gradient(90deg, #064fb8, #0a7ae6);
  font-size: 20px;
  font-weight: 900;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.modal-close:hover {
  background: rgba(255, 255, 255, .35);
}
.modal-body {
  padding: 24px;
  overflow-y: auto;
  max-height: calc(85vh - 60px);
  font-size: 14px;
  line-height: 1.8;
  color: #2a3650;
}
.modal-body h3 {
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e0ecf7;
  color: #0a4da0;
  font-size: 16px;
}
.modal-body p {
  margin: 0 0 10px;
}
.modal-body ul {
  margin: 0 0 14px;
  padding-left: 1.4em;
}
.modal-body li {
  margin-bottom: 4px;
}
.modal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.modal-table th,
.modal-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e0ecf7;
  text-align: left;
  font-size: 14px;
}
.modal-table th {
  width: 110px;
  color: #fff;
  background: linear-gradient(180deg, #0a8ce5, #0052bc);
  font-weight: 900;
  white-space: nowrap;
}
.modal-table td {
  color: #2a3650;
  font-weight: 700;
}
body.modal-open {
  overflow: hidden;
}

.faq_img {
	width: 33%;
	position: absolute;
	bottom: 0;
	right: 0;
}

.cta.cta-bottom .line-logo {
	width: 65%;
	margin: 0 auto;
}

.section#faq {
	margin: 3em 30px;
}
section#flow {
	margin: 3em 30px;
}
.cta.cta-bottom {
	margin: 2em auto;
	display: block;
}

.sspsp {
  display: none;
}

@media (max-width: 670px) {
.faq_img {
	width: 33%;
	position: absolute;
	top: -8%;
	right: -3%;
}
.flow-row h3 {
	font-size: 20px;
}
.flow-row p {
	font-size: 14px;
}
.reason-row img {
	width: 45%;
}
.reason-row h3 {
	font-size: 5vw;
	margin: 0;
}
.reasons_flex {
	gap: 15px;
}
.section {
	margin: 2em 10px;
}
.solution {
	font-size: 7vw;
}
.solution::before {
	left: 10%;
	width: 30px;
	height: 55px;
}
.solution::after {
	right: 10%;
	width: 30px;
	height: 55px;
}
.section.worries {
	margin: 3em 15px;
}
.solution p {
	margin: 0;
	text-align: center;
}
.solution strong {
	color: var(--orange);
	font-size: 1.5em;
	display: block;
}
.sspsp {
  display: block !important;
}
.worries h2 {
	font-size: 7vw;
}
.section h2 span {
	color: var(--orange);
	font-size: 1.3em;
}
.worry-grid b {
	font-size: 18px;
}
.worry-grid article {
	min-height: 70px;
	padding: 15px 4px;
}
.bolt-arrow {
	transform: rotate(0);
}
.sim-result--first b {
	flex-direction: row;
}
.sim-results-wrap {
	display: flex;
	flex-direction: column;
}
.sim-input input {
	font-size: 25px;
	height: 2em;
}
.sim-card img {
	width: 30%;
	margin: 0 auto;
	right: 0;
	bottom: 1%;
}
.reason-row p {
	display: none;
}
.reason-row h3 .sspsp {
	color: var(--ink);
	font-size: 16px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #054baf30;
}
.reason-row h3 {
	width: 80%;
}
.hero img {
	display: none;
}
.hero_btn {
	bottom: 2.3%;
	width: 95%;
  height: 1.6em;
}
.rates-bg-img {
	display: none;
}
.rate-num--first {
	color: #ff7700;
	left: 39.5%;
	width: 30%;
	font-size: 8vw;
}
.rate-num--repeat {
	color: #0a6dd6;
	left: 67%;
	width: 30%;
	font-size: 8vw;
}
.rate-row1 { top: 18%; }
.rate-row2 { top: 27.5%; }
.rate-row3 { top: 36.5%; }
.rate-row4 { top: 46.5%; }
.rate-row5 { top: 55.5%; }
.rate-row6 { top: 64.5%; }
.rate-row7 { top: 73.5%; }
.rate-row8 { top: 83.5%; }

.faq summary span {
	width: 30px;
	height: 30px;
	font-size: 20px;
}

.faq h2::before {
	content: "";
	position: absolute;
	width: 25px;
	height: 40px;
	background: linear-gradient(180deg, #0c82e8, #003caa);
	clip-path: polygon(55% 0, 100% 0, 62% 42%, 100% 42%, 26% 100%, 43% 56%, 0 56%);
	margin: 5px 0 0 0;
	left: 17%;
	transform: scale(-1, 1);
}
.faq h2::after {
	content: "";
	position: absolute;
	width: 25px;
	height: 40px;
	background: linear-gradient(180deg, #0c82e8, #003caa);
	clip-path: polygon(55% 0, 100% 0, 62% 42%, 100% 42%, 26% 100%, 43% 56%, 0 56%);
	margin: 5px 0 0 0;
	right: 17%;
}
.slide-nav-links {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
}
}











.line-fixed-banner {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 99;
	display: block;
	max-width: 430px;
	line-height: 0;
	text-decoration: none;
	border-radius: 18px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 10px 10px 10px 0px #a2a2a2;
}

.line-fixed-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.line-fixed-banner:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.26),
    0 6px 16px rgba(0, 0, 0, 0.14);
}

.line-fixed-banner:focus-visible {
  outline: 3px solid #00c300;
  outline-offset: 4px;
}
.sim-input input {
	font-family: "Noto Sans JP", sans-serif;
}
/* スマホ非表示 */
@media (max-width: 767px) {
.line-fixed-banner {
	position: fixed;
	bottom: 0;
	z-index: 9999;
	display: block;
	overflow: hidden;
	width: 100%;
  right: 0;
  max-width: 100%;
}
.footer {
	padding-bottom: 13em;
}

.line-fixed-banner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.2s ease,
    visibility 0.25s ease;
}

/* 表示時 */
.line-fixed-banner.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

}



.kankinritu1 {
	position: absolute;
	top: 46%;
	left: 11%;
	color: #fb6607;
	font-weight: bold;
}
.kankinritu2 {
	position: absolute;
	top: 46%;
	left: 36%;
	color: #0251e4;
	font-weight: bold;
}
.numbersuu {
	font-size: 5em;
}
.pasentp {
	font-size: 2.5em;
	margin-left: 5px;
}
@media (max-width: 670px) {
.kankinritu1 {
	position: absolute;
	top: 44%;
	left: 7%;
	color: #fb6607;
	font-weight: bold;
}
.kankinritu2 {
	position: absolute;
	top: 44%;
	left: 55%;
	color: #0251e4;
	font-weight: bold;
}
}