/* Adobe Fonts Loading States */
/* ローディング中はコンテンツを非表示 */
.wf-loading body {
  opacity: 0;
}

/* フォント読み込み完了後にフェードイン */
.wf-active body {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* フォント読み込み失敗時も表示 */
.wf-inactive body {
  opacity: 1;
}

/* Root font sizing and variables for smooth responsive scaling */
:root {
  /* approximate header height used for scroll padding; adjust if header layout changes */
  --header-height: 4.5rem;
  /* color palette */
  --color-primary: #e2b1b4;
  --color-primary-dark: #587fb1;
  --color-secondary: #8ea5ba;
  --color-text: #3e4c59;
  --color-background: #f5f6f8;
  --color-light: #ffffff;
  --color-hero-bg: #e8edf4;
  --color-pill-bg: #e6eff7;
  --color-accent: #555;
  --color-nav-group-bg: #f8f3e5;
  --color-nav-gradient-start: #d9f1e7;
  --color-nav-gradient-end: #c3e2d7;
  --color-nav-hover: #5fb495;
  --color-nav-shadow: rgba(0, 0, 0, 0.08);
  /* spacing scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  /* Japanese base: FOT-TsukuARdGothic Std with robust fallbacks */
  --font-jp: "fot-tsukuardgothic-std", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  /* English base: Futura PT stack with widely available fallbacks */
  --font-en: "Futura PT", "Futura", "Avenir Next", "Avenir", "Montserrat",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.visually-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Base font-size using viewport units for fluid typography */
html {
  font-size: 0.6944444444vw;
  text-spacing-trim: space-all;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  scroll-behavior: smooth;
}
/* Increase root font-size on narrower screens and portrait/mobile devices */
@media screen and (max-width: 768px),
  (orientation: portrait) and (hover: none) {
  html {
    font-size: 2.6666666667vw;
  }
}
/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-jp);
  font-weight: 400;
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}
.en {
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Header - clean and minimal */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.5rem;
}

/* Logo */
.logo {
  position: absolute;
  left: 4rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 8rem;
  height: auto;
  transition: opacity 0.3s ease;
  border: 0;
  outline: none;
  background: transparent;
}

.logo:hover img {
  opacity: 0.7;
}

/* Main navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 0.3rem;
  padding-inline: 4.2rem;
  height: 6rem;
  border-radius: 100vmax;
  background: var(--color-light);
  box-shadow: 0 0 1rem color-mix(in srgb, #000, transparent 90%);
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-en {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 400;
  color: #999;
  text-transform: capitalize;
  line-height: 1.4;
}

.nav-jp {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
  margin-top: -0.2rem;
  line-height: 1.4;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Contact button */
.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2.5rem;
  background: var(--color-primary);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background: #d89a9e;
  transform: translateY(-2px);
}

.contact-en {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-transform: capitalize;
  line-height: 1.4;
}

.contact-jp {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  margin-top: -0.2rem;
  line-height: 1.4;
}

/* Language switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.lang-link {
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.lang-link:hover {
  opacity: 0.6;
}

.lang-separator {
  color: #ccc;
  margin: 0 0.25rem;
}

/* Burger button */
.burger-btn {
  display: none;
  width: 4.6rem;
  height: 4.6rem;
  position: relative;
  z-index: 1001;
  border: none;
  border-radius: 50%;
  border: 1px solid #d5cdc6;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.burger-btn .bar {
  width: 1.4rem;
  height: 0.1rem;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  transition: all 0.3s ease;
}

.bar_top {
  top: 1.7rem;
}

.burger-btn .bar_mid {
  top: 50%;
  transform: translate(-50%, -50%);
}

.bar_bottom {
  bottom: 1.7rem;
}

/* Burger button close state */
.burger-btn.close {
  background-color: var(--color-text);
  border-color: var(--color-text);
}

.burger-btn.close .bar {
  background-color: #fff;
}

.burger-btn.close .bar_top {
  transform: translate(-50%, 0.5rem) rotate(45deg);
}

.burger-btn.close .bar_mid {
  opacity: 0;
}

.burger-btn.close .bar_bottom {
  transform: translate(-50%, -0.4rem) rotate(-45deg);
}

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 40rem;
  height: 100vh;
  background: var(--color-background);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -0.5rem 0 2rem rgba(0, 0, 0, 0.1);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-logo {
  position: absolute;
  top: 3rem;
  left: 3rem;
  display: block;
  width: 8rem;
  z-index: 1;
}

.mobile-nav-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-nav-inner {
  padding: 10rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1.5rem;
  text-decoration: none;
  border-radius: 1rem;
  transition: background 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(226, 177, 180, 0.1);
}

.mobile-nav-en {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 400;
  color: #999;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.mobile-nav-jp {
  font-family: var(--font-jp);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
}

.mobile-nav-lang {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(99, 154, 208, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-en);
  font-size: 1.4rem;
}

.mobile-lang-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.mobile-lang-link:hover {
  opacity: 0.7;
}

.mobile-lang-sep {
  color: #ccc;
}

/* Overlay for mobile menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 71.2rem;
  min-height: 520px;
  /* allow the news bubble to extend outside the hero */
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Slider wrapper and slides */
.hero__slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* -webkit-mask-image: url(../images/fv_mask.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(../images/fv_mask.png);
  mask-size: cover;
  mask-position: 50% 50%;
  mask-repeat: no-repeat; */
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 3s ease-out;
  will-change: opacity;
  z-index: 1;
  pointer-events: none;
}

.hero__slide picture {
  -webkit-mask-image: url(../images/fv_mask.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: bottom;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(../images/fv_mask.png);
  mask-size: cover;
  mask-position: bottom;
  mask-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero__slide picture {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero__slide img {
    object-position: right;
  }
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
    transform: none !important;
  }

  .hero__slide:not(:first-child) {
    display: none;
  }
}

.hero__text {
  position: absolute;
  z-index: 2;
  left: 18rem;
  top: 42%;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: center;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero__text {
    top: 30%;
    left: 3rem;
  }
}

/* Fi-chan news bubble in hero */
.hero-news {
  position: absolute;
  /* position the bubble so that it sits slightly outside the hero container */
  left: 0;
  bottom: 0;
  /* background: var(--color-background); */
  /* asymmetric rounded corners for a speech bubble feel */
  border-radius: 1.5rem 1.5rem 2rem 2rem;
  padding-inline: 5rem 3.5rem;
  padding-top: 1rem;
  width: 52.8rem;
  max-width: 70%;
  height: 15.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  z-index: 3;
}

.fi-chan-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.fi-chan-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-news__lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.4rem;
  flex-shrink: 0;
}

.hero-news__line {
  display: block;
  width: 4rem;
  height: auto;
  color: var(--color-primary);
}

.hero-news__text {
  font-size: 1.5rem;
  color: #7e7979;
  line-height: 1.4;
  white-space: nowrap;
  margin-left: -1.6em;
}
.hero-news__text svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  margin-top: -0.3em;
  width: 1.2rem;
  height: 1.2rem;
}

@media (max-width: 768px) {
  .hero-news {
    left: 0;
    right: 0;
    bottom: -140px;
    width: 100%;
    height: auto;
    max-width: 100%;
    padding: 2.8rem 1.2rem;
    gap: 1.6rem;
    justify-content: center;
    border-radius: 2rem 2rem 0 0;
  }
  .fi-chan-icon {
    width: 48px;
    height: 48px;
  }
  .hero-news__lines {
    width: 32px;
    height: 16px;
  }
  .hero-news__text {
    font-size: 1.4rem;
  }
}

/* Intro section */
.intro {
  padding: 8rem 1rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .intro {
    padding: 16rem 1.5rem 8rem;
  }
}

.intro-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(2rem, 6.3vw, 9.06875rem);
  display: flex;
  align-items: stretch;
  gap: clamp(2rem, 4.2vw, 6.1rem);
}

.intro__image {
  flex: 0 0 auto;
  width: 40rem;
  aspect-ratio: 20 / 29;
  border-radius: 2rem;
  overflow: hidden;
}

/* Parallax figure images */
.intro__image picture,
.reason-card__image,
.subpage-card__media {
  display: block;
  width: 100%;
  height: 100%;
}
.reason-card__image,
.subpage-card__media {
  overflow: hidden;
}
.intro__image img,
.reason-card__image img,
.subpage-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-text {
  flex: 1;
  background: var(--color-light);
  border-radius: 2rem;
  padding: clamp(3rem, 4.2vw, 6rem) clamp(3rem, 3.33vw, 4.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
  color: #7e7979;
  letter-spacing: 0.2846rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.8;
}

.intro-text p {
  margin: 2rem 0 0 0;
}

.intro-text__lead {
  font-size: clamp(1.8rem, 1.67vw, 2.4rem);
  line-height: 1.8;
  font-weight: 400;
}

.intro-text__description {
  font-size: clamp(1.5rem, 1.32vw, 1.9rem);
  line-height: 1.8;
  font-weight: 400;
}

.intro-text__body {
  font-size: clamp(1.3rem, 1.11vw, 1.6rem);
  line-height: 1.8;
  font-weight: 400;
}

.intro-text p.intro-text__body--first {
  margin-top: 2.4rem;
}

/* Intro CTA Link Styles */
.intro-text__cta {
  display: flex;
  justify-content: flex-end;
}

.intro-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  background: transparent;
  border-radius: 5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #e2b1b4;
}

.intro-cta-link__text {
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.intro-cta-link__arrow {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 1.5px solid #e2b1b482;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.intro-cta-link__arrow svg {
  width: 2rem;
  height: 1.2rem;
}

.intro-cta-link:hover {
  border-color: #e2b1b4;
}

.intro-cta-link:hover .intro-cta-link__arrow {
  background: #e2b1b4;
  border-color: #ffffff;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .intro-text {
    gap: 2rem;
    letter-spacing: 0.15rem;
  }

  .intro-text__lead {
    font-size: 1.6rem;
  }

  .intro-text__description {
    font-size: 1.4rem;
  }

  .intro-text__body {
    font-size: 1.3rem;
  }

  .intro-text p.intro-text__body--first {
    margin-top: 2rem;
  }

  .intro-text__cta {
    margin-top: 2.4rem;
  }

  .intro-cta-link {
    gap: 1.2rem;
    padding: 1.2rem 2.4rem 1.2rem 1.8rem;
  }

  .intro-cta-link__text {
    font-size: 1.4rem;
  }

  .intro-cta-link__arrow {
    width: 4rem;
    height: 4rem;
  }

  .intro-cta-link__arrow svg {
    width: 1.8rem;
    height: 1rem;
  }
}

/* Decorative rotating circle for intro section */
.intro__circle {
  /* define size as CSS variable for easier adjustments */
  --circle-size: 25rem;
  position: absolute;
  top: 50%;
  /* place the circle so that roughly one-third of it sits outside the right edge */
  right: 2rem;
  width: var(--circle-size);
  height: var(--circle-size);
  transform: translateY(-50%) rotate(0deg);
  animation: spin-circle 40s linear infinite;
  pointer-events: none;
  /* slightly higher opacity so the pale text ring is visible against the background */
  opacity: 0.5;
  z-index: 999;
}
.intro__circle picture,
.intro__circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@keyframes spin-circle {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .intro__circle {
    right: -12rem;
  }
}

/* Products section */
.products {
  position: relative;
  padding: 6.4rem 9.6rem 0;
  overflow: visible;
}

/* Hide mobile button on desktop */
.products-view-all-mobile {
  display: none;
}

/* Fi-chan character decoration */
.products__fi-chan {
  position: absolute;
  top: 0.344rem;
  right: 11.6rem;
  width: 9.475rem;
  height: 17.918rem;
  transform: rotate(5.716deg);
  z-index: -1;
  pointer-events: none;
  transition: top 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.products__fi-chan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Desktop: hover animation */
@media (hover: hover) and (pointer: fine) {
  .products:hover .products__fi-chan {
    top: -6.656rem;
    transition: top 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
}

/* Mobile: scroll-triggered animation */
@media (hover: none) or (max-width: 768px) {
  .products__fi-chan {
    top: 0.344rem;
  }

  .products__fi-chan.is-visible {
    top: -4.656rem;
    transition: top 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
}

/* White background container */
.products-background {
  background: #ffffff;
  border-radius: 3.2rem;
  padding: 4.8rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

.products-container {
  max-width: 128rem;
  width: 100%;
  margin: 0 auto;
}

/* Header section with title and view all button */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4.8rem;
  padding-right: 0.1rem;
}

.products-title {
  max-width: 76.8rem;
}

.products-tagline {
  font-size: 1.6rem;
  color: #e2b1b4;
  line-height: 1.5;
  margin-bottom: 1.6rem;
  letter-spacing: 0.02em;
}

.products-subtitle {
  font-size: 2.24rem;
  color: #e2b1b4;
  line-height: 1.2;
  font-weight: 400;
}

.products-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  border: 1px solid #e2b1b4;
  border-radius: 0.2rem;
  color: #e2b1b4;
  font-size: 1.6rem;
  letter-spacing: 0.048rem;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.products-view-all:hover {
  background: #e2b1b4;
  color: #ffffff;
}

.products-view-all svg {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

/* Hide mobile button on desktop by default */
.products-view-all-mobile {
  display: none;
}

/* Products content area */
.products-content {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

/* Product slider container styling */
.product-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.product-swiper .swiper-wrapper {
  display: flex;
  gap: 4.8rem;
  will-change: transform;
  transition: transform 0.6s ease;
}

.product-swiper .swiper-slide {
  width: 32rem;
  flex-shrink: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-card img {
  width: 32rem;
  height: 32rem;
  border-radius: 2rem;
  object-fit: cover;
  display: block;
}

.product-name {
  font-size: 1.8rem;
  color: #e2b1b4;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Products controls (dots + navigation buttons) */
.products-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Pagination dots */
.products-pagination {
  display: flex;
  gap: 0.8rem;
  position: static;
}

.products-pagination .swiper-pagination-bullet {
  width: 1.8rem;
  height: 0.6rem;
  border-radius: 2.6rem;
  background: #d9d9d9;
  opacity: 1;
  margin: 0;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.products-pagination .swiper-pagination-bullet-active {
  background: #e2b1b4;
}

/* Navigation buttons */
.products-navigation {
  display: flex;
  gap: 1.6rem;
}

.products-nav-btn {
  width: 4.8rem;
  height: 4.8rem;
  border: 1.5px solid #e2b1b46b;
  border-radius: 5rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 1.2rem;
}

.products-nav-btn:hover {
  background: #e2b1b4;
  border-color: #e2b1b4;
}

.products-nav-btn svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke: #e2b1b4;
  transition: stroke 0.3s ease;
}
.products-nav-btn svg path {
  stroke: var(--color-primary);
}

.products-nav-btn:hover svg {
  stroke: #ffffff;
}

/* Bottom spacer (gray section) */
.products-spacer {
  height: 4.8rem;
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .products {
    padding: 4rem 4rem 0;
  }

  .products__fi-chan {
    right: 4rem;
  }

  .products-background {
    padding: 3rem;
  }
}

@media (min-width: 769px) {
  .products-view-all-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 3rem 1.5rem;
  }

  .product-name {
    font-size: 1.6rem;
    width: 100%;
  }

  .products__fi-chan {
    width: 6rem;
    height: 11.3rem;
    right: 1.5rem;
    top: 0.5rem;
  }

  .products-background {
    padding: 4rem 1.5rem;
    border-radius: 2rem;
  }

  .products-header {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
  }

  .products-tagline {
    font-size: 1.4rem;
    margin-bottom: 0.291rem;
  }

  .products-subtitle {
    font-size: 1.8rem;
  }

  .products-view-all-desktop {
    display: none;
  }

  .products-view-all-mobile {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.4rem;
    border: 1px solid #e2b1b4;
    border-radius: 0.2rem;
    color: #e2b1b4;
    font-size: 1.4rem;
    letter-spacing: 0.048rem;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    margin-top: 3rem;
  }

  .products-view-all-mobile:hover {
    background: #e2b1b4;
    color: #ffffff;
  }

  .products-view-all-mobile svg {
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
  }
  .product-swiper {
    text-align: center;
  }
  .product-swiper .swiper-slide {
    width: 28rem;
  }

  .product-card img {
    width: 28rem;
    height: 28rem;
  }

  .product-name {
    font-size: 1.6rem;
  }

  .products-content {
    position: relative;
  }

  .products-controls {
    flex-direction: column;
    gap: 2rem;
  }

  .products-spacer {
    height: 3rem;
  }
}

/* Big tagline marquee */
.big-tagline {
  overflow: hidden;
  white-space: nowrap;
}

.big-tagline__track {
  display: inline-flex;
  align-items: center;
  animation: marquee 50s linear infinite;
}

.big-tagline__text {
  font-size: clamp(3rem, 12vw, 15rem);
  color: #f499ac57;
  font-weight: 600;
  margin-right: 2rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Reason section */
.reasons {
  padding: 0 9.6rem 9.6rem;
  overflow: hidden;
}

.reasons-container {
  background: #ffffff;
  border-radius: 2rem;
  padding: 9.6rem;
  max-width: 100%;
}

.reasons__header {
  text-align: center;
  margin-bottom: 4.672rem;
}

.reasons__tagline {
  font-size: 1.6rem;
  color: #e2b1b4;
  line-height: 1.5;
  margin-bottom: 0.291rem;
  letter-spacing: 0.02em;
}

.reasons__title {
  font-size: 2.24rem;
  color: #e2b1b4;
  line-height: 4.48rem;
  letter-spacing: 0.112rem;
  font-weight: 400;
  margin: 0;
}

.reasons__cards {
  display: flex;
  gap: 4.8rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.reason-card {
  flex: 1 1 28.8rem;
  max-width: calc((100% - 9.6rem) / 3);
  min-width: 28.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.reason-card__image-wrapper {
  position: relative;
  width: 28.8rem;
  height: 28.8rem;
  border-radius: 2rem;
  overflow: hidden;
}

.reason-card__image {
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}

.reason-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2rem;
}

.reason-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 3rem;
  pointer-events: none;
}

.reason-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 2rem;
  z-index: -1;
}

.reason-overlay__en {
  font-size: 1.0313rem;
  line-height: 1.1rem;
  letter-spacing: 0.055rem;
  margin: 0;
  font-weight: 600;
}

.reason-overlay__jp {
  font-size: 2.8rem;
  line-height: 1.76rem;
  letter-spacing: 0.088rem;
  margin: 1.6rem 0 0 0;
  font-weight: 700;
}

.reason-card__text {
  width: 26.8rem;
  font-size: 1.4rem;
  line-height: 2;
  color: #7e7979;
  text-align: left;
}

.reason-card__text p {
  margin: 0;
}

/* responsive adjustments for reason cards */
@media (max-width: 1200px) {
  .reasons {
    padding: 6rem 4rem;
  }

  .reasons-container {
    padding: 6rem 4rem;
  }

  .reasons__cards {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .reasons {
    padding: 4rem 1.5rem;
  }

  .reasons-container {
    padding: 4rem 2rem;
    border-radius: 1.5rem;
  }

  .reasons__header {
    margin-bottom: 3rem;
  }

  .reasons__tagline {
    font-size: 1.4rem;
  }

  .reasons__title {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .reasons__cards {
    flex-direction: column;
    gap: 6rem;
    align-items: center;
  }

  .reason-card {
    flex: 1 1 100%;
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }

  .reason-card__image-wrapper {
    width: 100%;
    max-width: 32rem;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .reason-card__text {
    width: 100%;
    max-width: 32rem;
    font-size: 1.3rem;
  }
}

/* About/Shop section */
.about-shop {
  padding: 6.4rem 9.6rem 2rem;
  overflow: hidden;
}

.about-shop-container {
  max-width: 128rem;
  margin: 0 auto;
}

.subpage-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}

.subpage-layout__left,
.subpage-layout__right {
  flex: 1 1 48%;
  min-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.subpage-layout__right {
  justify-content: flex-start;
}

.subpage-card {
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
  background: var(--color-light);
  flex: 1 1 auto;
}

.subpage-card__media {
  margin: 0;
}

.subpage-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.subpage-card--main .subpage-card__media {
  aspect-ratio: 3 / 4;
}

.subpage-card--secondary .subpage-card__media,
.subpage-card--tertiary .subpage-card__media {
  aspect-ratio: 3 / 2;
}

.subpage-card--main {
  min-height: 56rem;
}

.subpage-card--secondary,
.subpage-card--tertiary {
  min-height: 26rem;
}

.subpage-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 29.44444vw;
  background: var(--color-background);
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 3.33333vw 1rem 3.33333vw 3.33333vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  text-decoration: none;
  color: var(--color-primary);
  box-shadow: 0 1.2rem 2.4rem rgba(62, 76, 89, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subpage-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.subpage-card__logo {
  display: block;
  width: auto;
  height: 4rem;
  margin: 0.8rem 0;
  position: absolute;
  top: 3rem;
  right: 12.5rem;
}

@media screen and (max-width: 965px) {
  .subpage-card__logo {
    height: 3rem;
    top: 0rem;
    right: 10.5rem;
  }
}

.subpage-card__logo img {
  height: 100%;
  width: auto;
  display: block;
}

.subpage-card__tag {
  font-size: 1.2rem;
  color: #e2b1b4;
  opacity: 0.9;
  line-height: 1;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.subpage-card__title {
  font-size: 2.24rem;
  color: #e2b1b4;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 300;
  margin: 0;
}

.subpage-card__arrow {
  width: 8.2rem;
  height: 8.2rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1.5px solid #e2b1b482;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2b1b4;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.subpage-card__arrow svg {
  width: 2.2rem;
  height: 1.4rem;
}

.subpage-card__overlay:hover {
  box-shadow: 0 1.6rem 3.2rem rgba(62, 76, 89, 0.18);
}

.subpage-card__overlay:hover .subpage-card__arrow {
  background: #e2b1b4;
  border-color: #e2b1b4;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .about-shop {
    padding: 4.8rem 4rem 2rem;
  }

  .subpage-card--main {
    min-height: 50rem;
  }
}

@media (max-width: 900px) {
  .subpage-layout {
    flex-direction: column;
  }

  .subpage-layout__left,
  .subpage-layout__right {
    min-width: 100%;
  }

  .subpage-card--main {
    min-height: 48rem;
  }
}

@media (max-width: 640px) {
  .about-shop {
    padding: 3.2rem 1.6rem 1.6rem;
  }

  .subpage-layout {
    gap: 2.4rem;
  }

  .subpage-layout__left,
  .subpage-layout__right {
    gap: 2.4rem;
  }

  .subpage-card {
    border-radius: 2rem;
  }

  .subpage-card__media {
    width: 100%;
    height: 100%;
  }

  .subpage-card__media picture {
    width: 100%;
    height: 100%;
  }

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

  .subpage-card--main .subpage-card__media {
    min-height: 48rem;
  }

  .subpage-card--secondary .subpage-card__media,
  .subpage-card--tertiary .subpage-card__media {
    min-height: 30rem;
  }

  .subpage-card__overlay {
    max-width: 100%;
    width: calc(100% - 2.8rem);
    padding: 1.6rem 2rem;
  }
  @media screen and (max-width: 480px) {
    .subpage-card--main .subpage-card__overlay {
      padding-top: 4rem;
    }
  }

  .subpage-card__title {
    font-size: 2rem;
  }

  .subpage-card__arrow {
    width: 4.6rem;
    height: 4.6rem;
  }
}

.news {
  padding: 9.6rem 4.8rem;
  overflow: hidden;
}

.news-container {
  border-radius: 2rem;
  padding: 9.6rem 4.8rem;
  max-width: 100%;
}

.news-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4.8rem;
}

.news-title {
  display: flex;
  flex-direction: column;
  gap: 0.291rem;
}

.news-tagline {
  font-size: 1.2rem;
  color: #e2b1b4;
  line-height: 1;
  margin: 0;
  font-weight: 600;
}

.news-subtitle {
  font-size: 2.24rem;
  color: #e2b1b4;
  line-height: 4.48rem;
  letter-spacing: 0.112rem;
  font-weight: 400;
  margin: 0;
}

.news-view-all {
  display: inline-flex;
  align-items: center;
  padding: 1.2rem 4.2rem;
  border: 1px solid #e2b1b4;
  border-radius: 0.2rem;
  color: #e2b1b4;
  font-size: 1.6rem;
  letter-spacing: 0.048rem;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.news-view-all:hover {
  background: #e2b1b4;
  color: #ffffff;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  display: flex;
  align-items: center;
  padding: 2.6rem 3rem;
  gap: 5.3rem;
  border-radius: 0;
  transition: background 0.3s ease;
}

.news-item--highlighted {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
}

.news-item:hover {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2rem;
}

.news-item--highlighted:hover {
  border-radius: 2rem;
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 3.68rem;
}

.news-date {
  font-size: 1.2rem;
  color: #e2b1b4;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  font-weight: 600;
}

.news-tag {
  padding: 1rem 2.6rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
  font-weight: 600;
  min-width: 12rem;
  text-align: center;
  display: inline-block;
}

.news-tag--event {
  background: #e2b1b4;
}

.news-tag--shop {
  background: #e2b1b4;
}

.news-item__title {
  flex: 1;
  font-size: 1.3rem;
  color: #e2b1b4;
  line-height: 2.6rem;
  letter-spacing: 0.0325rem;
  margin: 0;
}

.news-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.news-item__link:hover {
  opacity: 0.8;
}

.news-item__link-icon {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

/* Instagram CTA Section */
.instagram-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12rem 3rem 6rem;
}

.instagram-cta__content {
  text-align: center;
  width: 60%;
  max-width: 60rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.instagram-cta__icon {
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.instagram-cta__icon:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.9);
}

.instagram-cta__title {
  font-size: 2.8rem;
  font-weight: 500;
  color: #e2b1b4;
  margin: 0;
  line-height: 1.4;
}

.instagram-cta__text {
  font-size: 1.4rem;
  color: #7e7979;
  line-height: 2;
  margin: 0;
  letter-spacing: 0.05em;
}

.pc-only {
  display: inline;
}

.instagram-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 4rem;
  background: #e2b1b4;
  color: white;
  text-decoration: none;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(226, 177, 180, 0.3);
}

.instagram-cta__button:hover {
  background: #d89a9e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(226, 177, 180, 0.45);
}

.instagram-cta__button svg {
  flex-shrink: 0;
}

.instagram-widget {
  width: 100%;
  max-width: 80rem;
  margin: 2rem 0;
}

.instagram-widget iframe {
  min-height: 40rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .news {
    padding: 6rem 3rem;
  }

  .news-container {
    padding: 6rem 3rem;
  }

  .news-header {
    margin-bottom: 3rem;
  }

  .news-item {
    gap: 3rem;
    padding: 2rem 2rem;
  }

  .news-item__meta {
    gap: 2rem;
  }

  .instagram-cta {
    padding: 4rem 2rem;
  }

  .instagram-cta__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .news {
    padding: 4rem 1.5rem;
  }

  .news-container {
    padding: 4rem 0;
  }

  .news-header {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .news-tagline {
    font-size: 1rem;
  }

  .news-subtitle {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .news-view-all {
    font-size: 1.4rem;
    padding: 1rem 2rem;
    margin-left: auto;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .news-item__meta {
    gap: 1.5rem;
    width: 100%;
  }

  .news-date {
    font-size: 1.1rem;
  }

  .news-tag {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
  }

  .news-item__title {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .instagram-cta {
    padding: 12rem 1.5rem 3rem;
  }

  .instagram-cta__content {
    gap: 2rem;
    width: 100%;
  }

  .instagram-widget {
    width: 100%;
    max-width: 100%;
  }

  .instagram-widget iframe {
    min-height: 35rem;
  }

  .instagram-cta__icon {
    width: 6rem;
    height: 6rem;
  }

  .instagram-cta__icon svg {
    width: 36px;
    height: 36px;
  }

  .instagram-cta__title {
    font-size: 2rem;
  }

  .instagram-cta__text {
    font-size: 1.3rem;
  }

  .pc-only {
    display: none;
  }

  .instagram-cta__button {
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
  }
}

/* CTA section */
.cta {
  padding: 4rem 1rem 20rem;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #a2bfdc;
  /* Fallback first for older browsers */
  background-image: url("../images/cta-container_002.jpg");
  /* Modern image-set with WebP preferred */
  background-image: image-set(
    url("../images/cta-container_002.webp") type("image/webp") 1x,
    url("../images/cta-container_002@2x.webp") type("image/webp") 2x,
    url("../images/cta-container_002.jpg") type("image/jpeg") 1x,
    url("../images/cta-container_002@2x.jpg") type("image/jpeg") 2x
  );
  /* Safari prefix (older versions) */
  background-image: -webkit-image-set(
    url("../images/cta-container_002.webp") type("image/webp") 1x,
    url("../images/cta-container_002@2x.webp") type("image/webp") 2x,
    url("../images/cta-container_002.jpg") type("image/jpeg") 1x,
    url("../images/cta-container_002@2x.jpg") type("image/jpeg") 2x
  );
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1rem;
  padding: 96px 48px;
  text-align: center;
  display: flex;
  padding: 96px 48px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
}

.cta-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: var(--color-light);
  text-align: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 6.4rem;
  padding: 1.2rem clamp(2.4rem, 5vw, 8rem);
  background: #e2b1b4;
  color: #ffffff;
  border-radius: 999px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-btn__label {
  white-space: nowrap;
}

.cta-btn__icon {
  display: inline-flex;
  align-items: center;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.6rem 1.2rem rgba(226, 177, 180, 0.45);
  background: #d89a9e;
}

/* About page CTA overrides */
.about-cta .cta-container {
  background-image: url("../images/about-cta-bg.jpg");
  background-image: image-set(
    url("../images/about-cta-bg.jpg") type("image/jpeg") 1x,
    url("../images/about-cta-bg@2x.jpg") type("image/jpeg") 2x,
    url("../images/about-cta-bg.png") type("image/png") 1x
  );
  background-image: -webkit-image-set(
    url("../images/about-cta-bg.jpg") type("image/jpeg") 1x,
    url("../images/about-cta-bg@2x.jpg") type("image/jpeg") 2x,
    url("../images/about-cta-bg.png") type("image/png") 1x
  );
}

@media (max-width: 768px) {
  .cta-btn {
    width: 100%;
    justify-content: center;
    min-height: 5.6rem;
    font-size: 1.5rem;
  }
}

/* Page top button */
.page-top {
  position: fixed;
  bottom: clamp(1.6rem, 4vw, 3.2rem);
  right: clamp(1.6rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #e2b1b4;
  font-family: var(--font-en);
  font-size: 2.2rem;
  letter-spacing: 0.0325rem;
  line-height: 2.6rem;
  font-weight: 400;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  user-select: none;
  z-index: 30;
  opacity: 1;
  pointer-events: auto;
}

/* Hide page-top by default on mobile */
@media (max-width: 768px) {
  .page-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(2rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .page-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Hide fixed button when footer is reached */
  .page-top.in-footer {
    opacity: 0;
    pointer-events: none;
  }
}

.page-top__icon {
  width: 5.6rem;
  height: 5.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-top__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.page-top__label {
  font-size: 2.2rem;
  letter-spacing: 0.0325rem;
}

.page-top:hover {
  transform: translateY(-0.6rem);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .page-top {
    font-size: 1.8rem;
    line-height: 2.2rem;
    gap: 0.6rem;
  }

  .page-top__icon {
    width: 4.4rem;
    height: 4.4rem;
  }
}

/* Footer */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 24rem 16rem 6.4rem;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8.8rem;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* Logo */
.footer-logo {
  position: absolute;
  top: 7.3rem;
  width: 9.5rem;
  height: 8.4rem;
  mix-blend-mode: multiply;
}

.footer-logo .logo {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navigation Grid */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: fit-content;
  max-width: 38.67rem;
}

.footer-nav-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  height: 4.569rem;
}

.footer-nav-en {
  font-size: 1.27rem;
  letter-spacing: 0.0633rem;
  line-height: 1.621rem;
  white-space: nowrap;
  width: 5.9rem;
}

.footer-nav-jp {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.56rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav-jp:hover {
  opacity: 0.8;
}

/* Shopping Section */
.footer-shopping {
  display: flex;
  flex-direction: column;
  gap: 3.162rem;
}

.footer-shop-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.footer-shop-btn {
  background: #fff;
  color: var(--color-primary);
  border-radius: 144rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.0843rem;
  line-height: 2.53rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 4.2rem;
  width: 24.7rem;
}

.footer-shop-btn span {
  flex: 1;
  text-align: center;
}

.footer-shop-btn img {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
}

.footer-shop-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-instagram img {
  width: 1.8rem;
  height: 1.8rem;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  padding-top: 0.3rem;
}

.footer-privacy {
  font-family: "fot-tsukuardgothic-std", var(--font-jp);
  font-size: 1.48rem;
  letter-spacing: 0.2214rem;
  line-height: 1.476rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: absolute;
  left: 57.9rem;
}

.footer-privacy:hover {
  opacity: 0.8;
}

.footer-lang {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.064rem;
  line-height: 2.56rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  width: 100%;
}

.footer-lang a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-lang a:hover {
  opacity: 0.7;
}

.footer-lang-sep {
  opacity: 0.7;
}

.footer-copy {
  font-family: "fot-tsukuardgothic-std", var(--font-jp);
  font-size: 1.48rem;
  letter-spacing: 0.2214rem;
  line-height: 1.476rem;
  margin: 0;
  position: absolute;
  right: 0;
}

/* Responsive */
@media (max-width: 1920px) {
  footer {
    padding: 24rem 8rem 6rem;
  }

  .footer-nav {
    max-width: 100%;
  }

  .footer-shopping {
    position: relative;
  }

  .footer-social {
    position: absolute;
    top: 2rem;
    right: 0;
  }

  .footer-bottom {
    gap: 2rem;
    align-items: flex-start;
    margin-top: 4rem;
  }

  .footer-privacy,
  .footer-lang,
  .footer-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
  }
}

@media (max-width: 1024px) {
  footer {
    padding: 12rem 4rem 4rem;
  }

  .footer-logo {
    top: 4rem;
    width: 7rem;
    height: auto;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .footer-nav-item {
    height: auto;
    padding: 1rem 0;
  }

  .footer-social {
    top: 4rem;
    right: 4rem;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 10rem 2rem 4rem;
  }

  .footer-logo {
    display: none;
  }

  .footer-nav {
    gap: 0.5rem;
    margin-bottom: 3rem;
  }

  .footer-nav-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.8rem 0;
  }

  .footer-nav-en {
    font-size: 1.1rem;
    width: auto;
  }

  .footer-nav-jp {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .footer-shopping {
    margin-top: 0.8rem;
  }

  .footer-shopping-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .footer-shopping-en {
    font-size: 1.1rem;
  }

  .footer-shopping-jp {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .footer-shop-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .footer-shop-btn {
    width: 100%;
    font-size: 1.4rem;
    padding: 1rem 4rem;
  }

  .footer-social {
    position: relative;
    top: auto;
    right: auto;
    margin: 3rem 0;
  }

  .footer-sns-btn {
    width: 4rem;
    height: 4rem;
  }

  .footer-bottom {
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-privacy {
    font-size: 1.2rem;
  }

  .footer-lang {
    font-size: 1.4rem;
    order: -1;
  }

  .footer-copy {
    font-size: 1.2rem;
  }

  /* Footer Page Top Button (Mobile Only) */
  .footer-page-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-en);
    font-size: 2.2rem;
    letter-spacing: 0.0325rem;
    line-height: 2.6rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
    cursor: pointer;
    user-select: none;
    margin-top: 3rem;
  }

  .footer-page-top:hover {
    opacity: 0.8;
  }

  .footer-page-top__icon {
    width: 5.6rem;
    height: 5.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-page-top__icon img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
  }

  .footer-page-top__label {
    font-size: 2.2rem;
    letter-spacing: 0.0325rem;
    color: #fff;
  }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Page Main Container */
.about-page {
  background: #efefef;
  width: 100%;
}

/* About FV Section */
.about-fv {
  position: relative;
  width: 100%;
  height: 42.8rem;
  background: #efefef;
  overflow: hidden;
}

.about-fv__image-wrapper {
  position: absolute;
  inset: 0;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 428"><path d="M0 0h1440v428H0z"/></svg>');
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
}

.about-fv__image {
  width: 100%;
  height: 139.33%;
  object-fit: cover;
  position: absolute;
  top: -1.93%;
  left: 0;
}

.about-fv__title-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55.659rem;
  height: 16.022rem;
  background: #efefef;
  border-top-right-radius: 4rem;
  padding: 1.0542rem 3.691rem 0 9.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  color: var(--color-primary);
}

.about-fv__title-en {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

.about-fv__title-jp {
  font-family: var(--font-jp);
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}

/* About Concept Section */
.about-concept {
  background: #efefef;
  padding: 9.6rem 9.6rem 0;
}

.about-concept .container {
  max-width: 144rem;
  margin: 0 auto;
}

.about-concept__hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../images/about-concept-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 2rem;
  padding: 9.6rem 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34.8rem;
  margin-bottom: 6.4rem;
}

.about-concept__tagline {
  font-family: var(--font-jp);
  font-size: 1.9rem;
  line-height: 5.693rem;
  letter-spacing: 0.2846rem;
  color: var(--color-primary);
  text-align: center;
  margin: 0;
}

.about-concept__content {
  display: flex;
  gap: 6.4rem;
  align-items: flex-start;
}

.about-concept__text-wrapper {
  flex: 1;
  max-width: 86.4rem;
}

.about-concept__text {
  background: #fff;
  border-radius: 2rem;
  padding: 9.6rem 6.4rem;
  font-family: var(--font-jp);
  font-size: 1.9rem;
  line-height: 4.693rem;
  letter-spacing: 0.2846rem;
  color: #7e7979;
}

.about-concept__text p {
  margin: 0 0 5.693rem;
}

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

.about-concept__images {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  flex-shrink: 0;
}

.about-concept__image-item {
  width: 40rem;
  height: 63.7rem;
  border-radius: 2rem;
  overflow: hidden;
}

.about-concept__image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-concept__image-item--certificate {
  height: 40rem;
  background: #e2b1b4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.about-concept__certificate-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.8rem 2rem;
}

.about-concept__certificate-title {
  font-family: var(--font-jp);
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0.084rem;
  color: #fff;
  text-align: center;

  z-index: 2;
}

.about-concept__certificate-images {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/certificate-1.jpg");
  background-image: image-set(
    url("../images/certificate-1.webp") type("image/webp") 1x,
    url("../images/certificate-1@2x.webp") type("image/webp") 2x,
    url("../images/certificate-1.jpg") type("image/jpeg") 1x,
    url("../images/certificate-1@2x.jpg") type("image/jpeg") 2x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-concept__certificate-img {
  position: absolute;
  filter: blur(1px);
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
}

.about-concept__certificate-img:nth-child(1) {
  width: 13.3rem;
  height: 18.8rem;
  left: 8.5rem;
  top: 12.6rem;
}

.about-concept__certificate-img:nth-child(2) {
  width: 13.4rem;
  height: 18.9rem;
  left: 17.1rem;
  top: 15.9rem;
}

.about-concept__certificate-logo {
  position: absolute;
  width: 7.8rem;
  height: 4.6rem;
  left: 23.8rem;
  top: 10.3rem;
  mix-blend-mode: multiply;
}

/* For Baby & Mom Divider */
.for-baby-mom-divider {
  position: relative;
  width: 100%;
  height: 16.8rem;
  overflow: hidden;
  margin: 4.8rem 0;
}

.for-baby-mom-divider__mask {
  position: absolute;
  bottom: -0.22px;
  left: 0;
  width: 100%;
  height: 16.856rem;
  overflow: hidden;
}

.for-baby-mom-divider__text-scroll {
  position: absolute;
  display: flex;
  gap: 7.4rem;
  white-space: nowrap;
  animation: scrollText 20s linear infinite;
  font-family: var(--font-en);
  font-size: 16.8rem;
  font-weight: 900;
  line-height: 1;
  color: #414141;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes scrollText {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(-133.2rem) translateY(-50%);
  }
}

.for-baby-mom-divider__gradient {
  position: absolute;
  bottom: -0.22px;
  left: 0;
  width: 100%;
  height: 16.9rem;
  background: linear-gradient(to top, rgba(99, 154, 208, 0.3), #e3eae5);
  pointer-events: none;
}

/* About Business Section */
.about-business {
  background: #efefef;
  padding: 0 9.6rem 2rem;
}

.about-business .container {
  max-width: 144rem;
  margin: 0 auto;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4.8rem;
  color: var(--color-primary);
}

.section-title__en {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

.section-title__jp {
  font-family: var(--font-jp);
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}

.about-business__grid {
  display: grid;
  grid-template-columns: 27.6rem 1fr;
  grid-template-rows: repeat(5, auto);
  gap: 4.8rem 6.4rem;
  width: 126.4rem;
  margin: 0 auto;
}

.about-business__card {
  border-radius: 2rem;
  overflow: hidden;
}

.about-business__card--fikaleap,
.about-business__card--content {
  align-self: center;
}

.about-business__card--image {
  position: relative;
  width: 27.6rem;
  height: 27.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.about-business__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-business__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}

.about-business__card-en {
  position: relative;
  z-index: 2;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.055rem;
  line-height: 1.1rem;
  color: #fff;
  text-transform: lowercase;
}

.about-business__card-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-jp);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.088rem;
  line-height: 1.76rem;
  color: #fff;
  margin: 0;
}

.about-business__card--content {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 3rem 3rem 6rem;
  min-height: 27.6rem;
}

.about-business__link-group,
.about-business__text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.about-business__text-group[data-layout="row"] {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0 1.6rem;
}

.about-business__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-jp);
  font-size: 1.9rem;
  letter-spacing: 0.2846rem;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.about-business__card--content > .about-business__link,
.about-business__text:has(.about-business__link) {
  margin-top: 4rem;
}

.about-business__link + .about-business__link {
  margin-top: 0;
}

.about-business__link:hover {
  opacity: 0.7;
}

.about-business__link-icon {
  width: 2.4rem;
  height: 2.6rem;
  flex-shrink: 0;
}

.about-business__text {
  font-family: var(--font-jp);
  font-size: 1.9rem;
  line-height: 1.8;
  letter-spacing: 0.2846rem;
  color: var(--color-primary);
  text-align: left;
  margin: 0;
}

.about-business__note {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.16rem;
  color: var(--color-primary);
  margin: 0.8rem 0 0;
}

.about-business__card-title--logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-business__logo {
  filter: none;
  width: 24rem;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.about-business__text-group--workshop {
  align-items: flex-start;
  gap: 1.6rem;
}

.about-business__text--workshop {
  line-height: 2;
  letter-spacing: 0.08rem;
}

.about-business__text-group--list {
  align-items: flex-start;
  text-align: left;
  gap: 1.6rem;
}

.about-business__text-label {
  font-size: 1.9rem;
  line-height: 1.6;
  letter-spacing: 0.24rem;
  width: 100%;
}

.about-business__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
  width: 100%;
}

.about-business__list-item {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.08rem;
  color: var(--color-primary);
  position: relative;
}
/* 
.about-business__list-item::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--color-primary);
} */

@media (min-width: 768px) {
  .about-business__list {
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  }
}

/* About Company Section */
.about-company {
  background: #efefef;
  padding: 9.6rem 4.8rem;
}

.about-company .container {
  max-width: 124.8rem;
  margin: 0 auto;
}

.about-company__table {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 115.2rem;
  margin: 0 auto;
}

.about-company__row {
  display: flex;
  gap: 9.6rem;
  align-items: center;
  padding: 2.6rem 3rem;
  border-radius: 2rem;
}

.about-company__row--alt {
  background: rgba(255, 255, 255, 0.7);
}

.about-company__label {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-primary);
  width: 9.6rem;
  flex-shrink: 0;
}

.about-company__value {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0.0325rem;
  color: var(--color-primary);
  flex: 1;
}

.about-company__value p {
  margin: 0;
  line-height: 2.6rem;
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
  .about-fv {
    height: 35rem;
  }

  .about-fv__title-box {
    width: 45rem;
    height: 14rem;
    padding: 1rem 2rem 0 5rem;
  }

  .about-concept {
    padding: 6rem 5rem 0;
  }

  .about-concept__hero {
    padding: 6rem 3rem;
    height: 25rem;
  }

  .about-concept__tagline {
    font-size: 1.6rem;
    line-height: 4rem;
  }

  .about-concept__content {
    flex-direction: column;
    gap: 4rem;
  }

  .about-concept__images {
    flex-direction: row;
    width: 100%;
    gap: 3rem;
  }

  .about-concept__image-item {
    width: 100%;
    flex: 1;
    height: 50rem;
  }

  .about-concept__image-item--certificate {
    height: 50rem;
  }

  .about-business {
    padding: 0 5rem 2rem;
  }

  .about-business__grid {
    width: 100%;
    gap: 3rem;
  }

  .about-company {
    padding: 6rem 3rem;
  }
}

@media (max-width: 965px) {
  .about-fv {
    height: 32rem;
  }

  .about-fv__title-box {
    width: 40rem;
    height: 13rem;
    padding: 1rem 2rem 0 4rem;
  }

  .about-fv__title-jp {
    font-size: 2.8rem;
  }

  .about-concept {
    padding: 5rem 3rem 0;
  }

  .about-concept__hero {
    padding: 5rem 2.5rem;
    height: 22rem;
  }

  .about-concept__tagline {
    font-size: 1.5rem;
    line-height: 3.5rem;
  }

  .about-concept__text {
    padding: 7rem 4rem;
    font-size: 1.7rem;
    line-height: 5rem;
  }

  .about-concept__text p {
    margin-bottom: 4.5rem;
  }

  .about-concept__images {
    gap: 2.5rem;
  }

  .about-concept__image-item {
    width: 100%;
    height: 45rem;
  }

  .about-concept__image-item--certificate {
    height: 45rem;
  }

  .about-concept__certificate-title {
    font-size: 2.4rem;
  }

  .about-concept__certificate-img:nth-child(1) {
    width: 12rem;
    height: 17rem;
    left: 7rem;
    top: 11rem;
  }

  .about-concept__certificate-img:nth-child(2) {
    width: 12rem;
    height: 17rem;
    left: 15rem;
    top: 13rem;
  }

  .about-concept__certificate-logo {
    width: 7rem;
    height: 4rem;
    left: 21rem;
    top: 9rem;
  }

  .for-baby-mom-divider {
    height: 14rem;
    margin: 3.5rem 0;
  }

  .for-baby-mom-divider__mask {
    height: 14rem;
  }

  .for-baby-mom-divider__text-scroll {
    font-size: 13rem;
  }

  .for-baby-mom-divider__gradient {
    height: 14rem;
  }

  .about-business {
    padding: 0 3rem 2rem;
  }

  .about-business__grid {
    gap: 2.5rem;
  }

  .about-business__card--image {
    width: 100%;
    height: 28rem;
  }

  .about-business__card--content {
    min-height: auto;
    padding: 2.5rem;
  }

  .about-business__link,
  .about-business__text {
    font-size: 1.6rem;
    line-height: 4rem;
    letter-spacing: 0.15rem;
  }

  .about-business__note {
    font-size: 1.3rem;
    line-height: 2.4rem;
    letter-spacing: 0.12rem;
    margin-top: 0.6rem;
  }

  .about-business__text-group--workshop {
    padding-inline: 0;
  }

  .about-company {
    padding: 5rem 3rem;
  }

  .about-company__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2.2rem 2rem;
  }

  .about-company__label {
    width: 100%;
    font-size: 1.5rem;
  }

  .about-company__value {
    font-size: 1.5rem;
    line-height: 2.4rem;
  }
}

@media (max-width: 768px) {
  .about-fv {
    height: 28rem;
  }

  .about-fv__title-box {
    width: 100%;
    height: auto;
    border-top-right-radius: 2rem;
    padding: 2rem;
    gap: 1rem;
  }

  .about-fv__title-en {
    font-size: 1.4rem;
  }

  .about-fv__title-jp {
    font-size: 2.4rem;
  }

  .about-concept {
    padding: 4rem 1.6rem 0;
  }

  .about-concept__hero {
    padding: 4rem 2rem;
    height: auto;
    min-height: 20rem;
  }

  .about-concept__tagline {
    font-size: 1.4rem;
    line-height: 3rem;
    letter-spacing: 0.15rem;
  }

  .about-concept__text {
    padding: 4rem 2rem;
    font-size: 1.4rem;
    line-height: 3.5rem;
    letter-spacing: 0.15rem;
  }

  .about-concept__text p {
    margin-bottom: 3rem;
  }

  .about-concept__images {
    flex-direction: column;
    gap: 2rem;
  }

  .about-concept__image-item {
    width: 100%;
    height: 35rem;
  }

  .about-concept__image-item--certificate {
    height: 30rem;
  }

  .about-concept__certificate-title {
    font-size: 2rem;
  }

  .about-concept__certificate-img:nth-child(1) {
    width: 10rem;
    height: 14rem;
    left: 5rem;
    top: 8rem;
  }

  .about-concept__certificate-img:nth-child(2) {
    width: 10rem;
    height: 14rem;
    left: 12rem;
    top: 10rem;
  }

  .about-concept__certificate-logo {
    width: 5rem;
    height: 3rem;
    left: 18rem;
    top: 6rem;
  }

  .for-baby-mom-divider {
    height: 12rem;
    margin: 3rem 0;
  }

  .for-baby-mom-divider__mask {
    height: 12rem;
  }

  .for-baby-mom-divider__text-scroll {
    font-size: 10rem;
  }

  .for-baby-mom-divider__gradient {
    height: 12rem;
  }

  .about-business {
    padding: 0 1.6rem 2rem;
  }

  .section-title {
    margin-bottom: 3rem;
  }

  .section-title__en {
    font-size: 1.4rem;
  }

  .section-title__jp {
    font-size: 2.4rem;
  }

  .about-business__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }

  .about-business__card--content {
    margin-bottom: 2rem;
  }

  .about-business__card--image {
    width: 100%;
    height: 25rem;
  }

  .about-business__card--content {
    min-height: auto;
    padding: 2rem;
  }

  .about-business__link,
  .about-business__text {
    font-size: 1.4rem;
    line-height: 3rem;
    letter-spacing: 0.1rem;
  }

  .about-company {
    padding: 4rem 1.6rem;
  }

  .about-company__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }

  .about-company__label {
    width: 100%;
    font-size: 1.4rem;
  }

  .about-company__value {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}

/* Hide footer page-top on desktop */
@media (min-width: 769px) {
  .footer-page-top {
    display: none;
  }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Page Main Container */
.contact-page {
  background: #efefef;
  width: 100%;
  min-height: 100vh;
}

.contact-maintenance {
  background: #efefef;
  padding: clamp(6rem, 12vw, 10rem) 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-maintenance__inner {
  background: #ffffff;
  border-radius: 2rem;
  padding: clamp(4rem, 8vw, 6rem);
  box-shadow: 0 2rem 6rem rgba(62, 76, 89, 0.12);
  text-align: center;
  max-width: 60rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-maintenance__eyebrow {
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: #e2b1b4;
  margin: 0;
}

.contact-maintenance__title {
  font-family: var(--font-jp);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--color-primary);
  margin: 0;
}

.contact-maintenance__message {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  color: #3e4c59;
  margin: 0;
}

.contact-maintenance__btn {
  padding-inline: clamp(3rem, 6vw, 6rem);
}

.contact-content--hidden {
  display: none;
}

/* Thanks Page Section */
.thanks-section {
  background: #efefef;
  padding: clamp(6rem, 12vw, 10rem) 1.6rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-container {
  background: #ffffff;
  border-radius: 2rem;
  padding: clamp(4rem, 8vw, 6rem);
  box-shadow: 0 2rem 6rem rgba(62, 76, 89, 0.12);
  text-align: center;
  max-width: 60rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.thanks-icon {
  width: 8rem;
  height: 8rem;
  background: #e2b1b4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.thanks-icon svg {
  width: 4.8rem;
  height: 4.8rem;
  stroke: #ffffff;
  stroke-width: 3;
}

.thanks-title {
  font-family: var(--font-jp);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.4;
}

.thanks-message {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  color: #3e4c59;
  margin: 0;
}

.thanks-btn {
  margin-top: 1.6rem;
  padding-inline: clamp(3rem, 6vw, 6rem);
}

@media (max-width: 768px) {
  .thanks-section {
    padding: 4rem 1.6rem;
    min-height: 50vh;
  }

  .thanks-container {
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .thanks-icon {
    width: 6rem;
    height: 6rem;
  }

  .thanks-icon svg {
    width: 3.6rem;
    height: 3.6rem;
  }

  .thanks-title {
    font-size: 2rem;
  }

  .thanks-message {
    font-size: 1.4rem;
  }
}

/* Contact FV Section */
.contact-fv {
  position: relative;
  width: 100%;
  background: #efefef;
  padding: 17.0597rem 0 4.8rem 9.6rem;
}

.contact-fv__title-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--color-primary);
}

.contact-fv__title-en {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-fv__title-jp {
  font-family: var(--font-jp);
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  background: #efefef;
  padding: 8rem 9.6rem 15rem;
}

.contact-form-section .container {
  max-width: 88rem;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 6.4rem;
}

.contact-intro__text {
  font-family: var(--font-jp);
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-primary);
  margin: 0 0 1.6rem;
}

.contact-hours {
  margin: 0 auto 2.4rem;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.6rem;
  padding: 4rem 4.8rem;
  text-align: left;
  box-shadow: 0 1.2rem 2.4rem rgba(102, 153, 204, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.contact-hours__main {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

.contact-hours__note {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  line-height: 1.7;
  color: #4d6c86;
  margin: 0;
}

.contact-intro__note {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  line-height: 1.6;
  color: #799ab5;
  margin: 0;
}

.required-mark {
  color: #e74c3c;
  font-weight: 700;
  margin-left: 0.4rem;
}

/* Form Styles */
.contact-form {
  background: #fff;
  border-radius: 2rem;
  padding: 6.4rem 4.8rem;
}

.form-group {
  margin-bottom: 3.2rem;
}

.form-group:last-of-type {
  margin-bottom: 4.8rem;
}

.form-label {
  display: block;
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-jp);
  font-size: 1.6rem;
  color: #414141;
  background: #fff;
  border: 2px solid #d5cdc6;
  border-radius: 1rem;
  padding: 1.6rem 2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 154, 208, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a5a5a5;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23639ad0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  background-size: 2rem;
  padding-right: 5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 20rem;
  line-height: 1.8;
}

/* Checkbox */
.form-group--checkbox {
  margin-bottom: 4.8rem;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}

.form-checkbox {
  width: 2rem;
  height: 2rem;
  margin: 0.2rem 1.2rem 0 0;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

.form-checkbox-text {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  line-height: 1.8;
  color: #414141;
}

.privacy-link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.privacy-link:hover {
  opacity: 0.7;
}

/* Submit Button */
.form-submit {
  display: flex;
  justify-content: center;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  padding: 2rem 6rem;
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.form-submit-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

/* Contact Info */
.contact-info {
  margin-top: 8rem;
  display: flex;
  gap: 6.4rem;
  justify-content: center;
}

.contact-info__item {
  flex: 1;
  max-width: 40rem;
  background: #fff;
  border-radius: 2rem;
  padding: 4rem 3.2rem;
}

.contact-info__title {
  font-family: var(--font-jp);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 1.6rem;
  text-align: center;
}

.contact-info__text {
  font-family: var(--font-jp);
  font-size: 1.4rem;
  line-height: 1.8;
  color: #799ab5;
  margin: 0;
  text-align: center;
}

/* Privacy Policy Page */
.privacy-page {
  background: #f5f6f8;
}

.privacy-hero {
  padding: 14rem 1.6rem 6rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(158, 182, 213, 0.35),
    rgba(226, 235, 245, 0.35)
  );
}

.privacy-hero__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.privacy-hero__label {
  font-size: 1.3rem;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.privacy-hero__title {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  color: var(--color-primary);
  margin: 0;
  font-weight: 500;
}

.privacy-hero__lead {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #3e4c59;
  margin: 0;
}

.privacy-content {
  padding: 0 1.6rem 8rem;
}

.privacy-content__inner {
  max-width: 88rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 2.4rem;
  padding: 6rem 6.4rem;
  box-shadow: 0 1.5rem 3.5rem rgba(104, 139, 173, 0.12);
}

.privacy-list {
  counter-reset: privacy-counter;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list > li {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.privacy-list h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

.privacy-list p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #4d6c86;
  margin: 0;
}

.privacy-list ol,
.privacy-list ul {
  padding-left: 1.6rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.privacy-list li li,
.privacy-list li ul li {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #4d6c86;
}

.privacy-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .privacy-hero {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }

  .privacy-hero__lead {
    font-size: 1.5rem;
  }

  .privacy-content {
    padding: 0 1.2rem 6rem;
  }

  .privacy-content__inner {
    padding: 4.8rem 2.4rem;
    border-radius: 2rem;
  }

  .privacy-list {
    gap: 3.2rem;
  }

  .privacy-list h2 {
    font-size: 1.8rem;
  }

  .privacy-list p {
    font-size: 1.4rem;
  }

  .privacy-list li li,
  .privacy-list li ul li {
    font-size: 1.3rem;
  }
}

/* Form Validation States */
.form-input:invalid:not(:placeholder-shown),
.form-select:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}

.form-input:valid:not(:placeholder-shown),
.form-select:valid,
.form-textarea:valid:not(:placeholder-shown) {
  border-color: #27ae60;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
  .contact-fv {
    padding: 12rem 0 4rem 5rem;
  }

  .contact-form-section {
    padding: 4rem 5rem 10rem;
  }

  .contact-info {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-fv {
    padding: 10rem 1.6rem 3rem;
  }

  .contact-fv__title-en {
    font-size: 1.4rem;
  }

  .contact-fv__title-jp {
    font-size: 2.4rem;
  }

  .contact-form-section {
    padding: 4rem 1.6rem 8rem;
  }

  .contact-intro {
    margin-bottom: 4rem;
  }

  .contact-intro__text {
    font-size: 1.6rem;
  }

  .contact-hours {
    padding: 3.2rem 2.4rem;
    margin-bottom: 2rem;
  }

  .contact-hours__main {
    font-size: 1.5rem;
  }

  .contact-hours__note {
    font-size: 1.3rem;
  }

  .contact-intro__note {
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 4rem 2rem;
  }

  .form-group {
    margin-bottom: 2.4rem;
  }

  .form-label {
    font-size: 1.4rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 1.4rem;
    padding: 1.4rem 1.6rem;
  }

  .form-textarea {
    min-height: 16rem;
  }

  .form-submit-btn {
    font-size: 1.6rem;
    padding: 1.8rem 5rem;
    width: 100%;
  }

  .contact-info {
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
  }

  .contact-info__item {
    padding: 3rem 2rem;
  }

  .contact-info__title {
    font-size: 1.8rem;
  }

  .contact-info__text {
    font-size: 1.3rem;
  }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for About page sections */
.about-concept__hero.fade-in {
  transition-delay: 0.1s;
}

.about-concept__content.fade-in {
  transition-delay: 0.2s;
}

.about-business .section-title.fade-in {
  transition-delay: 0.1s;
}

.about-business__grid.fade-in {
  transition-delay: 0.2s;
}

.about-company .section-title.fade-in {
  transition-delay: 0.1s;
}

.about-company__table.fade-in {
  transition-delay: 0.2s;
}

.about-cta .cta-container.fade-in {
  transition-delay: 0.1s;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
  .nav-container {
    gap: 2rem;
  }

  .main-nav {
    gap: 2rem;
    padding-inline: 3rem;
  }

  .nav-en {
    font-size: 1rem;
  }

  .nav-jp {
    font-size: 1.3rem;
  }

  .contact-btn {
    padding: 0.9rem 2rem;
  }

  .contact-en {
    font-size: 1rem;
  }

  .contact-jp {
    font-size: 1.3rem;
  }

  .language-switcher {
    font-size: 1rem;
  }
}

@media screen and (max-width: 880px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .logo {
    left: 1.5rem;
  }

  .logo img {
    width: 6rem;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .burger-btn {
    display: block;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    padding-inline: 0;
  }
  .intro__image {
    width: 100%;
    height: 400px;
  }
  .intro-text {
    padding: 3rem 2rem;
    font-size: 1.4rem;
    line-height: 1.9;
  }
  .products h3,
  .reasons__subtitle,
  .news h3 {
    font-size: 1.6rem;
  }
}

/* === Footer: レイアウト強化（参考レイアウト準拠のグリッド） === */
.footer-content {
  margin-top: clamp(2.4rem, 4vw, 5.2rem);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(1.2rem, 2vw, 2.4rem) clamp(1.6rem, 2.4vw, 3.2rem);
  align-items: start;
  grid-template-areas: "pages pages pages shop shop shop sns sns . . . .";
}
.page-links {
  grid-area: pages;
}
.shopping-links {
  grid-area: shop;
}
.sns-links {
  grid-area: sns;
  justify-self: end;
}

/* ページリンク（既存 .footer-nav を整形） */
.page-links .footer-nav {
  display: grid;
  row-gap: 1.2rem;
}
.page-links .footer-nav-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: center;
}
.page-links .footer-nav-en {
  font-family: var(--font-en, sans-serif);
  font-size: 1rem;
  letter-spacing: 0.03em;
  opacity: 0.9;
}
.page-links .footer-nav-jp {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
}
.page-links .footer-nav-jp:hover {
  text-decoration: underline;
}

/* ショッピング（既存のボタンを活用） */
.shopping-links .footer-shopping {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}
.shopping-links .footer-shopping-label .footer-shopping-en {
  font-family: var(--font-en, sans-serif);
  font-size: 1rem;
  opacity: 0.9;
}
.shopping-links .footer-shopping-label .footer-shopping-jp {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.shopping-links .footer-shop-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.shopping-links .footer-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  background: #fff;
  color: var(--color-primary, #2b6aa8);
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.shopping-links .footer-shop-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* SNS（丸ボタンのまま） */
.sns-links .footer-sns-btn {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.sns-links .footer-sns-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-areas: "pages pages pages shop shop shop sns sns";
  }
}
@media (max-width: 720px) {
  .footer-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "pages"
      "shop"
      "sns";
    text-align: center;
  }
  .sns-links {
    justify-self: center;
    margin-top: 0.5rem;
  }
  .shopping-links .footer-shopping {
    align-items: center;
  }
  .shopping-links .footer-shop-buttons {
    justify-content: center;
  }
}
