/* === site-centering (fit-to-viewport for 1024-1439px) === */
html {
  overflow-x: hidden;
}

@media (min-width: 1440px) {
  body {
    width: 100%;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  color: #333;
  min-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── HEADER ── */
.header {
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 98, 47, 0.1);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 28px;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 1440px;
}

.header-logo {
  width: 290px;
  height: 40px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
}

.header-logo img {
  position: absolute;
  height: 152.5%;
  left: -5.46%;
  top: -32.5%;
  width: 110.93%;
  max-width: none;
}

.header-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.header-nav a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #00622f;
  text-decoration: none;
  line-height: 1.6;
}

.header-cta-btn {
  background: #00622f;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px 16px 36px;
  height: 70px;
  text-decoration: none;
}

.header-cta-btn span.label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #fff;
  line-height: 1.6;
}

.arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg) scaleY(-1);
  flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 1440px;
  height: 295px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  height: 255px;
  border-radius: 40px;
  overflow: hidden;
  filter: blur(1px);
}

.hero-photo img {
  position: absolute;
  height: 187.26%;
  left: -2.19%;
  top: -22.49%;
  width: 113.51%;
  max-width: none;
}

.hero-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  height: 255px;
  border-radius: 40px;
  background: linear-gradient(82.41deg, rgba(0, 98, 47, 0.6) 28.787%, rgba(0, 98, 47, 0.2) 97.41%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
}

.hero-title-row {
  display: flex;
  gap: 28px;
  align-items: baseline;
}

.hero-title-ja {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.4;
}

.hero-title-en {
  font-family: "Cormorant", serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.2px;
  color: #fff;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-subtitle {
  position: absolute;
  top: 182.5px;
  left: 316px;
  transform: translate(-50%, -50%);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.9px;
  color: #fff;
  line-height: 1.6;
  white-space: nowrap;
  text-align: center;
}

/* ── SERVICE INTRO ── */
.service-intro {
  width: 1440px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.service-intro-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.service-intro-headline {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.6px;
  color: #00622f;
  line-height: 1.8;
  text-align: center;
}

/* Slide up reveal */
.slide-up-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1s ease-out,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.slide-up-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Flow cards: stagger blur-in reveal (01→04) */
.flow-cards .flow-card-wrap,
.flow-cards .flow-arrow {
  opacity: 0;
  filter: blur(20px);
  transition:
    opacity 0.9s ease-out,
    filter 0.9s ease-out;
  will-change: filter, opacity;
}

.flow-cards.is-visible .flow-card-wrap,
.flow-cards.is-visible .flow-arrow {
  opacity: 1;
  filter: blur(0);
}

.flow-cards.is-visible > *:nth-child(1) {
  transition-delay: 0s;
}

.flow-cards.is-visible > *:nth-child(2) {
  transition-delay: 0.15s;
}

.flow-cards.is-visible > *:nth-child(3) {
  transition-delay: 0.3s;
}

.flow-cards.is-visible > *:nth-child(4) {
  transition-delay: 0.45s;
}

.flow-cards.is-visible > *:nth-child(5) {
  transition-delay: 0.6s;
}

.flow-cards.is-visible > *:nth-child(6) {
  transition-delay: 0.75s;
}

.flow-cards.is-visible > *:nth-child(7) {
  transition-delay: 0.9s;
}

@media (prefers-reduced-motion: reduce) {
  .flow-cards .flow-card-wrap,
  .flow-cards .flow-arrow {
    transition: none;
    opacity: 1;
    filter: none;
  }
}

/* Service text: per-line stagger reveal (slide-up) */
.stagger-lines .service-label-en,
.stagger-lines .service-title,
.stagger-lines .divider-h,
.stagger-lines .service-body,
.stagger-lines .service-tags-row {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.stagger-lines.is-visible .service-label-en {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.stagger-lines.is-visible .service-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.stagger-lines.is-visible .divider-h {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}

.stagger-lines.is-visible .service-body:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}

.stagger-lines.is-visible .service-body:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.stagger-lines.is-visible .service-tags-row:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.stagger-lines.is-visible .service-tags-row:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

@media (prefers-reduced-motion: reduce) {
  .stagger-lines .service-label-en,
  .stagger-lines .service-title,
  .stagger-lines .divider-h,
  .stagger-lines .service-body,
  .stagger-lines .service-tags-row {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Hero slide-up on page load */
.hero-title-row,
.hero-subtitle {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease-out,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.hero-title-row.is-visible,
.hero-subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title-row {
  transition-delay: 0.2s;
}

.hero-subtitle {
  transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .slide-up-reveal,
  .hero-title-row,
  .hero-subtitle {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.vertical-line {
  width: 1px;
  height: 80px;
  background: rgba(0, 98, 47, 0.3);
}

/* ── SERVICE ITEMS ── */
.service-items {
  width: 1440px;
  background: rgba(0, 98, 47, 0.03);
}

.service-row {
  display: flex;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.service-row-1 {
  padding-right: 80px;
}

.service-row-2 {
  padding-left: 80px;
}

.service-img {
  width: 720px;
  height: 700px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.service-img img {
  position: absolute;
  max-width: none;
}

.service-img-1 img {
  height: 100%;
  left: -116.5%;
  top: 0.06%;
  width: 332.93%;
}

.service-img-2 img {
  height: 100%;
  left: -42.09%;
  top: -0.03%;
  width: 149.45%;
}

.service-text {
  width: 560px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-title-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-label-en {
  font-family: "Cormorant", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  color: #7e7c57;
  text-transform: uppercase;
  line-height: 1;
}

.service-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 1.6px;
  color: #00622f;
  line-height: 1.8;
}

.divider-h {
  width: 100%;
  height: 1px;
  background: rgba(0, 98, 47, 0.3);
  flex-shrink: 0;
}

.service-body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.9px;
  color: #333;
  line-height: 2;
}

.service-tags {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-tags-row {
  display: flex;
  gap: 16px;
}

.service-tag {
  flex: 1;
  border-left: 6px solid rgba(0, 98, 47, 0.2);
  background: rgba(0, 98, 47, 0.05);
  padding: 12px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.75px;
  color: #00622f;
  line-height: 1.6;
}

/* ── FLOW ── */
.flow-section {
  width: 1440px;
  padding: 100px 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.flow-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.flow-title-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.flow-diamond {
  width: 14.667px;
  height: 16px;
}

.flow-title-ja {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 8px;
  color: #00622f;
  line-height: 1.4;
}

.flow-title-en {
  font-family: "Cormorant", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  color: #7e7c57;
  line-height: 1.6;
}

.flow-cards {
  display: flex;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

.flow-card-wrap {
  display: flex;
  align-items: stretch;
  flex: 1;
}

.flow-card {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(0, 98, 47, 0.2);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding: 24px 20px 40px;
}

.flow-num {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 2px;
  color: #7e7c57;
  line-height: 1;
  text-align: center;
}

.flow-icon-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.flow-icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(204.97deg, rgba(0, 98, 47, 0.15) 10.901%, rgba(0, 98, 47, 0.3) 89.357%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-icon-circle img {
  width: 40px;
  height: 40px;
  display: block;
}

.flow-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.9px;
  color: #333;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
}

.flow-card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.7px;
  color: #666;
  line-height: 2;
  text-align: center;
}

.flow-arrow {
  width: 30px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-arrow img {
  width: 30px;
  height: 18px;
  transform: rotate(90deg);
  display: block;
}

/* ── CTA ── */
.cta-section {
  position: relative;
  width: 1440px;
  padding: 100px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: bottom;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 98, 47, 0.5);
}

.cta-inner {
  position: relative;
  width: 1180px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.1));
}

.cta-title {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 60px;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
}

.cta-subtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 1.4px;
  color: #fff;
  line-height: 1.8;
}

.btn-text-white {
  border-bottom: 1px solid #fff;
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 20px;
  text-decoration: none;
}

.btn-text-white span.label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.6;
  white-space: nowrap;
}

/* ── FOOTER ── */
.footer {
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 98, 47, 0.1);
  width: 1440px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  padding: 48px 28px 60px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.footer-logo {
  width: 304px;
  height: 136.8px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
}

.footer-logo img {
  position: absolute;
  height: 353.62%;
  left: -29.33%;
  top: -112.49%;
  width: 159.13%;
  max-width: none;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.footer-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-nav-links a,
.footer-nav-links span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #00622f;
  text-decoration: none;
  white-space: nowrap;
}

.footer-nav-links a {
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.6;
}

.footer-nav-links .sep {
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 1.6;
}

.footer-privacy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.55px;
  color: #00622f;
  line-height: 1.6;
  text-decoration: none;
}

.footer-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.55px;
  color: #00622f;
  line-height: 1.6;
}

/* ── HEADER MAIL BUTTON (SP only) ── */
.header-mail-btn {
  display: none;
  width: 50px;
  height: 50px;
  background: #00622f;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header-mail-btn img {
  display: block;
}

/* ══ HAMBURGER ══ */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 70px;
  padding: 0 10px;
  flex-shrink: 0;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #00622f;
  border-radius: 1px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 98;
  flex-direction: column;
  padding: 0 24px 24px;
  box-shadow: 0 8px 16px rgba(0, 98, 47, 0.1);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 98, 47, 0.1);
  letter-spacing: 0.8px;
}

.mobile-nav .mobile-cta-link {
  margin-top: 16px;
  background: #00622f;
  color: #fff !important;
  text-align: center;
  padding: 14px 0 !important;
  border-bottom: none !important;
  border-radius: 2px;
}

/* ══ RESPONSIVE TABLET ≤1023px ══ */
@media (max-width: 1023px) {
  body {
    min-width: 0;
    overflow-x: hidden;
  }

  .header {
    width: 100%;
  }

  .header-nav > a:not(.header-cta-btn) {
    display: none;
  }

  .header-cta-btn {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero {
    width: 100%;
  }

  .hero-photo {
    width: calc(100% - 30px);
  }

  .hero-gradient {
    width: calc(100% - 30px);
  }

  .hero-text {
    left: 40px;
  }

  .hero-subtitle {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Service intro/items: keep PC layout until 800px */
  .service-intro {
    width: 100%;
    padding-top: 60px;
  }

  .service-intro-headline {
    font-size: 24px;
    padding: 0 40px;
    text-align: center;
  }

  .service-items {
    width: 100%;
  }

  /* Flow: keep PC horizontal layout until 800px */
  .flow-section {
    width: 100%;
    padding: 80px 40px;
  }

  .cta-section {
    width: 100%;
    padding: 70px 40px;
  }

  .cta-inner {
    width: 100%;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }

  .cta-subtitle {
    font-size: 22px;
  }

  .footer {
    width: 100%;
  }

  .footer-nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* ══ RESPONSIVE 800-1023px (keep service rows + flow PC layout, fit-to-width) ══ */
@media (min-width: 800px) and (max-width: 1023px) {
  /* Text scales fluidly: 0.85x at 800px → 1.0x at 1023px (relative to SP-base sizes) */
  body {
    --t-scale: clamp(0.85, calc(0.85 + (100vw - 800px) * 0.15 / 223px), 1);
  }

  /* service intro headline */
  .service-intro-headline {
    font-size: calc(24px * var(--t-scale));
  }

  /* service rows: image+text side-by-side, scaled */
  .service-row {
    gap: 40px;
  }

  .service-row-1 {
    padding-right: 40px;
  }

  .service-row-2 {
    padding-left: 40px;
  }

  .service-img {
    width: 45%;
    height: auto;
    aspect-ratio: 720 / 500;
  }

  .service-text {
    gap: 24px;
    padding: 0;
  }

  .service-label-en {
    font-size: calc(16px * var(--t-scale));
  }

  .service-title {
    font-size: calc(24px * var(--t-scale));
    letter-spacing: calc(1.2px * var(--t-scale));
  }

  .service-body {
    font-size: calc(16px * var(--t-scale));
    letter-spacing: calc(0.8px * var(--t-scale));
    line-height: 2;
  }

  .service-tag {
    font-size: calc(15px * var(--t-scale));
    padding: calc(12px * var(--t-scale)) calc(24px * var(--t-scale));
  }

  /* flow: keep 4 cards + 3 arrows in a row, scaled */
  .flow-title-ja {
    font-size: calc(28px * var(--t-scale));
    letter-spacing: calc(5.6px * var(--t-scale));
  }

  .flow-title-en {
    font-size: calc(16px * var(--t-scale));
  }

  .flow-cards {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .flow-card-wrap {
    flex: 1 1 0;
  }

  .flow-card {
    padding: 24px 16px;
  }

  .flow-card-title {
    font-size: calc(16px * var(--t-scale));
    letter-spacing: calc(0.8px * var(--t-scale));
  }

  .flow-card-desc {
    font-size: calc(13px * var(--t-scale));
  }

  .flow-arrow {
    display: flex;
    flex: 0 0 auto;
  }

  .flow-arrow img {
    width: 24px;
    height: auto;
  }
}

/* ══ RESPONSIVE ≤799px (service rows + flow collapse) ══ */
@media (max-width: 799px) {
  .service-row {
    flex-direction: column;
    gap: 0;
  }

  .service-row-1 {
    padding-right: 0;
  }

  .service-row-2 {
    padding-left: 0;
    flex-direction: column-reverse;
  }

  .service-img {
    width: 100%;
    height: 380px;
  }

  .service-text {
    width: 100%;
    padding: 48px 40px;
  }

  .flow-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .flow-card-wrap {
    flex: 0 0 calc(50% - 12px);
  }

  .flow-arrow {
    display: none;
  }
}

/* ══ RESPONSIVE MOBILE ≤767px ══ */
@media (max-width: 767px) {
  /* Header SP */
  .header {
    height: 50px;
    padding-left: 10px;
    padding-right: 0;
    justify-content: flex-start;
    gap: 0;
  }

  .header-logo {
    width: 174px;
    height: 24px;
  }

  .header-nav {
    display: none;
  }

  .header-mail-btn {
    display: flex;
    margin-left: auto;
  }

  .hamburger-btn {
    height: 50px;
    background: #008026;
    padding: 0;
    width: 50px;
  }

  .hamburger-btn span {
    background: #fff;
  }

  .mobile-nav {
    top: 50px;
  }

  /* Hero SP */
  .hero {
    height: 200px;
    overflow: hidden;
  }

  .hero-photo {
    height: 180px;
    width: calc(100% - 30px);
    border-radius: 20px;
    filter: blur(1px);
  }

  .hero-photo img {
    height: 100%;
    left: -22.62%;
    top: -0.03%;
    width: 140.45%;
  }

  .hero-gradient {
    height: 180px;
    width: calc(100% - 30px);
    border-radius: 20px;
    background: linear-gradient(53.81deg, rgba(0, 98, 47, 0.6) 40%, rgba(0, 98, 47, 0.2) 95.83%);
  }

  .hero-text {
    left: 40px;
    top: 50%;
    transform: translateY(calc(-50% + 7.5px));
  }

  .hero-title-row {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .hero-title-ja {
    font-size: 28px;
    letter-spacing: 1.4px;
    line-height: 1.33;
  }

  .hero-title-en {
    font-size: 18px;
    letter-spacing: 0.9px;
    line-height: 1.6;
    margin-top: -2px;
  }

  .hero-subtitle {
    display: block;
    top: auto;
    bottom: 32px;
    left: 40px;
    transform: none;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0.6px;
    white-space: nowrap;
    line-height: 1.6;
  }

  /* Service intro SP */
  .service-intro {
    width: 100%;
    padding-top: 40px;
    gap: 28px;
  }

  .service-intro-headline {
    font-size: 18px;
    letter-spacing: 1px;
    padding: 0 20px;
    line-height: 1.8;
    text-align: center;
    font-feature-settings: "hwid" 1;
    white-space: nowrap;
  }

  .vertical-line {
    height: 40px;
  }

  /* Service items SP */
  .service-items {
    width: 100%;
  }

  .service-row {
    flex-direction: column;
    gap: 0;
  }

  .service-row-1 {
    padding-right: 0;
  }

  .service-row-2 {
    flex-direction: column-reverse;
    padding-left: 0;
  }

  .service-img {
    width: 100%;
    height: 280px;
  }

  .service-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    left: 0;
    top: 0;
  }

  .service-text {
    width: 100%;
    padding: 28px 20px 48px;
    gap: 16px;
  }

  .service-title-group {
    gap: 15px;
  }

  .service-title-group-2 {
    gap: 8px;
  }

  .service-label-en {
    font-size: 16px;
  }

  .service-title {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .service-body {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .service-tags {
    gap: 16px;
  }

  .service-tags-row {
    flex-direction: column;
    gap: 16px;
  }

  .service-tag {
    padding: 12px 24px;
    font-size: 15px;
    white-space: nowrap;
  }

  /* Flow section SP */
  .flow-section {
    width: 100%;
    padding: 60px 20px;
  }

  .flow-title-ja {
    font-size: 28px;
    letter-spacing: 5.6px;
  }

  .flow-title-en {
    font-size: 16px;
  }

  .flow-cards {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .flow-card-wrap {
    flex: none;
    width: 300px;
    flex-direction: column;
    align-items: stretch;
  }

  .flow-arrow {
    display: flex;
    width: 40px;
    height: 18px;
    transform: rotate(90deg);
    margin: 0 auto 8px;
  }

  /* CTA SP */
  .cta-section {
    width: 100%;
    padding: 60px 20px;
  }

  .cta-inner {
    width: 100%;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .cta-title {
    font-size: 48px;
    letter-spacing: 2.4px;
  }

  .cta-subtitle {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .btn-text-white span.label {
    font-size: 14px;
    letter-spacing: 0.7px;
  }

  /* Footer SP */
  .footer {
    width: 100%;
    padding: 48px 28px 60px;
  }

  .footer-inner {
    gap: 40px;
  }

  .footer-logo {
    width: 178px;
    height: 80px;
  }

  .footer-nav {
    gap: 40px;
  }

  .footer-nav-links {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .footer-nav-links .sep {
    display: none;
  }

  .footer-nav-links a {
    font-size: 15px;
    letter-spacing: 0.75px;
  }

  .footer-copy {
    font-size: 10px;
    letter-spacing: 0.5px;
    text-align: center;
  }
}
