/* ======================================== ■全般 ======================================== */
:root {
  --bg: #f2f4f7;
  --text: #111111;
  --muted: #5f6b7a;
  --brand: #0099ff;
  --max: 750px;
  --radius: 18px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden; /* 横スクロール抑止 */
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  padding: 0 16px;
  background: #ffffff;
  display: flow-root;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  margin-top: -1px;
  margin-bottom: -1px;
}

/* >>>>>>>>>>>>>>>>>>> [全般MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .wrap {
    padding: 0;
  }
}

/* ======================================== ■ヘッダー ======================================== */

#lp-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 1000;
}

#lp-site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.header-logo img {
  display: block;
  height: 100%;
  max-height: 100%;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333333;
  box-sizing: border-box;
}

#lp-site-header[data-header-tel="off"] .header-tel {
  display: none;
}

#lp-site-header[data-header-tel="off"] .header-cta {
  margin-left: 0;
}

.header-tel-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #333333;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-tel-number img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.header-tel-hours {
  margin: 7px 0 0;
  color: #333333;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.header-tel-note {
  margin: 3px 0 0;
  color: #0099ff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 10px 24px;
  border-radius: 9999px;
  background: #0099ff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  cursor: pointer;
  white-space: normal;
  transition: transform 0.2s ease;
  max-width: 100%;
}

.header-cta::before {
  content: none;
}

.header-cta-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
}

.header-cta:hover {
  transform: translateY(-3px);
  background: linear-gradient(
    110deg,
    #0099ff 0%,
    #0099ff 25%,
    #00c8ff 45%,
    #66ddff 60%,
    #0088ff 80%,
    #0099ff 100%
  );
  background-size: 250% 100%;
  box-shadow: none;
  animation: header-cta-color-wave 1.2s ease-out 1 forwards;
}

.header-cta:active {
  transform: translateY(1px);
  background: linear-gradient(
    110deg,
    #0099ff 0%,
    #0099ff 25%,
    #00c8ff 45%,
    #66ddff 60%,
    #0088ff 80%,
    #0099ff 100%
  );
  background-size: 250% 100%;
  box-shadow: none;
  animation: header-cta-color-wave 0.6s ease-out 1 forwards;
}

@keyframes header-cta-color-wave {
  0% {
    background-position: 100% 0;
  }

  50% {
    background-position: 25% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

body {
  padding-top: 0;
}


/* スマホ */
@media screen and (max-width: 767px) {
  #lp-site-header {
    height: 100px;
  }

  #lp-site-header .container {
    padding: 0 12px;
  }

.header-logo {
  height: 100%;
}

.header-logo img {
  height: 56px;
  max-height: 56px;
  width: auto;
}

  .header-tel {
    display: none;
  }

.header-cta {
  margin-left: 0;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.2;
}

.header-cta-sub {
  font-size: 9px;
  margin-top: 0;
  line-height: 1.2;
}
}

/* ======================================== ■ヒーローセクション ======================================== */
#hero {
  scroll-margin-top: 100px;
}

#hero[data-enabled="off"] {
  display: none;
}

#hero .wrap {
  padding: 0;
  position: relative;
  background: #ffffff;
  border-top: 0;
  border-bottom: 0;
  margin-top: 100px;
  margin-bottom: 0;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

#hero .wrap picture {
  display: block;
}

#hero .wrap picture img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-main-visual {
  position: relative;
  width: 100%;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(34vw, 650px);
  transform: translate(-50%, -50%);
  color: #062a42;
  text-align: center;
  pointer-events: none;
  box-sizing: border-box;
}

.hero-copy-rate {
  margin: 0 0 3%;
  color: #062a42;
  font-size: clamp(11px, 1.4vw, 27px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero-copy-rate span {
  display: inline-block;
  margin-left: clamp(4px, 0.4vw, 8px);
  background: linear-gradient(135deg, #007acc 0%, #0099ff 50%, #66ccff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2em;
  font-weight: 900;
  line-height: 1;
  -webkit-text-fill-color: transparent;
}

.hero-copy-kicker {
  margin: 3% 0 0;
  font-size: clamp(11px, 1.4vw, 27px);
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-copy-kicker span {
  color: #0099ff;
  font-size: 1.06em;
}

.hero-copy-main {
  display: grid;
  position: relative;
  grid-template-columns: max-content max-content max-content;
  justify-content: center;
  gap: clamp(7px, 0.63vw, 12px);
  align-items: center;
  padding: 4% 0;
  background: linear-gradient(135deg, #007acc 0%, #0099ff 50%, #66ccff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-copy-main::before,
.hero-copy-main::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 153, 255, 0) 0%,
    #66ccff 20%,
    #0099ff 50%,
    #007acc 80%,
    rgba(0, 153, 255, 0) 100%
  );
}

.hero-copy-main::before {
  top: 0;
}

.hero-copy-main::after {
  bottom: 0;
}

.hero-copy-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(15px, 1.9vw, 36px);
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-copy-cross {
  margin: clamp(2px, 0.21vw, 4px) 0;
  font-size: 0.9em;
  line-height: 1;
}

.hero-copy-no {
  font-size: clamp(16px, 2vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.hero-copy-cash {
  font-size: clamp(30px, 3.9vw, 74px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.hero-copy-badges {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: clamp(20px, 1.5vw, 30px);
  margin-top: 4%;
}

.hero-copy-badges p {
  margin: 0;
  padding:
    calc(clamp(2px, 0.18vw, 4px) + 1px)
    clamp(5px, 0.5vw, 9px)
    calc(clamp(2px, 0.18vw, 4px) - 1px);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.75);
  color: #062a42;
  font-size: clamp(9px, 1.1vw, 21px);
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
  box-shadow:
    0 4px 7px rgba(0, 0, 0, 0.24),
    0 1px 2px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.hero-info-layout {
  display: grid;
  grid-template-columns: 260px max-content;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: calc(0.5vw + 6px) 8px;
  overflow: hidden;
  background-color: #0099ff;
  background-image: url("./images/hero-background.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  box-sizing: border-box;
}

.hero-info-background {
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-info-area {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 8px;
  width: max-content;
  box-sizing: border-box;
}

.hero-info-card {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 5px;
  align-items: stretch;
  min-width: 0;
  min-height: 96px;
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
}

.hero-info-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #062a42;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.hero-info-card > :not(.hero-info-title) {
  min-width: 0;
}

.hero-transactions {
  width: 260px;
  overflow: visible;
}

.transaction-marquee {
  width: 100%;
  height: 100%;
  overflow: visible;
  clip-path: inset(-6px 0 -6px 0);
}

.transaction-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  height: 100%;
  animation: transaction-marquee 60s linear 3 forwards;
  will-change: transform;
}

.transaction-group {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 5px;
  padding-right: 5px;
}

.transaction-card {
  display: flex;
  flex: 0 0 195px;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  padding: 4px 5px;
  border: 0;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}

.transaction-meta {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin: 0 0 3px;
  color: #062a42;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.transaction-meta span:nth-child(3) {
  margin-left: 8px;
}

.transaction-details {
  display: grid;
  grid-template-columns: 56px max-content;
  justify-content: center;
  gap: 4px;
  align-items: center;
}

.transaction-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.transaction-brand img {
  display: block;
  max-width: 56px;
  max-height: 56px;
  width: auto;
  height: auto;
}

.transaction-amounts {
  margin: 0;
  color: #062a42;
}

.transaction-amount-row {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 3px;
  align-items: baseline;
}

.transaction-amount-row dt {
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
  white-space: nowrap;
}

.transaction-amount-row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  white-space: nowrap;
}

.business-status-box {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
  padding: 4px 10px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.business-status-text {
  width: max-content;
  margin: 0 auto 6px;
  color: #0099ff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.business-status-text.is-closed {
  color: #555555;
}

.business-hours {
  margin: 0;
  color: #000000;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.transfer-time-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
  padding: 4px 10px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.transfer-time-row {
  display: grid;
  grid-template-columns: 70px auto;
  gap: 8px;
  align-items: center;
}

.transfer-time-row + .transfer-time-row {
  margin-top: 5px;
}

.transfer-time-note {
  margin-top: 4px;
  color: #000000;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.transfer-time-row dt {
  margin: 0;
  color: #000000;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  white-space: nowrap;
}

.transfer-time-row dd {
  width: 3em;
  margin: 0;
  color: #0099ff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

@keyframes transaction-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--transaction-distance)));
  }
}



/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [ヒーローMQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .hero-copy {
    top: 6.5%;
    left: 50%;
    width: 86%;
    transform: translateX(-50%);
  }

  .hero-copy-rate {
    margin-bottom: 2%;
    font-size: clamp(15px, 3.9vw, 29px);
  }

  .hero-copy-rate span {
    margin-left: 4px;
    font-size: 2em;
  }

  .hero-copy-kicker {
    margin-top: 3%;
    margin-bottom: 0;
    font-size: clamp(15px, 3.9vw, 29px);
    line-height: 1.3;
  }

  .hero-copy-main {
    grid-template-columns: max-content max-content max-content;
    justify-content: center;
    gap: 6px;
  }

  .hero-copy-methods {
    font-size: clamp(19px, 5.2vw, 39px);
    line-height: 1.02;
  }

  .hero-copy-no {
    font-size: clamp(19px, 5vw, 38px);
  }

  .hero-copy-cash {
    font-size: clamp(38px, 10vw, 75px);
  }

  .hero-copy-badges {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 12px;
    margin-top: 3%;
  }

  .hero-copy-badges p {
    padding: 3px 6px;
    font-size: clamp(10px, 2.8vw, 21px);
  }

  .hero-info-layout {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow: visible;
    background: #ffffff;
  }

  .hero-transactions {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 30px;
    left: 30px;
    width: auto;
    margin: 0;
    transform: translateY(calc(-100% - 3px));
  }

  .hero-info-background {
    width: 100%;
    padding: 6px 4px;
    background-color: #0099ff;
    background-image: url("./images/hero-background.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
  }

  .hero-info-area {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4px;
    width: 100%;
  }

  .hero-info-card {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 3px;
    min-height: 96px;
    padding: 5px 4px;
  }

  .hero-info-title {
    font-size: 14px;
  }

  .business-status-box {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 4px;
    box-sizing: border-box;
  }

  .business-status-text {
    font-size: 20px;
  }

  .business-hours {
    font-size: 11px;
  }

  .transfer-time-list {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 4px;
    box-sizing: border-box;
  }

  .transfer-time-row {
    grid-template-columns: 70px max-content;
    justify-content: center;
    gap: 3px;
  }

  .transfer-time-row dt {
    font-size: 11px;
  }

  .transfer-time-row dd {
    font-size: 18px;
  }
}





/* ======================================== ■プロモーションセクション ======================================== */
#promotion {
  padding: 32px 0 44px;
  background-color: #f4faff;
  background-image: url("./images/promotionbackground.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#promotion[data-enabled="off"] {
  display: none;
}

.promotion-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 66.6667%;
  max-width: 1200px;
  margin: 0 auto;
}

.promotion-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.promotion-heading-label {
  display: inline-block;
  margin: 0 0 9px;
  padding: 5px 18px;
  border: 1px solid #9fd9fb;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  box-shadow: 0 3px 10px rgba(0, 96, 160, 0.05);
}

.promotion-ribbon {
  display: block;
  width: min(70%, 420px);
  height: auto;
}

.promotion-summary-lead {
  width: 100%;
  margin: 0 0 12px;
  color: #123a67;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

.promotion-video-wrap {
  position: relative;
  width: 100%;
  max-width: 750px;
  aspect-ratio: 16 / 9;
}

.promotion-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #0099ff;
  border-radius: 0;
  outline: none;
  background: #ffffff;
  box-shadow: none;
  box-sizing: border-box;
  filter: none;
  object-fit: contain;
}

.promotion-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.promotion-play-button[hidden] {
  display: none;
}

.promotion-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ffffff;
}

/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [プロモーションMQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  #promotion {
    padding: 26px 0 34px;
  }

  .promotion-wrap {
    width: calc(100% - 32px);
  }

  .promotion-heading {
    margin-bottom: 8px;
  }

  .promotion-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 10px;
  }

  .promotion-ribbon {
    width: 70%;
    max-width: 320px;
  }

  .promotion-summary-lead {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.6;
  }

  .promotion-video {
    border-radius: 0;
  }

  .promotion-play-button {
    width: 64px;
    height: 64px;
  }

  .promotion-play-icon {
    margin-left: 5px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 19px;
  }
}


/* ======================================== ■ブランド紹介セクション ======================================== */

#brands {
  scroll-margin-top: 100px;
}

#brands[data-enabled="off"] {
  display: none;
}

.brands-section {
  position: relative;
  padding: 64px 20px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f1faff 48%,
    #ffffff 100%
  );
}

.brands-section::before {
  content: "";
  position: absolute;
  top: -160px;
  left: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(0, 153, 255, 0.08);
  pointer-events: none;
}

.brands-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(140, 209, 255, 0.16);
  pointer-events: none;
}

.brands-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.brands-heading {
  margin: 0 auto 34px;
  text-align: center;
}

.brands-heading-label {
  display: inline-block;
  margin: 0 0 9px;
  padding: 5px 18px;
  border: 1px solid #9fd9fb;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  box-shadow: 0 3px 10px rgba(0, 96, 160, 0.05);
}

.brands-heading-title {
  margin: 0;
  color: #062a42;
  font-size: clamp(18px, 3vw, 36px);
  line-height: 1.35;
  font-weight: 700;
  white-space: nowrap;
}

.brands-heading-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #8cd1ff 0%,
    #0099ff 100%
  );
}

.brands-heading-text {
  max-width: 640px;
  margin: 16px auto 0;
  color: #526775;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

.brands-category-list {
  display: grid;
  gap: 20px;
  counter-reset: brands-category;
}

.brands-category {
  position: relative;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 153, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(6, 42, 66, 0.08);
  box-sizing: border-box;
}

.brands-category[data-enabled="on"] {
  counter-increment: brands-category;
}

.brands-category[data-enabled="off"] {
  display: none;
}

.brands-category-carrier {
  overflow: visible;
}

.brands-category::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 5px;
  border-radius: 0 20px 0 999px;
  background: linear-gradient(
    to right,
    #8cd1ff 0%,
    #0099ff 100%
  );
}

.brands-category-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 17px;
}

.brands-category-number {
  display: flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #8cd1ff 0%,
    #0099ff 100%
  );
  box-shadow: 0 6px 13px rgba(0, 153, 255, 0.22);
}

.brands-category-number::before {
  content: counter(brands-category, decimal-leading-zero);
}

.brands-category-heading-text {
  min-width: 0;
}

.brands-category-label {
  margin: 0 0 2px;
  color: #0099ff;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brands-category-title {
  margin: 0;
  color: #062a42;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 700;
}

.brands-logo-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brands-logo-list-app {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brands-logo-list-carrier {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brands-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 82px;
  padding: 13px 12px;
  border: 1px solid #e4f3fc;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(6, 42, 66, 0.07);
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.brands-logo-item[data-enabled="off"] {
  display: none;
}

.brands-logo-item:hover {
  border-color: rgba(0, 153, 255, 0.4);
  box-shadow: 0 10px 24px rgba(0, 153, 255, 0.14);
  transform: translateY(-3px);
}

.brands-logo-item-carrier {
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.brands-logo-item-carrier:hover,
.brands-logo-item-carrier:focus,
.brands-logo-item-carrier.is-carrier-guide-open {
  z-index: 20;
}

.brands-carrier-guide {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 100%;
  width: 460px;
  max-width: calc(100vw - 32px);
  padding: 20px;
  border: 1px solid rgba(0, 153, 255, 0.22);
  border-radius: 14px;
  background: #ffffff;
  color: #33424c;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
  box-shadow: 0 8px 22px rgba(6, 42, 66, 0.16);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.brands-carrier-guide-close {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #526775;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.brands-carrier-guide-close:hover {
  color: #0099ff;
}

.brands-logo-item-carrier:hover .brands-carrier-guide,
.brands-logo-item-carrier:focus .brands-carrier-guide,
.brands-logo-item-carrier.is-carrier-guide-open .brands-carrier-guide {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.brands-carrier-guide-logo {
  display: block;
  width: auto;
  max-width: 180px;
  height: auto;
  max-height: 44px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.brands-carrier-guide-text {
  margin: 0 0 12px;
}

.brands-carrier-guide-links {
  margin: 0 0 18px;
}

.brands-carrier-guide-link-item {
  margin: 0 0 8px;
}

.brands-carrier-guide-link-item:last-child {
  margin-bottom: 0;
}

.brands-carrier-guide-link-label {
  display: block;
  color: #33424c;
}

.brands-carrier-guide-link {
  display: inline-block;
  color: #0099ff;
  font-size: 12px;
  text-decoration: underline;
  white-space: nowrap;
}

.brands-carrier-guide-link:hover {
  text-decoration: none;
}

.brands-carrier-guide-button {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  padding: 11px 18px;
  border: 0;
  border-radius: 9999px;
  background: #0099ff;
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.brands-carrier-guide-button:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.brands-logo-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.brands-contact-note {
  margin: 18px 0 0;
  color: #526775;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}

.brands-contact-tel {
  color: #0099ff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brands-contact-tel:hover {
  text-decoration: underline;
}

/* タブレット */
/* >>>>>>>>>>>>>>>>>>> [ブランド紹介MQ] screen and (max-width: 1023px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 1023px) {
  .brands-section {
    padding: 58px 20px;
  }

  .brands-heading-title {
    font-size: clamp(18px, 4vw, 32px);
  }

  .brands-logo-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brands-logo-list-app {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .brands-logo-list-carrier {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [ブランド紹介MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .brands-section {
    padding: 40px 8px;
  }

  .brands-section::before {
    top: -100px;
    left: -180px;
    width: 320px;
    height: 320px;
  }

  .brands-section::after {
    right: -190px;
    bottom: -120px;
    width: 360px;
    height: 360px;
  }

  .brands-heading {
    margin-bottom: 22px;
  }

  .brands-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 11px;
  }

  .brands-heading-title {
    font-size: clamp(18px, 6vw, 24px);
    line-height: 1.35;
    white-space: nowrap;
  }

  .brands-heading-title::after {
    width: 46px;
    height: 3px;
    margin-top: 11px;
  }

  .brands-heading-text {
    max-width: 520px;
    margin-top: 13px;
    padding: 0 6px;
    color: #33424c;
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
    box-sizing: border-box;
  }

  .brands-category-list {
    gap: 12px;
  }

  .brands-category {
    padding: 12px 6px;
    border-radius: 14px;
  }

  .brands-category::before {
    width: 90px;
    height: 4px;
    border-radius: 0 14px 0 999px;
  }

  .brands-category-heading {
    gap: 7px;
    margin-bottom: 9px;
    padding: 0 2px;
  }

  .brands-category-number {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 11px;
  }

  .brands-category-label {
    margin-bottom: 1px;
    font-size: 9px;
  }

  .brands-category-title {
    font-size: 16px;
  }

  .brands-logo-list,
  .brands-logo-list-app,
  .brands-logo-list-carrier {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .brands-logo-item {
    min-height: 44px;
    padding: 4px 3px;
    border-radius: 7px;
    box-shadow: 0 2px 6px rgba(6, 42, 66, 0.07);
  }

  .brands-logo-item:hover {
    transform: none;
  }

  .brands-logo-item-carrier:hover .brands-carrier-guide,
  .brands-logo-item-carrier:focus .brands-carrier-guide,
  .brands-logo-item-carrier.is-carrier-guide-open .brands-carrier-guide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }

  .brands-category-carrier .brands-carrier-guide.is-carrier-guide-mobile {
    position: absolute;
    z-index: 30;
    left: 6px;
    right: 6px;
    bottom: 66px;
    width: auto;
    max-width: none;
    max-height: calc(100dvh - 120px);
    margin: 0;
    padding: 14px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.7;
    overflow-y: auto;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translateY(10px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }

  .brands-category-carrier .brands-carrier-guide.is-carrier-guide-mobile.is-carrier-guide-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .brands-logo-image {
    max-width: 94%;
    max-height: 27px;
  }

  .brands-contact-note {
    margin-top: 14px;
    padding: 0 6px;
    color: #33424c;
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
    box-sizing: border-box;
  }
}

/* ======================================== ■申し込みボタンセクション ======================================== */
.apply-button-section {
  position: relative;
  width: 100%;
  padding: 48px 20px;
  overflow: hidden;
  background-color: #0099ff;
  background-image: url("./images/applybutton-background.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  box-sizing: border-box;
}

.apply-button-section::before {
  display: none;
}

.apply-button-section::after {
  display: none;
}

.apply-button-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.apply-button-points {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.apply-button-point {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  min-height: 42px;
  padding: 4px 14px;
  border: 2px solid #0099ff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 83, 139, 0.15);
  box-sizing: border-box;
}

.apply-button-card {
  position: relative;
  padding: 48px 56px 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(0, 66, 110, 0.2);
  box-sizing: border-box;
}

.apply-button-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: -48px;
  width: 240px;
  height: 278px;
  background-image: url("./images/applybutton-operator.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
}

.apply-button-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.apply-button-main {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.apply-button-link {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 13px 32px;
  border: 3px solid #ffffff;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    #33adff 0%,
    #0099ff 50%,
    #008ae6 100%
  );
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 0 0 3px #0099ff,
    0 8px 20px rgba(0, 153, 255, 0.3);
  box-sizing: border-box;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.apply-button-label {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.apply-button-link-sub {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.apply-button-arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

.apply-button-hours {
  margin: 22px 0 0;
  color: #435563;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.apply-button-break-mobile {
  display: none;
}

/* タブレット */
/* >>>>>>>>>>>>>>>>>>> [申し込みボタンMQ] screen and (max-width: 1023px) and (min-width: 768px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .apply-button-section {
    padding: 36px 16px;
  }

  .apply-button-points {
    gap: 10px;
    margin-bottom: 14px;
  }

  .apply-button-point {
    width: 190px;
    min-height: 44px;
    padding: 4px 10px;
    font-size: 14px;
    line-height: 1.3;
  }

  .apply-button-card {
    padding: 24px 24px 24px;
    border-radius: 18px;
  }

  .apply-button-card::after {
    right: -10px;
    bottom: -36px;
    width: 200px;
    height: 232px;
  }

  .apply-button-main {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

.apply-button-link {
  min-height: 76px;
  padding: 10px 24px;
}

  .apply-button-label {
    font-size: 19px;
  }

  .apply-button-link-sub {
    font-size: 11px;
  }

  .apply-button-arrow {
    right: 24px;
    width: 11px;
    height: 11px;
  }

  .apply-button-hours {
    margin-top: 18px;
    font-size: 14px;
  }
}

/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [申し込みボタンMQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .apply-button-section {
    padding: 12px 12px 12px;
  }

  .apply-button-section::before {
    top: -130px;
    left: -160px;
    width: 320px;
    height: 320px;
    border-width: 44px;
  }

  .apply-button-section::after {
    right: -140px;
    bottom: -170px;
    width: 300px;
    height: 300px;
    border-width: 40px;
  }

  .apply-button-points {
    gap: 6px;
    margin-bottom: 12px;
  }

  .apply-button-point {
    width: calc((100% - 12px) / 3);
    min-height: 48px;
    padding: 4px;
    font-size: 10px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .apply-button-break-mobile {
    display: inline;
  }

  .apply-button-card {
    position: relative;
    padding: 16px 16px 10px;
    border-radius: 16px;
    overflow: visible;
  }

  .apply-button-card::after {
    right: -2%;
    bottom: -13%;
    width: 32%;
    height: auto;
    aspect-ratio: 150 / 174;
    background-position: right bottom;
    background-size: contain;
  }

  .apply-button-content {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .apply-button-main {
    width: 62%;
    max-width: none;
    margin: 0 auto;
  }

  .apply-button-link {
    width: 100%;
    min-height: auto;
    aspect-ratio: 230 / 68;
    padding: 0 16px;
  }

  .apply-button-label {
    font-size: clamp(12px, 4vw, 15px);
  }

  .apply-button-link-sub {
    font-size: clamp(8px, 2.7vw, 10px);
  }

  .apply-button-arrow {
    right: 19px;
    width: 10px;
    height: 10px;
  }

  .apply-button-hours {
    margin-top: 10px;
    font-size: 11px;
  }
}

/* ======================================== ■問題提起セクション ======================================== */
.problem-section {
  position: relative;
  width: 100%;
  padding: 72px 20px 0;
  overflow: hidden;
  background-color: #eaf7ff;
  background-image:
    radial-gradient(
      circle,
      rgba(0, 153, 255, 0.16) 2px,
      transparent 2px
    );
  background-position: 0 0;
  background-size: 24px 24px;
  box-sizing: border-box;
}

.problem-section[data-enabled="off"] {
  display: none;
}

.problem-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.problem-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 36px;
  padding: 0 80px;
}

.problem-heading::before,
.problem-heading::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 54px;
  height: 3px;
  border-radius: 9999px;
  background: #0099ff;
}

.problem-heading::before {
  left: 8px;
  transform: rotate(55deg);
  transform-origin: right center;
}

.problem-heading::after {
  right: 8px;
  transform: rotate(-55deg);
  transform-origin: left center;
}

.problem-heading-sub {
  margin: 0 0 2px;
  color: #435563;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.problem-title {
  margin: 0;
  color: #062a42;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.problem-title::first-letter {
  color: #0099ff;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.problem-item {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 14px 20px;
  border: 2px solid #d5efff;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(0, 83, 139, 0.08);
  box-sizing: border-box;
}

.problem-check {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-right: 13px;
  border-radius: 50%;
  background: #0099ff;
}

.problem-check::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 13px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: translate(-50%, -58%) rotate(45deg);
}

.problem-text {
  margin: 0;
  color: #263e4d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  white-space: normal;
}

.problem-message {
  margin: 34px 0 0;
  color: #435563;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.problem-arrow {
  position: relative;
  width: 4px;
  height: 48px;
  margin: 22px auto 18px;
  background: #0099ff;
}

.problem-arrow::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -2px;
  width: 20px;
  height: 20px;
  border-right: 4px solid #0099ff;
  border-bottom: 4px solid #0099ff;
  transform: translateX(50%) rotate(45deg);
}

.problem-solution {
  position: relative;
  width: calc(100% + 40px);
  margin-left: -20px;
  padding: 34px 20px 38px;
  background: linear-gradient(
    to right,
    #33adff 0%,
    #0099ff 50%,
    #008ae6 100%
  );
  box-sizing: border-box;
}

.problem-solution::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  border-top: 20px solid #eaf7ff;
  border-right: 34px solid transparent;
  border-left: 34px solid transparent;
  transform: translateX(-50%);
}

.problem-solution-sub {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 20px;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.problem-solution-main {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 4px rgba(0, 64, 107, 0.2);
}

.problem-solution-main span {
  color: #fff200;
  font-size: 36px;
}

.problem-break-mobile {
  display: none;
}

/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [問題提起MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .problem-section {
    padding: 48px 12px 0;
  }

  .problem-heading {
    margin-bottom: 28px;
    padding: 0 48px;
  }

  .problem-heading::before,
  .problem-heading::after {
    bottom: 6px;
    width: 34px;
    height: 2px;
  }

  .problem-heading::before {
    left: 4px;
  }

  .problem-heading::after {
    right: 4px;
  }

  .problem-heading-sub {
    font-size: 17px;
  }

  .problem-title {
    font-size: 28px;
  }

  .problem-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .problem-item {
    min-height: 58px;
    padding: 11px 14px;
    border-radius: 10px;
  }

  .problem-check {
    width: 28px;
    height: 28px;
    margin-right: 11px;
  }

  .problem-check::before {
    top: 50%;
    left: 50%;
    width: 6px;
    height: 12px;
  }

  .problem-text {
    font-size: 16px;
    line-height: 1.5;
    white-space: normal;
  }

  .problem-message {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.8;
  }

  .problem-break-pc {
    display: none;
  }

  .problem-arrow {
    height: 40px;
    margin: 18px auto 15px;
  }

  .problem-solution {
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 29px 12px 31px;
  }

  .problem-solution::before {
    border-top-width: 16px;
    border-right-width: 28px;
    border-left-width: 28px;
  }

  .problem-solution-sub {
    margin-bottom: 8px;
    padding: 4px 16px;
    font-size: 14px;
  }

  .problem-solution-main {
    font-size: 23px;
    line-height: 1.5;
  }

  .problem-solution-main span {
    font-size: 31px;
  }

  .problem-break-mobile {
    display: inline;
  }
}

/* ======================================== ■特徴セクション ======================================== */
.feature-section {
  position: relative;
  width: 100%;
  padding: 68px 20px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(0, 153, 255, 0.07) 0%,
      rgba(0, 153, 255, 0.07) 24%,
      transparent 24%,
      transparent 72%,
      rgba(0, 153, 255, 0.045) 72%,
      rgba(0, 153, 255, 0.045) 100%
    ),
    #ffffff;
  box-sizing: border-box;
}

.feature-section[data-enabled="off"] {
  display: none;
}

.feature-section::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -90px;
  width: 260px;
  height: 260px;
  border: 24px solid rgba(0, 153, 255, 0.06);
  border-radius: 36px;
  box-sizing: border-box;
  transform: rotate(28deg);
  pointer-events: none;
}

.feature-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.feature-heading {
  margin-bottom: 36px;
  text-align: center;
}

.feature-heading-label {
  display: inline-block;
  margin: 0 0 9px;
  padding: 5px 18px;
  border: 1px solid #9edaff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 10px rgba(0, 99, 165, 0.08);
}

.feature-title {
  margin: 0;
  color: #062a42;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.feature-title span {
  color: #0099ff;
}

.feature-heading-text {
  margin: 11px 0 0;
  color: #15384e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.feature-scroll-guide {
  display: none;
}

.feature-scrollbar {
  display: none;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  min-width: 0;
  min-height: 224px;
  padding: 24px 20px 21px;
  overflow: hidden;
  border: 1px solid #d5efff;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 9px 22px rgba(0, 72, 120, 0.07),
    0 2px 5px rgba(0, 72, 120, 0.04);
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(
    to right,
    #8cd1ff 0%,
    #0099ff 100%
  );
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -52px;
  right: -52px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: rgba(0, 153, 255, 0.045);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 29px rgba(0, 72, 120, 0.11),
    0 3px 7px rgba(0, 72, 120, 0.05);
}

.feature-card-number {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 16px;
  color: rgba(0, 153, 255, 0.14);
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.feature-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    #e8f7ff 0%,
    #d2efff 100%
  );
  box-shadow: inset 0 0 0 1px rgba(0, 153, 255, 0.12);
}

.feature-icon img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.feature-card-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: 4px;
}

.feature-card-title {
  margin: 0 0 10px;
  padding-right: 18px;
  color: #15384e;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.feature-card-title span {
  color: #007fcf;
  font-size: 19px;
}

.feature-card-text {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  color: #15384e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.feature-card-content .feature-card-text {
  margin-top: 0;
}

.feature-rate-point {
  margin: 8px 0 0;
  padding-left: 14px;
  border-left: 3px solid #8cd1ff;
  color: #536a79;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.feature-rate-point strong {
  color: #007fcf;
  font-size: 14px;
  font-weight: 700;
}

.feature-rate-point + .feature-rate-point {
  border-left-color: #0099ff;
}

.feature-note {
  margin: 20px 0 0;
  color: #6d7f8b;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

.feature-break-mobile {
  display: none;
}

/* タブレット */
/* >>>>>>>>>>>>>>>>>>> [特徴タブレットMQ] screen and (max-width: 960px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 960px) {
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [特徴MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .feature-section {
    padding: 52px 12px;
  }

  .feature-section::before {
    top: 90px;
    right: -130px;
    width: 230px;
    height: 230px;
    border-width: 32px;
  }

  .feature-heading {
    margin-bottom: 28px;
  }

  .feature-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 12px;
  }

  .feature-title {
    font-size: 27px;
    line-height: 1.5;
  }

  .feature-heading-text {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.7;
  }

  .feature-list {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0 12px 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .feature-list::-webkit-scrollbar {
    display: none;
  }

  .feature-scroll-guide {
    display: block;
    min-height: 16px;
    margin: 5px 2px 0;
    color: #0078c9;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .feature-scroll-guide.is-scroll-start::after {
    content: "右にスライドできます　→";
    display: block;
    text-align: right;
  }

  .feature-scroll-guide.is-scroll-middle::after {
    content: "←　左右にスライドできます　→";
    display: block;
    text-align: center;
  }

  .feature-scroll-guide.is-scroll-end::after {
    content: "←　左にスライドできます";
    display: block;
    text-align: left;
  }

  .feature-scrollbar {
    position: relative;
    display: block;
    width: 100%;
    height: 6px;
    margin: 8px 0 0;
    overflow: hidden;
    border-radius: 9999px;
    background: #d8eaf5;
  }

  .feature-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 36px;
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(
      to right,
      #4fc3ff 0%,
      #0099ff 100%
    );
    transform: translateX(0);
    will-change: transform;
  }

  .feature-card {
    flex: 0 0 72vw;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 13px;
    width: 72vw;
    min-width: 230px;
    max-width: 280px;
    min-height: 0;
    padding: 20px 16px 18px;
    border-radius: 15px;
  }

  .feature-card:hover {
    transform: none;
  }

  .feature-card-number {
    top: 12px;
    right: 13px;
    font-size: 28px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .feature-icon img {
    width: 41px;
    height: 41px;
  }

  .feature-card-content {
    padding-top: 3px;
  }

  .feature-card-title {
    margin-bottom: 8px;
    padding-right: 24px;
    font-size: 16px;
    line-height: 1.45;
  }

  .feature-card-title span {
    font-size: 18px;
  }

  .feature-card-text {
    margin-top: 11px;
    font-size: 15px;
    line-height: 1.65;
  }

  .feature-card-content .feature-card-text {
    margin-top: 0;
  }

  .feature-rate-point {
    margin-top: 6px;
    padding-left: 11px;
    font-size: 11px;
  }

  .feature-rate-point strong {
    font-size: 13px;
  }

  .feature-note {
    margin-top: 16px;
    font-size: 10px;
    text-align: left;
  }

  .feature-break-mobile {
    display: inline;
  }
}

@keyframes feature-scroll-arrow {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

/* ======================================== ■他社比較セクション ======================================== */
.comparison-section {
  position: relative;
  width: 100%;
  padding: 76px 20px;
  overflow: hidden;
  background-color: #f3faff;
  background-image:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.94) 0,
      rgba(255, 255, 255, 0.94) 28%,
      rgba(255, 255, 255, 0.55) 68%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 153, 255, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(0, 153, 255, 0.1) 1px,
      transparent 1px
    );
  background-position:
    center,
    center,
    center;
  background-size:
    100% 100%,
    40px 40px,
    40px 40px;
  box-sizing: border-box;
}

.comparison-section[data-enabled="off"] {
  display: none;
}

.comparison-section::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 430px;
  height: 280px;
  background: linear-gradient(
    135deg,
    rgba(0, 153, 255, 0.02) 0%,
    rgba(0, 153, 255, 0.12) 100%
  );
  clip-path: polygon(
    0 82%,
    23% 68%,
    42% 73%,
    66% 42%,
    82% 50%,
    100% 12%,
    100% 100%,
    0 100%
  );
  pointer-events: none;
}

.comparison-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.comparison-heading {
  margin-bottom: 40px;
  text-align: center;
}

.comparison-heading-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 18px;
  border: 1px solid #9edaff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 10px rgba(0, 99, 165, 0.08);
}

.comparison-title {
  margin: 0;
  color: #062a42;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.comparison-title span {
  color: #0099ff;
}

.comparison-heading-text {
  margin: 12px 0 0;
  color: #15384e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.comparison-card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid #d8effd;
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 16px 38px rgba(0, 72, 120, 0.08),
    0 3px 8px rgba(0, 72, 120, 0.04);
  box-sizing: border-box;
}

.comparison-figure {
  margin: 0;
}

.comparison-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.comparison-description {
  position: relative;
  margin: 0 10px;
  padding: 31px 30px 25px;
  border-top: 1px solid #dceef9;
  box-sizing: border-box;
}

.comparison-description::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 92px;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    #63c5ff 0%,
    #0099ff 100%
  );
}

.comparison-description-lead {
  margin: 0 0 16px;
  color: #15384e;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.65;
}

.comparison-description-lead span {
  color: #007fcf;
}

.comparison-description-text {
  margin: 0;
  color: #15384e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.comparison-description-text + .comparison-description-text {
  margin-top: 12px;
}

.comparison-note {
  margin: 14px 0 0;
  color: #6d7f8b;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

.comparison-break-mobile {
  display: none;
}

/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [他社比較MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .comparison-section {
    padding: 54px 12px;
  }

  .comparison-section::before {
    right: -90px;
    bottom: 0;
    width: 310px;
    height: 210px;
  }

  .comparison-heading {
    margin-bottom: 28px;
  }

  .comparison-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 12px;
  }

  .comparison-title {
    font-size: 27px;
    line-height: 1.5;
  }

  .comparison-heading-text {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.75;
  }

  .comparison-card {
    padding: 8px;
    border-radius: 17px;
  }

  .comparison-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 11px;
  }

  .comparison-description {
    margin: 0 6px;
    padding: 25px 10px 18px;
  }

  .comparison-description::before {
    width: 68px;
  }

  .comparison-description-lead {
    margin-bottom: 13px;
    font-size: 18px;
    line-height: 1.65;
  }

  .comparison-description-text {
    font-size: 16px;
    line-height: 1.85;
  }

  .comparison-description-text + .comparison-description-text {
    margin-top: 10px;
  }

  .comparison-note {
    margin-top: 11px;
    font-size: 10px;
    text-align: left;
  }

  .comparison-break-mobile {
    display: inline;
  }
}



/* ======================================== ■高換金率の理由セクション ======================================== */
.high-rate-section {
  position: relative;
  width: 100%;
  padding: 76px 20px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.72) 28%,
      transparent 28%,
      transparent 72%,
      rgba(255, 255, 255, 0.46) 72%,
      rgba(255, 255, 255, 0.46) 100%
    ),
    linear-gradient(
      180deg,
      #eaf7ff 0%,
      #dff3ff 52%,
      #edf9ff 100%
    );
  box-sizing: border-box;
}

.high-rate-section[data-enabled="off"] {
  display: none;
}

.high-rate-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -130px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(0, 153, 255, 0.12);
  filter: blur(45px);
  pointer-events: none;
}

.high-rate-section::after {
  content: "";
  position: absolute;
  right: -145px;
  bottom: -165px;
  width: 350px;
  height: 350px;
  border: 42px solid rgba(0, 153, 255, 0.075);
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

.high-rate-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.high-rate-heading {
  margin-bottom: 42px;
  text-align: center;
}

.high-rate-heading-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 18px;
  border: 1px solid #9edaff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 10px rgba(0, 99, 165, 0.08);
}

.high-rate-title {
  margin: 0;
  color: #062a42;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.high-rate-title span {
  color: #0099ff;
}

.high-rate-heading-text {
  max-width: 720px;
  margin: 12px auto 0;
  color: #15384e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.high-rate-scroll-guide {
  display: none;
}

.high-rate-scrollbar {
  display: none;
}

.high-rate-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.high-rate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 366px;
  padding: 22px 22px 24px;
  overflow: hidden;
  border: 1px solid #d4ecfa;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 12px 28px rgba(0, 72, 120, 0.075),
    0 3px 7px rgba(0, 72, 120, 0.04);
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.high-rate-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    #8cd1ff 0%,
    #0099ff 100%
  );
}

.high-rate-card::after {
  content: "";
  position: absolute;
  top: -58px;
  right: -58px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(0, 153, 255, 0.045);
  pointer-events: none;
}

.high-rate-card:hover {
  transform: translateY(-4px);
  border-color: #a8ddff;
  box-shadow:
    0 16px 33px rgba(0, 72, 120, 0.11),
    0 4px 8px rgba(0, 72, 120, 0.05);
}

.high-rate-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.high-rate-card-heading {
  flex: 1;
  min-width: 0;
}

.high-rate-number {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #a9ddff;
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      #eef9ff 0%,
      #dff3ff 100%
    );
  color: #007fcf;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  box-sizing: border-box;
}

.high-rate-keyword {
  margin: 3px 0 0;
  color: rgba(0, 127, 207, 0.55);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.high-rate-image-wrap {
  position: relative;
  z-index: 1;
  width: calc(100% - 56px);
  max-width: 220px;
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 14px;
  background: #edf4fa;
  aspect-ratio: 3 / 2;
}

.high-rate-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.high-rate-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #15384e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.high-rate-card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #15384e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

.high-rate-summary {
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid #b9e4ff;
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f0f9ff 100%
    );
  text-align: center;
  box-shadow: 0 9px 23px rgba(0, 72, 120, 0.06);
  box-sizing: border-box;
}

.high-rate-summary-label {
  margin: 0 0 6px;
  color: #15384e;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.high-rate-summary-text {
  margin: 0;
  color: #15384e;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.65;
}

.high-rate-summary-text span {
  color: #007fcf;
}

.high-rate-break-mobile {
  display: none;
}

/* タブレット */
/* >>>>>>>>>>>>>>>>>>> [高換金率の理由タブレットMQ] screen and (max-width: 960px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 960px) {
  .high-rate-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [高換金率の理由MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .high-rate-section {
    padding: 54px 12px;
  }

  .high-rate-section::before {
    top: -100px;
    left: -120px;
    width: 280px;
    height: 280px;
    filter: blur(36px);
  }

  .high-rate-section::after {
    right: -135px;
    bottom: -120px;
    width: 270px;
    height: 270px;
    border-width: 34px;
  }

  .high-rate-heading {
    margin-bottom: 28px;
  }

  .high-rate-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 12px;
  }

  .high-rate-title {
    font-size: 27px;
    line-height: 1.5;
  }

  .high-rate-heading-text {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.75;
  }

  .high-rate-scroll-guide {
    display: block;
    min-height: 16px;
    margin: 5px 2px 0;
    color: #0078c9;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .high-rate-scroll-guide.is-scroll-start::after {
    content: "右にスライドできます　→";
    display: block;
    text-align: right;
  }

  .high-rate-scroll-guide.is-scroll-middle::after {
    content: "←　左右にスライドできます　→";
    display: block;
    text-align: center;
  }

  .high-rate-scroll-guide.is-scroll-end::after {
    content: "←　左にスライドできます";
    display: block;
    text-align: left;
  }

  .high-rate-list {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0 12px 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .high-rate-list::-webkit-scrollbar {
    display: none;
  }

  .high-rate-scrollbar {
    position: relative;
    display: block;
    width: 100%;
    height: 6px;
    margin: 8px 0 0;
    overflow: hidden;
    border-radius: 9999px;
    background: #d8eaf5;
  }

  .high-rate-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 36px;
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(
      to right,
      #4fc3ff 0%,
      #0099ff 100%
    );
    transform: translateX(0);
    will-change: transform;
  }

  .high-rate-card {
    flex: 0 0 72vw;
    width: 72vw;
    min-width: 230px;
    max-width: 280px;
    min-height: 0;
    padding: 19px 17px 19px;
    border-radius: 15px;
    scroll-snap-align: start;
  }

  .high-rate-card:hover {
    transform: none;
  }

  .high-rate-card-top {
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
  }

  .high-rate-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 17px;
  }

  .high-rate-keyword {
    font-size: 11px;
  }

  .high-rate-image-wrap {
    width: calc(100% - 64px);
    max-width: 230px;
    margin: 0 auto 14px;
    border-radius: 13px;
  }

  .high-rate-image {
    width: 100%;
    height: 100%;
  }

  .high-rate-card-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
  }

  .high-rate-card-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .high-rate-summary {
    margin-top: 18px;
    padding: 20px 16px;
    border-radius: 15px;
  }

  .high-rate-summary-label {
    font-size: 15px;
  }

  .high-rate-summary-text {
    font-size: 17px;
    line-height: 1.6;
  }

  .high-rate-break-mobile {
    display: inline;
  }
}

@keyframes high-rate-scroll-arrow {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}


/* ======================================== ■利用者レビューセクション ======================================== */

#reviews {
  scroll-margin-top: 100px;
}

#reviews[data-enabled="off"] {
  display: none;
}

.reviews-section {
  position: relative;
  padding: 56px 0 48px;
  overflow: hidden;
  border-top: 1px solid rgba(0, 153, 255, 0.13);
  border-bottom: 1px solid rgba(0, 153, 255, 0.13);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0, 153, 255, 0.045) 0,
      rgba(0, 153, 255, 0.045) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(
      180deg,
      #edf8ff 0%,
      #f5fbff 50%,
      #edf8ff 100%
    );
}

.reviews-section::before,
.reviews-section::after {
  content: none;
}

.reviews-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.reviews-heading {
  margin-bottom: 26px;
  text-align: center;
}

.reviews-heading-label {
  display: inline-block;
  margin: 0 0 9px;
  padding: 5px 18px;
  border: 1px solid #9fd9fb;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  box-shadow: 0 3px 10px rgba(0, 96, 160, 0.05);
}

.reviews-title {
  margin: 0;
  color: #102033;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.reviews-title span {
  color: #0099ff;
}

.reviews-heading-text {
  margin: 12px auto 0;
  color: #15384e;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.reviews-break-mobile {
  display: none;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 18px;
  border: 1px solid rgba(0, 153, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(6, 42, 66, 0.08);
  box-sizing: border-box;
}

.reviews-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 20px 8px 8px;
  border-right: 1px solid #e4eef7;
  text-align: center;
  box-sizing: border-box;
}

.reviews-overall-label {
  margin: 0 0 2px;
  color: #526775;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.reviews-overall-score {
  display: flex;
  gap: 4px;
  align-items: baseline;
  justify-content: center;
  margin-top: 1px;
  color: #102033;
}

.reviews-overall-score strong {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
}

.reviews-overall-score span {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.reviews-overall-stars {
  position: relative;
  margin-top: 3px;
  color: #ffb800;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1px;
}

.reviews-overall-note {
  margin: 7px 0 0;
  color: #8090a0;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 400;
}

.reviews-score-list {
  display: grid;
  gap: 8px;
  align-content: center;
  margin: 0;
}

.reviews-score-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.reviews-score-row dt {
  margin: 0;
  color: #40566c;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  white-space: nowrap;
}

.reviews-score-row dd {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.reviews-score-row strong {
  color: #0099ff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  text-align: right;
}

.reviews-score-bar {
  display: block;
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaf0f5;
}

.reviews-score-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    to right,
    #8cd1ff 0%,
    #0099ff 100%
  );
}

.reviews-slider-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 13px;
}

.reviews-slider-label {
  margin: 0;
  color: #102033;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

.reviews-slider-description {
  margin: 3px 0 0;
  color: #76889a;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 400;
}

.reviews-slider-buttons {
  display: flex;
  gap: 8px;
}

.reviews-slider-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(0, 153, 255, 0.25);
  border-radius: 50%;
  background: #ffffff;
  color: #0099ff;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 5px 15px rgba(6, 42, 66, 0.08);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.reviews-slider-button:hover {
  background: #0099ff;
  color: #ffffff;
  transform: translateY(-2px);
}

.reviews-slider-button:focus-visible {
  outline: 3px solid rgba(0, 153, 255, 0.25);
  outline-offset: 3px;
}

.reviews-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(390px, 450px);
  gap: 16px;
  width: 100%;
  padding: 2px 2px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 153, 255, 0.45) rgba(0, 153, 255, 0.08);
  box-sizing: border-box;
}

.reviews-slider::-webkit-scrollbar {
  height: 7px;
}

.reviews-slider::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(0, 153, 255, 0.08);
}

.reviews-slider::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 153, 255, 0.45);
}

.review-card {
  position: relative;
  min-width: 0;
  padding: 19px;
  overflow: hidden;
  border: 1px solid rgba(0, 153, 255, 0.13);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 42, 66, 0.09);
  scroll-snap-align: start;
  box-sizing: border-box;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 5px;
  border-radius: 0 20px 0 999px;
  background: linear-gradient(
    to right,
    #8cd1ff 0%,
    #0099ff 100%
  );
}

.review-card-header {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    #e4f5ff 0%,
    #dce8ff 100%
  );
}

.review-avatar-image {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.review-user-name {
  margin: 0;
  color: #102033;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.review-user-profile {
  margin: 3px 0 0;
  overflow: hidden;
  color: #40566c;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.review-rating-stars {
  color: #ffb800;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.review-rating-number {
  margin-top: 4px;
  color: #e79b00;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.review-application {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 15px 0 0;
  padding: 11px 8px;
  border-radius: 13px;
  background: #f5faff;
}

.review-application-item {
  min-width: 0;
  padding: 0 8px;
  border-right: 1px solid #dcebf6;
  text-align: center;
}

.review-application-item:last-child {
  border-right: 0;
}

.review-application-item dt {
  margin: 0;
  color: #40566c;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
}

.review-application-item dd {
  margin: 3px 0 0;
  overflow: hidden;
  color: #143f68;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-application-item dd strong {
  color: #0099ff;
  font-weight: 800;
}

.review-reason {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin-top: 12px;
}

.review-reason-label,
.review-comment-label {
  margin: 0;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(0, 153, 255, 0.1);
  color: #0078c9;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  white-space: nowrap;
}

.review-comment-label {
  width: max-content;
}

.review-reason-text {
  margin: 1px 0 0;
  color: #15384e;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.review-comment {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #edf1f5;
}

.review-comment-title {
  min-width: 0;
  margin: 0;
  color: #102033;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.review-comment-text {
  grid-column: 1 / -1;
  margin: 7px 0 0;
  color: #15384e;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.reviews-permission-note {
  margin: 10px 0 0;
  color: #8292a2;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 400;
  text-align: right;
}

/* タブレット */
/* >>>>>>>>>>>>>>>>>>> [利用者レビューMQ] screen and (max-width: 1023px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 1023px) {
  .reviews-section {
    padding: 50px 0 44px;
  }

  .reviews-inner {
    width: min(100% - 32px, 900px);
  }

  .reviews-title {
    font-size: clamp(25px, 4.8vw, 38px);
  }

  .reviews-slider {
    grid-auto-columns: minmax(360px, 420px);
  }
}

/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [利用者レビューMQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .reviews-section {
    padding: 38px 0 34px;
  }

  .reviews-inner {
    width: calc(100% - 20px);
  }

  .reviews-heading {
    margin-bottom: 20px;
  }

  .reviews-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 10px;
  }

  .reviews-title {
    font-size: clamp(22px, 7vw, 29px);
    line-height: 1.4;
  }

  .reviews-break-mobile {
    display: block;
  }

  .reviews-heading-text {
    max-width: 330px;
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.65;
  }

  .reviews-summary {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 22px;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .reviews-overall {
    padding: 5px 10px 5px 0;
  }

  .reviews-overall-label {
    font-size: 10px;
  }

  .reviews-overall-score {
    gap: 2px;
  }

  .reviews-overall-score strong {
    font-size: 29px;
  }

  .reviews-overall-score span {
    font-size: 11px;
  }

  .reviews-overall-stars {
    font-size: 14px;
    letter-spacing: 0;
  }

  .reviews-overall-note {
    margin-top: 5px;
    font-size: 8px;
  }

  .reviews-score-list {
    gap: 6px;
  }

  .reviews-score-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 6px;
  }

  .reviews-score-row dt {
    font-size: 9px;
  }

  .reviews-score-row dd {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 5px;
  }

  .reviews-score-row strong {
    font-size: 9px;
  }

  .reviews-score-bar {
    height: 5px;
  }

  .reviews-slider-heading {
    align-items: center;
    margin-bottom: 10px;
  }

  .reviews-slider-label {
    font-size: 14px;
  }

  .reviews-slider-description {
    font-size: 9px;
  }

  .reviews-slider-buttons {
    gap: 5px;
  }

  .reviews-slider-button {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .reviews-slider {
    grid-auto-columns: calc(100vw - 42px);
    gap: 10px;
    padding-bottom: 13px;
  }

  .review-card {
    padding: 15px;
    border-radius: 16px;
  }

  .review-card::before {
    width: 90px;
    height: 4px;
    border-radius: 0 16px 0 999px;
  }

  .review-card-header {
    grid-template-columns: 39px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .review-avatar {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .review-avatar-image {
    width: 22px;
    height: 22px;
  }

  .review-user-name {
    font-size: 16px;
  }

  .review-user-profile {
    margin-top: 2px;
    font-size: 13px;
  }

  .review-rating-stars {
    font-size: 10px;
  }

  .review-rating-number {
    margin-top: 3px;
    font-size: 14px;
  }

  .review-application {
    margin-top: 11px;
    padding: 9px 3px;
    border-radius: 10px;
  }

  .review-application-item {
    padding: 0 4px;
  }

  .review-application-item dt {
    font-size: 11px;
  }

  .review-application-item dd {
    font-size: 14px;
  }

  .review-reason {
    gap: 6px;
    margin-top: 10px;
  }

  .review-reason-label,
  .review-comment-label {
    padding: 2px 5px;
    font-size: 11px;
  }

  .review-comment-label {
    margin-bottom: 0;
  }

  .review-reason-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .review-comment {
    margin-top: 10px;
    padding-top: 10px;
  }

  .review-comment-title {
    font-size: 16px;
  }

  .review-comment-text {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.65;
  }

  .reviews-permission-note {
    margin-top: 8px;
    font-size: 8px;
  }
}

/* ======================================== ■利用者分析セクション ======================================== */

.user-analysis-section {
  position: relative;
  padding: 48px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(0, 153, 255, 0.08) 0,
      rgba(0, 153, 255, 0) 24%
    ),
    radial-gradient(
      circle at 94% 86%,
      rgba(0, 153, 255, 0.06) 0,
      rgba(0, 153, 255, 0) 22%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5fbff 100%
    );
}

.user-analysis-section[data-enabled="off"] {
  display: none;
}

.user-analysis-section::before,
.user-analysis-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 153, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.user-analysis-section::before {
  top: 70px;
  left: -110px;
  width: 240px;
  height: 240px;
}

.user-analysis-section::after {
  right: -120px;
  bottom: 20px;
  width: 280px;
  height: 280px;
}

.user-analysis-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 900px);
  margin: 0 auto;
}

.user-analysis-heading {
  margin-bottom: 22px;
  text-align: center;
}

.user-analysis-heading-label {
  display: inline-block;
  margin: 0 0 9px;
  padding: 5px 18px;
  border: 1px solid #9fd9fb;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  box-shadow: 0 3px 10px rgba(0, 96, 160, 0.05);
}

.user-analysis-title {
  margin: 0;
  color: #102033;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.user-analysis-title span {
  color: #0099ff;
}

.user-analysis-heading-text {
  max-width: 660px;
  margin: 10px auto 0;
  color: #102033;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.user-analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  align-items: stretch;
}

.user-analysis-research-note {
  margin-top: 14px;
  color: #7a8b9b;
  font-size: 10px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}

.user-analysis-research-note p {
  margin: 0;
}

.user-analysis-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(0, 153, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 28px rgba(6, 42, 66, 0.07);
  box-sizing: border-box;
}

.user-analysis-card-heading {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.user-analysis-card-label {
  margin: 0 0 3px;
  color: #0099ff;
  font-size: 9px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.user-analysis-card-title {
  margin: 0;
  color: #102033;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.user-analysis-card-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border: 1px solid rgba(0, 153, 255, 0.12);
  border-radius: 999px;
  background: #eef8ff;
  color: #0088e8;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  white-space: nowrap;
}

.user-analysis-age-content {
  display: grid;
  flex: 1;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.user-analysis-donut {
  --user-analysis-donut-reveal: 0deg;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 196px;
  margin: 0 auto;
  border-radius: 50%;
  background:
    conic-gradient(
      #0099ff 0% 31%,
      #ffbd45 31% 54%,
      #38c7a1 54% 72%,
      #ff937d 72% 84%,
      #a993d8 84% 94%,
      #91a2b2 94% 100%
    );
  box-shadow: 0 8px 20px rgba(6, 42, 66, 0.09);
}

.user-analysis-donut::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 153, 255, 0.05);
}

.user-analysis-donut::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(
      transparent 0deg var(--user-analysis-donut-reveal),
      #ffffff var(--user-analysis-donut-reveal) 360deg
    );
  pointer-events: none;
}


.user-analysis-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.user-analysis-legend-item {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 2px 7px;
  align-items: center;
  padding: 8px 9px;
  border: 1px solid rgba(0, 153, 255, 0.05);
  border-radius: 10px;
  background: #f4f9fd;
}

.user-analysis-legend-color {
  display: block;
  grid-row: 1 / 3;
  width: 7px;
  height: 27px;
  border-radius: 999px;
}

.user-analysis-legend-color-20 {
  background: #0099ff;
}

.user-analysis-legend-color-30 {
  background: #ffbd45;
}

.user-analysis-legend-color-40 {
  background: #38c7a1;
}

.user-analysis-legend-color-50 {
  background: #ff937d;
}

.user-analysis-legend-color-60 {
  background: #a993d8;
}

.user-analysis-legend-color-other {
  background: #91a2b2;
}

.user-analysis-legend-name {
  color: #40566c;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
}

.user-analysis-legend-item strong {
  grid-column: 2;
  color: #102033;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 800;
}

.user-analysis-gender-card {
  min-height: 0;
}

.user-analysis-gender-main {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1fr) 66px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 23px 18px;
  border: 1px solid rgba(0, 153, 255, 0.08);
  border-radius: 15px;
  background: #f4f9fd;
}

.user-analysis-gender-person {
  display: flex;
  gap: 11px;
  align-items: center;
}

.user-analysis-gender-person-female {
  justify-content: flex-end;
}

.user-analysis-gender-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.user-analysis-gender-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.user-analysis-gender-person-male .user-analysis-gender-icon {
  background: #e3f4ff;
  color: #008be8;
}

.user-analysis-gender-person-female .user-analysis-gender-icon {
  background: #fff0f4;
  color: #ef668a;
}

.user-analysis-gender-person p {
  margin: 0 0 3px;
  color: #52687d;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
}

.user-analysis-gender-person strong {
  color: #102033;
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
}

.user-analysis-gender-person strong span {
  margin-left: 1px;
  font-size: 12px;
}

.user-analysis-gender-center {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  justify-items: center;
  color: #98a7b6;
  font-size: 8px;
  line-height: 1;
  font-weight: 700;
}

.user-analysis-gender-center i {
  display: block;
  width: 1px;
  height: 25px;
  background: rgba(0, 153, 255, 0.18);
}

.user-analysis-gender-bar {
  display: flex;
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaf0f5;
}

.user-analysis-gender-bar-male {
  width: 52%;
  background: #0099ff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.user-analysis-gender-bar-female {
  width: 48%;
  background: #ff78f3;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.85s;
}

.user-analysis-section.is-chart-animated .user-analysis-gender-bar-male,
.user-analysis-section.is-chart-animated .user-analysis-gender-bar-female {
  transform: scaleX(1);
}

.user-analysis-card-note {
  margin: 13px 0 0;
  padding-top: 11px;
  border-top: 1px solid rgba(0, 153, 255, 0.08);
  color: #65798d;
  font-size: 10px;
  line-height: 1.6;
  font-weight: 400;
}

.user-analysis-bar-list {
  display: grid;
  flex: 1;
  align-content: center;
  gap: 9px;
}

.user-analysis-bar-row {
  min-width: 0;
}

.user-analysis-bar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.user-analysis-bar-heading span {
  color: #40566c;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
}

.user-analysis-bar-heading strong {
  color: #60768b;
  font-size: 9px;
  line-height: 1.3;
  font-weight: 700;
}

.user-analysis-bar-track {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaf1f6;
}

.user-analysis-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.user-analysis-section.is-chart-animated .user-analysis-bar-fill {
  transform: scaleX(1);
}

.user-analysis-bar-row:nth-child(1) .user-analysis-bar-fill {
  transition-delay: 0.20s;
}

.user-analysis-bar-row:nth-child(2) .user-analysis-bar-fill {
  transition-delay: 0.35s;
}

.user-analysis-bar-row:nth-child(3) .user-analysis-bar-fill {
  transition-delay: 0.50s;
}

.user-analysis-bar-row:nth-child(4) .user-analysis-bar-fill {
  transition-delay: 0.65s;
}

.user-analysis-bar-row:nth-child(5) .user-analysis-bar-fill {
  transition-delay: 0.80s;
}

.user-analysis-bar-row:nth-child(6) .user-analysis-bar-fill {
  transition-delay: 0.95s;
}

.user-analysis-bar-row:nth-child(7) .user-analysis-bar-fill {
  transition-delay: 1.10s;
}

.user-analysis-bar-fill-01 {
  background: linear-gradient(
    to right,
    #55c1ff 0%,
    #0099ff 100%
  );
}

.user-analysis-bar-fill-02 {
  background: #38c7a1;
}

.user-analysis-bar-fill-03 {
  background: #ffbd45;
}

.user-analysis-bar-fill-04 {
  background: #ff937d;
}

.user-analysis-bar-fill-05 {
  background: #a993d8;
}

.user-analysis-bar-fill-06 {
  background: #657fce;
}

.user-analysis-bar-fill-07 {
  background: #91a2b2;
}

.user-analysis-purpose .user-analysis-bar-list {
  flex: 1;
}

.user-analysis-purpose-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.user-analysis-purpose-fill-01 {
  background: linear-gradient(
    to right,
    #ff7c91 0%,
    #ff5f7b 100%
  );
}

.user-analysis-purpose-fill-02 {
  background: #a762bd;
}

.user-analysis-purpose-fill-03 {
  background: #ffd43b;
}

.user-analysis-purpose-fill-04 {
  background: #00b96b;
}

.user-analysis-purpose-fill-05 {
  background: #1663b7;
}

.user-analysis-purpose-fill-06 {
  background: #149cff;
}

.user-analysis-purpose-fill-07 {
  background: #91a2b2;
}

.user-analysis-purpose-total {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin: 13px 0 0;
  padding-top: 11px;
  border-top: 1px solid rgba(0, 153, 255, 0.08);
  color: #65798d;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
}

.user-analysis-purpose-total strong {
  color: #0099ff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}


/* タブレット */
/* >>>>>>>>>>>>>>>>>>> [利用者分析MQ] screen and (max-width: 1023px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 1023px) {
  .user-analysis-section {
    padding: 42px 0 38px;
  }

  .user-analysis-inner {
    width: min(100% - 32px, 900px);
  }

  .user-analysis-title {
    font-size: clamp(25px, 4.6vw, 38px);
  }

  .user-analysis-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .user-analysis-card {
    height: auto;
  }

  .user-analysis-age-content {
    grid-template-columns: 220px minmax(0, 1fr);
    max-width: 650px;
    margin: 0 auto;
  }

  .user-analysis-gender-main {
    max-width: 620px;
    margin: 0 auto;
  }

}


/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [利用者分析MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .user-analysis-section {
    padding: 34px 0 30px;
  }

  .user-analysis-section::before {
    top: 60px;
    left: -100px;
    width: 190px;
    height: 190px;
  }

  .user-analysis-section::after {
    right: -100px;
    bottom: 50px;
    width: 210px;
    height: 210px;
  }

  .user-analysis-inner {
    width: calc(100% - 20px);
  }

  .user-analysis-heading {
    margin-bottom: 16px;
  }

  .user-analysis-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 10px;
  }

  .user-analysis-title {
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.4;
  }

  .user-analysis-title span {
    display: block;
  }

  .user-analysis-heading-text {
    max-width: 340px;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.65;
  }

  .user-analysis-grid {
    display: flex;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0 12px 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .user-analysis-grid::-webkit-scrollbar {
    display: none;
  }

  .user-analysis-scrollbar {
    position: relative;
    display: block;
    width: 100%;
    height: 6px;
    margin: 8px 0 0;
    overflow: hidden;
    border-radius: 9999px;
    background: #d8eaf5;
  }

  .user-analysis-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 36px;
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(
      to right,
      #4fc3ff 0%,
      #0099ff 100%
    );
    transform: translateX(0);
    will-change: transform;
  }

  .user-analysis-scroll-guide {
    display: block;
    min-height: 16px;
    margin: 5px 2px 0;
    color: #0078c9;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .user-analysis-scroll-guide.is-scroll-start::after {
    content: "右にスライドできます　→";
    display: block;
    text-align: right;
  }

  .user-analysis-scroll-guide.is-scroll-middle::after {
    content: "←　左右にスライドできます　→";
    display: block;
    text-align: center;
  }

  .user-analysis-scroll-guide.is-scroll-end::after {
    content: "←　左にスライドできます";
    display: block;
    text-align: left;
  }

  .user-analysis-card {
    flex: 0 0 72vw;
    width: 72vw;
    min-width: 260px;
    max-width: 320px;
    height: auto;
    padding: 16px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .user-analysis-age {
    flex: 0 0 320px;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
  }

  .user-analysis-card-heading {
    gap: 8px;
    margin-bottom: 14px;
  }

  .user-analysis-card-label {
    font-size: 10px;
  }

  .user-analysis-card-title {
    font-size: 17px;
  }

  .user-analysis-card-badge {
    padding: 5px 9px;
    font-size: 11px;
  }

  .user-analysis-age-content {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .user-analysis-donut {
    width: 120px;
    height: 120px;
  }

  .user-analysis-donut::before {
    width: 67px;
    height: 67px;
  }


  .user-analysis-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .user-analysis-legend-item {
    min-width: 0;
    padding: 7px 6px;
  }

  .user-analysis-legend-color {
    width: 7px;
    height: 24px;
  }

  .user-analysis-legend-name {
    font-size: 10px;
    white-space: nowrap;
  }

  .user-analysis-legend-item strong {
    font-size: 12px;
    white-space: nowrap;
  }

  .user-analysis-gender-main {
    grid-template-columns: 1fr 42px 1fr;
    gap: 8px;
    padding: 16px 10px;
  }

  .user-analysis-gender-person {
    gap: 7px;
  }

  .user-analysis-gender-person-female {
    justify-content: flex-end;
  }

  .user-analysis-gender-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 11px;
  }

  .user-analysis-gender-person p {
    font-size: 11px;
  }

  .user-analysis-gender-person strong {
    font-size: 24px;
  }

  .user-analysis-gender-person strong span {
    font-size: 11px;
  }

  .user-analysis-gender-center {
    font-size: 9px;
  }

  .user-analysis-gender-center i {
    height: 20px;
  }

  .user-analysis-gender-bar {
    height: 7px;
    margin-top: 10px;
  }

  .user-analysis-card-note {
    margin-top: 10px;
    padding-top: 9px;
    font-size: 11px;
    line-height: 1.6;
  }

  .user-analysis-bar-list {
    gap: 8px;
  }

  .user-analysis-bar-heading span {
    font-size: 11px;
  }

  .user-analysis-bar-heading strong {
    font-size: 10px;
  }

  .user-analysis-bar-track {
    height: 7px;
  }



  .user-analysis-purpose-total {
    margin-top: 10px;
    padding-top: 9px;
    font-size: 10px;
  }

  .user-analysis-purpose-total strong {
    font-size: 12px;
  }
}

@keyframes user-analysis-scroll-guide {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}


/* ======================================== ■ご利用の流れセクション ======================================== */
.flow-section {
  position: relative;
  width: 100%;
  padding: 80px 20px 88px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #f4faff 0%,
      #eaf6ff 50%,
      #f8fcff 100%
    );
  box-sizing: border-box;
}

.flow-section[data-enabled="off"] {
  display: none;
}

.flow-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 60px solid rgba(0, 153, 255, 0.035);
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

.flow-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.flow-heading {
  margin-bottom: 44px;
  text-align: center;
}

.flow-heading-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 18px;
  border: 1px solid #9edaff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 10px rgba(0, 99, 165, 0.08);
}

.flow-title {
  margin: 0;
  color: #062a42;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.flow-title span {
  color: #0099ff;
}

.flow-heading-text {
  margin: 14px 0 0;
  color: #536a79;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.flow-section .flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  border: 1px solid #d7edf9;
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 18px 45px rgba(0, 72, 120, 0.08),
    0 4px 12px rgba(0, 72, 120, 0.04);
}

.flow-time-arrow {
  display: grid;
  width: 100%;
  min-height: 62px;
  grid-template-columns: 180px 180px 210px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 64px 10px 28px;
  background:
    linear-gradient(
      to right,
      #eaf7ff 0%,
      #d9f0ff 55%,
      #ffe3e9 82%,
      #ffb8c6 100%
    );
  color: #075b97;
  clip-path: polygon(
    0 0,
    calc(100% - 34px) 0,
    100% 50%,
    calc(100% - 34px) 100%,
    0 100%
  );
  box-sizing: border-box;
  filter: drop-shadow(0 5px 12px rgba(0, 105, 174, 0.1));
}

.flow-time-arrow-label {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}

.flow-time-arrow-item {
  display: flex;
  min-height: 34px;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid #b9dff5;
}

.flow-time-arrow-item-label {
  color: #536a79;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.flow-time-arrow-value {
  color: #0088dc;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.flow-step {
  position: relative;
  min-width: 0;
  padding: 38px 20px 18px;
  box-sizing: border-box;
}

.flow-step + .flow-step::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 22px;
  left: 0;
  width: 1px;
  background: #e0edf5;
}

.flow-step-number {
  position: absolute;
  top: -28px;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 5px solid #eef8ff;
  border-radius: 50%;
  background: #087fc7;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  box-sizing: border-box;
  box-shadow: 0 6px 16px rgba(0, 105, 174, 0.18);
  transform: translateX(-50%);
}

.flow-step-body {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.flow-step-title {
  margin: 0;
  color: #075b97;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.flow-step-main-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 7px 0 8px;
}

.flow-step-main-image {
  display: block;
  width: 100px;
  max-width: 100%;
  height: auto;
}

.flow-step-text {
  margin: 0 0 10px;
  color: #405d70;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.flow-step-contact {
  width: 100%;
  margin: 0 0 10px;
}

.flow-step-apply-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 34px 8px 14px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    #33adff 0%,
    #0099ff 50%,
    #008ae6 100%
  );
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 0 0 2px #0099ff,
    0 5px 12px rgba(0, 153, 255, 0.22);
  box-sizing: border-box;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.flow-step-apply-button-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.flow-step-apply-button-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

.flow-step-phone {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 5px 10px;
  border: 1px solid #deeffa;
  border-radius: 10px;
  background: #ffffff;
  color: #075b97;
  text-decoration: none;
  box-sizing: border-box;
}

.flow-step-phone-icon {
  flex-shrink: 0;
  font-size: 19px;
  line-height: 1;
}

.flow-step-phone-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-step-phone-guide {
  margin-bottom: 1px;
  color: #536a79;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
}

.flow-step-phone-number {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.flow-step-phone-hours {
  margin-top: 1px;
  color: #536a79;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
}

.flow-step-point {
  display: flex;
  width: 100%;
  height: 116px;
  flex-direction: column;
  justify-content: center;
  margin-top: auto;
  padding: 10px 11px;
  border: 1px solid #deeffa;
  border-radius: 13px;
  background: #f3faff;
  box-sizing: border-box;
}

.flow-step-point-label {
  display: block;
  margin-bottom: 4px;
  color: #0088dc;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}

.flow-step-point-text {
  margin: 0;
  color: #31586f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.flow-id-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 10px;
}

.flow-id-item {
  min-width: 0;
  padding: 5px;
  border: 1px solid #e1edf4;
  border-radius: 10px;
  background: #ffffff;
  box-sizing: border-box;
}

.flow-id-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.flow-id-name {
  margin: 4px 0 0;
  color: #31586f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.flow-id-note {
  display: block;
  margin-top: 2px;
  color: #607989;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
}

.flow-brand-groups {
  width: 100%;
  margin: 0 0 10px;
}

.flow-brand-group {
  width: 100%;
}

.flow-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.flow-brand-row-seven {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.flow-brand-row-seven .flow-brand-image {
  max-width: 100%;
}

.flow-brand-item {
  display: flex;
  min-width: 0;
  height: 31px;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border: 1px solid #e8edf1;
  border-radius: 7px;
  background: #ffffff;
  box-sizing: border-box;
}

.flow-brand-image {
  display: block;
  width: 100%;
  max-width: 58px;
  max-height: 22px;
  height: auto;
  object-fit: contain;
}

.flow-bank-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 0 0 7px;
}

.flow-bank-item {
  display: flex;
  min-width: 0;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  padding: 2px 3px;
  border: 1px solid #e1edf4;
  border-radius: 7px;
  background: #ffffff;
  box-sizing: border-box;
}

.flow-bank-image {
  display: block;
  width: 100%;
  max-width: 60px;
  max-height: 19px;
  height: auto;
  object-fit: contain;
}

.flow-bank-note {
  margin: 0 0 10px;
  color: #536a79;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.flow-step-complete {
  border-radius: 0 27px 27px 0;
  background:
    linear-gradient(
      180deg,
      #fff7f9 0%,
      #fffafb 100%
    );
}

.flow-step-complete .flow-step-number {
  background: #ff6684;
  box-shadow: 0 6px 16px rgba(255, 86, 120, 0.2);
}

.flow-step-complete .flow-step-title {
  color: #f04f70;
}

.flow-step-complete .flow-step-point {
  border-color: #ffd9e1;
  background: #ffffff;
}

.flow-step-complete .flow-step-point-label {
  color: #f04f70;
}

/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [ご利用の流れMQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .flow-section {
    padding: 52px 12px 54px;
  }

  .flow-section::before {
    top: -110px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-width: 42px;
  }

  .flow-heading {
    margin-bottom: 24px;
  }

  .flow-scroll-guide {
    display: block;
    min-height: 16px;
    margin: 5px 2px 0;
    color: #0078c9;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .flow-scroll-guide.is-scroll-start::after {
    content: "右にスライドできます　→";
    display: block;
    text-align: right;
  }

  .flow-scroll-guide.is-scroll-middle::after {
    content: "←　左右にスライドできます　→";
    display: block;
    text-align: center;
  }

  .flow-scroll-guide.is-scroll-end::after {
    content: "←　左にスライドできます";
    display: block;
    text-align: left;
  }

  .flow-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 12px;
  }

  .flow-title {
    font-size: 27px;
    line-height: 1.5;
  }

  .flow-heading-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.8;
  }

  .flow-heading-text br {
    display: none;
  }

  .flow-section .flow-steps {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    margin-right: -12px;
    padding: 26px 12px 10px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .flow-section .flow-steps::-webkit-scrollbar {
    display: none;
  }

  .flow-scrollbar {
    position: relative;
    width: 100%;
    height: 6px;
    margin-top: 4px;
    overflow: hidden;
    border-radius: 9999px;
    background: #d8eaf5;
  }

  .flow-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(
      to right,
      #4fc3ff 0%,
      #0099ff 100%
    );
    transform: translateX(0);
  }

  .flow-time-arrow {
    min-height: 54px;
    grid-template-columns: 74px 1fr 1.15fr;
    margin-top: 12px;
    padding: 8px 38px 8px 10px;
    clip-path: polygon(
      0 0,
      calc(100% - 24px) 0,
      100% 50%,
      calc(100% - 24px) 100%,
      0 100%
    );
  }

  .flow-time-arrow-label {
    font-size: 11px;
  }

  .flow-time-arrow-item {
    min-height: 30px;
    gap: 4px;
  }

  .flow-time-arrow-item-label {
    font-size: 10px;
  }

  .flow-time-arrow-value {
    font-size: 16px;
  }

  .flow-step {
    flex: 0 0 82vw;
    max-width: 320px;
    min-width: 0;
    padding: 35px 15px 16px;
    border: 1px solid #d7edf9;
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
      0 10px 28px rgba(0, 72, 120, 0.07),
      0 2px 6px rgba(0, 72, 120, 0.03);
    scroll-snap-align: start;
  }

  .flow-step + .flow-step {
    margin-top: 0;
  }

  .flow-step + .flow-step::before {
    display: none;
  }

  .flow-step + .flow-step::after {
    display: none;
  }

  .flow-step-number {
    top: -25px;
    width: 50px;
    height: 50px;
    border-width: 4px;
    font-size: 21px;
  }

  .flow-step-title {
    font-size: 21px;
  }

  .flow-step-main-visual {
    margin: 6px 0 7px;
  }

  .flow-step-main-image {
    width: 92px;
  }

  .flow-step-text {
    margin-bottom: 9px;
    font-size: 13px;
    line-height: 1.7;
  }

  .flow-step-contact {
    max-width: 360px;
    margin: 0 auto 10px;
  }

  .flow-step-apply-button {
    min-height: 46px;
    padding: 8px 38px 8px 16px;
  }

  .flow-step-apply-button-text {
    font-size: 14px;
  }

  .flow-step-apply-button-arrow {
    right: 17px;
    width: 9px;
    height: 9px;
  }

  .flow-step-phone {
    min-height: 58px;
    margin-top: 8px;
    padding: 5px 10px;
  }

  .flow-step-phone-icon {
    font-size: 19px;
  }

  .flow-step-phone-guide {
    font-size: 9px;
  }

  .flow-step-phone-number {
    font-size: 19px;
  }

  .flow-step-phone-hours {
    font-size: 9px;
  }

  .flow-step-point {
    height: 116px;
    margin-top: auto;
    padding: 10px 11px;
  }

  .flow-id-list {
    max-width: 500px;
    margin: 0 auto 10px;
    gap: 7px;
  }

  .flow-id-item {
    padding: 5px;
  }

  .flow-id-name {
    margin-top: 4px;
    font-size: 10px;
  }

  .flow-id-note {
    margin-top: 2px;
    font-size: 9px;
  }

  .flow-brand-groups {
    max-width: 430px;
    margin: 0 auto 10px;
  }

  .flow-brand-grid {
    gap: 4px;
  }

  .flow-brand-item {
    height: 31px;
  }

  .flow-brand-image {
    max-width: 58px;
    max-height: 22px;
  }

  .flow-bank-grid {
    max-width: 100%;
    margin: 0 auto 7px;
    gap: 4px;
  }

  .flow-bank-item {
    min-height: 27px;
  }

  .flow-bank-image {
    max-width: 60px;
    max-height: 19px;
  }

  .flow-bank-note {
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 1.5;
  }

  .flow-step-complete {
    border-radius: 20px;
    background:
      linear-gradient(
        180deg,
        #fff5f7 0%,
        #ffffff 100%
      );
  }
}

@keyframes flow-scroll-guide {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}



/* ======================================== ■特典セクション ======================================== */
.benefits-section {
  position: relative;
  width: 100%;
  padding: 78px 20px 84px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 7% 12%,
      rgba(255, 205, 79, 0.1) 0,
      rgba(255, 205, 79, 0.1) 160px,
      transparent 161px
    ),
    radial-gradient(
      circle at 95% 34%,
      rgba(255, 126, 153, 0.065) 0,
      rgba(255, 126, 153, 0.065) 180px,
      transparent 181px
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fcff 48%,
      #ffffff 100%
    );
  box-sizing: border-box;
}

.benefits-section[data-enabled="off"] {
  display: none;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 340px;
  height: 340px;
  border: 46px solid rgba(0, 153, 255, 0.035);
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

.benefits-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.benefits-heading {
  margin-bottom: 38px;
  text-align: center;
}

.benefits-heading-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 18px;
  border: 1px solid #9edaff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 10px rgba(0, 99, 165, 0.08);
}

.benefits-title {
  margin: 0;
  color: #062a42;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.benefits-title span {
  color: #0099ff;
}

.benefits-heading-text {
  max-width: 680px;
  margin: 12px auto 0;
  color: #15384e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.benefits-main-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefits-main-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 270px;
  flex-direction: column;
  align-items: center;
  padding: 26px 22px 24px;
  overflow: hidden;
  border: 1px solid #dceef8;
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  box-shadow:
    0 13px 30px rgba(0, 72, 120, 0.07),
    0 3px 7px rgba(0, 72, 120, 0.035);
  box-sizing: border-box;
}

.benefits-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
}

.benefits-main-card-point::before {
  background: linear-gradient(
    to right,
    #ffd35c 0%,
    #ffb92f 100%
  );
}

.benefits-main-card-payment::before {
  background: linear-gradient(
    to right,
    #63c8ff 0%,
    #0099ff 100%
  );
}

.benefits-main-card-private::before {
  background: linear-gradient(
    to right,
    #ff9eb1 0%,
    #ff6684 100%
  );
}

.benefits-main-card::after {
  content: "";
  position: absolute;
  top: -75px;
  right: -75px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  pointer-events: none;
}

.benefits-main-card-point::after {
  background: rgba(255, 202, 69, 0.09);
}

.benefits-main-card-payment::after {
  background: rgba(0, 153, 255, 0.065);
}

.benefits-main-card-private::after {
  background: rgba(255, 102, 132, 0.065);
}

.benefits-main-icon {
  position: relative;
  z-index: 1;
  display: flex;
  width: 150px;
  height: 100px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 22px;
  box-sizing: border-box;
}

.benefits-main-card-point .benefits-main-icon {
  background: #fff8dc;
  box-shadow: inset 0 0 0 1px rgba(255, 188, 45, 0.16);
}

.benefits-main-card-payment .benefits-main-icon {
  background: #eaf8ff;
  box-shadow: inset 0 0 0 1px rgba(0, 153, 255, 0.12);
}

.benefits-main-card-private .benefits-main-icon {
  background: #fff0f3;
  box-shadow: inset 0 0 0 1px rgba(255, 102, 132, 0.12);
}

.benefits-main-icon img {
  display: block;
  width: 132px;
  height: auto;
  object-fit: contain;
}

.benefits-main-content {
  position: relative;
  z-index: 1;
}

.benefits-main-number {
  margin: 0 0 5px;
  color: #7890a0;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.benefits-main-title {
  margin: 0;
  color: #15384e;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

.benefits-main-title span {
  color: #0088dc;
}

.benefits-main-card-point .benefits-main-title span {
  color: #e89b00;
}

.benefits-main-card-private .benefits-main-title span {
  color: #f04f70;
}

.benefits-main-text {
  margin: 12px 0 0;
  color: #15384e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

.benefits-promise {
  margin-top: 44px;
  padding: 34px;
  border: 1px solid #d5ebf8;
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f4faff 100%
    );
  box-shadow:
    0 14px 34px rgba(0, 72, 120, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
}

.benefits-promise-heading {
  margin-bottom: 26px;
  text-align: center;
}

.benefits-promise-heading-sub {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 7px;
  color: #607989;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.benefits-promise-heading-sub::before,
.benefits-promise-heading-sub::after {
  content: "";
  width: 28px;
  height: 1px;
  background: #afd9f2;
}

.benefits-promise-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  margin: 0;
  color: #15384e;
  line-height: 1.25;
}

.benefits-promise-title-number {
  color: #0099ff;
  font-family: Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.benefits-promise-title-main {
  font-size: 25px;
  font-weight: 700;
}

.benefits-promise-title-main span {
  color: #0099ff;
}

.benefits-promise-text {
  margin: 9px 0 0;
  color: #15384e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.benefits-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 13px;
}

.benefits-promise-card {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 0;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-rows: 38px auto auto;
  column-gap: 13px;
  row-gap: 8px;
  align-items: start;
  padding: 18px 16px;
  border: 1px solid #e0eef6;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 14px rgba(0, 72, 120, 0.04);
  box-sizing: border-box;
}

.benefits-promise-icon {
  display: flex;
  width: 62px;
  height: 62px;
  grid-column: 1;
  grid-row: 2;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #edf8ff;
  box-shadow: inset 0 0 0 1px rgba(0, 153, 255, 0.09);
}

.benefits-promise-icon img {
  display: block;
  width: 47px;
  height: 47px;
  object-fit: contain;
}

.benefits-promise-content {
  display: contents;
}

.benefits-promise-number {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding-bottom: 8px;
  background: linear-gradient(
    135deg,
    #38bfff 0%,
    #007fd1 100%
  );
  background-clip: text;
  color: transparent;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-promise-number::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    #7fd6ff 0%,
    #0099ff 100%
  );
}

.benefits-promise-card-title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
  color: #15384e;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.benefits-promise-card-title span {
  color: #0099ff;
}

.benefits-promise-card-text {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: #15384e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.benefits-promise-note {
  grid-column: 2;
  grid-row: 3;
  margin: 0;
  color: #15384e;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

/* タブレット */
/* >>>>>>>>>>>>>>>>>>> [特典タブレットMQ] screen and (max-width: 960px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 960px) {
  .benefits-main-grid {
    grid-template-columns: 1fr;
  }

.benefits-main-card {
  display: grid;
  min-height: 0;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  text-align: left;
}

  .benefits-main-icon {
    margin-bottom: 0;
  }

  .benefits-main-text {
    text-align: left;
  }

  .benefits-promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [特典MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .benefits-section {
    padding: 54px 12px 58px;
  }

  .benefits-section::before {
    top: -110px;
    right: -145px;
    width: 280px;
    height: 280px;
    border-width: 38px;
  }

  .benefits-heading {
    margin-bottom: 26px;
  }

  .benefits-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 12px;
  }

  .benefits-title {
    font-size: 27px;
    line-height: 1.5;
  }

  .benefits-heading-text {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.75;
  }

  .benefits-main-grid {
    gap: 12px;
  }

.benefits-main-card {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 13px;
  padding: 18px 16px;
  border-radius: 16px;
}

.benefits-main-icon {
  width: 120px;
  height: 80px;
  border-radius: 18px;
}

.benefits-main-icon img {
  width: 106px;
  height: auto;
}

  .benefits-main-number {
    font-size: 9px;
  }

  .benefits-main-title {
    font-size: 17px;
  }

  .benefits-main-text {
    grid-column: 1 / -1;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.7;
  }

  .benefits-promise {
    margin-top: 30px;
    padding: 25px 13px 14px;
    border-radius: 19px;
  }

  .benefits-promise-heading {
    margin-bottom: 20px;
  }

  .benefits-promise-heading-sub {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .benefits-promise-heading-sub::before,
  .benefits-promise-heading-sub::after {
    width: 18px;
  }

  .benefits-promise-title {
    gap: 5px;
  }

  .benefits-promise-title-number {
    font-size: 39px;
  }

  .benefits-promise-title-main {
    font-size: 20px;
  }

  .benefits-promise-text {
    max-width: 310px;
    margin: 8px auto 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .benefits-promise-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

.benefits-promise-card {
grid-template-columns: 54px minmax(0, 1fr);
grid-template-rows: 32px auto auto;
column-gap: 11px;
row-gap: 7px;
padding: 14px;
border-radius: 14px;
}

.benefits-promise-icon {
width: 54px;
height: 54px;
border-radius: 14px;
}

.benefits-promise-icon img {
width: 41px;
height: 41px;
}

.benefits-promise-number {
padding-bottom: 6px;
font-size: 26px;
}

.benefits-promise-number::after {
right: 8px;
left: 8px;
height: 2px;
}

.benefits-promise-card-title {
font-size: 16px;
}

.benefits-promise-card-text {
margin-top: 8px;
font-size: 15px;
line-height: 1.65;
}

.benefits-promise-note {
margin-top: 5px;
font-size: 13px;
line-height: 1.5;
}
}


/* ======================================== ■信用情報セクション ======================================== */
.credit-info-section {
  position: relative;
  width: 100%;
  padding: 76px 20px 72px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 7% 12%,
      rgba(0, 153, 255, 0.075) 0,
      rgba(0, 153, 255, 0) 23%
    ),
    radial-gradient(
      circle at 94% 78%,
      rgba(0, 153, 255, 0.055) 0,
      rgba(0, 153, 255, 0) 22%
    ),
    linear-gradient(
      180deg,
      #f2faff 0%,
      #eaf7ff 52%,
      #f2faff 100%
    );
  box-sizing: border-box;
}

.credit-info-section[data-enabled="off"] {
  display: none;
}

.credit-info-section::before {
  content: "";
  position: absolute;
  top: 95px;
  left: -115px;
  width: 245px;
  height: 245px;
  border: 36px solid rgba(0, 153, 255, 0.035);
  border-radius: 50%;
  pointer-events: none;
  box-sizing: border-box;
}

.credit-info-section::after {
  content: "";
  position: absolute;
  right: -105px;
  bottom: 90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(0, 153, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.credit-info-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}

.credit-info-heading {
  max-width: 850px;
  margin: 0 auto 28px;
  text-align: center;
}

.credit-info-heading-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 18px;
  border: 1px solid #9edaff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 10px rgba(0, 99, 165, 0.08);
}

.credit-info-title {
  margin: 0;
  color: #102f46;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.credit-info-title span {
  display: block;
  color: #087fc7;
  font-size: 42px;
}

.credit-info-heading-text {
  margin: 13px 0 0;
  color: #15384e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.credit-info-visual {
  position: relative;
  max-width: 714px;
  margin: 0 auto 24px;
  padding: 0 26px 25px;
  overflow: hidden;
  border: 1px solid #d5e9f6;
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 16px 40px rgba(0, 67, 112, 0.075),
    0 3px 8px rgba(0, 67, 112, 0.03);
  box-sizing: border-box;
}

.credit-info-visual-head {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 -26px 18px;
  padding: 0 24px;
  border-bottom: 1px solid #e5f1f8;
  background:
    linear-gradient(
      90deg,
      #f1f9ff 0%,
      #ffffff 68%
    );
  box-sizing: border-box;
}

.credit-info-visual-label {
  margin: 0;
  color: #087fc7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.credit-info-image-scroll {
  width: 100%;
}

.credit-info-visual-image {
  display: block;
  width: 100%;
  max-width: 660px;
  height: auto;
  margin: 0 auto;
}

.credit-info-image-scroll-guide {
  display: none;
}

.credit-info-point {
  width: 100%;
  max-width: 714px;
  margin: 0 auto 18px;
}

.credit-info-point-heading {
  margin-bottom: 13px;
}

.credit-info-point-heading-body {
  min-width: 0;
}

.credit-info-point-label {
  display: block;
  margin-bottom: 2px;
  color: #0099ff;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
}

.credit-info-point-title {
  margin: 0;
  color: #153f59;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.credit-info-point-content {
  display: block;
}

.credit-info-point-text {
  margin: 0;
  color: #15384e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.credit-info-difference {
  display: grid;
  width: 100%;
  max-width: 714px;
  grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin: 0 auto 18px;
}

.credit-info-difference-item {
  padding: 20px 22px;
  border-radius: 17px;
  box-sizing: border-box;
}

.credit-info-difference-loan {
  border: 1px solid #e1e7eb;
  background: #f7f9fa;
}

.credit-info-difference-papatto {
  border: 1px solid #b5e1ff;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #eef9ff 100%
    );
}

.credit-info-difference-label {
  margin: 0 0 5px;
  color: #71848f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.credit-info-difference-papatto .credit-info-difference-label {
  color: #008bdc;
}

.credit-info-difference-title {
  margin: 0 0 7px;
  color: #314d5e;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.credit-info-difference-title span {
  font-size: 21px;
}

.credit-info-difference-loan .credit-info-difference-title span {
  color: #647985;
}

.credit-info-difference-papatto .credit-info-difference-title span {
  color: #008bdc;
}

.credit-info-difference-text {
  margin: 0;
  color: #15384e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.credit-info-difference-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credit-info-difference-arrow span {
  display: block;
  position: relative;
  width: 36px;
  height: 2px;
  background: #a9bac4;
}

.credit-info-difference-arrow span::before,
.credit-info-difference-arrow span::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #a9bac4;
}

.credit-info-difference-arrow span::before {
  left: 0;
  border-left: 2px solid #a9bac4;
  transform: rotate(-45deg);
}

.credit-info-difference-arrow span::after {
  right: 0;
  border-right: 2px solid #a9bac4;
  transform: rotate(45deg);
}

.credit-info-notice {
  width: 100%;
  max-width: 714px;
  margin: 0 auto;
  padding: 17px 20px;
  border-left: 4px solid #e9b94c;
  border-radius: 0 13px 13px 0;
  background: #fffaf0;
  box-sizing: border-box;
}

.credit-info-notice-head {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 5px;
}

.credit-info-notice-icon {
  display: flex;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7b647;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.credit-info-notice-title {
  margin: 0;
  color: #69531f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.credit-info-notice-text {
  margin: 0;
  color: #6d685c;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.75;
}

.credit-info-break-pc {
  display: block;
}


/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [信用情報MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .credit-info-section {
    padding: 52px 12px 48px;
  }

  .credit-info-section::before {
    top: 70px;
    left: -100px;
    width: 190px;
    height: 190px;
    border-width: 28px;
  }

  .credit-info-section::after {
    right: -100px;
    bottom: 70px;
    width: 190px;
    height: 190px;
  }

  .credit-info-heading {
    margin-bottom: 20px;
  }

  .credit-info-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 12px;
  }

  .credit-info-title {
    font-size: 27px;
    line-height: 1.5;
  }

  .credit-info-title span {
    display: block;
    font-size: 30px;
  }

  .credit-info-heading-text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.75;
  }

  .credit-info-break-pc {
    display: none;
  }

  .credit-info-visual {
    margin-bottom: 16px;
    padding: 0 0 12px;
    border-radius: 16px;
  }

  .credit-info-visual-head {
    display: block;
    min-height: 0;
    margin: 0 0 8px;
    padding: 10px 12px;
  }

  .credit-info-visual-label {
    font-size: 12px;
  }

  .credit-info-image-scroll {
    width: 100%;
    padding: 0 8px 5px;
    box-sizing: border-box;
  }

  .credit-info-image-scroll::-webkit-scrollbar {
    display: none;
  }

  .credit-info-visual-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .credit-info-image-scroll-guide {
    display: none;
  }

  .credit-info-point {
    margin-bottom: 14px;
  }

  .credit-info-point-heading {
    margin-bottom: 10px;
  }

  .credit-info-point-title {
    font-size: 14px;
    line-height: 1.55;
  }

  .credit-info-point-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .credit-info-difference {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 14px;
  }

  .credit-info-difference-item {
    padding: 15px 14px;
    border-radius: 14px;
  }

  .credit-info-difference-title {
    font-size: 15px;
  }

  .credit-info-difference-title span {
    font-size: 18px;
  }

  .credit-info-difference-text {
    font-size: 15px;
  }

  .credit-info-difference-arrow {
    height: 38px;
  }

  .credit-info-difference-arrow span {
    width: 2px;
    height: 25px;
  }

  .credit-info-difference-arrow span::before,
  .credit-info-difference-arrow span::after {
    display: none;
  }

  .credit-info-difference-arrow::before,
  .credit-info-difference-arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #a9bac4;
    border-bottom: 2px solid #a9bac4;
  }

  .credit-info-difference-arrow::before {
    top: 4px;
    transform: translateX(-50%) rotate(225deg);
  }

  .credit-info-difference-arrow::after {
    bottom: 4px;
    transform: translateX(-50%) rotate(45deg);
  }

  .credit-info-notice {
    padding: 13px 12px;
  }

  .credit-info-notice-title {
    font-size: 11px;
  }

  .credit-info-notice-text {
    font-size: 9px;
    line-height: 1.7;
  }
}


/* ======================================== ■注意喚起セクション ======================================== */
.caution-section {
  position: relative;
  width: 100%;
  padding: 78px 20px 82px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #fff9f8 0%,
      #ffffff 48%,
      #fdf0ee 100%
    );
  box-sizing: border-box;
}

.caution-section[data-enabled="off"] {
  display: none;
}

.caution-section::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -140px;
  width: 430px;
  height: 430px;
  border: 54px solid rgba(223, 81, 65, 0.09);
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

.caution-section::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -110px;
  width: 460px;
  height: 460px;
  border: 58px solid rgba(223, 81, 65, 0.09);
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

.caution-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}


.caution-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.caution-heading-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 18px;
  border: 1px solid #f1b6ad;
  border-radius: 9999px;
  background: #ffffff;
  color: #d94d3c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  box-shadow: 0 3px 10px rgba(126, 47, 37, 0.06);
}

.caution-title {
  margin: 0;
  color: #362f2d;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.caution-title span {
  display: block;
  color: #dc4d3d;
  font-size: 42px;
}

.caution-heading-text {
  margin: 13px 0 0;
  color: #362f2d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}


.caution-service {
  width: 100%;
  max-width: 714px;
  margin: 0 auto 30px;
  padding: 28px 28px 30px;
  border: 1px solid #efc5be;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      #fff9f8 0%,
      #ffffff 56%
    );
  box-shadow:
    0 14px 36px rgba(126, 47, 37, 0.07),
    0 3px 8px rgba(126, 47, 37, 0.025);
  box-sizing: border-box;
}

.caution-service-heading {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.caution-service-number {
  display: flex;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #df5141;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(223, 81, 65, 0.2);
}

.caution-service-heading-body {
  min-width: 0;
}

.caution-service-label {
  margin: 0 0 3px;
  color: #cf786d;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
}

.caution-service-title {
  margin: 0;
  color: #362f2d;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
}

.caution-service-title span {
  color: #d83f31;
}

.caution-service-visual {
  position: relative;
  margin-bottom: 20px;
  padding: 0 20px 20px;
  overflow: hidden;
  border: 1px solid #d5e9f6;
  border-radius: 17px;
  background: #ffffff;
  box-sizing: border-box;
}

.caution-service-visual-head {
  display: flex;
  min-height: 48px;
  align-items: center;
  margin: 0 -20px 16px;
  padding: 0 19px;
  border-bottom: 1px solid #e5f1f8;
  background:
    linear-gradient(
      90deg,
      #f1f9ff 0%,
      #ffffff 68%
    );
  box-sizing: border-box;
}

.caution-service-visual-label {
  margin: 0;
  color: #087fc7;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.caution-service-visual-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.caution-service-description {
  padding: 0 2px;
}

.caution-service-text {
  margin: 0;
  color: #362f2d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.caution-service-requirement {
  margin: 14px 0 0;
  padding: 13px 15px;
  border-left: 4px solid #0099e8;
  background: #eef8ff;
  color: #315c75;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}


.caution-fraud {
  width: 100%;
  max-width: 714px;
  margin: 0 auto;
  padding: 30px 30px 28px;
  border: 1px solid #efc5be;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      #fff9f8 0%,
      #ffffff 56%
    );
  box-shadow:
    0 14px 36px rgba(126, 47, 37, 0.07),
    0 3px 8px rgba(126, 47, 37, 0.025);
  box-sizing: border-box;
}

.caution-fraud-heading {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 19px;
}

.caution-fraud-number {
  display: flex;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #df5141;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(223, 81, 65, 0.2);
}

.caution-fraud-heading-body {
  min-width: 0;
}

.caution-fraud-label {
  margin: 0 0 3px;
  color: #cf786d;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
}

.caution-fraud-title {
  margin: 0;
  color: #362f2d;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.caution-fraud-title span {
  color: #d83f31;
}

.caution-fraud-lead {
  color: #362f2d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.caution-fraud-lead p {
  margin: 0;
}

.caution-fraud-lead p + p {
  margin-top: 11px;
}


.caution-fraud-check {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid #efd9d5;
  border-radius: 15px;
  background: #ffffff;
  box-sizing: border-box;
}

.caution-fraud-check-head {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 13px;
}

.caution-fraud-check-icon {
  display: flex;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f7d7d1;
  color: #ce3f31;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.caution-fraud-check-title {
  margin: 0;
  color: #362f2d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.caution-fraud-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.caution-fraud-check-list li {
  position: relative;
  padding: 11px 12px 11px 36px;
  border-radius: 9px;
  background: #fff8f7;
  color: #362f2d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.caution-fraud-check-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #d84435;
  border-bottom: 2px solid #d84435;
  transform: translateY(-65%) rotate(-45deg);
}


.caution-fraud-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0 0;
  padding: 17px 18px;
  border: 1px solid #efb6ae;
  border-left: 5px solid #df5141;
  border-radius: 0 12px 12px 0;
  background: #fff0ee;
  box-sizing: border-box;
}

.caution-fraud-alert-mark {
  display: flex;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border-radius: 50%;
  background: #df5141;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.caution-fraud-alert-text {
  margin: 0;
  color: #8e2c22;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.caution-fraud-alert-text strong {
  color: #c52e20;
  font-size: 14px;
  font-weight: 800;
}


.caution-fraud-policy {
  margin-top: 22px;
  padding: 18px 19px;
  border: 1px solid #e2e8ec;
  border-radius: 13px;
  background: #f7f9fa;
  color: #362f2d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  box-sizing: border-box;
}

.caution-fraud-policy-label {
  margin: 0 0 8px;
  color: #7a858c;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
}

.caution-fraud-policy p {
  margin: 0;
}

.caution-fraud-policy p + p {
  margin-top: 7px;
}


/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [注意喚起MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  .caution-section {
    padding: 54px 12px 58px;
    background:
      linear-gradient(
        180deg,
        #fff9f8 0%,
        #ffffff 48%,
        #fdf0ee 100%
      );
  }

  .caution-section::before {
    top: -70px;
    left: -125px;
    width: 260px;
    height: 260px;
    border-width: 34px;
  }

  .caution-section::after {
    right: -130px;
    bottom: -75px;
    width: 275px;
    height: 275px;
    border-width: 36px;
  }

  .caution-heading {
    margin-bottom: 24px;
  }

  .caution-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 11px;
  }

  .caution-title {
    font-size: 27px;
    line-height: 1.5;
  }

  .caution-title span {
    font-size: 31px;
  }

  .caution-heading-text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.75;
  }


  .caution-service {
    margin-bottom: 22px;
    padding: 21px 16px 20px;
    border-radius: 17px;
  }

  .caution-service-heading {
    gap: 11px;
    margin-bottom: 16px;
  }

  .caution-service-number {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .caution-service-title {
    font-size: 17px;
    line-height: 1.55;
  }

  .caution-service-title span {
    display: block;
  }

  .caution-service-visual {
    margin-bottom: 16px;
    padding: 0 12px 14px;
    border-radius: 13px;
  }

  .caution-service-visual-head {
    min-height: 42px;
    margin: 0 -12px 12px;
    padding: 0 12px;
  }

  .caution-service-visual-label {
    font-size: 11px;
  }

  .caution-service-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .caution-service-requirement {
    margin-top: 12px;
    padding: 11px 12px;
    font-size: 11px;
    line-height: 1.75;
  }


  .caution-fraud {
    padding: 22px 16px 20px;
    border-radius: 17px;
  }

  .caution-fraud-heading {
    gap: 11px;
    margin-bottom: 15px;
  }

  .caution-fraud-number {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .caution-fraud-title {
    font-size: 18px;
    line-height: 1.55;
  }

  .caution-fraud-title span {
    display: block;
  }

  .caution-fraud-lead {
    font-size: 15px;
    line-height: 1.8;
  }


  .caution-fraud-check {
    margin-top: 17px;
    padding: 15px 13px;
    border-radius: 12px;
  }

  .caution-fraud-check-head {
    gap: 7px;
    margin-bottom: 11px;
  }

  .caution-fraud-check-icon {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .caution-fraud-check-title {
    font-size: 15px;
  }

  .caution-fraud-check-list {
    gap: 8px;
  }

  .caution-fraud-check-list li {
    padding: 10px 10px 10px 32px;
    font-size: 14px;
    line-height: 1.7;
  }

  .caution-fraud-check-list li::before {
    left: 12px;
    width: 9px;
    height: 5px;
  }


  .caution-fraud-alert {
    gap: 9px;
    margin-top: 16px;
    padding: 13px 12px;
  }

  .caution-fraud-alert-mark {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .caution-fraud-alert-text {
    font-size: 11px;
    line-height: 1.75;
  }

  .caution-fraud-alert-text strong {
    font-size: 12px;
  }


  .caution-fraud-policy {
    margin-top: 17px;
    padding: 14px 13px;
    border-radius: 11px;
    font-size: 14px;
    line-height: 1.75;
  }

  .caution-fraud-policy-label {
    margin-bottom: 7px;
    font-size: 8px;
  }
}

/* ======================================== ■申し込みフォームセクション ======================================== */

/* ===================▼申し込みフォームヘッダー =================== */
#lp-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 1000;
}

#lp-site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.header-logo img {
  display: block;
  height: 100%;
  max-height: 100%;
  width: auto;
}

.header-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 10px 24px;
  border-radius: 9999px;
  background: #0099ff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  cursor: pointer;
  white-space: normal;
  transition: transform 0.2s ease;
  max-width: 100%;
}

.header-cta::before {
  content: none;
}

.header-cta-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
}

.header-cta:hover {
  transform: translateY(-3px);
  background: linear-gradient(
    110deg,
    #0099ff 0%,
    #0099ff 25%,
    #00c8ff 45%,
    #66ddff 60%,
    #0088ff 80%,
    #0099ff 100%
  );
  background-size: 250% 100%;
  box-shadow: none;
  animation: header-cta-color-wave 1.2s ease-out 1 forwards;
}

.header-cta:active {
  transform: translateY(1px);
  background: linear-gradient(
    110deg,
    #0099ff 0%,
    #0099ff 25%,
    #00c8ff 45%,
    #66ddff 60%,
    #0088ff 80%,
    #0099ff 100%
  );
  background-size: 250% 100%;
  box-shadow: none;
  animation: header-cta-color-wave 0.6s ease-out 1 forwards;
}

@keyframes header-cta-color-wave {
  0% {
    background-position: 100% 0;
  }

  50% {
    background-position: 25% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

body {
  padding-top: 0;
}

body.has-fixed-header {
  padding-top: 100px;
}


/* スマホ */
@media screen and (max-width: 767px) {
  #lp-site-header {
    height: 100px;
  }

  #lp-site-header .container {
    padding: 0 12px;
  }

.header-logo {
  height: 100%;
}

.header-logo img {
  height: 56px;
  max-height: 56px;
  width: auto;
}

.header-cta {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.2;
}

.header-cta-sub {
  font-size: 10px;
  margin-top: 0;
  line-height: 1.2;
}
}





/* ===================▼申し込みフォームフッター=================== */

#footer-section {
  position: relative;
  width: 100%;
  padding: 64px 20px 26px;
  overflow: hidden;
  background-image: url("images/footer-background.png");
  background-position: left bottom;
  box-sizing: border-box;
}


.footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}


/* ロゴ */
.footer-brand {
  display: flex;
  justify-content: center;
}

.footer-logo {
  position: relative;
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 153, 255, 0.2);
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  box-sizing: border-box;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}


/* 区切り */
.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 34px 0 20px;
}

.footer-divider::before,
.footer-divider::after {
  content: "";
  width: 70px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(132, 210, 255, 0.55) 100%
    );
}

.footer-divider::after {
  background:
    linear-gradient(
      90deg,
      rgba(132, 210, 255, 0.55) 0%,
      rgba(255, 255, 255, 0) 100%
    );
}

.footer-divider span {
  display: block;
  width: 6px;
  height: 6px;
  margin: 0 13px;
  border-radius: 50%;
  background: #36b8ff;
  box-shadow: 0 0 0 5px rgba(54, 184, 255, 0.1);
}


/* コピーライト */
.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}


/* スマホ */
@media screen and (max-width: 767px) {
  #footer-section {
    padding: 44px 12px 22px;
  }

  .footer-logo {
    width: 150px;
    height: 150px;
    padding: 16px;
    border-radius: 50%;
  }


  .footer-divider {
    margin: 27px 0 17px;
  }

  .footer-divider::before,
  .footer-divider::after {
    width: 48px;
  }

  .footer-divider span {
    width: 5px;
    height: 5px;
    margin: 0 10px;
    box-shadow: 0 0 0 4px rgba(54, 184, 255, 0.1);
  }


  .footer-copyright {
    font-size: 10px;
    line-height: 1.7;
  }
}



/* ===================▼申し込みフォームメイン=================== */
:root {
  --apply-header-offset: 120px;
}

#apply-section {
  position: relative;
  width: 100%;
  padding: 68px 20px 80px;
  overflow: hidden;
  scroll-margin-top: var(--apply-header-offset);
  background: linear-gradient(
    to right,
    #8cd1ff 0%,
    #0099ff 100%
  );
  box-sizing: border-box;
}

#apply-section[data-enabled="off"] {
  display: none;
}

#apply-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -145px;
  width: 420px;
  height: 420px;
  border: 60px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

#apply-section::after {
  content: "";
  position: absolute;
  right: -125px;
  bottom: -190px;
  width: 400px;
  height: 400px;
  border: 54px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

#apply-section .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: 0;
  background: transparent;
}

#apply-section .apply-form__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
}


/* タイトル */
.apply-form__titlewrap {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.apply-form__heading-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 18px;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.apply-form__title {
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0, 83, 139, 0.18);
}

.apply-form__title span {
  color: #ffffff;
}

.apply-form__heading-text {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
}

.apply-form__warning-text {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 10px 18px 10px 38px;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  background: #ffffff;
  color: #e6473b;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.22),
    0 5px 14px rgba(0, 83, 139, 0.18);
  box-sizing: border-box;
  animation: apply-warning-blink 1.8s ease-in-out infinite;
}

.apply-form__warning-text::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 10px;
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e6473b;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

@keyframes apply-warning-blink {
  0%,
  100% {
    color: #e6473b;
  }

  50% {
    color: transparent;
  }
}


/* 進行ステップ */
.apply-steps {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 28px;
}

.apply-step {
  position: relative;
  display: flex;
  width: calc(100% / 3);
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
}

.apply-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 35px;
  left: calc(50% + 42px);
  width: calc(100% - 84px);
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
}

.apply-step__circle {
  position: relative;
  z-index: 1;
  display: flex;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 3px solid #0099ff;
  border-radius: 50%;
  background: #ffffff;
  color: #0078c9;
  line-height: 1;
  box-shadow: 0 5px 14px rgba(0, 83, 139, 0.18);
  box-sizing: border-box;
}

.apply-step__label {
  display: block;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.apply-step__digit {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.apply-step__text {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 83, 139, 0.16);
}

#apply-section:not(.is-confirm):not(.is-complete) .apply-step--1 .apply-step__circle,
#apply-section.is-confirm .apply-step--2 .apply-step__circle,
#apply-section.is-complete .apply-step--3 .apply-step__circle {
  border-color: #ffffff;
  background: #0099ff;
  color: #ffffff;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.35),
    0 6px 16px rgba(0, 83, 139, 0.24);
}

#apply-section.is-confirm .apply-step--1 .apply-step__circle,
#apply-section.is-complete .apply-step--1 .apply-step__circle,
#apply-section.is-complete .apply-step--2 .apply-step__circle {
  border-color: #ffffff;
  background: #ffffff;
  color: #0078c9;
}


/* フォーム本体 */
.apply-form {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 42px 34px;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 66, 110, 0.2);
  box-sizing: border-box;
}

.apply-form__row {
  position: relative;
  margin: 0;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid #c8dce8;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
}

.apply-form__row:last-of-type {
  border-bottom: 0;
}

#apply-section #credit-only {
  margin: 0;
  padding: 0;
}

#apply-section #credit-only .apply-form__row {
  padding-left: 14px;
  border-left: 4px solid #0099ff;
  background: linear-gradient(
    to right,
    #f0f9ff 0%,
    #ffffff 70%
  );
}

#apply-section #credit-only .apply-form__row + .apply-form__row {
  margin-top: 2px;
}


/* ラベル */
.apply-form__label {
  display: inline-block;
  margin: 0 0 10px;
  color: #253f51;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.apply-form__label-sub {
  display: inline-block;
  margin-left: 7px;
  color: #627987;
  font-size: 11px;
  font-weight: 600;
}

#apply-section .apply-form__row > .badge {
  margin: 0 7px 8px 0;
  vertical-align: 1px;
}


/* 必須・任意 */
.badge {
  display: inline-block;
  padding: 4px 7px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
}

.badge--required {
  background: #e6473b;
}

.badge--optional {
  background: #5c8aa7;
}


/* 入力欄 */
.apply-form__input,
.apply-form__select,
.apply-form__textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid #8fabbc;
  border-radius: 8px;
  outline: none;
  background: #ffffff;
  color: #203746;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.apply-form__textarea {
  min-height: 108px;
  resize: vertical;
}

.apply-form__input::placeholder,
.apply-form__textarea::placeholder {
  color: #7d929f;
  opacity: 1;
}

.apply-form__input:hover,
.apply-form__select:hover,
.apply-form__textarea:hover {
  border-color: #4389b5;
}

.apply-form__input:focus,
.apply-form__select:focus,
.apply-form__textarea:focus {
  border-color: #0099ff;
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.16);
}


/* ラジオ */
.apply-form__radios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  border: 0;
}

.apply-form__radios label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #8fabbc;
  border-radius: 8px;
  background: #ffffff;
  color: #2a495c;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
}

.apply-form__radios input[type="radio"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: #0099ff;
}

.apply-form__radios + .form-error {
  display: block;
  margin-top: 7px;
}

.apply-form__radios.is-invalid {
  padding: 7px;
  border: 1px solid #e6473b;
  border-radius: 9px;
  box-shadow: 0 0 0 3px rgba(230, 71, 59, 0.1);
}


/* 注意文 */
.apply-form__note {
  margin: 8px 0 0;
  color: #536d7c;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.7;
  text-align: left;
}

.apply-form__note--tel {
  text-align: left;
}

.apply-form__note--danger {
  color: #b4352c;
  font-weight: 700;
}

.apply-form__label + .apply-form__note {
  margin-top: 0;
}

.apply-form__note + .apply-form__inputwrap {
  margin-top: 10px;
}


/* エラー */
.form-error {
  margin: 7px 0 0;
  color: #d52f25;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.6;
}

.apply-form.is-validated input:invalid,
.apply-form.is-validated select:invalid,
.apply-form.is-validated textarea:invalid,
.apply-form.is-validated input[aria-invalid="true"],
.apply-form.is-validated select[aria-invalid="true"],
.apply-form.is-validated textarea[aria-invalid="true"] {
  border-color: #e6473b;
  box-shadow: 0 0 0 3px rgba(230, 71, 59, 0.12);
}

.apply-form.is-validated input[type="checkbox"]:invalid {
  outline: 2px solid #e6473b;
  outline-offset: 2px;
  border-radius: 4px;
}

.apply-form.is-validated .file-btn.is-invalid {
  border-color: #e6473b;
  box-shadow: 0 0 0 3px rgba(230, 71, 59, 0.12);
}


/* 身分証明書 */
.apply-form__id-upload {
  margin-top: 0;
}

.apply-form__id-upload-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 22px;
  align-items: start;
}

.apply-form__id-upload-left {
  min-width: 0;
}

.apply-form__id-upload-right {
  min-width: 0;
  margin: 0;
}

.id-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.id-guide__item {
  margin: 0;
  text-align: center;
}

.id-guide__title {
  margin: 0 0 6px;
  color: #2a495c;
  font-size: 11px;
  font-weight: 800;
}

.id-guide__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 83, 139, 0.16);
}

.id-guide__note {
  margin: 6px 0 0;
  color: #b4352c;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
}

.apply-form__inputwrap {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.apply-form__inputwrap--files {
  display: grid;
  gap: 8px;
  margin-top: 11px;
}

.file-field {
  display: grid;
  grid-template-columns: 3.5em auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 8px 0;
  border: 0;
  background: transparent;
  box-sizing: border-box;
}

.file-field + .file-field {
  border-top: 1px dashed #c7d9e4;
}

.file-field__label {
  min-width: 0;
  color: #2a495c;
  font-size: 12px;
  font-weight: 800;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.file-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.file-btn {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    #33adff 0%,
    #0099ff 50%,
    #008ae6 100%
  );
  color: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    0 0 0 2px #0099ff,
    0 4px 10px rgba(0, 153, 255, 0.2);
  box-sizing: border-box;
}

.file-btn:hover {
  filter: brightness(0.97);
}

.file-picker__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  padding: 6px;
  border: 1px solid #8fabbc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 55, 95, 0.16);
  box-sizing: border-box;
}

.file-picker__item {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #2a495c;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.file-picker__item:hover {
  background: #e9f6ff;
}

.file-chosen {
  display: block;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #607886;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}


/* 同意・チェック */
.apply-form__consent-note {
  margin: 24px 0 10px;
  color: #253f51;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.apply-form__agree {
  margin: 0;
  border-top: 1px solid #c8dce8;
}

.apply-form__agree:last-of-type {
  border-bottom: 1px solid #c8dce8;
}

.apply-form__agree label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 13px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2a495c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  box-sizing: border-box;
}

.apply-form__agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: #0099ff;
}

.apply-form__agree .badge {
  flex: 0 0 auto;
  margin-top: 2px;
}

.apply-form__check {
  display: block;
  margin-top: 6px;
}


/* ボタン */
.apply-form__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  text-align: center;
}

.apply-form__submit,
.apply-form__send {
  display: inline-flex;
  width: 100%;
  max-width: 180px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 3px solid #ffffff;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    #33adff 0%,
    #0099ff 50%,
    #008ae6 100%
  );
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  cursor: pointer;
  box-shadow:
    0 0 0 3px #0099ff,
    0 8px 20px rgba(0, 153, 255, 0.3);
  box-sizing: border-box;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.apply-form__submit:hover,
.apply-form__send:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 3px #0099ff,
    0 10px 24px rgba(0, 153, 255, 0.34);
}

.apply-form__submit:active,
.apply-form__send:active {
  transform: translateY(0);
}

.apply-form__back {
  display: inline-flex;
  width: 100%;
  max-width: 180px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid #0099ff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.apply-form__back:hover {
  background: #eef8ff;
}


/* 2回目以降 */
.apply-form__repeat-message {
  width: 100%;
  margin: 0;
  padding: 20px 0 22px;
  border: 0;
  border-bottom: 1px solid #e8b8b1;
  border-radius: 0;
  background: transparent;
  color: #5a4140;
  box-sizing: border-box;
}

.apply-form__repeat-message p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.85;
}

.apply-form__repeat-message p + p {
  margin-top: 9px;
}

.apply-form__repeat-tel {
  text-align: center;
}

.apply-form__repeat-tel a {
  color: #d53d31;
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
}

.apply-form__repeat-hours {
  color: #6b5a58;
  font-size: 11px !important;
  text-align: center;
}


/* 確認画面 */
.apply-form__confirm {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 42px 34px;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 66, 110, 0.2);
  box-sizing: border-box;
}

.apply-form__confirm > h3 {
  margin: 0 0 8px;
  color: #253f51;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.confirm-list {
  width: 100%;
  margin-top: 20px;
}

.confirm-item {
  position: relative;
  margin: 0;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid #c8dce8;
  background: transparent;
  box-sizing: border-box;
}

.confirm-item:last-child {
  border-bottom: 0;
}

.confirm-item__label {
  margin: 0 0 10px;
  color: #253f51;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.confirm-item__value {
  display: block;
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #c8dce8;
  border-radius: 8px;
  background: #f7fafc;
  color: #203746;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  word-break: break-word;
  box-sizing: border-box;
}

.apply-form__confirm form {
  margin-top: 6px;
}

.apply-form__confirm form .apply-form__warning-text {
  margin-top: 20px;
}


/* 重複申込 */
.apply-form__duplicate {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 42px 34px;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 66, 110, 0.2);
  color: #543e3c;
  box-sizing: border-box;
}

.apply-form__duplicate > h3 {
  margin: 0 0 16px;
  color: #d33f33;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.apply-form__duplicate p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.apply-form__duplicate p + p {
  margin-top: 9px;
}

.apply-form__duplicate-tel {
  text-align: center;
}

.apply-form__duplicate-tel a {
  color: #d33f33;
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 900;
  text-decoration: none;
}

.apply-form__duplicate-hours {
  color: #6b5a58;
  font-size: 13px !important;
  text-align: center;
}


/* 完了画面 */
.apply-form__complete {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 42px 40px;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 66, 110, 0.2);
  text-align: center;
  box-sizing: border-box;
}

.apply-complete__title {
  margin: 0;
  color: #e6473b;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.5;
}

.apply-complete__lead {
  margin: 20px 0 0;
  color: #405f71;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
  text-align: left;
}

.apply-complete__notice {
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid #c8dce8;
  border-radius: 10px;
  background: #f7fafc;
  color: #405f71;
  text-align: left;
  box-sizing: border-box;
}

.apply-complete__notice p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.apply-complete__notice p + p {
  margin-top: 12px;
}

.apply-complete__notice a {
  color: #0078c9;
  font-weight: 800;
}


/* 送信結果 */
.apply-result {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.7;
}

.apply-result.--ok {
  border-left: 4px solid #3c9c52;
  background: #edf8ef;
  color: #285f33;
}

.apply-result.--error {
  border-left: 4px solid #d33f33;
  background: #fff0ee;
  color: #97372f;
}

.submission-complete {
  max-width: 760px;
  margin: 16px auto 0;
  padding: 34px;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 66, 110, 0.2);
  scroll-margin-top: var(--apply-header-offset);
  box-sizing: border-box;
}

.submission-complete__title {
  margin: 0 0 16px;
  color: #0078c9;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.submission-complete__text,
.submission-complete__note {
  margin: 0 0 12px;
  color: #405f71;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.9;
}

.submission-complete__contact a {
  color: #0078c9;
  font-weight: 800;
  text-decoration: underline;
}


/* タブレット */
@media screen and (max-width: 1023px) and (min-width: 768px) {
  :root {
    --apply-header-offset: 96px;
  }

  #apply-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .apply-form,
  .apply-form__confirm,
  .apply-form__duplicate {
    max-width: 720px;
  }
}


/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [申し込みフォームMQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  :root {
    --apply-header-offset: 100px;
  }

  #apply-section {
    padding: 46px 12px 56px;
  }

  #apply-section::before {
    top: -125px;
    left: -165px;
    width: 320px;
    height: 320px;
    border-width: 44px;
  }

  #apply-section::after {
    right: -145px;
    bottom: -165px;
    width: 300px;
    height: 300px;
    border-width: 40px;
  }


  .apply-form__titlewrap {
    margin-bottom: 22px;
    padding: 0 6px;
  }

  .apply-form__heading-label {
    margin-bottom: 7px;
    padding: 5px 14px;
    font-size: 11px;
  }

  .apply-form__title {
    font-size: 27px;
    line-height: 1.45;
  }

  .apply-form__title span {
    display: inline;
    font-size: 31px;
  }

  .apply-form__heading-text {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.7;
  }

  .apply-form__warning-text {
    margin-top: 14px;
    padding: 9px 12px 9px 34px;
    font-size: 14px;
    line-height: 1.5;
  }

  .apply-form__warning-text::before {
    left: 9px;
    width: 18px;
    height: 18px;
    font-size: 13px;
  }


  .apply-steps {
    max-width: 330px;
    margin-bottom: 24px;
  }

  .apply-step {
    width: calc(100% / 3);
    gap: 5px;
  }

  .apply-step:not(:last-child)::after {
    top: 28px;
    left: calc(50% + 34px);
    width: calc(100% - 68px);
  }

  .apply-step__circle {
    width: 58px;
    height: 58px;
    gap: 2px;
    border-width: 2px;
  }

  .apply-step__label {
    font-size: 8px;
  }

  .apply-step__digit {
    font-size: 17px;
  }

  .apply-step__text {
    font-size: 13px;
  }


  .apply-form,
  .apply-form__confirm,
  .apply-form__duplicate {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 16px;
  }

  .apply-form {
    padding-top: 42px;
    padding-bottom: 24px;
  }

  .apply-form__confirm,
  .apply-form__duplicate {
    padding-top: 42px;
    padding-bottom: 24px;
  }

  .apply-form__row {
    padding: 18px 0;
  }

  #apply-section #credit-only .apply-form__row {
    padding-left: 10px;
    border-left-width: 3px;
  }


  .apply-form__label {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .apply-form__label-sub {
    display: block;
    margin: 2px 0 0;
    font-size: 13px;
  }

  #apply-section .apply-form__row > .badge {
    margin: 0 6px 6px 0;
  }

  .badge {
    padding: 4px 6px;
    font-size: 11px;
  }


  .apply-form__input,
  .apply-form__select,
  .apply-form__textarea {
    padding: 10px 10px;
    border-radius: 7px;
    font-size: 15px;
  }

  .apply-form__textarea {
    min-height: 94px;
  }


  .apply-form__radios {
    gap: 6px;
  }

  .apply-form__radios label {
    min-height: 43px;
    gap: 7px;
    padding: 8px 9px;
    border-radius: 7px;
    font-size: 12px;
  }

  .apply-form__radios input[type="radio"] {
    width: 17px;
    height: 17px;
  }


  .apply-form__note {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.65;
  }

  .form-error {
    font-size: 14px;
  }


  .apply-form__id-upload-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .apply-form__id-upload-left,
  .apply-form__id-upload-right {
    width: 100%;
    min-width: 0;
  }

  .apply-form__id-upload-right {
    order: 1;
  }

  .apply-form__id-upload-left {
    display: contents;
  }

  .apply-form__id-upload .apply-form__note--danger {
    order: 0;
  }

  .apply-form__id-upload .id-guide {
    order: 1;
    width: 100%;
  }

  .apply-form__id-upload .apply-form__inputwrap--files {
    order: 2;
    width: 100%;
  }

  .id-guide {
    gap: 8px;
  }

  .id-guide__title {
    font-size: 12px;
  }

  .id-guide__img {
    width: 112px;
    max-width: 100%;
  }

  .id-guide__note {
    font-size: 12px;
  }

  .file-field {
    grid-template-columns: 3.1em auto minmax(0, 1fr);
    gap: 6px;
    padding: 7px 0;
  }

  .file-field__label {
    font-size: 12px;
  }

  .file-btn {
    min-height: 33px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .file-chosen {
    font-size: 12px;
  }

  .file-picker__menu {
    right: auto;
    left: 0;
    max-width: calc(100vw - 32px);
    min-width: 188px;
    overflow-wrap: anywhere;
  }

  .file-picker__item {
    font-size: 13px;
  }

  .apply-form__consent-note {
    margin-top: 20px;
    font-size: 15px;
  }

  .apply-form__agree label {
    gap: 7px;
    padding: 11px 0;
    font-size: 14px;
    line-height: 1.65;
  }

  .apply-form__agree input[type="checkbox"] {
    width: 17px;
    height: 17px;
  }


  .apply-form__actions {
    flex-direction: column-reverse;
    gap: 8px;
    margin-top: 22px;
  }

  .apply-form__submit,
  .apply-form__send,
  .apply-form__back {
    width: 100%;
    max-width: 180px;
    min-height: 52px;
    margin: 0 auto;
    font-size: 14px;
  }

  .apply-form__repeat-message {
    padding: 17px 0 18px;
  }

  .apply-form__repeat-message p {
    font-size: 14px;
    line-height: 1.75;
  }

  .apply-form__repeat-tel a {
    font-size: 23px;
  }

  .apply-form__repeat-hours {
    font-size: 12px !important;
  }


  .apply-form__confirm > h3,
  .apply-form__duplicate > h3,
  .apply-complete__title {
    margin-bottom: 14px;
    font-size: 21px;
  }

  .confirm-list {
    margin-top: 12px;
  }

  .confirm-item {
    padding: 17px 0;
  }

  .confirm-item__label {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .confirm-item__value {
    padding: 10px 11px;
    font-size: 14px;
    line-height: 1.55;
  }

  .apply-form__duplicate p {
    font-size: 13px;
    line-height: 1.75;
  }

  .apply-form__duplicate-tel a {
    font-size: 24px;
  }

  .apply-form__duplicate-hours {
    font-size: 14px !important;
  }


  .apply-form__complete {
    padding: 34px 20px 28px;
  }

  .apply-complete__lead {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.8;
  }

  .apply-complete__notice {
    margin-top: 20px;
    padding: 17px 15px;
  }

  .apply-complete__notice p {
    font-size: 15px;
    line-height: 1.75;
  }
}



/* ======================================== ■よくある質問セクション======================================== */
.faq-section {
  position: relative;
  width: 100%;
  padding: 78px 20px 82px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(0, 153, 255, 0.045) 0,
      rgba(0, 153, 255, 0) 24%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6fbff 48%,
      #ffffff 100%
    );
  box-sizing: border-box;
}

.faq-section[data-enabled="off"] {
  display: none;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 110px;
  left: -125px;
  width: 250px;
  height: 250px;
  border: 34px solid rgba(0, 153, 255, 0.025);
  border-radius: 50%;
  pointer-events: none;
  box-sizing: border-box;
}

.faq-section::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: 90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(0, 153, 255, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.faq-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}


/* 見出し */
.faq-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.faq-heading-label {
  display: inline-block;
  margin: 0 0 9px;
  padding: 5px 18px;
  border: 1px solid #9fd9fb;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  box-shadow: 0 3px 10px rgba(0, 96, 160, 0.05);
}

.faq-title {
  margin: 0;
  color: #16394f;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.faq-title span {
  color: #0099ff;
}

.faq-heading-text {
  margin: 12px 0 0;
  color: #536d7d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
}


/* FAQ一覧 */
.faq-list {
  display: grid;
  gap: 13px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #bdd8e8;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 5px 16px rgba(0, 76, 126, 0.055);
}

.faq-item[hidden] {
  display: none;
}


/* 質問 */
.faq-question {
  margin: 0;
}

.faq-question-button {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  gap: 11px;
  width: 100%;
  min-height: 68px;
  align-items: center;
  padding: 14px 18px;
  border: 0;
  background: #ffffff;
  color: #173b52;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.faq-question-button:hover {
  background: #f4fbff;
}

.faq-question-mark {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9f7ff;
  color: #008cde;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.faq-question-text {
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
}

.faq-question-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  justify-self: end;
}

.faq-question-icon::before,
.faq-question-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 9999px;
  background: #008cde;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-question-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question-button[aria-expanded="true"] {
  background: linear-gradient(
    90deg,
    #0099ff 0%,
    #078edb 100%
  );
  color: #ffffff;
}

.faq-question-button[aria-expanded="true"] .faq-question-mark {
  background: #ffffff;
  color: #008cde;
}

.faq-question-button[aria-expanded="true"] .faq-question-icon::before,
.faq-question-button[aria-expanded="true"] .faq-question-icon::after {
  background: #ffffff;
}

.faq-question-button[aria-expanded="true"] .faq-question-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}


/* 回答 */
.faq-answer[hidden] {
  display: none;
}

.faq-answer {
  border-top: 1px solid #d7e7f0;
  background: #ffffff;
}

.faq-answer-inner {
  padding: 22px 24px 20px;
}

.faq-answer-body {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.faq-answer-mark {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0099ff;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.faq-answer-text {
  margin: 3px 0 0;
  color: #344f60;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}


/* 回答フィードバック */
.faq-feedback {
  margin: 22px 0 0 46px;
  padding: 18px 18px;
  border-radius: 11px;
  background: #f3f8fc;
  box-sizing: border-box;
}

.faq-feedback-title {
  margin: 0 0 13px;
  color: #36566a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.faq-feedback-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.faq-feedback-button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid #87a9bd;
  border-radius: 8px;
  background: #ffffff;
  color: #284b61;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.faq-feedback-button:hover {
  border-color: #0099ff;
  background: #eef9ff;
  color: #0078c9;
}

.faq-feedback-button.is-selected {
  border-color: #0099ff;
  background: #0099ff;
  color: #ffffff;
}

.faq-feedback-symbol {
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  box-sizing: border-box;
}

.faq-feedback-button-text {
  display: block;
  margin: 0;
  color: currentColor;
  font-size: inherit;
  font-weight: inherit;
  line-height: 20px;
}

.faq-feedback-message {
  margin: 10px 0 0;
  color: #0078c9;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}


/* さらに見る */
.faq-more {
  margin-top: 28px;
  text-align: center;
}

.faq-more[hidden],
.faq-more-button[hidden] {
  display: none;
}

.faq-more-button {
  position: relative;
  display: inline-flex;
  min-width: 260px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 24px;
  border: 2px solid #0099ff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(0, 101, 169, 0.08);
  box-sizing: border-box;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.faq-more-button:hover {
  background: #0099ff;
  color: #ffffff;
  transform: translateY(-2px);
}

.faq-more-icon {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
}

.faq-more-icon::before,
.faq-more-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 9999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-more-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}


/* スマホ */
@media screen and (max-width: 767px) {
  .faq-section {
    padding: 54px 12px 60px;
  }

  .faq-section::before {
    top: 80px;
    left: -125px;
    width: 205px;
    height: 205px;
    border-width: 28px;
  }

  .faq-section::after {
    right: -125px;
    bottom: 70px;
    width: 200px;
    height: 200px;
  }


  .faq-heading {
    margin-bottom: 24px;
  }

  .faq-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 10px;
  }

  .faq-title {
    font-size: 27px;
  }

  .faq-title span {
    display: inline;
  }

  .faq-heading-text {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.75;
  }


  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 11px;
  }


  .faq-question-button {
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    gap: 8px;
    min-height: 62px;
    padding: 12px 11px;
  }

  .faq-question-mark {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .faq-question-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .faq-question-icon {
    width: 16px;
    height: 16px;
  }

  .faq-question-icon::before,
  .faq-question-icon::after {
    width: 12px;
  }


  .faq-answer-inner {
    padding: 17px 12px 15px;
  }

  .faq-answer-body {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
  }

  .faq-answer-mark {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .faq-answer-text {
    margin-top: 1px;
    font-size: 15px;
    line-height: 1.8;
  }


  .faq-feedback {
    margin: 17px 0 0;
    padding: 15px 12px;
    border-radius: 9px;
  }

  .faq-feedback-title {
    margin-bottom: 11px;
    font-size: 12px;
    text-align: center;
  }

  .faq-feedback-buttons {
    gap: 6px;
  }

  .faq-feedback-button {
    min-height: 50px;
    flex-direction: row;
    gap: 5px;
    padding: 7px 5px;
    font-size: 10px;
    line-height: 1.4;
  }

  .faq-feedback-symbol {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    font-size: 15px;
    line-height: 18px;
  }

  .faq-feedback-button-text {
    line-height: 18px;
  }

  .faq-feedback-message {
    margin-top: 9px;
    font-size: 11px;
    text-align: center;
  }


  .faq-more {
    margin-top: 22px;
  }

  .faq-more-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 12px;
  }
}

/* ======================================== ■企業情報セクション ======================================== */
.company-section {
  position: relative;
  width: 100%;
  padding: 78px 20px 84px;
  overflow: hidden;
  background:
    radial-gradient(
      circle,
      rgba(111, 139, 153, 0.13) 1px,
      transparent 1.5px
    ),
    linear-gradient(
      180deg,
      #f3f7f8 0%,
      #e9f0f2 100%
    );
  background-size:
    22px 22px,
    auto;
  box-sizing: border-box;
}

.company-section[data-enabled="off"] {
  display: none;
}

.company-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 170px;
  background: #dce7ea;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 38%,
    68% 66%,
    32% 45%,
    0 82%
  );
  pointer-events: none;
}

.company-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}


/* 見出し */
.company-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.company-heading-label {
  display: inline-block;
  margin: 0 0 9px;
  padding: 5px 18px;
  border: 1px solid #9fd9fb;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  box-shadow: 0 3px 10px rgba(0, 96, 160, 0.05);
}

.company-title {
  margin: 0;
  color: #16394f;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.company-title span {
  color: #0099ff;
}

.company-heading-text {
  margin: 12px 0 0;
  color: #536d7d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
}


/* 企業情報カード */
.company-card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #bad8e9;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 15px 38px rgba(0, 71, 119, 0.075),
    0 3px 8px rgba(0, 71, 119, 0.03);
  box-sizing: border-box;
}

.company-card-heading {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 26px;
  border-bottom: 1px solid #cce2ee;
  background:
    linear-gradient(
      90deg,
      #eaf7ff 0%,
      #f8fcff 58%,
      #ffffff 100%
    );
  box-sizing: border-box;
}

.company-card-heading-en {
  margin: 0;
  color: #0087d7;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.company-card-heading-text {
  margin: 0;
  color: #24485e;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}


/* 企業情報一覧 */
.company-list {
  margin: 0;
}

.company-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  margin: 0;
  border-bottom: 1px solid #d7e6ef;
}

.company-item:last-child {
  border-bottom: 0;
}

.company-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 20px 22px;
  background: #f5faff;
  color: #28495e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
  box-sizing: border-box;
}

.company-label-mark {
  display: block;
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #0099ff;
  box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.1);
}

.company-value {
  display: flex;
  min-width: 0;
  align-items: center;
  margin: 0;
  padding: 20px 26px;
  background: #ffffff;
  color: #2f4858;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  word-break: break-word;
  box-sizing: border-box;
}


/* 所在地 */
.company-location {
  display: block;
}

.company-location-address {
  margin: 0;
}

.company-map {
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 10px;
}

.company-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}


/* リンク */
.company-link {
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: #007bc8;
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.company-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.company-link:hover {
  color: #005f9e;
}

.company-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* 営業時間 */
.company-item-hours .company-value {
  display: block;
}

.company-hours {
  margin: 0;
  color: #2f4858;
}

.company-hours-web {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.company-hours-web-label {
  display: inline-block;
  flex: 0 0 auto;
  color: #007bc8;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.company-hours-web-text {
  margin: 0;
  color: #526d7c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.company-hours-web-text strong {
  color: inherit;
  font-size: inherit;
  font-weight: 800;
}

/* 下部補足 */
.company-bottom-note {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 18px auto 0;
  padding-left: 19px;
  color: #607785;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.7;
  box-sizing: border-box;
}

.company-bottom-note::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0099ff;
}

.company-sp-break {
  display: none;
}


/* スマホ */
@media screen and (max-width: 767px) {
  .company-section {
    padding: 54px 12px 60px;
  }

  .company-section::before {
    top: 0;
    right: 0;
    left: 0;
    height: 125px;
  }

  .company-heading {
    margin-bottom: 24px;
  }

  .company-heading-label {
    margin-bottom: 7px;
    padding: 5px 15px;
    font-size: 10px;
  }

  .company-title {
    font-size: 27px;
  }

  .company-heading-text {
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.75;
  }


  .company-card {
    border-radius: 13px;
  }

  .company-card-heading {
    min-height: 58px;
    padding: 13px 15px;
  }

  .company-card-heading-en {
    font-size: 9px;
  }

  .company-card-heading-text {
    font-size: 13px;
  }


  .company-item {
    display: block;
  }

  .company-label {
    gap: 8px;
    padding: 13px 15px 8px;
    background: #f5faff;
    font-size: 11px;
  }

  .company-label-mark {
    width: 5px;
    height: 5px;
    flex-basis: 5px;
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
  }

  .company-value {
    display: block;
    padding: 9px 15px 15px 28px;
    font-size: 12px;
    line-height: 1.75;
  }


  .company-hours-web {
    align-items: flex-start;
    gap: 7px;
    margin-top: 8px;
  }

  .company-hours-web-label {
    margin-top: 1px;
    font-size: 12px;
  }

  .company-hours-web-text {
    font-size: 12px;
    line-height: 1.7;
  }

  .company-bottom-note {
    margin-top: 14px;
    padding-left: 16px;
    font-size: 10px;
  }

  .company-bottom-note::before {
    left: 2px;
    width: 4px;
    height: 4px;
  }


  .company-sp-break {
    display: block;
  }
}





/* ======================================== ■プライバシーポリシー・免責事項 ======================================== */
.legal-page {
  position: relative;
  width: 100%;
  padding: 160px 20px 76px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 7% 12%,
      rgba(0, 153, 255, 0.075) 0,
      rgba(0, 153, 255, 0) 23%
    ),
    radial-gradient(
      circle at 94% 78%,
      rgba(0, 153, 255, 0.055) 0,
      rgba(0, 153, 255, 0) 22%
    ),
    linear-gradient(
      180deg,
      #f2faff 0%,
      #eaf7ff 52%,
      #f2faff 100%
    );
  box-sizing: border-box;
}

.legal-page::before {
  content: "";
  position: absolute;
  top: 95px;
  left: -115px;
  width: 245px;
  height: 245px;
  border: 36px solid rgba(0, 153, 255, 0.035);
  border-radius: 50%;
  pointer-events: none;
  box-sizing: border-box;
}

.legal-page::after {
  content: "";
  position: absolute;
  right: -105px;
  bottom: 90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(0, 153, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.legal-page__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.legal-page__heading {
  margin-bottom: 34px;
  text-align: center;
}

.legal-page__heading-en {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 18px;
  border: 1px solid #9edaff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0078c9;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 10px rgba(0, 99, 165, 0.08);
}

.legal-page__title {
  margin: 0;
  color: #062a42;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.legal-page__content {
  position: relative;
  padding: 46px 50px;
  overflow: hidden;
  border: 1px solid #d4ecfa;
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 12px 28px rgba(0, 72, 120, 0.075),
    0 3px 7px rgba(0, 72, 120, 0.04);
  box-sizing: border-box;
}

.legal-page__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    #8cd1ff 0%,
    #0099ff 100%
  );
}

.legal-page__intro {
  margin: 0 0 38px;
  padding: 18px 20px;
  border-left: 4px solid #0099ff;
  background: #f4fbff;
  color: #15384e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.legal-section {
  margin-top: 38px;
}

.legal-section:first-of-type {
  margin-top: 0;
}

.legal-section__title {
  margin: 0 0 16px;
  padding: 10px 14px;
  border-left: 4px solid #0099ff;
  background: #f2faff;
  color: #062a42;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.legal-section__subtitle {
  margin: 22px 0 8px;
  color: #15384e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.legal-section p {
  margin: 0 0 14px;
  color: #15384e;
  font-size: 15px;
  line-height: 1.9;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: #007ed6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-list {
  margin: 14px 0;
  padding: 16px 18px 16px 40px;
  border-radius: 10px;
  background: #f7fbfe;
  color: #15384e;
}

.legal-list li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.9;
}

.legal-list li:last-child {
  margin-bottom: 0;
}


/* スマホ */
@media screen and (max-width: 767px) {
  .legal-page {
    padding: 130px 12px 50px;
  }

  .legal-page__heading {
    margin-bottom: 28px;
  }

  .legal-page__heading-en {
    margin-bottom: 8px;
    padding: 5px 15px;
    font-size: 10px;
  }

  .legal-page__title {
    font-size: 25px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  .legal-page__content {
    padding: 30px 18px;
    border-radius: 14px;
  }

  .legal-page__intro {
    margin-bottom: 30px;
    padding: 14px 14px;
    font-size: 14px;
    line-height: 1.9;
  }

  .legal-section {
    margin-top: 32px;
  }

  .legal-section__title {
    margin-bottom: 14px;
    padding: 9px 11px;
    font-size: 17px;
    line-height: 1.6;
  }

  .legal-section__subtitle {
    margin: 18px 0 7px;
    font-size: 15px;
  }

  .legal-section p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.9;
  }

  .legal-list {
    margin: 12px 0;
    padding: 14px 14px 14px 34px;
    border-radius: 8px;
  }

  .legal-list li {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.9;
  }
}



/* ======================================== ■フッターセクション ======================================== */
#footer-section {
  position: relative;
  width: 100%;
  padding: 64px 20px 26px;
  overflow: hidden;
  background-image: url("images/footer-background.png");
  background-position: left bottom;
  box-sizing: border-box;
}


.footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}


/* ロゴ */
.footer-brand {
  display: flex;
  justify-content: center;
}

.footer-logo {
  position: relative;
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 153, 255, 0.2);
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  box-sizing: border-box;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* フッターリンク */
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links__separator {
  margin: 0 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.6;
}

#footer-section[data-footer-privacy="off"] .footer-link--privacy {
  display: none;
}

#footer-section[data-footer-disclaimer="off"] .footer-link--disclaimer {
  display: none;
}

#footer-section[data-footer-privacy="off"] .footer-links__separator,
#footer-section[data-footer-disclaimer="off"] .footer-links__separator {
  display: none;
}

#footer-section[data-footer-privacy="off"][data-footer-disclaimer="off"] .footer-links {
  display: none;
}

/* 区切り */
.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 34px 0 20px;
}

.footer-divider::before,
.footer-divider::after {
  content: "";
  width: 70px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(132, 210, 255, 0.55) 100%
    );
}

.footer-divider::after {
  background:
    linear-gradient(
      90deg,
      rgba(132, 210, 255, 0.55) 0%,
      rgba(255, 255, 255, 0) 100%
    );
}

.footer-divider span {
  display: block;
  width: 6px;
  height: 6px;
  margin: 0 13px;
  border-radius: 50%;
  background: #36b8ff;
  box-shadow: 0 0 0 5px rgba(54, 184, 255, 0.1);
}


/* コピーライト */
.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}


/* スマホ */
@media screen and (max-width: 767px) {
  #footer-section {
    padding: 44px 12px 22px;
  }

  .footer-logo {
    width: 150px;
    height: 150px;
    padding: 16px;
    border-radius: 50%;
  }

  .footer-links {
    margin-top: 22px;
  }

  .footer-link {
    font-size: 11px;
  }

  .footer-links__separator {
    margin: 0 9px;
    font-size: 11px;
  }

  .footer-divider {
    margin: 27px 0 17px;
  }

  .footer-divider::before,
  .footer-divider::after {
    width: 48px;
  }

  .footer-divider span {
    width: 5px;
    height: 5px;
    margin: 0 10px;
    box-shadow: 0 0 0 4px rgba(54, 184, 255, 0.1);
  }


  .footer-copyright {
    font-size: 9px;
    line-height: 1.7;
  }
}

/* ======================================== ■常時表示系セクション ======================================== */

body.always-campaign-open {
  overflow: hidden;
}


/* ============= キャンペーンポップアップ ============= */

.always-campaign-overlay {
  --always-campaign-shift-x: 0px;
  --always-campaign-shift-y: 0px;
  --always-campaign-scale: 0.12;

  position: fixed;
  z-index: 5000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.58);
  box-sizing: border-box;
  transition:
    background-color 0.36s ease;
}

.always-campaign-overlay.is-hidden {
  display: none;
}

.always-campaign-overlay.is-preparing {
  visibility: hidden;
}

.always-campaign-card {
  position: relative;
  width: min(86vw, 620px, calc(100vh - 40px));
  aspect-ratio: 1 / 1;
  overflow: visible;
  border-radius: 22px;
  background-color: #ffffff;
  background-image: url("./images/hero-campaign.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 8px 24px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  opacity: 1;
  transform:
    translate3d(0, 0, 0)
    scale(1);
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.always-campaign-overlay.is-opening {
  background: rgba(0, 0, 0, 0);
}

.always-campaign-overlay.is-opening .always-campaign-card {
  opacity: 0.25;
  transform:
    translate3d(
      var(--always-campaign-shift-x),
      var(--always-campaign-shift-y),
      0
    )
    scale(var(--always-campaign-scale));
}

.always-campaign-overlay.is-closing {
  background: rgba(0, 0, 0, 0);
}

.always-campaign-overlay.is-closing .always-campaign-card {
  opacity: 0.2;
  transform:
    translate3d(
      var(--always-campaign-shift-x),
      var(--always-campaign-shift-y),
      0
    )
    scale(var(--always-campaign-scale));
}

.always-campaign-close {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  border: 0;
  border-radius: 50%;
  background: #062a42;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  box-sizing: border-box;
}

.always-campaign-close:hover {
  background: #062a42;
}

.always-campaign-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 105px 72px 72px;
  color: #062a42;
  text-align: center;
  box-sizing: border-box;
}

.always-campaign-label {
  position: relative;
  top: -14px;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  background:
    linear-gradient(
      180deg,
      #fff8c9 0%,
      #f7dc76 18%,
      #d9a928 42%,
      #a66f00 62%,
      #e4bd4f 80%,
      #fff0a3 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.65))
    drop-shadow(0 3px 4px rgba(105, 70, 0, 0.28));
}

.always-campaign-title {
  position: absolute;
  top: 42px;
  left: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      #5ed5ff 0%,
      #0099ff 55%,
      #0078d4 100%
    );
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 85, 145, 0.35);
  box-shadow:
    0 6px 16px rgba(0, 105, 180, 0.28),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
}

.always-campaign-title::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 3px;
  width: 22px;
  height: 22px;
  background: #008de8;
  clip-path: polygon(0 0, 100% 100%, 0 72%);
  transform: rotate(8deg);
}

.always-campaign-lead {
  margin: 22px 0 0;
  color: #062a42;
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 700;
  line-height: 1.4;
}

.always-campaign-rate {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 4px 0 0;
  color: #062a42;
  white-space: nowrap;
}

.always-campaign-rate > span {
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 800;
  line-height: 1.3;
}

.always-campaign-rate strong {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  color: #0099ff;
  font-weight: 900;
  line-height: 1.15;
}

.always-campaign-rate-number {
  flex-shrink: 0;
  font-size: clamp(86px, 8.5vw, 132px);
  line-height: 1;
  letter-spacing: -0.02em;
  background:
    linear-gradient(
      180deg,
      #5ccfff 0%,
      #35c1ff 18%,
      #16b7ff 42%,
      #008fe8 58%,
      #006bc2 78%,
      #72d7ff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.4))
    drop-shadow(0 5px 6px rgba(0, 72, 135, 0.28));
}

.always-campaign-rate-guarantee {
  flex-shrink: 0;
  font-size: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(
      180deg,
      #62d2ff 0%,
      #3cc4ff 22%,
      #18b8ff 45%,
      #0088dc 68%,
      #79d9ff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35))
    drop-shadow(0 3px 4px rgba(0, 72, 135, 0.24));
}

.always-campaign-notes {
  width: min(88%, 340px);
  margin-top: 22px;
  color: #445b6b;
  font-size: clamp(9px, 0.78vw, 11px);
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.always-campaign-notes p {
  margin: 0;
}

.always-campaign-notes p + p {
  margin-top: 5px;
}

.always-campaign-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  margin-top: 22px;
  padding: 14px 30px;
  border: 1px solid rgba(0, 112, 200, 0.55);
  border-radius: 9999px;
  background:
    linear-gradient(
      180deg,
      #66d9ff 0%,
      #1bbcff 28%,
      #0099ff 52%,
      #0078d4 100%
    );
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 70, 120, 0.35);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.55),
    inset 0 -2px 0 rgba(0, 72, 135, 0.18),
    0 7px 16px rgba(0, 105, 180, 0.28);
  box-sizing: border-box;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.always-campaign-apply:hover {
  background:
    linear-gradient(
      180deg,
      #7de1ff 0%,
      #2fc4ff 28%,
      #00a5ff 52%,
      #0083e6 100%
    );
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.65),
    inset 0 -2px 0 rgba(0, 72, 135, 0.18),
    0 9px 20px rgba(0, 105, 180, 0.34);
  transform: translateY(-2px);
}


/* ============= 固定アクション ============= */

.always-actions {
  position: fixed;
  z-index: 1200;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.always-actions[hidden] {
  display: none;
}

.always-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  box-sizing: border-box;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.always-action[hidden] {
  display: none;
}

.always-action:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.24);
}

.always-action img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.always-action span {
  display: none;
}

.always-action-campaign {
  background: #0099ff;
}

.always-action-line {
  background: #06c755;
}

.always-action-mail {
  background: #ff9f00;
}

.always-action-tel {
  background: #f06292;
}


/* スマホ */
/* >>>>>>>>>>>>>>>>>>> [常時表示系MQ] screen and (max-width: 767px) <<<<<<<<<<<<<<<<<<< */
@media screen and (max-width: 767px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  body.always-actions-hidden {
    padding-bottom: 0;
  }

  .always-campaign-overlay {
    padding: 12px 12px calc(76px + env(safe-area-inset-bottom));
  }

  .always-campaign-card {
    width: min(
      92vw,
      420px,
      calc((100dvh - 104px) * 0.6667)
    );
    aspect-ratio: 2 / 3;
    border-radius: 18px;
    background-image: url("./images/hero-campaign-sp.png");
  }

  .always-campaign-close {
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    padding-bottom: 3px;
    font-size: 29px;
  }

  .always-campaign-content {
    justify-content: center;
    padding: 80px 42px 52px;
  }

  .always-campaign-label {
    top: -10px;
    font-size: clamp(20px, 6vw, 28px);
  }

  .always-campaign-title {
    top: 26px;
    left: 24px;
    width: 92px;
    height: 92px;
    margin: 0;
    border-width: 2px;
    font-size: 20px;
  }

  .always-campaign-title::after {
    right: 3px;
    bottom: 2px;
    width: 17px;
    height: 17px;
  }

  .always-campaign-lead {
    margin-top: 18px;
    font-size: clamp(13px, 3.7vw, 17px);
  }

  .always-campaign-rate {
    gap: 7px;
    margin-top: 3px;
  }

  .always-campaign-rate > span {
    font-size: clamp(14px, 4vw, 18px);
  }

  .always-campaign-rate-number {
    font-size: clamp(66px, 18vw, 88px);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .always-campaign-rate-guarantee {
    font-size: clamp(23px, 6.5vw, 32px);
  }

  .always-campaign-notes {
    width: min(86%, 240px);
    margin-top: 18px;
    font-size: clamp(8px, 2.35vw, 10px);
    line-height: 1.55;
  }

  .always-campaign-notes p + p {
    margin-top: 4px;
  }

  .always-campaign-apply {
    min-width: 210px;
    margin-top: 18px;
    padding: 12px 24px;
    font-size: 16px;
  }


  .always-actions {
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns:
      repeat(
        var(--always-action-count, 4),
        minmax(0, 1fr)
      );
    gap: 0;
    padding-bottom: env(safe-area-inset-bottom);
    background: #ffffff;
    box-shadow:
      0 -4px 14px rgba(0, 0, 0, 0.15);
  }

  .always-action {
    flex-direction: column;
    gap: 2px;
    width: 100%;
    height: 64px;
    border-radius: 0;
    box-shadow: none;
  }

  .always-action:hover {
    transform: none;
    box-shadow: none;
  }

  .always-action + .always-action {
    border-left:
      1px solid rgba(255, 255, 255, 0.28);
  }

  .always-action img {
    width: 30px;
    height: 30px;
  }

  .always-action span {
    display: block;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
  }
}


@media (prefers-reduced-motion: reduce) {
  .always-campaign-overlay,
  .always-campaign-card,
  .always-campaign-apply,
  .always-action {
    transition: none;
  }
}