html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

link {
  display: none;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("/app/themes/shiftusa/fonts/NotoSansJP/NotoSansJP-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("/app/themes/shiftusa/fonts/NotoSansJP/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("/app/themes/shiftusa/fonts/NotoSansJP/NotoSansJP-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/app/themes/shiftusa/fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --primary-color: #D70027;
  --title-text: #D70027;
  --text-color: #3E000B;
  --text-muted: #3E000B;

  --surface-color: #FFFFFF;
  --border-color: #290E00;
  --footer-text-color: #FFFFFF;
  --footer-bg: #3E3D3C;
  --gray-100: #F4F4F4;
  --pink-50: #FFF0F3;
  --btn-width: 360px;
  --btn-height: 56px;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-optical-sizing: auto;
  overflow-x: hidden;
  position: relative;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.theme-dark {
  /* Brand / accents */
  --primary-color: #FF4D4F;
  /* Softer red for dark backgrounds */
  --title-text: #FF6B6D;
  /* Slightly brighter for headings */

  /* Text */
  --text-color: #EDEDED;
  /* Main readable text */
  --text-muted: #B3B3B3;
  /* Muted but still legible */
  --footer-text-color: #CCCCCC;

  /* Surfaces */
  --surface-color: #1E1E1E;
  /* Primary dark surface (not pure black) */

  /* Borders / dividers */
  --border-color: #3A1A1A;
  /* Darkened version of brand brown/red */
}
.main-text-cl {
  color: var(--text-color);
}

.localization-lp-page {
  padding-top: 8rem;
  background: var(--gray-100);
}

@media screen and (max-width: 767px) {
  .localization-lp-page {
    padding-top: 7rem;
  }

}

.localization-lp-page .wrapper {
  background-color: var(--surface-color);
}

.localization-lp-page .wrapper-inner {
  margin-inline: auto;
  position: relative;
  max-width: 1350px;
  width: 91.8%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pc,
.sp {
  display: none;
}

@media (min-width: 768px) {
  .break-txt .br-pc {
    display: block;
  }

  .pc {
    display: block;
  }
}

@media (max-width: 767px) {

  .break-txt .br-sp {
    display: block;
  }

  .sp {
    display: block;
  }
}

/* Header */
/* ====================================================
header
==================================================== */

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding-block: 2rem;
  margin-inline: auto;
  width: 100%;
  background: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: normal;
}

/* inner */
.l-header__inner {
  display: flex;
  align-items: center;
  margin-inline: auto;
  width: 95%;
}

@media (min-width: 1024px) {
  .l-header__inner {
    width: 100%;
    justify-content: space-between;
    padding: 0 2.4rem;
  }
}

/* logo */
.p-navigation-logo a {
  display: block;
}

@media (min-width: 1024px) {
  .p-navigation-logo a {
    width: 152px;
  }
}

@media (max-width: 767px) {
  .p-navigation-logo a {
    width: 120px;
  }
}

/* global navigation */
@media (min-width: 1024px) {
  .p-navigation-global {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 2rem;
  }
}

@media (max-width: 1023px) {
  .p-navigation-global {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding-block: 3rem;
    background-color: #f2f2f2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    height: 0;
    overflow: hidden;
    z-index: 99;
  }
}

@media (max-width: 1023px) {
  .p-navigation-global.is-open {
    opacity: 1;
    visibility: visible;
    height: 50vh;
  }
}

/* nav list */
.p-navigation-global__list {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  justify-content: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .p-navigation-global__list {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
    gap: 2rem;
  }
}

@media (max-width: 1023px) {
  .p-navigation-global__list {
    margin-inline-start: 5rem;
  }
}

.p-navigation-global__list-item a {
  padding-block: 20px;
}

@media (min-width: 1024px) {
  .p-navigation-global__list-item a:hover {
    color: #d70027;
    filter: opacity(100%);
  }
}

.p-navigation-global__button {
  display: flex;
  margin-inline-start: 5rem;
  gap: 2rem;
}

.btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-radius: 3rem;
  font-size: 1.6rem;
}

.p-download-button {
  border: 1px solid var(--text-color);
  color: var(--text-color);
  background: var(--surface-color);
}

.p-contact-button {
  color: var(--footer-text-color);
  background: var(--primary-color);
}

/* mega menu nav */
@media (min-width: 1024px) {
  .p-navigation-global__button {
    margin-inline-start: 0;
  }

  .p-megaMenu__navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    clip-path: inset(0 -50vw 100%);
    visibility: hidden;
    transition: all 0.4s;
  }
}

@media (max-width: 1023px) {
  .p-megaMenu__navigation {
    margin-inline-start: 2rem;
  }
}

/* mega menu list */
.p-megaMenu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1100px;
  width: fit-content;
}

@media (min-width: 1024px) {
  .p-megaMenu__list {
    flex-direction: row;
    gap: 10px 30px;
    margin-inline: auto;
  }
}

/* mega menu list item */
.p-megaMenu__list-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 5px 10px;
  transition: filter 0.2s ease-in-out;
}

.p-megaMenu__list-item a:hover {
  filter: opacity(70%);
}

/* mega menu visibility */
.p-megaMenu.is-open .p-megaMenu__navigation {
  clip-path: inset(0 -50vw);
  visibility: visible;
}

.p-megaMenu.is-open .p-megaMenu__open::after {
  rotate: 90deg;
}

/* mega menu open button */
.p-megaMenu__open {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .p-megaMenu__open::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2.5px solid #3e3d3c;
    border-right: 2.5px solid #3e3d3c;
    transform: rotate(45deg);
    top: 39%;
    right: -10px;
    transition: rotate 0.3s;
  }

  .p-megaMenu__open:hover {
    color: #d70027;
  }

  .p-megaMenu__open:hover::after {
    border-top-color: #d70027;
    border-right-color: #d70027;
  }
}

/* hamburger */
.p-hamburger {
  position: absolute;
  right: 3%;
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .p-hamburger {
    display: block;
  }
}

.p-hamburger::before,
.p-hamburger::after,
.p-hamburger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #3e3d3c;
  transition: transform 0.3s ease;
}

.p-hamburger::before {
  top: 15px;
  left: 0;
}

.p-hamburger::after {
  top: 27px;
  left: 0;
}

.p-hamburger span::after {
  top: 3px;
  left: 0;
}

.p-hamburger.is-active::before {
  transform: rotate(45deg) translate(2px, 5px);
}

.p-hamburger.is-active::after {
  transform: rotate(-45deg) translate(3px, -6px);
}

.p-hamburger.is-active span::after {
  transform: rotate(45deg) translate(4.5px, 4.5px);
  filter: opacity(0);
}

/* End Header */
/* Footer */
.l-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text-color);
  font-size: clamp(1.5rem, 0.15vw, 1.6rem);
}

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

a {
  text-decoration: none;
  color: inherit;
}

.l-footer .p-navigation {
  display: flex;
  flex-direction: column;
  padding: 3.2rem 2rem;
  gap: 3.2rem;
  line-height: 2.4rem;
}

.l-footer .p-navigation-global__list {
  display: flex;
  gap: 1.6rem;
}

.l-footer .copyright-text {
  font-size: clamp(1.2rem, 9.7px + 0.62vw, 1.6rem);
  text-align: center;
  line-height: clamp(1.9rem, 14.96px + 1.078vw, 2.6rem);
}

@media (min-width: 1024px) {
  .l-footer .p-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2.4rem;
    line-height: 2.6rem;
  }

  .l-footer .p-navigation-global__list {
    display: flex;
    gap: 6.4rem;
  }
}

/* End Footer */
/* HERO SECTION */
.hero-section {
  display: flex;
  flex-direction: column;
  padding: 3.4rem 2rem 5.9rem 2rem;
  gap: 3.2rem;
  font-size: clamp(1.5rem, 0.15vw, 1.6rem);
  color: var(--border-color);
  line-height: 1.8;
  background: var(--surface-color);
}

.fv-row {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

@media (min-width: 1024px) {
  .fv-row {
    flex-direction: row;
    align-items: end;
    gap: 3.4rem;
  }

  .fv-title {
    flex: 0 0 70%;
  }

  .fv-text {
    flex: 1;
  }
}

/* END HERO SECTION */

/* STATS SECTION */
.stats-section {
  background: var(--gray-100);
  padding: 8rem 2rem 10rem 2rem;
}

/* Title */
.section-title {
  text-align: center;
  margin-bottom: 3.2rem;
}

.section-title-underline {
  text-align: center;
  margin-bottom: 4.8rem;
  font-family: 'Helvetica';
}

.section-title-underline h2,
.section-title-underline h3 {
  display: inline-block;
  border-bottom: 4px solid var(--text-color) !important;
  padding: 0 0.2em 0.3em 0.2em !important;
}

.section-title h2 {
  font-size: clamp(3.2rem, 5vw, 6.4rem);
  font-weight: bold;
  color: var(--text-color);
  font-family: 'Helvetica';
}

.section-title-underline h2 {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: bold;
  color: var(--text-color);
  font-family: 'Helvetica';
}

.section-title-underline h2::after,
.section-title-underline h3::after {
  content: '';
  display: block;
  width: 12rem;
  height: 0.4rem;
  background-color: var(--text-color);
  margin: 1.6rem auto 0;
}

.section-title-underline.faq {
  margin-bottom: 3.3rem;
}

.brand-name {
  color: var(--primary-color);
}

@media (min-width: 768px) {

  .section-title-underline h2::after,
  .section-title-underline h3::after {
    display: none;
  }

  .section-title-underline.faq {
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 767px) {

  .section-title-underline h2,
  .section-title-underline h3 {
    border: none !important;
    padding: 0 !important;
  }
}

/* Description */
.section-description {
  text-align: center;
  margin-bottom: 5.6rem;
}

.section-description__text {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  color: var(--text-color);
  line-height: 2;
  letter-spacing: 0.01em;
  font-weight: 500;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 0.8rem;
  max-width: 108rem;
  margin: auto;
}

/* Card */
.stat-card {
  background-color: var(--surface-color);
  border-radius: 2.4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.6rem 3rem rgba(0, 0, 0, 0.1);
}

/* Value */
.stat-value {
  font-size: clamp(4rem, 4vw, 5.6rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-family: 'Helvetica';
}

/* Label */
.stat-label {
  font-size: clamp(1.5rem, 0.15vw, 1.6rem);
  color: var(--text-color);
}

/* Footnote */
.stats-note {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.7;
  text-align: left;
  line-height: 1.5;
  max-width: 108rem;
}

/* === Responsive === */
@media (min-width: 1024px) {
  .section-title {
    margin-bottom: 4rem;
  }

  .section-description__text {
    line-height: 2.4;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* END STATS SECTION */

/* WHY LOCALIZATION SECTION */
.why-localization-section {
  padding: 82px 20px;
  max-width: 136.6rem;
  margin: 0 auto;
  background: var(--surface-color);
  margin-bottom: 8rem;
}

.stat-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 108rem;
  margin: auto;
}

.stat-card-2col {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.stat-card-2col .stat-heading {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  line-height: 1.6;
  max-width: 39.8rem;
  margin: auto;
}

.stat-card-2col .stat-box {
  background: linear-gradient(135deg, #FFF0F3 0%, #FFE1EB 100%);
  border-radius: 2rem;
  padding: 3.2rem 2.4rem;
  text-align: center;
}

.stat-card-2col .stat-box-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.stat-card-2col .stat-icon-circle {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;

}

.stat-card-2col .stat-icon {
  width: 3.6rem;
  height: 3.6rem;
}

.stat-card-2col .stat-value-2 {
  font-size: clamp(5.6rem, 6vw, 6.4rem);
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Helvetica';
}

.stat-card-2col .stat-description {
  font-size: clamp(1.5rem, 0.15vw, 1.6rem);
  line-height: 1.6;
}

.stat-card-2col .stat-source {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Conclusion Text */
.why-localization-section .conclusion-text {
  padding-top: 3.2rem;
  font-size: clamp(1.5rem, 0.15vw, 1.6rem);
  line-height: 2;
  font-weight: 500;
  max-width: 108rem;
  margin: auto;
  color: var(--text-color);
  letter-spacing: 0.03em;
}

/* === Responsive === */
@media (min-width: 1024px) {
  .stat-grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }

  .wlm h2::after {
    width: 62.8rem;
  }

  .why-localization-section .conclusion-text {
    letter-spacing: 0.05em;
  }

  .why-localization-section {
    margin-bottom: 11rem;
  }
}

/* END WHY LOCALIZATION SECTION */
.process-section {
  padding: 20px 0;
}

.process-container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Main Title */
.main-title {
  text-align: center;
  margin-bottom: 64px;
}

.main-title h2 {
  font-size: 48px;
  font-weight: bold;
  color: #3e000b;
  margin-bottom: 16px;
  line-height: 1.2;
}

.main-title p {
  font-size: 18px;
  color: #3e000b;
  opacity: 0.8;
  max-width: 768px;
  margin: 0 auto;
}

/* Problem Section */
.problem-box {
  background: white;
  border-radius: 24px;
  padding: 8rem 1.5rem;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
}

.problem-box h3 {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--text-color);
  text-align: center;
  font-family: 'Helventica';
  margin-bottom: 2rem;
  line-height: 1.5;
}

.divider {
  border-bottom: 3px solid #3e000b;
  max-width: 120px;
  margin: 0 auto 32px;
}

.consumer-label {
  font-size: 28px;
  font-weight: 600;
  color: #3e000b;
  text-align: center;
  margin-bottom: 32px;
}

/* Consumer Issues */
.consumer-grid {
  display: grid;
  max-width: 108rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
}

.consumer-issue {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.speech-bubble {
  position: relative;
  background: #eeeeee;
  border-radius: 100px;
  padding: 2rem;
  max-width: 320px;
  text-align: center;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speech-bubble p {
  color: #3e000b;
  font-size: 20px;
}

.speech-bubble .short-text {
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  padding: 4px 10px;
}


.avatar-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 16px;
  margin-top: -1rem;
}

@media screen and (max-width: 767px) {
  .avatar-container {
    width: 96px;
    height: 96px;
  }

  .speech-bubble {
    max-width: 295px;
    max-height: 98px;
  }
}

.avatar-container svg {
  width: 100%;
  height: 100%;
}

.decorative-circle-1 {
  position: absolute;
  left: 4rem;
  bottom: -1.3rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #eeeeee;
  border-radius: 50%;
}

.decorative-circle-2 {
  position: absolute;
  left: 6.4rem;
  bottom: -2rem;
  width: 1rem;
  height: 1rem;
  background: #eeeeee;
  border-radius: 50%;
}

/* Decline Section */
.decline-box {
  background: linear-gradient(to right, #c8e0f2, #dcebf6);
  border-radius: 2.4rem;
  padding: 3.2rem;
  position: relative;
  overflow: hidden;
  background-image: url('/app/themes/shiftusa/assets/images/en/lp/decline_bg.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 108rem;
  margin: auto;
}

@media (max-width: 767px) {
  .decline-box {
    background-image: url('/app/themes/shiftusa/assets/images/en/lp/decline_bg_sp.svg');
  }
}

.decline-box h4 {
  font-size: 28px;
  font-weight: bold;
  color: #3e000b;
  text-align: center;
  margin-bottom: 32px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 10;
}

.metric-card {
  background: #dcebf6;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  justify-content: center;
}

.metric-card p {
  color: #3e000b;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.metric-icon {
  flex-shrink: 0;
  width: 4.8rem;
  height: 4.8rem;
}

.metri-icon-abs {
  width: 48px;
  position: absolute;
  right: 10px;
  top: -9px;
}

/* Our Solution */
.solution-section {
  padding: 82px 2rem 0 2rem;
  max-width: 108rem;
  margin: 0 auto;

}

/* Title */
.section-step-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-step-title h2 {
  font-size: 4rem;
  font-weight: bold;
  color: #d70027;
  line-height: 1.3;
  margin-bottom: 2.4rem;
  line-height: 1.5;
  font-family: 'Helvetica';
}

/* Introduction */
.solution-intro {
  text-align: left;
  margin-bottom: 4.8rem;

}

.solution-intro p {
  font-size: 1.8rem;
  color: var(--text-color);
  line-height: 2;
  letter-spacing: 0.01em;
}

/* Step Container */
.step-container {
  margin-bottom: 60px;
}

.step-header {
  line-height: 0.9;
}

/* Step Header */
.step-number {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  font-family: 'Helvetica';
  margin-bottom: -0.5rem;
}

.step-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.step-wrapper {
  padding: 3.2rem 2rem 0 2rem;
  background: var(--surface-color);
  border-radius: 3rem;
}

/* Step Content */
.step-content p {
  font-size: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 3.2rem;
}

/* Step Illustration */
.step-illustration {
  margin-top: 30px;
  text-align: center;
}

.step-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.step-01 img,
.step-02 img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.step-03 .step-wrapper .step-illustration img {
  width: auto !important;
  height: 100% !important;
}


@media (min-width: 1024px) {

  .step-01 img,
  .step-02 img {
    max-width: unset;
  }

  .step-01 .step-illustration {
    transform: translateX(40px);
  }

  .step-02 .step-illustration {
    transform: translateX(-45px);
  }

  .step-03 .step-wrapper {
    padding: 0;
    height: 398px
  }

  .step-03 .step-wrapper .step-illustration {
    transform: translateY(-18px);
  }

  .section-step-title h2 {
    font-size: 8rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
  }

  .solution-intro {
    margin-bottom: 8rem;
  }

  .solution-intro p {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .odd .step-number {
    font-size: 5.6rem;
    text-align: left;
    margin-left: 4rem;
  }

  .even .step-number {
    font-size: 5.6rem;
    text-align: right;
    margin-right: 4rem;
  }

  .step-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }

  .step-content {
    max-width: 45rem;
    font-weight: 500;
  }

  .step-title {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
    line-height: 1.6;
  }

  .step-illustration {
    flex: 0 0 50%;
    margin-top: 0;
  }

  .even .step-content {
    order: 2;
  }

  .even .step-illustration {
    order: 1;
  }

  .problem-box h3 {
    font-size: 4.8rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .divider {
    width: 683px;
  }
}

/* Case Study */
.case-study-section {
  max-width: 108rem;
  margin: auto;
  padding-bottom: 8rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 82px
}

/* Summary */
.case-summary {
  text-align: center;
  margin-bottom: 3.2rem;
}

.case-summary .summary-text {
  font-family: Helvetica;
  font-size: 3.0rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Case Details */
.case-details {
  margin-bottom: 3.2rem;
}

.case-details ul {
  list-style: none;
  padding: 0;
}

.case-details li {
  margin-bottom: 1.6rem;
  position: relative;
  padding-left: 24px;
  color: var(--text-color);
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.case-details li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--text-color);
  transform: rotate(45deg);
  top: 1rem;
}

.case-details strong {
  font-weight: 600;
}

/* Footnote */
.footnote {
  font-size: 12px;
  color: var(--text-color);
  padding-top: 1.6rem;
  line-height: 1.5;
}

/* Client Info Box */
.client-container {
  display: flex;
  flex-direction: column;
  padding: 3.2rem 2rem;
  gap: 2.4rem;
  background: var(--surface-color);
  border-radius: 2rem;
  color: var(--text-color);
}

.client-label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.client-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1em;
}

.roi-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* ROI Box */
.roi-box {
  background: linear-gradient(135deg, #FFF0F3 0%, #FFE1EB 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
  height: 120px;
}

.roi-label {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  font-family: 'Helvetica';
}

.roi-value {
  font-size: 4.8rem;
  font-weight: bold;
  color: var(--primary-color);
  font-family: 'Helvetica';
}

/* ROI Disclaimer */
.roi-disclaimer {
  font-size: 1.1rem;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .case-study-section {
    padding-bottom: 12rem;
  }

  .case-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .summary-text {
    flex: 0 0 50%;
    text-align: left;
  }

  .client-container {
    display: grid;
    grid-template-columns: 1fr 428px;
    gap: 4rem;
  }
}

/* ========================================
   Why SHIFT? Section - Mobile-First Design
   ======================================== */
.why-shift-section {
  padding: 8rem 0 16rem 0;
  background-image: url('/app/themes/shiftusa/assets/images/en/lp/background_img01_sp.png');
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: var(--surface-color);
  margin-bottom: 9.6rem;
}

/* Reset & Base */
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title */
/* .section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #2d1b1b;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 90px;
  height: 3px;
  background-color: #2d1b1b;
  margin: 12px auto 0;
} */

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 40px;
  place-items: center;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)) !important;
}

@media (min-width: 480px) and (max-width: 767px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  }
}

@media (max-width: 479px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  }

  .case-summary .summary-text {
    font-family: 'Noto Sans JP';
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 2.06rem;
    letter-spacing: 0.01;
  }
}



/* Feature Card */
.feature-card {
  background: linear-gradient(135deg, #FFF0F3 0%, #FFE1EB 100%);
  border-radius: 2rem;
  padding: 3.2rem 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.01em;
  display: flex;
  width: 520px;
  height: 224px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(198, 28, 61, 0.1);
}

.feature-row {
  display: flex;
  justiy-content: center;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

/* Feature Number */
.feature-number {
  min-width: 56px;
  height: 56px;
  border: 0.2rem solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 16px;
  font-family: 'Helvetica';
}

/* Feature Title */
.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* Feature Description */
.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .why-shift-section {
    padding: 12rem 14.3rem;
    background-image: url('/app/themes/shiftusa/assets/images/en/lp/background_img01.png');
    margin-bottom: 12rem;
  }

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

.contact-section {
  padding: 4rem 2rem 0 2rem;
  max-width: 134.6rem;
  margin: 0 auto;
  background:
    linear-gradient(45deg,
      rgba(215, 0, 39, 0.35) 0%,
      rgba(237, 62, 98, 0.35) 41%,
      rgba(249, 154, 176, 0.35) 100%),
    #FFF0F3;
  border-radius: 4rem;
}

/* Buttons Container */
.buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
  align-items: center;
}

/* Contact Button (Primary) */
.contact-btn {
  background: var(--primary-color);
  color: var(--surface-color);
  border: none;
  border-radius: 5rem;
  padding: 1.8rem 4rem;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(215, 0, 39, 0.3);
  width: var(--btn-width);
  height: var(--btn-height);
}

.contact-btn:hover {
  background: #b5001f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(215, 0, 39, 0.4);
}

.contact-btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 20px;
}

/* Download Button (Secondary) */
.download-btn {
  background: var(--surface-color);
  color: var(--text-color);
  border: 2px solid #333;
  border-radius: 5rem;
  padding: 1.6rem 4rem;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  width: var(--btn-width);
  height: var(--btn-height);
}

.download-btn:hover {
  background: var(--surface-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-btn:active {
  transform: translateY(0);
}

/* Subtext */
.subtext {
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 4.8rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Illustration */
.illustration {
  text-align: center;
}

.illustration img {
  max-width: 100%;
  height: auto;
}

/* Document Icon SVG */
.email-icon,
.document-icon {
  width: 2.4rem;
  height: 2.4rem;
}

@media (min-width: 1024px) {

  .contact-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
  }

  .button-wrap {
    order: 2;
    justify-self: start;
    max-width: 36rem;
    margin-inline-start: 5rem;
  }

  .illustration {
    order: 1;
  }

  .illustration img {
    margin-top: -85px;
  }
}

.about-us-section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface-color);
}


/* Logo */
.company-logo {
  margin-bottom: 1.6rem;
  padding: 120px 0;
}

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

.logo-wrapper img {
  width: 240px
}

@media screen and (max-width: 767px) {
  .company-logo {
    padding: 30px 0;
  }

  .logo-wrapper {
    justify-content: flex-start;
  }

  .logo-wrapper img {
    width: 163px;
  }
}

/* Company Info Table */
.company-info {
  max-width: 80rem;
  margin: 0 auto 6rem;
  background: var(--surface-color);
  border-radius: 0.8rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-bottom: 0;
}

.info-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e0e0e0;
  gap: 0.8rem;
  padding-bottom: 1.6rem;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  min-width: 180px;
  flex-shrink: 0;
}

.info-value {
  color: var(--text-color);
  flex: 1;
  font-size: 16px;
  font-weight: 500;
}

.info-value ul {
  list-style: none;
  padding: 0;
}

.info-value li {
  margin-bottom: 4px;
  position: relative;
  padding-left: 12px;
}

.info-value li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.info-image {
  padding-top: 4rem;
}

/* Description Section */
.company-description {
  max-width: 850px;
  margin: 60px auto 40px;
  background: var(--surface-color);
  padding: 4rem 0;
}

.description-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.description-logo {
  display: flex;
  flex-direction: column;
}

.learn-more-btn {
  width: 28rem;
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
  border: none;
  border-radius: 5rem;
  padding: 1.2rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
  justify-content: center;
}

.learn-more-btn:hover {
  color: var(--surface-color);
  background: var(--primary-color);
  transform: translateX(4px);
}

.learn-more-btn::after {
  position: absolute;
  content: "";
  right: 24px;
  background: url('/app/themes/shiftusa/assets/images/ja/common/icon_button.png') no-repeat center center / contain;
  width: 31px;
  height: 31px;
}

.description-text {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: var(--text-color);
}

.info-row.sp,
.info-row.pc {
  display: none;
}

@media (max-width: 767px) {

  .info-row.sp {
    display: flex;
  }

  .feature-card {
    width: 370px;
    height: 314px;
  }
}

@media (min-width: 1024px) {
  .company-logo {
    text-align: center;
  }

  .info-row {
    flex-direction: row;
  }

  .info-row.pc {
    display: flex;
  }
}

.lp-download-pdf {
  background-color: #D70027;
  color: #fff;
  max-width: 280px;
  width: 100% !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 1rem auto;
  border-radius: 100px;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all .2s ease-in-out;
  z-index: 99;
  margin: auto;
}

.lp-faq_question {
  background: transparent;
}

.lp-faq_answer {
  margin-left: 80px;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: 5px;
  border-radius: 8px;
  background: #fff;
  padding: 24px !important;
}

.lp-faq_answer p {
  font-size: 20px !important;
}

.lp-faq_questionTxt p {
  font-size: 24px !important;
}