/* ========================================
   Lala pink — Static Prototype CSS
   ======================================== */
html {
	word-break: break-word;
    overflow-wrap: break-word;
}

/* --- Variables --- */
:root {
  --pink-hero: #f9e8ee;
  --pink-light: #fdf0f4;
  --pink-mid: #f2c4d4;
  --pink-accent: #e8869d;
  --pink-dark: #c96080;
  --pink-btn: #d4607e;
  --dark-bg: #2a1820;
  --dark-bg2: #1e1018;
  --text-main: #1a1a1a;
  --text-sub: #555555;
  --text-light: #888888;
  --text-white: #ffffff;
  --border: #e8d4dc;
  --white: #ffffff;
  --section-alt: #fdf5f7;
  --font-en: 'Barlow', sans-serif;
  --font-nav: 'Montserrat', sans-serif;
  --font-ja: 'Noto Sans JP', sans-serif;
  --header-h: 151px;
  --container-max: 1440px;
  --container-pad: 40px;
  --container-side: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
}

/* 共通コンテナ（全セクションの内側ラッパーに付ける。幅を変えたいものだけ固有クラスで上書き） */
.inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ja);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* --- Typography --- */
.en {
  font-family: var(--font-en);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  display: flex;
  align-items: center;
  padding: 0;
  transition: transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: var(--container-side);
  right: var(--container-side);
  bottom: 0;
  height: 1px;
  background: #1a1a1a;
}

/* KV以降は白背景。下スクロールで隠れ、上スクロールで再表示（JSで .hidden 付与） */
.site-header.solid {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  width: 100%;
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-inner > .site-logo {
  grid-column: 1;
  justify-self: start;
}

.header-inner > .site-nav {
  grid-column: 2;
  justify-self: center;
}

.header-inner > .header-actions {
  grid-column: 3;
  justify-self: end;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.logo-svg {
  height: 48px;
  width: auto;
}

.logo-img-header {
  height: 109px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img-footer {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--text-main);
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--pink-accent);
}

.site-nav a.active {
  color: var(--pink-accent);
  font-weight: 700;
}

.nav-instagram {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.nav-instagram svg {
  width: 28px;
  height: 28px;
  color: var(--text-main);
  transition: color 0.2s;
}

.nav-instagram:hover svg {
  color: var(--pink-accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px 24px 32px;
  border-bottom: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ========================================
   RIGHT FIXED CTA
   ======================================== */
.fixed-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--pink-btn);
  color: var(--white);
  font-family: var(--font-ja);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 20px 12px;
  transition: background 0.2s;
  white-space: nowrap;
}

.fixed-cta a:hover {
  background: var(--pink-dark);
}

/* ========================================
   SECTION COMMONS
   ======================================== */
section {
  width: 100%;
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* 共通：二言語セクション見出し（EN小カケ＋JP大・センター揃え） */
.sec-head {
  max-width: var(--container-max);
  margin: 0 auto 56px;
  padding: 0 40px;
  text-align: center;
}

.sec-head-en {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--pink-accent);
  margin-bottom: 6px;
}

.sec-head-ja {
  font-family: var(--font-ja);
  font-size: clamp(31px, 4.2vw, 52px);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.sec-head-sub {
  font-family: var(--font-ja);
  font-size: clamp(14px, 1.55vw, 16px);
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.85;
  margin-top: 20px;
  letter-spacing: 0.02em;
}

/* 文節を保ったまま折り返す（意味のある区切りでだけ改行・はみ出しは出ない） */
.nb { white-space: nowrap; }

/* ========================================
   ① HERO
   ======================================== */
.hero {
  padding-top: var(--header-h);
  min-height: 100vh;
  background: var(--pink-hero) url(hero-bg.jpg) center center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.08);
  transform-origin: center center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(255,245,249,0.55) 0%, rgba(255,245,249,0.18) 40%, rgba(255,245,249,0) 66%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px var(--container-pad);
  display: block;
  width: 100%;
}

.hero-text {
  max-width: 680px;
}

.hero-ja-main {
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 400;
  color: var(--pink-dark);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.hero-en-title {
  font-family: 'Century Gothic', 'Jost', var(--font-nav);
  font-size: clamp(34px, 7vw, 98px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-main);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero-en-sub {
  font-family: var(--font-ja);
  font-size: clamp(19px, 2.3vw, 30px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-main);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-en-desc {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-light);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { width: 40px; opacity: 1; }
  50% { width: 60px; opacity: 0.5; }
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-placeholder {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

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

/* ========================================
   ② What's Lala pink?
   ======================================== */
.whats-section {
  background: var(--white);
  padding: 100px 0;
}

.whats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.whats-inner > *:first-child {
  min-width: 0;
}

.whats-images {
  overflow: hidden;
  border-radius: 4px;
  min-width: 0;
  width: 100%;
  aspect-ratio: 6 / 7;
  position: relative;
}

.whats-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.whats-text {
  max-width: 480px;
  min-width: 0;
  text-align: center;
}

.text-left {
  text-align: left;
}

.whats-text .section-title-ja,
.whats-text .section-subtitle-ja {
  text-align: center;
}

.section-en-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-accent);
  margin-bottom: 16px;
}

.section-title-en {
  font-family: var(--font-en);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-title-ja {
  font-family: var(--font-ja);
  font-size: clamp(26px, 2.86vw, 36px);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.4;
}

.section-subtitle-ja {
  font-family: var(--font-ja);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 600;
  color: var(--pink-dark);
  margin-bottom: 24px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.section-body {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* ========================================
   ③ 4特徴パネル
   ======================================== */
.features-section {
  background: var(--section-alt);
  padding: 100px 0;
}

.features-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  min-width: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(60,20,35,0.06);
  display: flex;
  flex-direction: column;
}

.feature-img-wrap {
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
}

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

.feature-body {
  padding: 22px 22px 28px;
}

.feature-num {
  display: block;
  font-family: var(--font-en);
  font-size: 27px;
  font-weight: 600;
  color: var(--pink-accent);
  line-height: 1;
  margin-bottom: 12px;
}

.feature-title {
  font-family: var(--font-ja);
  font-size: 25px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 12px;
}

.feature-desc {
  font-family: var(--font-ja);
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ========================================
   ④ CASES
   ======================================== */
.cases-section {
  background: var(--white);
  padding: 100px 0;
}

.cases-header {
  max-width: var(--container-max);
  margin: 0 auto 48px;
  padding: 0 40px;
  text-align: center;
}

.section-en-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 12px;
}

.cases-en-title {
  font-family: var(--font-nav);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.04em;
}

.cases-carousel-wrap {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.cases-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 12px;
  scrollbar-width: thin;
}

.case-card {
  flex: 0 0 auto;
  width: calc((100% - 40px) / 2.6);
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: center;
  background: var(--section-alt);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

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

.cases-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, box-shadow 0.2s;
}

.cases-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cases-prev { left: 8px; }
.cases-next { right: 8px; }

/* ========================================
   ⑤ 世界で選ばれる理由
   ======================================== */
.certs-section {
  background: var(--section-alt);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ripple-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ripple-bg span {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 1px solid rgba(232,134,157,0.22);
  transform: translate(-50%, -50%);
  animation: certRipple 9s ease-out infinite;
}

.ripple-bg span:nth-child(2) { animation-delay: 2.25s; }
.ripple-bg span:nth-child(3) { animation-delay: 4.5s; }
.ripple-bg span:nth-child(4) { animation-delay: 6.75s; }

@keyframes certRipple {
  0%   { width: 0; height: 0; opacity: 0; }
  12%  { opacity: 0.55; }
  100% { width: 1700px; height: 1700px; opacity: 0; }
}

.certs-section > .sec-head,
.certs-section > .certs-grid {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ripple-bg span { animation: none; display: none; }
}

.certs-header {
  max-width: var(--container-max);
  margin: 0 auto 64px;
  padding: 0 40px;
  text-align: center;
}

.certs-title-en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-accent);
  margin-bottom: 12px;
}

.certs-title-ja {
  font-family: var(--font-ja);
  font-size: clamp(29px, 3.9vw, 47px);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
}

.certs-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cert-card {
  background: var(--white);
  border-radius: 14px;
  padding: 46px 32px 40px;
  min-width: 0;
  text-align: center;
  box-shadow: 0 8px 30px rgba(60,20,35,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-icon {
  height: 190px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.cert-title-ja {
  font-family: var(--font-ja);
  font-size: 25px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.45;
  letter-spacing: 0.02em;
  padding-bottom: 22px;
  margin-bottom: 24px;
  position: relative;
}

.cert-title-ja::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--pink-mid);
}

.cert-mark {
  font-size: 13px;
  vertical-align: super;
  color: var(--text-light);
}

.cert-desc {
  font-family: var(--font-ja);
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
  text-align: left;
}

.cert-stats {
  display: flex;
  width: 100%;
  margin-bottom: 14px;
}

.cert-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cert-stat + .cert-stat {
  border-left: 1px solid var(--border);
}

.cert-stat-label {
  font-family: var(--font-ja);
  font-size: 12px;
  color: var(--text-sub);
}

.cert-stat-num {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  color: var(--pink-accent);
  line-height: 1;
}

.cert-note {
  font-family: var(--font-ja);
  font-size: 11px;
  color: var(--text-light);
  align-self: flex-start;
}

.cert-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.cert-tags span {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--pink-dark);
  background: var(--pink-light);
  border: 1px solid var(--pink-mid);
  border-radius: 24px;
  padding: 10px 26px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-dark {
  display: inline-block;
  background: var(--text-main);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-dark:hover {
  background: #333;
}

.btn-pink {
  display: inline-block;
  background: var(--pink-btn);
  color: var(--white);
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-pink:hover {
  background: var(--pink-dark);
}

/* ========================================
   ⑦ 商品6点
   ======================================== */
.products-section {
  background: var(--white);
  padding: 100px 0;
}

.products-header {
  max-width: var(--container-max);
  margin: 0 auto 64px;
  padding: 0 40px;
  text-align: center;
}

.products-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.product-card {
  min-width: 0;
  text-align: center;
}

.product-img-wrap {
  width: 100%;
  height: 360px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.product-img-wrap img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.12);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.product-img-placeholder .ph-logo {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 300;
  color: var(--pink-accent);
  letter-spacing: 0.12em;
  border: 1px solid var(--border);
  padding: 8px 16px;
}

.product-name {
  font-family: var(--font-nav);
  font-size: 21px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-name-ja {
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 500;
  color: var(--pink-dark);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.product-desc {
  font-family: var(--font-ja);
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
  text-align: center;
}

/* ========================================
   ⑦-2 Comparison 施術比較
   ======================================== */
.comparison-section {
  background: var(--white);
  padding: 100px 0;
}

.comparison-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: var(--font-ja);
}

.comparison-table tbody td {
  text-align: center;
}

.comparison-table tr.cmp-text-left td {
  text-align: center;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--border);
  padding: 20px 14px;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
  vertical-align: middle;
  color: var(--text-sub);
}

.cmp-mark {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
  text-align: center;
}

.cmp-mark.good { color: var(--pink-accent); }
.cmp-mark.ok { color: #c2a8b0; }
.cmp-mark.tri { color: #d6c4c9; }

.comparison-table thead th {
  background: var(--section-alt);
  color: var(--text-main);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

.comparison-table .cmp-rowhead {
  background: var(--section-alt);
  color: var(--text-main);
  font-weight: 600;
  white-space: nowrap;
  width: 132px;
}

.comparison-table tbody .cmp-lala {
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 500;
}

.comparison-table tbody .cmp-lala .cmp-mark.good { color: var(--pink-btn); }

.comparison-table thead .cmp-lala {
  background: var(--pink-btn);
  color: #fff;
}

.comparison-note {
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 0 40px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}

/* ========================================
   ⑨ Export Status (Dark)
   ======================================== */
.export-section {
  background: var(--pink-light);
  padding: 100px 0;
}

.export-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.export-title-ja {
  font-family: var(--font-ja);
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 28px;
  line-height: 1.4;
  text-align: center;
}

.export-map {
  margin: 0;
}

.export-map img {
  width: 100%;
  height: auto;
  display: block;
}

.export-text {
  margin: 0;
  text-align: center;
}

.export-text p {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.95;
  margin-bottom: 16px;
}

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

/* ========================================
   ⑩ CONTACT
   ======================================== */
.contact-section {
  background: var(--white);
  padding: 100px 0;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.contact-en-title {
  font-family: var(--font-en);
  font-size: clamp(36px, 5.2vw, 62px);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.contact-desc {
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.95;
  margin-bottom: 48px;
}

.line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  background: #06C755;
  color: var(--white);
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
  word-break: keep-all;
}

.line-btn:hover {
  background: #05b04d;
  transform: translateY(-2px);
}

.line-btn-logo {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--text-main);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}

.footer-logo .logo-svg path {
  fill: var(--white);
}

.footer-tagline {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding-top: 4px;
}

.footer-nav a {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-sns {
  display: flex;
  gap: 16px;
  padding-top: 4px;
}

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
  color: rgba(255,255,255,0.65);
}

.footer-sns a:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.footer-sns svg {
  width: 16px;
  height: 16px;
}

.footer-company {
  font-family: var(--font-ja);
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: var(--font-en);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* ========================================
   SCROLL ANIMATION
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

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

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================
   TABLET (768–1199px)
   ======================================== */
@media (max-width: 1199px) {
  .site-header {
    padding: 0 24px;
  }

  .hero-inner {
    padding: 60px 24px;
    gap: 40px;
  }

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

  .whats-inner {
    gap: 40px;
    padding: 0 24px;
  }

  .certs-grid {
    padding: 0 24px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }

  .cases-carousel-wrap {
    padding: 0 48px;
  }

  .case-card {
    width: calc((100% - 20px) / 2.1);
  }
}

/* ========================================
   SP (〜767px)
   ======================================== */
@media (max-width: 767px) {
  :root {
    --header-h: 68px;
    --container-pad: 20px;
  }

  .site-header {
    padding: 0;
  }

  /* PC専用改行はSPでは無効化（自然折り返し） */
  .br-pc {
    display: none;
  }

  .logo-img-header {
    height: 52px;
  }

  .hero {
    background-attachment: scroll;
    background-position: 72% center;
  }

  .site-nav {
    display: none;
  }

  .header-actions .nav-instagram {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .cert-stat-num {
    font-size: 40px;
  }

  .cert-stat {
    gap: 4px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 60px;
    gap: 32px;
  }

  .hero-image {
    order: -1;
  }

  .hero-img-placeholder {
    max-width: 100%;
    aspect-ratio: 16/9;
  }

  .whats-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 36px;
  }

  .whats-text {
    max-width: 100%;
  }

  .whats-text .section-subtitle-ja span,
  .whats-text .section-title-ja span {
    white-space: normal;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 18px;
  }

  .feature-img-wrap {
    aspect-ratio: 16 / 10;
  }

  .feature-body {
    padding: 20px 22px 24px;
  }

  .cases-header {
    padding: 0 20px;
  }

  .cases-carousel-wrap {
    padding: 0 16px;
  }

  .case-card {
    width: calc(100% - 36px);
  }

  .cases-arrow {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .certs-header {
    padding: 0 20px;
  }

  .certs-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .products-header {
    padding: 0 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 40px;
  }

  .product-img-wrap {
    height: 320px;
  }

  .product-name {
    font-size: 17px;
  }

  .product-desc {
    font-size: 12px;
  }


  .export-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .export-map {
    max-width: 460px;
    margin: 0 auto;
  }

  .export-title-ja {
    text-align: center;
  }

  .contact-inner {
    padding: 0 20px;
  }

  .footer-inner {
    padding: 0 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav {
    gap: 8px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Fixed CTA: 横固定に変更 */
  .fixed-cta {
    position: fixed;
    right: auto;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    z-index: 90;
  }

  .fixed-cta a {
    flex: 1;
    writing-mode: horizontal-tb;
    padding: 15px 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
  }

  /* SP時はfixed CTAの分だけフッターに余白 */
  .site-footer {
    padding-bottom: 80px;
  }

  .section-inner {
    padding: 0 20px;
  }

  .sec-head {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .sec-head-ja {
    font-size: clamp(24px, 7vw, 30px);
  }

  .whats-section,
  .features-section,
  .cases-section,
  .certs-section,
  .products-section,
  .comparison-section,
  .contact-section {
    padding: 72px 0;
  }

  .comparison-wrap {
    padding: 0 20px;
  }

  .export-section {
    padding: 80px 0;
  }
}


.about-page { max-width: 820px; margin: 0 auto; padding: calc(var(--header-h) + 88px) 40px 110px; min-height: 72vh; }
.about-head { text-align: center; margin-bottom: 28px; }
.about-sub { font-family: var(--font-ja); font-size: 14px; color: var(--text-sub); letter-spacing: 0.12em; margin-top: 12px; }
.about-lead { text-align: center; font-family: var(--font-ja); font-size: 15px; color: var(--text-sub); line-height: 2; margin: 0 auto 56px; max-width: 600px; }
.about-table { border-top: 1px solid var(--border); }
.about-row { display: flex; gap: 32px; padding: 24px 8px; border-bottom: 1px solid var(--border); }
.about-row dt { font-family: var(--font-ja); font-weight: 600; font-size: 14px; color: var(--text-main); flex-shrink: 0; min-width: 140px; }
.about-row dd { font-family: var(--font-ja); font-size: 15px; color: var(--text-sub); line-height: 1.8; margin: 0; }
.about-row dd a { color: var(--pink-dark); text-decoration: underline; }
@media (max-width: 767px) {
  .about-page { padding: calc(var(--header-h) + 48px) 20px 64px; }
  .about-lead { margin-bottom: 40px; font-size: 14px; }
  .about-row { flex-direction: column; gap: 8px; padding: 18px 4px; }
  .about-row dt { min-width: 0; }
}


.news-page { max-width: 920px; margin: 0 auto; padding: calc(var(--header-h) + 88px) 40px 110px; min-height: 72vh; }
.news-head { text-align: center; margin-bottom: 56px; }
.news-sub { font-family: var(--font-ja); font-size: 14px; color: var(--text-sub); letter-spacing: 0.12em; margin-top: 12px; }
.news-list { border-top: 1px solid var(--border); }
.news-item { display: flex; align-items: baseline; gap: 24px; padding: 26px 8px; border-bottom: 1px solid var(--border); text-decoration: none; transition: background 0.2s; }
.news-item:hover { background: var(--section-alt); }
.news-date { font-family: var(--font-nav); font-size: 14px; color: var(--text-sub); letter-spacing: 0.04em; flex-shrink: 0; min-width: 92px; }
.news-cat { font-family: var(--font-ja); font-size: 11px; color: var(--pink-dark); border: 1px solid var(--pink-accent); border-radius: 999px; padding: 3px 13px; flex-shrink: 0; white-space: nowrap; }
.news-cat--product { color: #c2799a; border-color: #e6bccb; }
.news-cat--media { color: #b08a68; border-color: #ddc3ad; }
.news-cat--event { color: #b3608a; border-color: #e7accb; }
.news-title { font-family: var(--font-ja); font-size: 15px; color: var(--text-main); line-height: 1.6; }
.news-pager { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 60px; }
.news-pager span, .news-pager a { font-family: var(--font-nav); font-size: 14px; color: var(--text-sub); text-decoration: none; min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border); }
.news-pager-current { background: var(--pink-dark); color: #fff; border-color: var(--pink-dark); }
.news-pager-prev, .news-pager-next { width: auto; border-radius: 999px; padding: 0 22px; }
.page-numbers { width: auto; border-radius: 999px; padding: 0 22px; }
@media (max-width: 767px) {
  .news-page { padding: calc(var(--header-h) + 48px) 20px 64px; }
  .news-item { flex-wrap: wrap; gap: 10px 14px; padding: 18px 4px; }
  .news-title { flex-basis: 100%; font-size: 14px; }
}

.article-page { max-width: 760px; margin: 0 auto; padding: calc(var(--header-h) + 80px) 40px 110px; min-height: 72vh; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.article-cat { font-family: var(--font-ja); font-size: 11px; color: var(--pink-dark); border: 1px solid var(--pink-accent); border-radius: 999px; padding: 3px 13px; white-space: nowrap; }
.article-date { font-family: var(--font-nav); font-size: 14px; color: var(--text-sub); letter-spacing: 0.04em; }
.article-title { font-family: var(--font-ja); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; color: var(--text-main); line-height: 1.6; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.article-body { font-family: var(--font-ja); font-size: 15px; color: var(--text-main); line-height: 2.1; }
.article-body p { margin: 0 0 28px; }
.article-body p:last-child { margin-bottom: 0; }
.article-back { display: flex; justify-content: center; margin-top: 64px; }
.article-back a { font-family: var(--font-nav); font-size: 13px; letter-spacing: 0.08em; color: var(--text-main); text-decoration: none; border: 1px solid var(--border); border-radius: 999px; padding: 13px 40px; transition: background 0.2s, color 0.2s; }
.article-back a:hover { background: var(--pink-dark); color: #fff; border-color: var(--pink-dark); }
@media (max-width: 767px) {
  .article-page { padding: calc(var(--header-h) + 40px) 20px 64px; }
  .article-body { font-size: 14px; line-height: 2; }
}


#gt_float_wrapper {
  bottom: 60px !important;
}