/* ===================================================
    AI Sapo – Landing Page Styles
   =================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* English and Number Font */
.en,
.num {
  font-family: "Oswald", sans-serif !important;
}

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

/* ---------- Utility ---------- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* ==================== HERO ==================== */
.hero {
  padding: 0;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero Visual – image_01 as bg frame for image_02 */
.hero__visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero__image-wrapper {
  position: relative;
  display: inline-block;
  background: url("../assets/images/image_01.webp") center center / cover
    no-repeat;
}

.hero__image-front {
  display: block;
  width: 1920px;
  max-width: 100%;
  height: auto;
}

.hero__image-mobile {
  display: none;
}
.spbr {
  display: none;
}
.paddingTopSP {
  padding-top: 0px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1920px) {
  .hero__image-front {
    width: 100%;
  }
}

/* ==================== HERO CONTENT ==================== */
.hero__content {
  padding: clamp(20px, 9.5vw, 180.5px) clamp(15px, 1.04vw, 20px)
    clamp(40px, 10vw, 150px);
  text-align: center;
  background: url("../assets/images/bg_01.webp") center top / cover no-repeat;
  margin-top: clamp(-85.33px, -4.45vw, -10px);
}

.hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 5vw, 73px);
  font-weight: 900;
  color: black;
  margin-bottom: clamp(30px, 4.5vw, 100px);
  line-height: 98.45%;
}

.hero__text-group {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5vw, 30px);
}

.hero__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, 3vw, 45px);
  font-weight: 800;
  color: #231815;
  line-height: 1.5;
  letter-spacing: 0.16em;
}

.hero__text_1 {
  letter-spacing: 0.1em;
}

.hero__text_2 {
  margin-top: 18px;
  letter-spacing: 0em;
}

.hero__text_3 {
  margin-top: 30px;
  letter-spacing: 0em;
}

.hero__text_4 {
  margin-top: 20px;
  letter-spacing: 0em;
}

@media (max-width: 991px) {
  .hero__image-desktop {
    display: none;
  }

  .hero__image-mobile {
    display: block;
  }

  .hero__image-wrapper {
    position: relative;
    display: inline-block;
    background: center center / cover no-repeat;
  }

  .hero__content {
    padding: clamp(30px, 4vw, 40px) clamp(15px, 3vw, 20px);
  }

  .hero__title {
    font-size: clamp(26px, 6vw, 80px);
    margin-bottom: clamp(20px, 4vw, 35px);
    line-height: 1.5;
  }

  .hero__text-group {
    gap: clamp(6px, 2.75vw, 20px);
  }

  .hero__text {
    font-size: clamp(15px, 3.2vw, 40px);
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 375px) {
  .hero__content {
    margin-top: clamp(-37px, -10vw, -10px);
    padding-bottom: clamp(15px, 8vw, 26px);
  }

  .hero__title {
    font-size: clamp(22px, 6vw, 70px);
    margin-bottom: clamp(20px, 4vw, 35px);
    margin-top: clamp(10px, 50vw, 45px);
  }

  .hero__text-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .hero__text_0 {
    letter-spacing: 0em;
    line-height: 1.4;
    margin-top: 2px;
  }

  .hero__text_1 {
    margin-top: 6px;
  }

  .hero__text_2 {
    margin-top: 4px;
    letter-spacing: 0em;
    line-height: 1.4;
  }

  .hero__text_3 {
    margin-top: 6px;
    letter-spacing: 0em;
    line-height: 1.4;
  }

  .hero__text_4 {
    margin-top: 6px;
    letter-spacing: 0em;
  }
}

/* Blue highlight text */
.text-highlight {
  color: #00a0e9;
  font-weight: 900;
}

/* Mobile line breaks - hidden by default, shown only on mobile */
.mobile-br {
  display: none;
}

/* ==================== FADE IN ANIMATION ==================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in-up.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==================== IMAGE SLIDER ==================== */
.image-slider {
  overflow: hidden;
  width: 100%;
}

.image-slider__static {
  width: 100%;
  text-align: center;
}

.image-slider__static img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding-top: clamp(30px, 5vw, 64px);
  text-align: center;
  background-color: #ffffff;
  padding-bottom: clamp(40px, 2.6vw, 46px);
}

.cta-section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 5vw, 68px);
  font-weight: 900;
  color: black;
  line-height: 1.4;
  margin-bottom: 24px;
  display: inline-block;
  padding-bottom: clamp(1px, 1.25vw, 6px);
  border-bottom: clamp(1px, 0.5vw, 5px) solid #ffff00;
  letter-spacing: 0px;
}

.cta-section__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 4vw, 60px);
  font-weight: 900;
  color: #231815;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 5vw, 54px);
  letter-spacing: 0px;
  padding-top: clamp(10px, 2.5vw, 30px);
  line-height: 1.4;
}

/* Decorative exclamation marks */
.exclamation {
  display: inline-block;
  width: clamp(5px, 1vw, 6px);
  height: clamp(10px, 7vw, 72px);
  background-color: #231815;
  border-radius: 50px;
  position: relative;
  vertical-align: middle;
}

.exclamation::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: inherit;
  border-radius: 50px;
  height: clamp(12px, 1.8vw, 18px);
  top: calc(100% + clamp(6px, 1vw, 12px));
  left: 0;
}

.exclamation.left {
  transform: rotate(25deg);
}

.exclamation.right {
  transform: rotate(-25deg);
}

@media (max-width: 991px) {
  .cta-section {
    padding: clamp(15px, 7vw, 30px) clamp(15px, 3vw, 20px);
    text-align: center;
    background-color: #ffffff;
  }

  .mobile-br {
    display: inline;
  }

  .mobile-border-bottom {
    border-bottom: clamp(1px, 0.5vw, 5px) solid #ffff00;
  }

  .cta-section__title {
    padding-bottom: 0px;
  }

  .cta-section__subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(18px, 4vw, 30px);
  }

  .exclamation {
    width: clamp(1px, 0.4vw, 3px) !important;
    height: clamp(20px, 5vw, 60px) !important;
  }

  .exclamation::after {
    height: clamp(5px, 3vw, 10px);
  }
}

@media (max-width: 375px) {
  .cta-section {
    padding-top: clamp(10px, 5vw, 64px);
    text-align: center;
    background-color: #ffffff;
    padding-bottom: clamp(8px, 2.6vw, 46px);
  }

  .cta-section__title {
    font-size: clamp(18px, 6vw, 40px);
    line-height: 1.35;
    letter-spacing: 1px;
    margin-bottom: clamp(8px, 2vw, 24px);
  }

  .cta-section__subtitle {
    font-size: clamp(14px, 6vw, 25px);
    gap: clamp(8px, 3vw, 15px);
    line-height: 1.35;
  }
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.video-section__background {
  background: url("../assets/images/image_03.webp") top / cover no-repeat;
  padding: clamp(30px, 10vw, 110px) 0;
  position: relative;
}

.video-section__background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.video-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: clamp(20px, 5vw, 50px);
}

.video-section__player {
  max-width: 1356px;
  margin: 0 auto;
  padding: 0 clamp(10px, 2.08vw, 20px);
  position: relative;
}

.video-section__player video {
  width: 100%;
  max-width: 1356px;
  height: auto;
  cursor: pointer;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-click-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  cursor: pointer;
}

.video-click-overlay.hidden {
  pointer-events: none;
  opacity: 0;
}

.video-play-button img {
  display: block;
  width: clamp(60px, 7.3vw, 140px);
  height: clamp(60px, 7.3vw, 140px);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.video-placeholder {
  border: 2px solid #ffffff;
  border-radius: 12px;
  padding: clamp(60px, 15vw, 200px) clamp(20px, 2.08vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder p {
  color: #ffffff;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
}

.video-mobile {
  display: none;
}

@media (max-width: 991px) {
  .video-mobile {
    display: block;
  }

  .video-desktop {
    display: none;
  }

  .video-section__player {
    padding: 0 clamp(10px, 4vw, 20px);
  }

  .video-section__background {
    background: url("../assets/images/image_03_sp.webp") top / cover no-repeat;
    padding: clamp(20px, 5vw, 120px) clamp(8px, 3vw, 16px);
  }

  .video-section__content {
    padding-top: clamp(40px, 8vw, 80px);
  }
}

@media (max-width: 375px) {
  .video-section__background {
    padding: clamp(15px, 7vw, 100px) clamp(23px, 6.1vw, 40px);
  }

  .video-section__content {
    padding-top: clamp(26px, 2vw, 64px);
  }

  .video-section__player {
    padding: 0;
  }
}

/* ==================== BANNER SPACER + SCROLL TO TOP ==================== */
.banner-spacer {
  background-color: #ffffff;
  height: clamp(80px, 10vw, 300px);
  position: relative;
}

.scroll-to-top {
  position: fixed;
  bottom: calc(
    clamp(20px, 1.5vw, 50px) + clamp(30px, 5vw, 100px) + 20px - 50px
  );
  right: clamp(10px, 2vw, 22px);
  display: inline-block;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease;
}

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

.scroll-to-top:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.scroll-to-top img {
  width: clamp(30px, 5vw, 54px);
  height: auto;
}

@media (max-width: 1500px) and (min-width: 992px) {
  .scroll-to-top {
    bottom: calc(
      clamp(20px, 2.5vw, 50px) + clamp(30px, 5vw, 100px) + 20px - 50px
    );
  }
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background-color: #00a0e9;
  text-align: center;
  position: relative;
  overflow: visible;
}

.cta-banner__person {
  position: absolute;
  top: 20;
  left: 50%;
  transform: translate(-50%, -35%);
  z-index: 10;
  pointer-events: none;
}

.cta-banner__person-img {
  width: clamp(100px, 25vw, 480px);
  height: auto;
}

.cta-banner__inner {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.cta-banner__badges {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-banner__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #231815;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 2vw, 40px);
  font-weight: 900;
  width: clamp(180px, 17.14vw, 329px);
  height: clamp(36px, 3.49vw, 67px);
  border-radius: 2px;
  position: absolute;
}

.cta-banner__badge:first-child {
  top: clamp(20px, 3.4vw, 65px);
  right: clamp(20px, 12vw, 360px);
}

.cta-banner__badge:last-child {
  top: clamp(45px, 8vw, 145px);
  right: clamp(50px, 8vw, 300px);
}

.cta-banner__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 4vw, 50px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 50px);
  transform: rotate(-6deg) !important;
  padding-left: clamp(100px, 20.3vw, 390px);
  padding-top: clamp(40px, 5.99vw, 80px);
  padding-bottom: clamp(20px, 3.4vw, 40px);
}

.cta-banner__sub .exclamation {
  background-color: #ffffff;
  width: clamp(2px, 0.4vw, 3px);
  height: clamp(30px, 7vw, 50px);
}

.cta-banner__sub .exclamation::after {
  background-color: #ffffff;
  height: clamp(8px, 1.2vw, 14px);
  top: calc(100% + clamp(4px, 0.7vw, 10px));
}

.cta-banner__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 5vw, 83px);
  font-weight: 900;
  color: #ffff00;
  line-height: 1.4;
  margin-bottom: clamp(5px, 5vw, 30px);
  letter-spacing: 0.05em;
  padding-top: clamp(10px, 2.3vw, 50px);
}

.cta-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 2.1vw, 28px);
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(
    160deg,
    #00216f 0%,
    #002d7a 12%,
    #004d99 33%,
    #0070bb 53%,
    #005fab 60%,
    #003d8a 77%,
    #002876 91%,
    #00216f 100%
  );
  border: none;
  outline: 2px solid #ffffff;
  outline-offset: -8px;
  width: clamp(500px, 50vw, 765px);
  height: clamp(60px, 6.8vw, 108px);
  padding: 0 clamp(30px, 4vw, 60px);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  margin-bottom: clamp(20px, 2.7vw, 80px);
}

.cta-banner__button-icon {
  display: inline-block;
  width: clamp(8px, 1.5vw, 14px);
  height: auto;
}

.cta-banner__button:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .cta-banner__title {
    font-size: clamp(16px, 5vw, 70px);
    margin-bottom: clamp(2px, 2vw, 10px);
  }

  .cta-banner__button {
    width: clamp(260px, 70vw, 450px);
    height: clamp(40px, 10vw, 60px);
    padding: 0 clamp(20px, 5vw, 40px);
    font-size: clamp(12px, 3vw, 20px);
    outline: clamp(1px, 0.15vw, 2px) solid #ffffff;
    outline-offset: -4px;
  }

  .cta-banner__button-icon {
    width: clamp(6px, 1.5vw, 14px);
  }
}

/* ==================== FLOATING CTA BUTTON ==================== */
.floating-cta {
  position: fixed;
  bottom: calc(clamp(20px, 3.6vw, 50px) + clamp(30px, 5vw, 100px) + 20px);
  right: clamp(10px, 1.5vw, 94px);
  z-index: 1000;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.3s ease;
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.4);
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 8px 12px 28px rgba(0, 0, 0, 0.5);
}

.floating-cta__inner {
  width: clamp(160px, 12.3vw, 236px);
  height: clamp(160px, 13vw, 240px);
  background-color: #005ca3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.5vw, 8px);
  padding: clamp(10px, 1.2vw, 20px);
  position: relative;
}

/* Corner bracket marks */
.floating-cta__inner::before,
.floating-cta__inner::after,
.floating-cta::before,
.floating-cta::after {
  content: "";
  position: absolute;
  width: clamp(20px, 1.8vw, 35px);
  height: clamp(20px, 1.8vw, 35px);
  border-color: #ffffff;
  border-style: solid;
  pointer-events: none;
}

/* Top-left corner */
.floating-cta__inner::before {
  top: 8px;
  left: 8px;
  border-width: 2px 0 0 2px;
}

/* Bottom-right corner */
.floating-cta__inner::after {
  bottom: 8px;
  right: 8px;
  border-width: 0 2px 2px 0;
}

/* Top-right corner */
.floating-cta::before {
  top: 8px;
  right: 8px;
  border-width: 2px 2px 0 0;
  z-index: 1;
}

/* Bottom-left corner */
.floating-cta::after {
  bottom: 8px;
  left: 8px;
  border-width: 0 0 2px 2px;
  z-index: 1;
}

.floating-cta__badge {
  display: inline-block;
  background-color: #ffff00;
  color: #005ca3;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(8px, 1vw, 20px);
  font-weight: 900;
  padding: clamp(1px, 0.2vw, 3px) clamp(6px, 0.8vw, 14px);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.floating-cta__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.15vw, 22px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
}

.floating-cta__divider {
  width: 90%;
  height: 0;
  border: none;
  border-top: 2px dotted rgba(255, 255, 255, 0.7);
}

.floating-cta__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(9px, 0.9vw, 18px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
}

.floating-cta__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.floating-cta__arrow svg {
  width: clamp(12px, 1vw, 20px);
  height: auto;
  transform: rotate(180deg);
}

.floating-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.5vw, 8px);
  text-decoration: none;
  color: inherit;
}

.floating-cta__text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

@media (max-width: 991px) {
  .floating-cta {
    display: block !important;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1002;
  }

  .floating-cta.visible {
    transform: translateY(0);
  }

  .floating-cta:hover {
    transform: translateY(0);
  }

  .floating-cta__inner {
    width: 100%;
    height: auto;
    flex-direction: row;
    gap: 10px;
    padding: 10px 15px;
    background-color: #005ca3;
    align-items: center;
  }

  /* Hide corner brackets on mobile */
  .floating-cta__inner::before,
  .floating-cta__inner::after,
  .floating-cta::before,
  .floating-cta::after {
    display: none;
  }

  .floating-cta__badge {
    font-size: 14px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    white-space: nowrap;
    line-height: 1;
  }

  .floating-cta__title {
    display: block;
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
  }

  .floating-cta__divider {
    display: none;
  }

  .floating-cta__sub {
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    width: 100%;
  }

  .floating-cta__text-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  .floating-cta__arrow {
    flex-shrink: 0;
  }

  .floating-cta__arrow svg {
    width: 16px;
    transform: rotate(0deg);
  }

  .floating-cta__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1;
  }

  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }
}

/* ===================================================
    PAGE 2 STYLES - Combined from style_2.css
   =================================================== */

/* ===== VARIABLES ===== */
:root {
  --main-blue: #00a0e9;
  --dark-blue: #005bac;
  --accent-orange: #f39800;
  --accent-blue: #00a0e9;
  --accent-red: #e60012;
  --bg-light-blue: #e8f4fc;
  --bg-white: #ffffff;
  --text-dark: #000000;
  --text-white: #ffffff;
  --border-bottom: #ffff00;
}

/* ===== CONTAINER ===== */
.container_2 {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* ===== ANIMATE-ON-SCROLL ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, opacity;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BACKGROUND IMAGE ===== */
.choice-section_2,
.about-section_2,
.job-section_2 {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.job-section__bg-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: 0;
  opacity: 0.9;
  background-image: url("../assets/images/house_bg.png");
}

.choice-section__bg-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: 0;
  opacity: 0.9;
  background-image: url("../assets/images/bg_base_white.png");
}

.about-section__bg-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: 0;
  opacity: 0.9;
  background-image: url("../assets/images/bg_base_blue.png");
}

/* ===== HERO SECTION ===== */
.hero_2 {
  color: var(--text-dark);
  position: relative;
}

.hero-inner_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: clamp(300px, 100vw, 1300px);
  text-align: left;
  position: relative;
}
.hero-inner_2::after {
  content: "";
  position: absolute;
  bottom: -90px;
  right: -100px;
  width: 350px;
  height: 400px;
  z-index: 1;
  background: url(../assets/images/hero_figure.webp) no-repeat center / contain;
}
@media (max-width: 1536px) {
  .hero-inner_2::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 0px;
    width: 300px;
    height: 350px;
    z-index: 1;
    background: url(../assets/images/hero_figure.webp) no-repeat center /
      contain;
  }
  .hero-text_2 {
    margin-left: clamp(60px, 15vw, 390px);
  }
}

.blue-cta-banner__button-image_2:hover {
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .hero-inner_2::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 80px;
    width: 300px;
    height: 350px;
    z-index: 1;
    background: url(../assets/images/hero_figure.webp) no-repeat center /
      contain;
  }
  .hero-text_2 {
    margin-left: clamp(60px, 18vw, 390px);
  }
}

@media (max-width: 480px) {
  .hero-inner_2::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -15px;
    width: 120px;
    height: 180px;
    z-index: 1;
    background: url(../assets/images/hero_figure.webp) no-repeat center /
      contain;
  }
  .hero-text_2 {
    margin-left: clamp(60px, 18vw, 390px);
    margin-bottom: 0px;
  }
  .spbr {
    display: block;
  }
  .paddingTopSP {
    padding-top: 10px;
  }
}

.hero-text_2 {
  margin-top: clamp(20px, 8.9vw, 136px);
  margin-left: clamp(60px, 21vw, 390px);
}

.hero-text_2 h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero_2 h1 {
  font-size: clamp(40px, 5vw, 120px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  text-align: center;
}

.hero-line {
  font-feature-settings: "palt";
  letter-spacing: -0.5em;
  padding-bottom: clamp(5px, 1vw, 15px);

  /* Create a background line at the bottom */
  background-image: linear-gradient(var(--border-bottom), var(--border-bottom));
  background-size: 95% clamp(1px, 0.3vw, 5px);
  background-repeat: no-repeat;
  background-position: bottom center;
}

.hero-line_2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 3.64vw, 70px);
  display: inline-block;
  padding: 4px 0 0;
  letter-spacing: 0.08em;
  width: fit-content;
  line-height: clamp(32px, 6.5vw, 95px);
}

.highlight-blue-underline_2 {
  color: var(--main-blue);
  font-weight: 900;
  font-size: clamp(28px, 3.64vw, 70px);
}

.dots {
  color: #000;
}

/* ===== TROUBLES BOX ===== */
.troubles-box {
  border: 4px solid var(--main-blue);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-white);
  width: 100%;
  max-width: clamp(300px, 90vw, 1300px);
  margin: 0 auto;
  filter: drop-shadow(12px 6px 6px rgba(112, 112, 112, 0.5));
  position: relative;
  z-index: 3;
  margin-bottom: 15px;
  margin-top: clamp(20px, 4.27vw, 82px);
}

.trouble-item {
  padding: 70px 15px 20px;
  position: relative;
  height: clamp(370px, 50vw, 549.2px);
  box-sizing: border-box;
}

.trouble-item.alt {
  background: #d3e8ff;
}

.trouble-top {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 10px;
  max-width: 1100px;
  width: 100%;
  height: 100%;
  max-height: 110px;
  margin: 0 auto;
}

/* Blue circle badge */
.trouble-num-circle {
  flex-shrink: 0;
  width: clamp(60px, 12vw, 160px);
  height: clamp(60px, 12vw, 160px);
  border-radius: 50%;
  background: #005ca3;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 4px 4px 8px rgb(112, 112, 112);
  position: relative;
  z-index: 2;
  right: -15px;
}

.num-small {
  font-size: clamp(0.8rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.num-big {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  padding-bottom: 10px;
}

.trouble-label {
  font-family: "Noto Sans JP", sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: 30.9px;
  padding: 16px 0 22.2px 45px;
  font-weight: 900;
  font-size: clamp(9px, 3.1vw, 47px);
  box-shadow: 0 0 20px rgb(112, 112, 112);
  border: none;
  flex: 1;
  text-align: center;
  margin-left: -30px;
  z-index: 1;
  max-width: 923.9px;
  width: 100%;
  letter-spacing: -2px;
}

.trouble-label.alt {
  letter-spacing: -0.07em;
}

.trouble-item.alt .trouble-label {
  background: var(--bg-white);
}

/* Body: content + hero figure */
.trouble-body {
  position: relative;
  margin-top: 0;
  min-height: 120px;
}

.trouble-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.trouble-hero {
  position: absolute;
  right: clamp(10px, 3vw, 36.3px);
  top: clamp(10px, 6vw, 100.5px);
  z-index: 1;
}

.trouble-hero .trouble-hero--first {
  top: clamp(10px, 6vw, 115.8px);
}

.trouble-hero img {
  width: clamp(90px, 16vw, 180.3px);
  height: clamp(100px, 18vw, 241.3px);
  display: block;
}

.trouble-item .trouble-num-circle,
.trouble-item .trouble-label,
.trouble-item .arrow-down,
.trouble-item .solution-label,
.trouble-item .solution-text-style,
.trouble-item .solution-answer-img-02,
.trouble-item .solution-answer-img-03,
.trouble-item .solution-answer-img-04,
.trouble-item .trouble-hero img {
  opacity: 0;
  transform-origin: center center;
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trouble-item .trouble-num-circle {
  transform: translateY(-8px) scale(0.92);
}

.trouble-item .trouble-label {
  transform: translateX(22px);
}

.trouble-item .arrow-down {
  transform: translateY(8px);
}

.trouble-item .solution-label {
  transform: translateY(8px);
}

.trouble-item .solution-text-style,
.trouble-item .solution-answer-img-02,
.trouble-item .solution-answer-img-03,
.trouble-item .solution-answer-img-04 {
  transform: scale(0.92);
}

.trouble-item.visible .trouble-num-circle {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.trouble-item.visible .trouble-label {
  opacity: 1;
  transform: none;
  transition-delay: 120ms;
}

.trouble-item.visible .arrow-down,
.trouble-item.visible .solution-label {
  opacity: 1;
  transform: none;
  transition-delay: 260ms;
}

.trouble-item.visible .trouble-hero img {
  opacity: 1;
  transform: none;
  transition-delay: 260ms;
  animation: float-y 3.6s ease-in-out infinite;
}

.trouble-item.visible .solution-text-style,
.trouble-item.visible .solution-answer-img-02,
.trouble-item.visible .solution-answer-img-03,
.trouble-item.visible .solution-answer-img-04 {
  opacity: 1;
  transform: none;
  transition-delay: 420ms;
  animation: pop-scale 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.solution-label {
  position: relative;
  display: inline-block;
}

.solution-label.alt {
  padding-top: clamp(10px, 2vw, 20px);
}

.trouble-item.answer-in-view .solution-label img {
  opacity: 1;
  transform: none;
}

.trouble-item:focus-within .trouble-num-circle,
.trouble-item:focus-within .trouble-label {
  opacity: 1;
  transform: none;
}

.arrow-down {
  margin: clamp(0px, 0vw, 10px) 0 clamp(0px, 0vw, 4px);
  text-align: center;
  height: clamp(18px, 8vw, 100px);
}

.arrow-dots-img {
  margin-top: 33.3px;
  margin-right: 5.5px;
  margin-bottom: 20px;
  width: clamp(25px, 8vw, 75px);
  height: clamp(18px, 6vw, 57px);
  display: inline-block;
}

.solution-label {
  text-align: center;
}

.solution-label-img {
  max-width: clamp(280px, 50vw, 575.9px);
  width: 100%;
  height: auto;
  display: inline-block;
}

.solution-label-img.first {
  padding-top: 20px;
}

.solution-answer-img {
  width: 100%;
  max-width: clamp(320px, 70vw, 1073px);
  height: auto;
  display: inline-block;
  margin-top: 1px;
}

.solution-answer-img-02 {
  width: 100%;
  max-width: clamp(300px, 65vw, 940px);
  height: auto;
  display: inline-block;
  margin-top: 4px;
}

.solution-answer-img-03 {
  width: 100%;
  max-width: clamp(280px, 50vw, 734px);
  height: auto;
  display: inline-block;
  margin-top: 4px;
}

.solution-answer-img-04 {
  width: 100%;
  max-width: clamp(290px, 55vw, 785px);
  height: auto;
  display: inline-block;
  margin-top: 4px;
}

.solution-answer-container {
  position: relative;
  width: 100%;
  margin-top: 2px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.solution-answer-container {
  text-align: center;
}

.solution-text-style {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  display: inline-block;
  white-space: nowrap;
  -webkit-text-stroke: clamp(5px, 0.53vw, 10px) #fff;
  paint-order: stroke fill;
  filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.25));
  margin-top: clamp(20px, 2vw, 29px);
  letter-spacing: -0.2em;
  margin-left: clamp(30px, 3vw, 50px);
}

.color-orange {
  color: #f18d00;
  font-size: clamp(15px, 4.5vw, 70px);
  line-height: 1;
}

.color-black {
  color: #000000;
  font-size: clamp(10px, 4vw, 50px);
  line-height: 1;
  vertical-align: baseline;
  margin-left: -5px;
}

.highlight-wrapper {
  position: relative;
  display: inline-block;
}

.solution-answer-text--mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4;
  margin: 1px 0;
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke fill;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.25));
}

.mb-line-1 {
  margin-bottom: 15px;
}

.solution-answer-text--mobile .color-orange {
  color: #f18d00;
  font-size: clamp(16px, 4.5vw, 45px);
}

.solution-answer-text--mobile .color-black {
  color: #000000;
  /*font-size: clamp(10px, 4vw, 32px);*/
}

.solution-answer-text--mobile .highlight-wrapper--first {
  position: relative;
  display: inline-block;
}

.highlight-wrapper .color-orange .char,
.highlight-wrapper--first .color-orange .char {
  position: relative;
  display: inline-block;
}

.highlight-wrapper .color-orange .char::before,
.highlight-wrapper--first .color-orange .char::before {
  content: "•";
  position: absolute;
  top: calc(-0.9em - 2px);
  left: 50%;
  transform: translateX(-50%);
  color: #f8b70f;
  font-size: clamp(10px, 4vw, 40px);
  line-height: 1;
  pointer-events: none;
  -webkit-text-stroke: 0;
  text-shadow: none;
  filter: none;
  paint-order: fill;
}

.solution-answer-text--mobile .color-orange .char::before {
  top: calc(-0.9em - 1px);
  font-size: clamp(10px, 4vw, 30px);
}

.highlight-wrapper .color-orange .char,
.highlight-wrapper--first .color-orange .char {
  vertical-align: baseline;
}

/* ===== CTA BANNER ===== */
.cta-banner_2 {
  background: transparent;
  padding: clamp(0px, 5vw, 50px) 0 clamp(5px, 1.2vw, 15px);
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto -130px;
}

.cta-banner_2 h2 {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text-dark);
}

.cta-title_2 {
  text-align: center;
  font-weight: 900;
  margin: 0 auto;
  padding-top: clamp(12px, 9vw, 81.9px);
}

.cta-title_2 .cta-lead_2 {
  display: inline-block;
  font-size: clamp(28px, 5vw, 73px);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.95);
  border-bottom: 5px solid var(--border-bottom);
  margin-bottom: 22px;
}

.cta-title_2 .cta-main_2 {
  display: inline-block;
  font-size: clamp(28px, 5vw, 73px);
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(0, 0, 0, 0.95);
  padding-bottom: 10px;
  border-bottom: 5px solid var(--border-bottom);
}

.cta-title_2 .highlight-blue {
  color: var(--main-blue);
  border-bottom: none;
  font-size: clamp(28px, 5vw, 73px);
}

.cta-title_2 .with-dots {
  position: relative;
}

.cta-title_2 .with-dots::before {
  content: "● ●";
  position: absolute;
  top: -0.45em;
  left: clamp(5px, 0vw, 5px);
  right: 0;
  text-align: center;
  color: #ffaa00;
  font-size: 0.3em;
  letter-spacing: 0.6em;
  line-height: 1;
  margin-left: 7px;
}

.cta-main_2 .add-m {
  margin-right: -15px;
  letter-spacing: 0em;
}

.highlight-blue {
  color: var(--accent-blue);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  border-bottom: 5px solid var(--border-bottom);
  padding-bottom: 2px;
}

/* ===== BLUE CTA BANNER ===== */
.blue-cta-banner_2 {
  position: relative;
  height: clamp(190px, 36vw, 680.88px);
  width: 100%;
  overflow: hidden;
  margin-top: clamp(10px, 1.26vw, 24.2px);
  background: url("../assets/images/image_04_pc.webp") center center / cover no-repeat;
  max-width: 1920px;
}

.blue-cta-banner_2.second {
  margin-top: clamp(0, -7.2vw, -138.5px);
  /*margin-top: clamp(-120px, -7.2vw, -138.5px);*/
}

.blue-cta-banner_2.third {
  /*margin: 3.1px;*/
}

.blue-cta-banner__bg-image_2 {
  display: block;
  width: 100%;
  height: auto;
}

.blue-cta-banner__button-link_2 {
  position: absolute;
  left: 50%;
  bottom: clamp(16.9px, 3.2vw, 61.5px);
  transform: translateX(-50%);
  display: block;
  z-index: 2;
  width: clamp(259.16px, 39.83vw, 764.71px);
}

.blue-cta-banner__button-image_2 {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .blue-cta-banner_2 {
    margin-top: 0px;
  }
}

@media (max-width: 375px) {
  .blue-cta-banner_2 {
    background: url("../assets/images/image_04_sp.webp") center center / cover
      no-repeat;
    margin-top: clamp(10px, 1.26vw, 24.2px);
  }
}

/* ===== STATS SECTION ===== */
.stats-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(0px, 1.75vw, 32.3px);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  top: clamp(-180.9px, -9.4vw, -59.5px);
  z-index: 2;
  padding: 0 10px 0 16.2px;
}

.stat-card {
  flex: 1;
  max-width: 32.3%;
  min-width: 0;
  display: flex;
  justify-content: center;
}

/*.stat-card:hover {
  transform: scale(1.05);
  transition: transform 0.5s ease-in-out;
}*/

.start-card__first {
  margin-top: 5px;
}

.stat-card.alt {
  margin-top: clamp(8px, 1.6vw, 15px);
}

.stat-card-img {
  object-fit: contain;
}

.stat-card-img-01 {
  object-fit: contain;
  margin-top: clamp(4px, 0vw, 12px);
}

.stat-card-img-03 {
  object-fit: contain;
  margin-top: clamp(4px, 1vw, 12px);
}

.stat-card__mobile {
  position: relative;
}

.badge-content__wallet {
  position: absolute;
  display: flex;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  justify-content: center;
}

.title-wallet {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 1.5vw, 17px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-align: center;
}

.num-wallet {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4.5rem, 6vw, 46px);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-orange);
  line-height: 1;
  margin-right: 5px;
}

.unit-wallet {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 22px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.badge-content__finance {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.badge-content__finance_1 {
  display: flex;
  justify-self: center;
  align-items: center;
}

.badge-content__finance_2 {
  display: flex;
  justify-self: center;
  align-items: center;
}

.title-finance {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 1.5vw, 17px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-align: center;
}

.num-finance {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 6vw, 46px);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-orange);
  line-height: 1;
  margin-right: 5px;
}

.unit-finance {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 3.2vw, 22px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.title-finance_2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 1.5vw, 17px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 20px;
}

.num-finance_2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 6vw, 46px);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-orange);
  line-height: 1;
  margin-right: 5px;
}

.unit-finance_2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(22px, 3.2vw, 22px);
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 20px;
  margin-right: 35px;
}

.badge-content__fix {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.title-fix {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 1.5vw, 17px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 20px;
}

.title-fix_2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 1.5vw, 17px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 20px;
}

.num-fix {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 6vw, 46px);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-orange);
  line-height: 1;
  margin-right: 5px;
}

.unit-fix {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(22px, 3.2vw, 22px);
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 20px;
}

.title-fix_3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(22px, 1.5vw, 17px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 20px;
}

/* Custom Coded Price Card */
.price-badge-card {
  position: relative;
}

.badge-icon-wrap {
  width: clamp(140px, 32vw, 440px);
}

.badge-icon-wrap img {
  width: 100%;
  height: auto;
}

.badge-content {
  position: absolute;
  top: 51.3%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin-top: clamp(10px, 4vw, 27.4px);
  width: 90%;
}

.badge-content--first {
  display: flex;
  margin-top: clamp(10px, 3.1vw, 52px);
  flex-direction: column;
}

.badge-content.alt {
  margin-top: clamp(15px, 4vw, 43px);
}

.badge-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 3vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-align: center;
}

.badge-title_1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 3vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-align: center;
}

.badge-title_2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 3vw, 45.4px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-align: center;
}

.badge-fix .badge-fix__straight {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 3vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-align: center;
  margin-right: clamp(-18px, -3vw, -8px);
}

.badge-num_1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5.3vw, 6.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-orange);
  line-height: 1;
}

.badge-price,
.badge-finance {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}

.badge-fix .num_03 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 7vw, 158px);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-orange);
  line-height: 1;
}

.badge-fix .unit_03 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 3.2vw, 50px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-align: center;
}

.badge-finance .num_02 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 7.2vw, 158px);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-orange);
  line-height: 1;
}

.badge-finance .unit_02 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 3.6vw, 70px);
  font-weight: 800;
  color: var(--text-dark);
}

.badge-price .num_01 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4.5rem, 12vw, 239px);
  font-weight: 700;
  font-style: italic;
  color: var(--accent-orange);
  line-height: 1;
}

.badge-price .unit_01 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 5vw, 99px);
  font-weight: 800;
  color: var(--text-dark);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 140px 0 40.8px;
  position: relative;
  z-index: 2;
}

.about-section__title-wrapper {
  display: flex;
  justify-content: center;
}

.about-section__title {
  display: inline-flex;
  align-items: center;
  margin: 10px auto 35px;
  font-size: clamp(27px, 5vw, 70px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.5;
  position: relative;
  border-bottom: 5px solid var(--border-bottom);
  letter-spacing: 0.2em;
}

.about-section__title .image-bracket__left {
  margin-bottom: 17px;
}

.about-section__title .image-bracket__left,
.about-section__title .image-bracket__right {
  height: clamp(40px, 6vw, 66px);
  width: auto;
  vertical-align: middle;
}

.about-logo {
  margin: 0;
  text-align: center;
}

.about-logo-img {
  width: clamp(120px, 12vw, 250px);
  height: auto;
  margin-top: clamp(33px, 6vw, 111.8px);
  display: inline-block;
}

.about-text {
  text-align: center;
  margin-top: 150px;
  /*letter-spacing: 3px;*/
}

.about-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 3vw, 45px);
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: clamp(15px, 3vw, 35px);
  color: var(--text-dark);
}

.about-text .about-text-3 {
  line-height: 1.6;
}

.accent-text {
  color: var(--accent-blue);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 500;
  /*letter-spacing: 3px;*/
}

.accent-text-bold {
  font-weight: 900;
  color: var(--accent-blue);
  padding-bottom: 1px;
  font-feature-settings: "palt";
  /*letter-spacing: 0.1em;*/
}

.accent-text-bold__mobile {
  display: none;
}

.about-text .text-line_1 {
  line-height: 0.4;
}

.text-line_2 {
  letter-spacing: 1.2px;
  display: block;
}

.text-line--second {
  margin-left: -15px;
}

.text-line-3 {
  display: block;
}

.text-line_4__item {
  display: block;
}

/* ===== FREE INITIAL COST SECTION ===== */
.free-initial-cost {
  background: var(--bg-white);
  padding: 40px 0 30px;
  width: 100%;
  max-width: clamp(300px, 90vw, 1292px);
  margin: 0 auto;
}

.free-initial-cost__title-wrapper {
  position: relative;
  width: 100%;
  max-width: clamp(300px, 90vw, 1292px);
  margin: 50px auto 20px;
  text-align: center;
}

.free-initial-cost__title-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.free-initial-cost__card {
  border: 4px solid var(--main-blue);
  border-radius: 20px;
  padding: 80px 36px 40px;
  background-image: url("../assets/images/image_city.webp");
  background-repeat: no-repeat;
  background-position: center bottom clamp(-330px, -20vw, -96px);
  background-size: 120% auto;
  min-height: clamp(280px, 35vw, 451px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.free-initial-cost__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.6)
  );
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  opacity: 1;
}

.free-initial-cost__card-content {
  position: relative;
  z-index: 3;
}

.free-initial-cost__title-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
  z-index: 10;
  width: 100%;
  max-width: clamp(200px, 60vw, 1000px);
  display: inline-block;
  background: linear-gradient(
    to bottom,
    rgb(242, 249, 255, 1) 55%,
    transparent 45%
  );
}

.free-initial-cost__card-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 3.3vw, 50px);
  line-height: 1.3;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: -0.05em;
}

.free-initial-cost__card-content .text-blue {
  color: var(--main-blue);
  display: inline-flex;
  align-items: center;
}

.free-initial-cost__card-content .text-bold {
  font-weight: 900;
}

.free-initial-cost__card-content .note {
  font-size: clamp(0.75rem, 2.5vw, 1.7rem);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.free-initial-cost__line-2 {
  display: block;
  margin-bottom: 5.4px;
}

.free-disclaimer {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 2.3vw, 32px);
  line-height: 1.4;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 20px;
  padding: 0 0 0 2em;
  text-align: left;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 2;
}
.free-disclaimer__number {
  position: absolute;
  left: 0;
}

.free-initial-cost__item-1 {
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
}

/* ===== HOUSE IMAGE SECTION ===== */
.house-image {
  padding: 0;
  top: clamp(-180px, 1.9vw, -104.4px);
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
}

.house-image .container {
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.house-image img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: inset(0 0 0 10%);
  transform: scale(1.12);
  transform-origin: right center;
}

/* ==================== BANNER SPACER + SCROLL TO TOP ==================== */
.banner-spacer_2 {
  position: relative;
  height: clamp(80px, 7.55vw, 145px);
}

.scroll-to-top_2 {
  position: absolute;
  bottom: clamp(10px, 2vw, 10px);
  right: clamp(15px, 2vw, 30px);
  display: inline-block;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 20;
}

.scroll-to-top_2:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.scroll-to-top_2 img {
  width: clamp(30px, 5vw, 54px);
  height: auto;
}

/* Base toggles for desktop/mobile image variants (default to desktop) */
.stat-card-img--mobile {
  display: none;
}

.stat-card-img--desktop {
  display: block;
}

/* Toggle full card variants: show desktop version by default, mobile under 480px */
.stat-card__mobile {
  display: none;
}

.stat-card__desktop {
  display: block;
}

.solution-answer-img--mobile {
  display: none;
}

.solution-answer-img--desktop {
  display: inline-block;
}

.free-initial-cost__title-img--mobile {
  display: none;
}

.free-initial-cost__title-img--desktop {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.cta-banner__mobile-only {
  display: none;
}

.cta-banner__desktop-only {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .hero_2 {
    padding-top: 0;
  }

  .hero_2 h1 {
    font-size: 1.2rem;
  }

  .hero-text_2 {
    flex: 1;
    margin-left: 30px;
  }

  .hero-inner_2 {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    max-width: 89vw;
  }

  .hero-line_2 {
    font-size: 18px;
    /*border-bottom: 2px solid var(--border-bottom);*/
    padding: 0;
    margin-left: 0;
  }

  .hero-line {
    border-bottom: 2px solid var(--border-bottom);
    padding: 0;
  }

  .hero-text_2 {
    margin-bottom: 0px;
  }

  .hero-text_2 h2 {
    line-height: 1.2;
  }

  .num-big {
    padding-bottom: 5px;
  }

  .big-num {
    font-size: 2.2rem;
  }

  .cta-big {
    font-size: 1.3rem;
  }

  .btn-cta {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .troubles-box {
    filter: drop-shadow(4px 6px 3px rgba(112, 112, 112, 0.5));
    border-radius: 10px;
    border: 2.5px solid var(--main-blue);
    max-width: clamp(300px, 88.7vw, 1300px);
  }

  .trouble-item {
    padding: 5.8px 0 21.2px 0;
    height: auto;
  }

  .trouble-label {
    padding: 6.9px 0 10px 25px;
    border-radius: 10px;
    letter-spacing: 0.1em;
    height: 32.7px;
  }

  .trouble-top {
    padding: 3px 14.6px 0 0;
  }

  .trouble-hero--first {
    top: 40px;
    right: 1px;
  }

  .trouble-hero {
    right: 1px;
  }

  .trouble-hero img {
    width: 80px;
    height: 90px;
    position: relative;
    top: -15px;
  }

  .trouble-num-circle {
    width: clamp(53.9px, 12vw, 160px);
    height: clamp(55.6px, 12vw, 160px);
  }

  .trouble-item__mobile-third {
    padding: 5.8px 0 0 0;
  }

  .arrow-down {
    height: clamp(21.3px, 5vw, 54px);
  }

  .arrow-down-second {
    height: clamp(18.5px, 5vw, 54px);
  }

  .trouble-item__mobile-second,
  .trouble-item__mobile-fourth {
    padding: 5.8px 0 0 0;
  }

  .arrow-down_4 {
    padding: 0;
  }

  .color-orange {
    font-size: clamp(15px, 6.8vw, 70px);
    letter-spacing: 0;
  }

  .color-black {
    font-size: 14px;
  }

  .solution-text-style {
    margin-top: 0;
  }

  .solution-answer-text--mobile .color-orange {
    font-size: 25.5px;
  }

  .solution-answer-img--mobile {
    display: none;
  }

  .solution-answer-img--desktop {
    display: block;
  }

  .solution-label img {
    max-width: 180px;
  }

  .solution-label.fourth {
    padding: 0;
  }

  .solution-answer-img--desktop {
    display: none !important;
  }

  .solution-answer-img--mobile {
    display: block !important;
    max-width: 86%;
    height: auto;
    margin: 0 auto;
  }

  .solution-answer-img-02 {
    max-width: 300px;
  }

  .mb-line-1 {
    margin-bottom: clamp(8px, 2.5vw, 19.8px);
  }

  .solution-answer-img,
  .solution-answer-img-04,
  .solution-answer-img-03 {
    max-width: 255px;
  }

  .arrow-dots-img {
    margin: 0;
    width: clamp(25px, 6.8vw, 75px);
    height: clamp(18px, 3vw, 57px);
  }

  .solution-label-img.first {
    padding-top: 0;
  }

  .solution-answer-container.fourth {
    margin-top: 9.5px;
  }

  .free-initial-cost {
    padding: 24.8px 0 0;
    margin-bottom: 20px;
  }

  .free-initial-cost__title-wrapper {
    margin-bottom: 6.2px;
    max-width: clamp(300px, 83.9vw, 1292px);
  }

  .free-initial-cost__title-container {
    max-width: 260px;
    background: none;
    padding-left: 8.3px;
  }

  .free-initial-cost__card {
    min-height: 230px;
    background-position: center bottom -70px;
    padding-top: 40px;
    border-radius: 8px;
    border: 3px solid var(--main-blue);
  }

  .free-initial-cost__card-content .note {
    font-size: clamp(0.65rem, 2.5vw, 16px);
  }

  .free-disclaimer {
    margin-top: 0;
    font-size: clamp(12.5px, 2.2vw, 30px);
    line-height: 16px;
  }

  .free-initial-cost__title-img--desktop {
    display: none !important;
  }

  .free-initial-cost__title-img--mobile {
    display: block !important;
    max-width: 251px;
    height: auto;
    margin: 0 auto 20px;
  }

  .free-initial-cost__card-content p {
    font-size: 19px;
  }

  .free-initial-cost__item.second {
    margin-top: 10px !important;
  }

  .free-initial-cost__item {
    display: block;
  }

  .free-initial-cost__item-1 {
    font-feature-settings: "palt";
    letter-spacing: -0.02em;
  }

  .cta-title_2 .cta-main_2 {
    border-bottom: none;
  }

  .cta-title_2 .cta-lead_2 {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-bottom);
  }

  .cta-banner__mobile-only {
    margin-bottom: -20px;
    display: block;
  }

  .cta-banner__desktop-only {
    display: none;
  }

  .cta-title_2 {
    padding-top: 0;
  }

  .add-br {
    display: inline-block;
    border-bottom: 2px solid var(--border-bottom);
    margin-bottom: 17.6px;
    padding-bottom: 20px;
  }

  .cta-main_2 .add-m {
    margin-right: 0px;
  }

  .cta-main_2 .add-palt {
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
  }

  .cta-banner_2 {
    padding-top: 0;
  }

  .cta-banner_2 h2 {
    line-height: 0;
  }

  .cta-title_2 .with-dots::before {
    left: 5px;
    margin-left: 0;
    font-size: 0.2em;
    letter-spacing: 1.6em;
  }

  .text-line_3__item {
    display: block;
  }

  .house-image {
    top: 41.3px;
  }

  .stat-card-img--desktop {
    display: none !important;
  }

  .stat-card-img--mobile {
    display: block !important;
    max-width: 86%;
    height: auto;
    margin: 0 auto;
  }

  .stats-grid {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding: 0 3px 0 0;
    top: 55.5px;
    margin-bottom: 64.3px;
  }

  .stat-card.alt {
    margin-top: 0;
  }

  .stat-card {
    width: 100%;
    border-radius: 12px;
    padding: 18px 18px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 88px;
    position: relative;
    padding: 0;
  }

  .stat-card::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: transparent;
  }

  .stat-card img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .stat-card__mobile {
    display: block !important;
    width: 320px;
  }

  .stat-card__desktop {
    display: none !important;
  }

  /* Mobile images for stat-card mobile variant */
  .stat-card__mobile img {
    width: 312px !important;
    max-width: none !important;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .num-wallet {
    font-size: clamp(5.4rem, 6vw, 46px);
  }

  .unit-wallet {
    font-size: clamp(2.1rem, 3.2vw, 22px);
  }

  .num-finance {
    font-size: clamp(3.2rem, 6vw, 46px);
  }

  .unit-finance,
  .title-finance {
    margin: 20px 0 0 0;
  }

  .num-finance_2 {
    font-size: clamp(3.9rem, 6vw, 46px);
  }

  .unit-finance_2 {
    font-size: clamp(27.6px, 3.2vw, 22px);
    margin-top: 16.3px;
    margin-right: -2.9px;
  }

  .num-fix {
    font-size: clamp(4rem, 6vw, 46px);
  }

  .title-fix_3 {
    font-size: clamp(24.5px, 1.5vw, 17px);
  }

  .title-finance_2 {
    font-size: clamp(19.6px, 1.5vw, 17px);
  }

  .title-fix_2 {
    font-size: clamp(21.6px, 1.5vw, 17px);
  }

  .scroll-to-top {
    bottom: -5px;
  }

  .about {
    padding-bottom: 10px;
    padding-top: 21.2px;
  }

  .about-logo {
    padding: 0 10px;
  }

  .about-logo,
  .about-section__title {
    margin: 0;
  }

  .about-section__title {
    border-bottom: 2px solid var(--border-bottom);
    margin: 6.7px auto 32.1px;
  }

  .about-logo-img {
    width: 94.1px;
    margin-bottom: 0;
    margin-top: 0;
  }

  .text-line-2 {
    margin-bottom: 5px;
  }

  .about-text p:last-child {
    line-height: 1.6;
    margin: -4px 0 0 0;
  }

  .about-section__title .image-bracket__left,
  .about-section__title .image-bracket__right {
    height: 32px;
  }

  .about-section__title .image-bracket__left {
    margin-bottom: 4px;
  }

  .about-text {
    margin: -16px 6px 6px;
  }

  .about-text p {
    margin-top: -12.5px;
    line-height: 1.4;
  }

  .about-text .about-text-3 {
    line-height: 1.6;
  }

  .accent-text-bold__first {
    margin-right: -5px;
  }

  .accent-text-bold__mobile {
    display: inline-block;
    font-weight: 900;
    color: var(--accent-blue);
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
  }

  .accent-text-bold-desktop {
    display: none;
  }

  .about-text .text-line_1 {
    line-height: 0.3;
    margin-top: 49.5px;
  }

  .text-line_2 {
    display: block;
  }

  .text-line_3,
  .text-line_4 {
    display: block;
  }

  .banner-spacer--first_2 {
    height: 120px;
  }

  .banner-spacer_2 {
    height: clamp(40px, 7.55vw, 145px);
  }

  .banner-spacer--first_2 {
    height: 120px;
  }

  .solution-answer-img--desktop {
    display: none !important;
  }

  .solution-answer-text--mobile {
    display: flex;
    gap: 7px;
  }

  .solution-answer-text--mobile .color-orange .char::before {
    top: calc(-1.1em - 1px);
  }

  .highlight-wrapper .color-orange .char::before,
  .highlight-wrapper--first .color-orange .char::before {
    top: calc(-1.1em - 1px);
  }

  .solution-answer-container {
    margin-top: 4.2px;
  }

  .blue-cta-banner_2.second {
    margin-top: 40px;
  }

  .blue-cta-banner_2.third {
    margin: -9.5px 0 0 0;
  }

  .choice-title_3 {
    font-size: clamp(28px, 4.5vw, 22px) !important;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  .free-initial-cost {
    padding-top: 0;
  }

  .about {
    padding-bottom: 40px;
  }

  .about-text p:last-child {
    margin-bottom: 0;
  }

  .house-image {
    top: 50px;
  }

  .stats-grid {
    top: 39px;
  }

  .start-card__first {
    margin-top: 5px;
  }

  .blue-cta-banner_2 {
    margin-top: 10px;
  }

  .trouble-top {
    padding-left: 0;
    padding-right: 10px;
  }

  .start-card__second {
    margin-top: 3px;
  }

  .cta-main_2 .add-m {
    margin-right: -9px;
  }

  .badge-content--first {
    margin-top: 4.5vw;
  }

  .blue-cta-banner_2.second {
    margin-top: 50px;
  }

  .badge-icon-wrap {
    width: clamp(140px, 28.1vw, 440px);
  }
}

@media (min-width: 601px) and (max-width: 999px) {
  .trouble-top {
    padding-left: 0;
    padding-right: 10px;
  }

  .about {
    padding-bottom: 0;
  }

  .free-initial-cost {
    padding-top: 20px;
  }

  .cta-main_2 .add-m {
    margin-right: -9px;
  }

  .badge-content--first {
    margin-top: 3.7vw;
  }

  .stat-card {
    max-width: clamp(220px, 29.8vw, 300px);
  }

  .badge-price .num_01 {
    font-size: clamp(4rem, 13vw, 160px);
  }
}

@media (min-width: 1000px) and (max-width: 1499px) {
  .trouble-top {
    padding-left: 0;
    padding-right: 10px;
  }

  .stats-grid {
    top: clamp(-180.9px, -15vw, -59.5px);
  }

  .stat-card {
    max-width: clamp(240px, 25vw, 370px);
  }

  .badge-price .num_01 {
    font-size: clamp(4.5rem, 12vw, 180px);
  }

  .badge-content--first {
    margin-top: clamp(4vw, 6.7vw, 52px);
  }

  .badge-icon-wrap {
    width: clamp(160px, 24vw, 450px);
  }

  .badge-title_2,
  .badge-title_1,
  .badge-title {
    font-size: clamp(14px, 2.5vw, 50px);
  }

  .badge-fix .unit_03 {
    font-size: clamp(1.8rem, 2.9vw, 30px);
  }

  .badge-content,
  .badge-content.alt {
    margin-top: clamp(15px, 4vw, 30px);
  }
}

@media (min-width: 1499px) and (max-width: 1700px) {
  .stat-card {
    max-width: clamp(280px, 22.8vw, 400px);
  }

  .badge-icon-wrap {
    width: clamp(200px, 25vw, 390px);
  }

  .badge-title_2,
  .badge-title_1 {
    font-size: clamp(14px, 2.3vw, 45px);
  }

  .badge-fix .badge-fix__straight,
  .badge-title {
    font-size: clamp(22px, 2.4vw, 50px);
  }

  .badge-finance .unit_02 {
    font-size: clamp(1.6rem, 2.9vw, 50px);
  }

  .badge-fix .num_03,
  .badge-finance .num_02 {
    font-size: clamp(3rem, 7.5vw, 130px);
  }

  .badge-num_1 {
    font-size: clamp(2.5rem, 4.5vw, 80px);
  }

  .badge-price .num_01 {
    font-size: clamp(5rem, 12vw, 200px);
  }

  .badge-price .unit_01 {
    font-size: clamp(2.5rem, 4vw, 70px);
  }
}

@media (min-width: 1701px) and (max-width: 1919px) {
}

/* ===== STAGGERED REVEAL INSIDE TROUBLE ITEMS ===== */
@keyframes float-y {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pop-scale {
  0% {
    transform: scale(0.92);
  }

  60% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Reasons Section ===== */
.reasons-section_3 {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  /* padding: 60px 20px 40px; */
  overflow: hidden;
  background-color: #f8f9fa;
}

/* Background Arrow */
.background-arrow_3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/image3/background-arrow.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.9;
}

/* Container */
.reasons-container_3 {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 135px;
}

/* ===== Title ===== */
.reasons-title_3 {
  position: relative;
  display: inline-block;
  font-size: clamp(20px, 5vw, 73px);
  font-weight: 900;
  color: black;
  margin-bottom: 100px;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}

.reasons-title_3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ffff00;
  border-radius: 3px;
}

.reasons-title_3 .highlight_3 {
  color: #00a0e9;
}

/* ===== Scroll Pop-up Animation ===== */
.reasons-subtitle-wrapper_3 {
  padding: 50px 30px;
  margin-bottom: 100px;
}

.reasons-subtitle_3 {
  font-size: clamp(20px, 5vw, 45px);
  font-weight: 900;
  color: black;
  line-height: 1.4;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.reasons-subtitle_3 .blue-text_3 {
  color: #00a0e9;
  font-weight: 900;
}

/* Scroll Animation */
.animate-on-scroll_3 {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-on-scroll_3.visible_3 {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Reason Cards ===== */
.reason-cards_3 {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: -50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.reason-card_3 {
  position: relative;
  width: clamp(280px, 21.4vw, 410px);
  height: clamp(280px, 18vw, 345px);
  min-height: 200px;
  padding: 50px 25px 30px;
  background-image: url("../assets/image3/square.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reason-card_3:hover {
  transform: translateY(-10px) scale(1.03);
  filter: drop-shadow(0 15px 30px rgba(0, 160, 233, 0.2));
}

.reason-card_3.active_3 {
  transform: translateY(-15px) scale(1.05);
  filter: drop-shadow(0 20px 40px rgba(0, 160, 233, 0.3));
}

/* Card Badge */
.card-badge_3 {
  position: absolute;
  top: -85px;
  left: 49%;
  transform: translateX(-50%);
  width: 145px;
  height: 145px;
  /* background: linear-gradient(135deg, #00A0E9 0%, #2d7bc9 100%); */
  background-color: #005ca3;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 2px 8px 14px rgba(0, 0, 0, 0.2);
}

.badge-text_3 {
  font-size: clamp(20px, 5vw, 29px);
  color: #fff;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
}

.badge-number_3 {
  font-size: clamp(16px, 2vw, 18px);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}

.badge-number-img_3 {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Card Content */
.card-content_3 {
  line-height: 1.2;
  text-align: center;
  margin-top: 40px;
  /* padding: 0 15px; */
  font-family: "Noto Sans JP", sans-serif;
}

.card-label_3 {
  font-size: clamp(30px, 2.1vw, 40px);
  color: black;
  margin-bottom: 5px;
  font-weight: 900;
}

.card-value_3 {
  font-size: clamp(30px, 2.1vw, 40px);
  color: black;
  margin-bottom: 5px;
  line-height: 1.2;
  font-weight: 900;
}

.card-value_3 .highlight-number_3 {
  font-size: clamp(48px, 3.1vw, 60px);
  font-weight: 900;
  color: #00a0e9;
  font-family: "Oswald", sans-serif;
}

.card-desc_3 {
  font-size: clamp(30px, 2.1vw, 40px);
  font-weight: 900;
  color: black;
  line-height: 1.5;
}

.card-desc_3_1 {
  font-size: clamp(30px, 2.1vw, 40px);
  font-weight: 900;
  color: black;
  line-height: 1.3;
}

.highlight-text_3 {
  color: #00a0e9;
  font-weight: 900;
}

@media (max-width: 1400px) {
  .card-label_3 {
    font-size: clamp(28px, 2.1vw, 40px);
    color: black;
    margin-bottom: 5px;
    font-weight: 900;
  }

  .card-value_3 {
    font-size: clamp(28px, 2.1vw, 40px);
    color: black;
    margin-bottom: 5px;
    line-height: 1.2;
    font-weight: 900;
  }

  .card-value_3 .highlight-number_3 {
    font-size: clamp(42px, 3.1vw, 60px);
    font-weight: 900;
    color: #00a0e9;
    font-family: "Oswald", sans-serif;
  }

  .card-desc_3 {
    font-size: clamp(28px, 2.1vw, 40px);
    font-weight: 900;
    color: black;
    line-height: 1.5;
  }

  .card-desc_3_1 {
    font-size: clamp(28px, 2.1vw, 40px);
    font-weight: 900;
    color: black;
    line-height: 1.3;
  }

  .highlight-text_3 {
    color: #00a0e9;
    font-weight: 900;
  }
}

/* ===== Mobile Reason Cards (hidden on desktop) ===== */
.reason-cards-mobile_3 {
  display: none;
}

/* ===== Photo Gallery ===== */
.photo-gallery_3 {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 20px;
}

.photo-item_3 {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.photo-item_3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reasons-title_3 {
  animation: fadeInUp 0.8s ease forwards;
}

.reasons-subtitle-wrapper_3 {
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.reason-card_3:nth-child(1) {
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.reason-card_3:nth-child(2) {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.reason-card_3:nth-child(3) {
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.photo-gallery_3 {
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .reason-cards_3 {
    gap: 20px;
  }

  .reason-card_3 {
    width: 250px;
    min-height: 180px;
  }
}

@media (max-width: 992px) {
  .reasons-title_3 {
    font-size: clamp(16px, 2vw, 18px);
  }

  .reasons-subtitle_3 {
    font-size: clamp(16px, 2vw, 18px);
  }

  .reason-cards_3 {
    flex-direction: column;
    align-items: center;
  }

  .reason-card_3 {
    width: 90%;
    max-width: 300px;
  }

  .photo-gallery_3 {
    flex-direction: column;
    padding-top: 0px;
  }

  .photo-item_3 img {
    height: 200px;
  }
}

/* ===== Section 2: Choice Section ===== */
.choice-section_3 {
  padding-top: 120px;
  text-align: center;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}

.choice-title_3 {
  font-size: clamp(20px, 5vw, 73px);
  font-weight: 900;
  color: black;
  margin-bottom: 10px;
  line-height: 1.8;
  position: relative;
  z-index: 10;
  display: inline-block;
}

/* Hide mobile title on desktop */
.choice-title-mobile_3 {
  display: none;
}

/* Each line with its own underline */
.title-line_3 {
  position: relative;
  display: inline-block;
}

.title-line_3::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ffff00;
  border-radius: 3px;
}

/* Dot decoration above text */
.dot-text_3 {
  position: relative;
  display: inline-block;
}

.dot-icon_3 {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
}

.highlight-blue_3 {
  color: #00a0e9;
}

.underline-yellow_3 {
  position: relative;
  display: inline;
}

.underline-yellow_3::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffff00;
  border-radius: 2px;
}

/* Choice Image Wrapper */
.choice-image-wrapper_3 {
  position: relative;
  width: 100%;
  bottom: 140px;
}

.choice-bg-image_3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Circle Cards */
.circle-cards_3 {
  position: absolute;
  bottom: -220px;
  left: 50.8%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  /* gap: 80px; */
  z-index: 2;
}

.circle-card_3 {
  width: 408px;
  height: 408px;
  position: relative;
}

.circle-border-img_3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.circle-inner_3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 55px 30px 40px;
  border-radius: 50%;
  z-index: 3;
}

.circle-with-border_3 {
  box-shadow:
    2px 8px 14px rgba(0, 0, 0, 0.2),
    inset 0 0 0 8px rgba(255, 255, 255, 0.6);
}

.circle-label_3 {
  font-size: clamp(28px, 2.24vw, 43px);
  color: #fff;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.label-icon_3 {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.circle-text_3 {
  font-size: clamp(30px, 2.24vw, 43px);
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
}

.highlight-yellow_3 {
  color: #ffff00;
}

/* Mobile Circle Cards - Hidden on desktop */
.circle-cards-mobile_3 {
  display: none;
}

/* Responsive for Circle Cards (Under 1300px) */
@media (max-width: 1300px) {
  .circle-card_3 {
    width: 320px;
    height: 320px;
  }

  .circle-text_3 {
    font-size: clamp(18px, 2.5vw, 28px);
  }

  .circle-label_3 {
    font-size: clamp(22px, 2vw, 26px);
  }

  .circle-inner_3 {
    padding-top: 50px;
  }
}

/* Responsive for Circle Cards */
@media (max-width: 992px) {
  .choice-title_3 {
    font-size: clamp(16px, 2vw, 18px);
  }

  .circle-cards_3 {
    flex-direction: column;
    bottom: -250px;
    gap: 20px;
  }

  .circle-card_3 {
    width: 160px;
    height: 160px;
  }

  .circle-text_3 {
    font-size: clamp(16px, 2vw, 18px);
  }
}

@media (max-width: 1000px) {
  .choice-title_3 {
    font-size: clamp(16px, 2vw, 18px);
  }

  .circle-inner_3 {
    padding-top: 40px;
  }

  .circle-cards_3 {
    flex-direction: row;
    bottom: -130px;
    gap: 20px;
  }

  .circle-card_3 {
    width: 250px;
    height: 250px;
  }

  .circle-text_3 {
    font-size: clamp(16px, 2vw, 18px);
  }
}

/* ==================== CTA BANNER ==================== */
.cta-banner_3 {
  position: relative;
  margin-top: 85px;
  background: url("../assets/images/image_05_pc.webp") center center / cover
    no-repeat;
  height: clamp(160px, 36vw, 593.8px);
}

@media (max-width: 376px) {
  .cta-banner_3 {
    margin-top: 12px !important;
    background: url("../assets/images/image_05_sp.webp") center center / cover
      no-repeat;
  }
}

.cta-banner__image-wrapper_3 {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  margin-top: -180px;
}

.cta-banner__image_3 {
  width: 100%;
  max-width: 1241px;
  height: auto;
  margin: 0 auto;
}

/* Decorative exclamation_3 marks */
.exclamation_3 {
  display: inline-block;
  width: clamp(3px, 0.5vw, 5px);
  height: clamp(30px, 5vw, 50px);
  background-color: #ffffff;
  border-radius: 50px;
  position: relative;
  vertical-align: middle;
}

.exclamation_3::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: inherit;
  border-radius: 50px;
  height: clamp(8px, 1.2vw, 14px);
  top: calc(100% + clamp(4px, 0.7vw, 10px));
  left: 0;
}

.exclamation_3.left {
  transform: rotate(30deg);
  margin-right: 8px;
}

.exclamation_3.right {
  transform: rotate(-30deg);
  margin-left: -8px;
}

.cta-banner__sub_3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 5vw, 63px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 50px);
  transform: rotate(-10deg) !important;
  padding-left: 240px;
  padding-top: clamp(30px, 5.99vw, 40px);
  /* padding-bottom: clamp(20px, 3.4vw, 40px); */
}

@media (max-width: 1920px) {
  .cta-banner__sub_3 {
    padding-left: 15.6vw;
  }
}

@media (max-width: 1700px) {
  .cta-banner__sub_3 {
    font-size: clamp(20px, 4vw, 60px);
  }
}

@media (min-width: 1921px) {
  .cta-banner__sub_3 {
    padding-left: 15.3vw;
  }
}

.cta-banner__sub_3 .fade-in-up_3 {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.cta-banner__sub_3 .fade-in-up_3.active {
  opacity: 1;
  transform: translateY(0);
}

.cta-banner__sub_3 .exclamation_3 {
  background-color: #ffffff;
  width: clamp(2px, 0.4vw, 3px);
  height: clamp(30px, 7vw, 50px);
}

.cta-banner__sub_3 .exclamation_3::after {
  background-color: #ffffff;
  height: clamp(8px, 1.2vw, 14px);
  top: calc(100% + clamp(4px, 0.7vw, 10px));
}

.cta-banner__title_3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 4.5vw, 80px);
  font-weight: 900;
  color: #ffff00;
  line-height: 1.4;
  margin-bottom: clamp(30px, 5vw, 30px);
  letter-spacing: 0.05em;
  padding-top: clamp(10px, 6.5vw, 10px);
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  /* Prevent wrapping */
}

@media (max-width: 1200px) {
  .cta-banner__title_3 {
    white-space: normal;
    /* Allow wrapping on smaller screens if needed */
  }
}

/* Arrow Down - at bottom of CTA banner */
.cta-arrow_3 {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.cta-arrow-img_3 {
  width: 100%;
  height: auto;
  position: relative;
  top: 125px;
}

/* ===== Section 3: Final Section ===== */
.final-wrapper_3 {
  position: relative;
  width: 100%;
}

.final-section_3 {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 0;
  text-align: center;
  padding: 0;
  overflow: visible_3;
  padding-bottom: 100px;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.final-bg-arrow_3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: url("../assets/image3/house_bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.footer_3 {
  height: 63px;
  position: relative;
  z-index: 10;
  background-color: #00a0e9;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: clamp(16px, 2vw, 18px);
  width: 100%;
}
@media (min-width: 992px) {
	.footer_3 {height: auto;}
}
.footer_link{display:flex;justify-content:space-around;width:50%;margin:0 auto 10px;}
.footer_link li{list-style: none;}
.footer_link li a{color:#fff;font-size: 0.9em;text-decoration:none;}
.footer_link li a:hover{text-decoration:underline;}
.footer_link li a::before{content:"";display:inline-block;width:0;height:0;border-left:9px solid #fff;border-top:6px solid transparent;border-bottom:6px solid transparent;margin-right:5px;}
@media (max-width: 768px) {
	.footer_link{display:block;padding-left:calc(30% - 7em);text-align:left;}
}
footer p a{color:#fff; text-decoration:none;}
footer p a:hover{text-decoration:underline;}
.final-content_3 {
  position: relative;
  z-index: 1;
  padding: clamp(58px, calc(-0.11vw + 234px), 80px) 20px 80px;
}

.final-subtitle_3 {
  font-size: clamp(20px, 5vw, 60px);
  font-weight: 900;
  color: black;
  line-height: 1.6;
  padding-top: 92px;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}

.highlight-yellow-underline_3 {
  display: inline-block;
  /* Changed to inline-block/relative for positioning */
  position: relative;
  /* background removed */
  padding-bottom: 4px;
  z-index: 1;
}

.highlight-yellow-underline_3::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ffff00;
  /* border-radius: 3px; Optional, based on user snippet */
  z-index: -1;
}

/* ===== Contact Form ===== */
.final-form_3 {
  background-color: #ffffff;
  max-width: 1250px;
  margin: 0 auto;
  padding: 60px 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

#mfp_hidden input[type="submit"] {
  display: none !important;
}

.mfp_err {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.mfp_err_msg {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form_3 {
  width: 100%;
}

.form-row_3 {
  display: flex;
  align-items: flex-start;
  padding: 18px 100px;
  border-bottom: 1px solid #b8b9b9;
  gap: 60px;
}

.form-row_3:first-child {
  border-top: 1px solid #b8b9b9;
}

.form-label_3 {
  width: 300px;
  min-width: 300px;
  font-weight: 700;
  color: #2d2d2d;
  padding-top: 10px;
  text-align: left;
  font-size: clamp(18px, 2vw, 21px);
}

.form-input-wrap_3 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  max-width: 720px;
  width: 100%;
}

.form-input_3 {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #2d2d2d;
  font-size: clamp(16px, 2vw, 18px);
  background-color: #fff;
  color: #2d2d2d;
}

.form-input_3::placeholder {
  color: #999;
}

.form-select_3 {
  padding: 14px 18px;
  border: 1px solid #2d2d2d;
  font-size: clamp(16px, 2vw, 18px);
  background-color: #fff;
  min-width: 100px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../assets/image3/icon_dropdown.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-select-full_3 {
  width: 100%;
}

.form-select-date_3 {
  width: 156px;
}

.form-date-group_3 {
  flex-direction: row;
  gap: 10px;
}

.form-select-date_3 {
  flex: 1;
}

.form-postal-group_3 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.form-input-postal_3 {
  flex: 1;
}

.form-input_3.error_3,
.form-select_3.error_3,
.form-input_3.problem,
.form-select_3.problem {
  border: 1px solid #ff0000 !important;
}

.form-checkbox-item_3 input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #2d2d2d;
  border-radius: 2px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
}

.form-checkbox-item_3 input[type="checkbox"]:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000000;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.form-checkbox-item_3 input[type="checkbox"].error_3,
.form-checkbox-item_3 input[type="checkbox"].problem {
  border: 1px solid #ff0000 !important;
}

.error_3,
.problem {
  border: 2px solid #e60023 !important;
}

.error_3:focus,
.problem:focus {
  outline: none;
}

:where(.form-checkbox-grid_3, .form-input-wrap_3):has(
    .mfp_err[style*="display: block"]
  )
  .mfp_element_checkbox {
  border: 1px solid #ff0000 !important;
}

.btn-postal-search_3:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-postal-search_3 {
  padding: 12px 20px;
  background-color: #231815;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: normal;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: relative;
}

.btn-postal-search_3:hover {
  opacity: 0.8;
}

.btn-postal-search_3.loading {
  color: transparent;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-postal-search_3.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin_3 0.8s linear infinite;
}

@keyframes spin_3 {
  to {
    transform: rotate(360deg);
  }
}

.form-hint_3 {
  font-size: clamp(12px, 2vw, 16px);
  color: #2d2d2d;
}

.form-checkbox-group_3 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.form-checkbox-grid_3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 50px;
  width: 100%;
}

.form-checkbox-item_3 {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 900;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
}

.form-checkbox-item_3 input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-other-wrap_3 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.form-input-other_3 {
  flex: 1;
  width: 400px;
}

.form-row-privacy_3 {
  border-bottom: none;
  padding-bottom: 30px;
}

.form-privacy-link_3 {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 15px;
  border: 1px solid #999;
  border-radius: 30px;
  color: black;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  text-decoration: underline;
}

.form-privacy-link_3:hover {
  background-color: #f0f0f0;
}

.form-submit-area_3 {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #b8b9b9;
  margin-top: 20px;
}

.form-submit-note_3 {
  margin-bottom: 64px;
  color: black;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
}

.btn-submit_3 {
  display: inline-block;
  width: 500px;
  max-width: 100%;
  height: 70px;
  background-color: #005ca3;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: clamp(20px, 4.5vw, 24px);
  font-weight: 900;
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.btn-submit_3:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

@media (min-width: 1600px) {
  .reason-cards_3 {
    padding-top: 20px;
    gap: 50px;
    margin-bottom: -80px;
  }
}

/* Mobile Only Break */
.sp-only_3 {
  display: none;
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 992px) {
  .sp-only_3 {
    display: initial;
  }

  /* Fix horizontal scroll */
  html,
  body {
    overflow-x: hidden;
  }

  /* Section 1: Title & Subtitle */
  .reasons-container_3 {
    padding-top: 30px;
  }

  /* .reasons-section_3 {
    padding-left: 15px;
    padding-right: 15px;
  } */

  .reasons-title_3 {
    font-size: clamp(18px, 4.5vw, 22px);
    margin-bottom: 20px;
    font-family: "Noto Sans JP", sans-serif;
  }

  .reasons-title_3::after {
    height: 3px;
    bottom: -2px;
  }

  .reasons-subtitle-wrapper_3 {
    padding: 10px 15px;
    margin-bottom: 30px;
  }

  .reasons-subtitle_3 {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.8;
    font-family: "Noto Sans JP", sans-serif;
  }

  /* Section 1: Reason Cards - Horizontal pill layout */
  .reason-cards_3 {
    flex-direction: column;
    gap: 15px;
    padding: 0;
  }

  .reason-card_3 {
    width: calc(100% - 20px) !important;
    margin: 0 auto;
    height: auto !important;
    min-height: 100px !important;
    padding: 25px 30px 25px 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* background-image: url('../assets/image3/rectangle.png'); */
    /* background-size: 100% 100%; */
    /* background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none; */
  }

  .card-badge_3 {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  }

  .badge-text_3 {
    font-size: clamp(12px, 2vw, 16px);
  }

  .badge-number_3 {
    font-size: clamp(32px, 4.5vw, 48px);
  }

  .reason-content_3 {
    text-align: center;
    padding-top: 0;
    padding-left: 0;
    width: 100%;

    font-family: "Noto Sans JP", sans-serif;
  }

  .reason-description_3 {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 0;
    display: inline;
  }

  .reason-highlight_3 {
    font-size: clamp(20px, 4.5vw, 26px);
    display: inline;
  }

  /* Hide desktop cards, show mobile cards */
  .reason-cards_3 {
    display: none !important;
  }

  .reason-cards-mobile_3 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 0 50px;
    margin-bottom: 40px;
  }

  /* Card */
  .reason-card-mobile_3 {
    position: relative;
    width: 100%;
    min-height: 90px;

    background-image: url("../assets/image3/rectangle.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;

    border-radius: 10px;
    box-shadow: 2px 8px 14px rgba(0, 0, 0, 0.2);
  }

  /* Badge tròn */
  .card-badge-mobile_3 {
    position: absolute;
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;

    background-color: #005ca3;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;

    z-index: 2;
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.3));
  }

  .card-badge-mobile_3 .badge-text_3 {
    font-size: clamp(12px, 2vw, 16px);
    color: #fff;
    font-weight: 900;
  }

  .card-badge-mobile_3 .badge-number-img_3 {
    height: 25px;
    width: auto;
  }

  /* Content */
  .card-reason-content-mobile_3 {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 16px 24px 16px 52px;
  }

  .card-reason-content-mobile_3 p {
    margin: 0;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 900;
    color: black;
    line-height: 1.5;
  }

  .card-reason-content-mobile_3 .highlight-number_3 {
    font-size: clamp(22px, 4.5vw, 26px);
    color: #00a0e9;
    font-weight: 900;
    font-family: "Oswald", sans-serif;
  }

  /* Photo Gallery - 3 images in row */
  .photo-gallery_3 {
    display: flex;
    flex-direction: row;
    gap: 0;
  }

  .photo-item_3 {
    flex: 1;
  }

  .photo-item_3 img {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }

  /* Section 2: Choice Title */
  .choice-section_3 {
    padding-top: 0px;
  }

  .choice-title_3 {
    font-size: clamp(18px, 4.5vw, 22px);
    margin-bottom: 30px;
    line-height: 1.8;
    padding-top: 20px;

    font-family: "Noto Sans JP", sans-serif;
  }

  /* Hide desktop title, show mobile title */
  .choice-title-desktop_3 {
    display: none !important;
  }

  .choice-title-mobile_3 {
    display: inline-block !important;
  }

  .title-line_3::after {
    height: 2px;
    bottom: 2px;
  }

  .dot-icon_3 {
    top: 2px;
    width: 5px;
    height: 5px;
  }

  .choice-image-wrapper_3 {
    margin-top: -30px;
    bottom: 0px;
  }

  /* .choice-bg-image_3 {
    background-image: url("../assets/image3/watch_phone_mobile.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  } */

  /* Hide desktop circle cards, show mobile */
  /* Hide desktop version */
  .circle-cards_3 {
    display: none !important;
  }

  /* Wrapper */
  .circle-cards-mobile_3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 37px;
    width: 100%;
    margin-top: -60px;
    position: relative;
    z-index: 5;
  }

  /* Card */
  .circle-card-mobile_3 {
    position: relative;
    width: 100%;
    height: 100px;
    padding: 22px 16px 50px;
    background-color: #005ca3;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* shadow chính */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
  }

  /* viền trắng bên trong */
  .circle-card-mobile_3::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    pointer-events: none;
  }

  /* Label GOOD / NICE / HAPPY */
  .card-label-mobile_3 {
    position: absolute;
    top: -6px;
    /* nằm đè lên viền */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;

    display: flex;
    align-items: center;
    /* căn giữa theo trục dọc */
    justify-content: center;
    gap: 6px;

    /* QUAN TRỌNG */
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .card-label-mobile_3 .label-icon_3 {
    width: 16px;
    height: 16px;
    object-fit: contain;
  }

  /* chữ GOOD / NICE / HAPPY */
  .card-label-mobile_3 .label-text-img_3 {
    height: 20px;
    /* chỉnh theo design */
    width: auto;
    object-fit: contain;
  }

  /* icon ! */
  /* .card-label-mobile_3 img {
    width: 16px;
    height: 16px;
    object-fit: contain;
  } */

  /* Content text */
  .card-content-mobile_3 {
    position: relative;
    z-index: 2;
    transform: translateY(12px);
    font-family: "Noto Sans JP", sans-serif;
  }

  .card-content-mobile_3 p {
    margin: 0;
    font-size: clamp(18px, 4.5vw, 22px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    font-family: "Noto Sans JP", sans-serif;
  }

  .card-content-mobile_3 .text-yellow_3 {
    color: #ffff00;
  }

  .cta-arrow_3 {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-arrow-img_3 {
    width: 45px;
  }

  /* Section 3: Final Section Mobile */
  .final-section_3 {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }

  .final-bg-arrow_3 {
    background-size: 400% 100%;
    /* Widen wings */
    background-position: center top;
  }

  /* Text Layout */
  .final-subtitle_3 {
    font-size: clamp(18px, 4.5vw, 22px);
    padding-top: 40px;
    line-height: 2;
    letter-spacing: 0;
  }

  .highlight-yellow-underline_3 {
    display: inline-block;
    position: relative;
    padding-bottom: 0;
    z-index: 1;
  }

  .highlight-yellow-underline_3::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffff00;
    z-index: -1;
  }

  .final-content_3 {
    padding: 0 15px 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(18px, 4.5vw, 22px);
  }

  /* ===== Mobile Form ===== */
  .final-form_3 {
    padding: 30px 10px;
  }

  .form-row_3,
  .form-row_3:first-child,
  .form-submit-area_3 {
    border: none;
    border-top: none;
    border-bottom: none;
  }

  .form-row_3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    margin-bottom: 20px;
  }

  .form-label_3 {
    width: 100%;
    min-width: unset;
    padding-top: 0;
    margin-bottom: 5px;
    font-size: clamp(14px, 2vw, 16px);
    font-family: "Noto Sans JP", sans-serif;
    color: #2d2d2d;
  }

  .form-input-wrap_3 {
    width: 100%;
  }

  .form-input_3,
  .form-select_3 {
    width: 100%;
    font-size: clamp(14px, 2vw, 16px);
    padding: 10px;
  }

  /* Date Selects */
  .form-date-group_3 {
    display: flex;
    gap: 10px;
    width: 100%;
  }

  .form-select-date_3 {
    flex: 1;
    min-width: 0;
    /* Allow shrinking */
  }

  /* Postal Code */
  .form-postal-group_3 {
    flex-direction: row;
    gap: 10px;
  }

  .form-input-postal_3 {
    width: auto !important;
    /* Let flex handle it */
    flex: 1;
  }

  .btn-postal-search_3 {
    padding: 10px 15px;
    font-size: clamp(10.5px, 2vw, 16px);
    white-space: nowrap;
    background-color: #231815;
    /* Ensure dark button */
  }

  /* Checkboxes */
  .form-checkbox-grid_3 {
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
  }

  .form-checkbox-item_3 {
    font-size: clamp(10.5px, 2vw, 16px);
    gap: 5px;
    white-space: nowrap;
  }

  .form-checkbox-item_3 input[type="checkbox"] {
    width: 15px;
    height: 15px;
  }

  .final-wrapper_3 {
    width: 100%;
    overflow: hidden;
  }

  .final-section_3 {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .final-form_3 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 30px 10px;
  }

  /* Other Input in Checkbox Area */
  .form-other-wrap_3 {
    flex-direction: row;
    /* Keep input next to "Other" */
    width: 100%;
    margin-top: 10px;
  }

  .form-input-other_3 {
    max-width: none;
    width: 100%;
    flex: 1;
  }

  .btn-submit_3 {
    width: 257px;
    height: 32px;
    font-size: clamp(18px, 4vw, 22px);
    border-radius: 2px;
  }

  .form-submit-area_3 {
    padding-top: 0 !important;
    margin-top: 10px;
  }

  .form-submit-note_3 {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .cta-banner__title_3 {
    bottom: auto !important;
    margin-top: -10px !important;
  }
}

.footer_3 {
  position: relative;
  z-index: 1001;
  background-color: #00a0e9;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

@media (max-width: 991px) {
  .footer_3 {
    padding-bottom: 150px;
    /* Space for floating-cta */
  }
}

@media (max-width: 768px) {
  .hero-text_2 {
    margin-left: 30px;
    margin-right: auto;
    width: 60%;
  }
  .hero-inner_2::after {
    width: 40%;
    height: 280px;
    bottom: -84px;
  }
  .hero-line_2 {
    font-size: 4vw;
  }
  .solution-text-style {
    margin-top: 0;
    margin-left: 0;
    letter-spacing: normal;
  }
}
.pc{display:block;}
.sp{display:none;}
.notice_text01,.notice_text02{
	width:90%;
	margin:-150px auto 0;
	position: relative;
}
.notice_text01 p,.notice_text02 p{
	font-size: 2.3vw;
	font-weight: 700;
	line-height: 1.4;
	text-align: justify;
	padding-left: 1.8em;
	text-indent: -1.8em;
}
.notice_initial_cost{background:#00A0E9;margin-top:-3.0%;z-index:10;position:relative;}
.notice_initial_cost p{width:80%;margin:0 auto;color:#fff;font-size:1.8vw;text-align:justify;padding:20px 0 40px;padding-left:1em;text-indent:-1em;}
@media (max-width: 768px) {
.notice_initial_cost p{font-size:0.8em;}
}
@media (min-width: 1500px) {
	.notice_text01,.notice_text02{width:60%;margin:-120px auto 0;}
}
@media (max-width: 999px) {
	.notice_text01,.notice_text02{margin:-8vh auto 0;}
	.pc{display:none;}
	.sp{display:block;}
}
@media (max-width: 600px) {
	.notice_text01,.notice_text02{width:80%;margin:6vh auto 0;}
	.notice_text01 p,.notice_text02 p{font-size:12.5px;fline-height:16px;}
}
.notice_asterisk02{display:inline-block;margin-left:10px;padding-top:30px;}

.mb10{margin-bottom:10px!important;}
