/* ============================================================
   SALIRE – Landing Page
   Elegant, unisex, editorial design
   Modern CSS: clamp / auto-fit / minmax / no media queries
   ============================================================ */

/* fade-in animation disabled; .in-view used only for JS scroll trigger */

/* ── Variables ──────────────────────────────────────────── */
:root {
  /* Brand */
  --orange: #DF5911;
  --orange-dark: #B8430A;
  --orange-pale: rgba(223, 89, 17, .06);

  /* Neutrals */
  --black: #282828;
  --gray-700: #4A4A4A;
  --gray-600: #6E6E6E;
  --gray-500: #888888;
  --gray-200: #E2E2E2;
  --gray-100: #F7F6F4;

  /* LINE */
  --line-green: #06C755;
  /* warm off-white */
  --white: #FFFFFF;

  /* Lines */
  --line: 1px solid var(--gray-200);
  --line-dark: 1px solid rgba(255, 255, 255, .12);
  --line-subtle: 1px solid rgba(0, 0, 0, .08);

  /* Layout */
  --container: 1200px;
  --header-h: 68px;
  --radius: 4px;
  --radius-lg: 12px;
  --radius-pill: 100px;
  --shadow-lift: 0 4px 24px rgba(0, 0, 0, .07), 0 1px 4px rgba(0, 0, 0, .04);

  --transition: .28s cubic-bezier(.4, 0, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);

  /* Fonts */
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Shippori Mincho', 'Georgia', serif;
  --font-display: 'Oswald', sans-serif;

  /* Fluid type */
  --text-xs: clamp(.68rem, 1.6vw, .73rem);
  --text-sm: clamp(.78rem, 2vw, .85rem);
  --text-base: clamp(.875rem, 2.4vw, 1rem);
  --text-md: clamp(1rem, 2.8vw, 1.125rem);
  --text-lg: clamp(1.05rem, 3vw, 1.25rem);
  --text-xl: clamp(1.2rem, 3.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 4vw, 2rem);
  --text-3xl: clamp(1.75rem, 5vw, 2.6rem);
  --text-hero: clamp(1.8rem, 5.5vw, 3.2rem);

  /* Fluid spacing */
  --sp-xs: clamp(.35rem, 1.2vw, .5rem);
  --sp-sm: clamp(.6rem, 2vw, .875rem);
  --sp-md: clamp(.875rem, 2.8vw, 1.25rem);
  --sp-lg: clamp(1.25rem, 4vw, 2rem);
  --sp-xl: clamp(2rem, 5vw, 3rem);
  --sp-2xl: clamp(3rem, 7vw, 5rem);
  --sp-3xl: clamp(4.5rem, 9vw, 7.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

a:hover {
  opacity: .7;
}

ul {
  list-style: none;
}

/* ── Serif headings ─────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .02em;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: min(100% - 2 * var(--sp-lg), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--sp-3xl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.section-header h2 {
  font-size: var(--text-3xl);
  margin-top: var(--sp-xs);
}

.section-lead {
  margin-top: var(--sp-sm);
  color: var(--gray-700);
  font-size: var(--text-md);
  font-weight: 300;
  max-width: 52ch;
  margin-inline: auto;
  text-align: center;
}

.bg-white {
  background: var(--white);
}

.bg-gray {
  background: var(--gray-100);
}

.u-text-center {
  text-align: center;
}

.u-mt-xl {
  margin-top: var(--sp-xl);
}

/* ── Eyebrow ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  letter-spacing: .28em;
  color: var(--orange);
  text-transform: uppercase;
  line-height: 1;
}

/* ── Buttons — pill style ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75em 2.2em;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--text-base);
  letter-spacing: .12em;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--sm {
  padding: .5em 1.5em;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: .65em clamp(1.2em, 6vw, 3em);
  font-size: var(--text-md);
}

.btn:not(.header__cta)::after {
  content: '→';
  margin-left: .5em;
  font-weight: 400;
}

.hero__content .btn {
  gap: .75em;
  white-space: nowrap;
  padding-inline: 2.4em;
}

.hero__content .btn::after {
  margin-left: 0;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  filter: brightness(1.2);
  box-shadow: 0 4px 20px rgba(223, 89, 17, .45);
  opacity: 1;
}

.btn--line {
  background: var(--line-green);
  color: var(--white);
  border-color: var(--line-green);
  gap: .6em;
  font-weight: 400;
}

.btn--line:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 20px rgba(6, 199, 85, .4);
  opacity: 1;
}

.btn--line::after {
  display: none;
}

.btn-line-icon {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.btn-line-icon--hover { display: none; }
.btn--line:hover .btn-line-icon--default { display: none; }
.btn--line:hover .btn-line-icon--hover { display: inline-block; }


/* ── Header ─────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--line);
  z-index: 100;
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 30px;
  width: auto;
}

.header__nav {
  margin-left: auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.header__nav::-webkit-scrollbar {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  white-space: nowrap;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--gray-700);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--orange);
  opacity: 1;
}

.nav-links .nav--recruit:hover {
  color: #0b993b;
}

.header__cta {
  flex-shrink: 0;
  font-weight: 400;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--black);
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xl);
  height: 100%;
  padding: var(--sp-2xl) var(--sp-lg);
}

.mobile-menu__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-lg);
  width: 100%;
}

.mobile-menu__nav ul li {
  border-bottom: var(--line);
  width: 100%;
  text-align: center;
  padding-bottom: var(--sp-lg);
}

.mobile-menu__nav ul a {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--black);
}

.mobile-menu__nav ul a:hover {
  color: var(--orange);
}

@media (max-width: 900px) {

  .header__nav,
  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
}

/* Full-bleed hero visual */
.hero__visual {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% top;
}

@media (min-width: 768px) {
  .hero__bg-img {
    object-position: center top;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-lg);
  padding: var(--sp-xl) var(--sp-lg);
  max-width: min(820px, 94%);
}

.hero__title {
  font-size: var(--text-hero);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .03em;
  color: var(--white);
}

.hero__tags {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: var(--sp-sm);
}

.hero__tag {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--white);
  padding: .2em .75em;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .3);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero__tags {
    flex-wrap: wrap;
  }

  .hero__tag {
    font-size: var(--text-sm);
    padding: .25em .9em;
  }
}

.hero__sub-br {
  display: none;
}

@media (max-width: 535px) {
  .hero__sub-br {
    display: inline;
  }
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .85);
}

/* Stats strip — below hero visual */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: var(--line);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  text-align: center;
  padding: var(--sp-xl) var(--sp-sm);
  border-right: var(--line);
  transition: background var(--transition);
  cursor: default;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover, .stat-item.is-touched {
  background: var(--gray-100);
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  letter-spacing: .02em;
  display: inline-block;
  transition: transform .35s var(--spring);
}

.stat-item:hover strong, .stat-item.is-touched strong {
  transform: translateY(-6px);
}

.stat-item:hover small, .stat-item.is-touched small {
  transform: scale(1.18);
}

.stat-unit {
  font-size: clamp(.9rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--orange);
}

.stat-ijo {
  font-size: clamp(.6rem, 1.2vw, .75rem);
  font-weight: 300;
  margin-left: .1em;
  color: var(--gray-500);
}

.stat-item small {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--gray-700);
  white-space: nowrap;
  display: inline-block;
  transition: transform .38s var(--spring);
}

@media (max-width: 500px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: var(--line);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

.marker {
  color: var(--orange);
  font-weight: 500;
}

.hero__tagline {
  background: var(--orange-pale);
  text-align: center;
  padding: var(--sp-xl) var(--sp-2xl);
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--gray-700);
  letter-spacing: .06em;
  line-height: 1.9;
  border-bottom: var(--line);
}

/* ── Issues ─────────────────────────────────────────────── */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  max-width: 840px;
  margin-inline: auto;
  margin-bottom: var(--sp-2xl);
  border-top: var(--line);
}

.issues-grid li {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--black);
  padding: var(--sp-md) var(--sp-sm);
  border-bottom: var(--line);
}

/* Circle check mark — delicate */
.check {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: .6rem;
  font-weight: 500;
  line-height: 1;
}

.issues-message {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}

.issues-message__main {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.issues-message__sub {
  color: var(--gray-700);
  font-size: var(--text-md);
  font-weight: 300;
  letter-spacing: .04em;
}

/* ── Divider Image ──────────────────────────────────────── */
.divider-img {
  width: 100%;
  height: clamp(200px, 30vw, 400px);
  overflow: hidden;
  position: relative;
}

.divider-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .3);
}

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

/* ── Value ──────────────────────────────────────────────── */
.value-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.value-diagram-wrap {
  position: relative;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--sp-2xl);
}

.value-diagram {
  display: block;
  width: 100%;
}

.value-label {
  position: absolute;
  font-family: var(--font-sans);
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 500;
  color: var(--orange);
  text-align: center;
  line-height: 1.5;
}

.value-label--top {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.value-label--bl {
  top: 68%;
  left: 16%;
  transform: translateX(-50%);
}

.value-label--br {
  top: 68%;
  left: 84%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.value-block {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.value-block__title {
  font-size: var(--text-3xl);
  font-family: var(--font-serif);
  line-height: 1.5;
  margin-bottom: var(--sp-xl);
  text-wrap: balance;
}

.value-block__lead {
  color: var(--gray-700);
  font-size: var(--text-md);
  font-weight: 300;
  margin-bottom: var(--sp-xl);
}

.value-block__body {
  color: var(--gray-700);
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 2;
  text-align: left;
}

/* ── Service Steps — editorial line style ───────────────── */
.step-list {
  max-width: 880px;
  margin-inline: auto;
  border-top: var(--line);
}

.step-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-xl);
  padding: var(--sp-xl) var(--sp-md);
  border-bottom: var(--line);
  background: transparent;
  transition: background var(--transition);
}

.step-card:hover, .step-card.is-touched {
  background: var(--orange-pale);
}

.step-card--featured {
  background: rgba(223, 89, 17, .12);
}

.step-card--featured:hover, .step-card--featured.is-touched {
  background: rgba(223, 89, 17, .18);
}

.step-card__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-card__badge {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: .2em .8em;
  border-radius: var(--radius-pill);
  margin-top: var(--sp-sm);
  white-space: nowrap;
}

/* Elegant thin number */
.step-card__num {
  font-family: 'Georgia', var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 400;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  width: clamp(56px, 9vw, 90px);
  text-align: center;
  transition: color var(--transition);
}

.step-card--featured .step-card__num,
.step-card:hover .step-card__num,
.step-card.is-touched .step-card__num {
  color: var(--orange);
}

.step-card__body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-xs);
}

.step-card__sub {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.step-card__body p:last-child {
  color: var(--gray-700);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 2;
}

@media (max-width: 370px) {
  .step-card--featured .step-card__badge {
    position: static;
    font-size: .5rem;
    padding: .1em .4em;
    white-space: nowrap;
    margin-top: .3em;
  }
}

.service-note {
  text-align: center;
  max-width: 680px;
  margin: var(--sp-2xl) auto 0;
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--orange);
  letter-spacing: .04em;
  line-height: 1.9;
}

/* ── Strength — line-based editorial grid ───────────────── */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  max-width: 680px;
  margin-inline: auto;
  border-top: var(--line);
  border-left: var(--line);
}

.strength-card {
  min-height: 320px;
  padding: var(--sp-xl);
  border-right: var(--line);
  border-bottom: var(--line);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.strength-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-pale) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.strength-card:hover, .strength-card.is-touched {
  background: var(--gray-100);
}

.strength-card:hover::after, .strength-card.is-touched::after {
  opacity: 1;
}

.strength-card__num {
  display: block;
  font-family: 'Georgia', var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: var(--sp-lg);
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}

.strength-card:hover .strength-card__num, .strength-card.is-touched .strength-card__num {
  color: var(--orange);
}

.strength-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-sm);
  position: relative;
  z-index: 1;
}

.strength-card p {
  color: var(--gray-700);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 2;
  position: relative;
  z-index: 1;
}

/* ── Results ────────────────────────────────────────────── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: var(--line-dark);
}

.result-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
  border-right: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  background: rgba(255, 255, 255, .72);
  transition: background var(--transition);
  cursor: default;
}

.result-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.result-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.result-card:hover, .result-card.is-touched {
  background: rgba(255, 255, 255, .88);
}

.result-card:last-child,
.result-card:nth-child(3) {
  border-right: none;
}

.result-card strong {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--orange);
  line-height: 1.2;
  transition: transform .38s var(--spring);
}

.result-card:hover strong, .result-card.is-touched strong {
  transform: translateY(-6px);
}

.result-unit {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-family: var(--font-sans);
  font-weight: 500;
}

.result-ijo {
  font-size: clamp(.65rem, 1.2vw, .8rem);
  font-family: var(--font-sans);
  font-weight: 300;
  margin-left: .1em;
}

.result-card small {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 200;
  letter-spacing: .08em;
  color: var(--gray-700);
  display: inline-block;
  transition: transform .38s var(--spring);
}

.result-card:hover small, .result-card.is-touched small {
  transform: scale(1.18);
}

@media (max-width: 640px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card,
  .result-card:nth-child(4),
  .result-card:nth-child(5) {
    grid-column: 1;
  }

  .result-card {
    border-right: none;
  }
}

/* ── Voice ──────────────────────────────────────────────── */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: var(--sp-lg);
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--gray-700);
}

.video-card p {
  font-size: var(--text-sm);
  line-height: 1.4;
}

.video-card__thumb {
  aspect-ratio: 16 / 9;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  border: var(--line);
  overflow: hidden;
  transition: border-color var(--transition);
}

.video-card__thumb iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-card:hover .video-card__thumb {
  border-color: var(--orange);
}

.video-card__thumb span {
  font-size: 2.2rem;
  color: var(--orange);
  opacity: .6;
}

/* ── Company ─────────────────────────────────────────────── */
.company-hero {
  background: var(--black);
  padding: clamp(80px, 14vw, 140px) 0 clamp(48px, 8vw, 80px);
  text-align: center;
}

.company-hero .eyebrow {
  color: var(--orange);
}

.company-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: .1em;
  margin-top: .5em;
}

.company-table {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
}

.company-table th,
.company-table td {
  padding: 20px 24px;
  border-bottom: var(--line);
  text-align: left;
  vertical-align: middle;
  line-height: 1.7;
}

.company-table th {
  width: 30%;
  background: var(--gray-100);
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: .04em;
  white-space: nowrap;
}

.company-table td {
  color: var(--black);
}

.company-table td a {
  color: var(--black);
  text-decoration: none;
}

.company-table td a:hover {
  color: var(--orange);
}

.company-table tr:first-child th,
.company-table tr:first-child td {
  border-top: var(--line);
}

@media (max-width: 480px) {
  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    border-bottom: none;
    padding-bottom: 8px;
  }

  .company-table td {
    padding-top: 8px;
  }
}

/* ── Company Gallery ──────────────────────────────────────── */
.company-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.company-gallery__item {
  overflow: hidden;
}

.company-gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.company-gallery__item:first-child {
  grid-column: span 3;
}

.company-gallery__item:first-child img {
  aspect-ratio: 16 / 9;
  object-position: center bottom;
}

.company-gallery__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .company-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .company-gallery__item img {
    aspect-ratio: 4 / 3;
  }

  .company-gallery__item:first-child {
    grid-column: span 2;
  }

  .company-gallery__item:first-child img {
    aspect-ratio: 16 / 9;
  }
}

/* ── Company Representative ───────────────────────────────── */
.company-rep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 5rem);
  align-items: center;
  max-width: 860px;
  margin-inline: auto;
}

.company-rep__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.company-rep__info {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.company-rep__name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--black);
  margin-top: .5em;
}

.company-rep__title {
  color: var(--gray-600);
  font-size: var(--text-sm);
  letter-spacing: .08em;
  margin-top: .6em;
}

@media (max-width: 600px) {
  .company-rep {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  .company-rep__photo {
    max-width: 100%;
  }
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 0;
  max-width: 900px;
  margin-inline: auto;
  border: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-single {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin-inline: auto;
}

#pricing .section-header {
  margin-bottom: var(--sp-lg);
}

.pricing-card--featured.pricing-card--solo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2xl);
  border-radius: 0;
  border: none;
  border-bottom: var(--line);
  background: rgba(223, 89, 17, .12);
  color: var(--black);
  filter: none;
}

.pricing-card--featured.pricing-card--solo:hover,
.pricing-card--featured.pricing-card--solo.is-touched {
  background: rgba(223, 89, 17, .18);
  filter: none;
}

.pricing-card--featured.pricing-card--solo h3 {
  color: var(--black);
}

.pricing-card--featured.pricing-card--solo .pricing-card__price {
  color: var(--gray-700);
}

.pricing-card--featured.pricing-card--solo .pricing-card__price strong {
  color: var(--orange);
  font-size: clamp(3.4rem, 10vw, 5rem);
}


.pricing-card {
  padding: var(--sp-xl);
  border-right: var(--line);
  text-align: center;
  transition: background var(--transition);
}

.pricing-card:last-child {
  border-right: none;
}

.pricing-card:hover, .pricing-card.is-touched {
  background: var(--gray-100);
}

.pricing-card--featured {
  background: var(--orange);
  color: var(--white);
  border-right-color: var(--orange-dark);
}

.pricing-card--featured:hover, .pricing-card--featured.is-touched {
  background: var(--orange);
  filter: brightness(1.2);
}

.pricing-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-md);
}

.pricing-card__price {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--gray-700);
}

.pricing-card--featured .pricing-card__price {
  color: rgba(255, 255, 255, .8);
}

.pricing-card__price strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--orange);
  margin-bottom: .15em;
  line-height: 1;
}

.pricing-card--featured .pricing-card__price strong {
  color: var(--white);
}

.price-num {
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.price-unit {
  font-size: var(--text-lg);
  font-weight: 400;
  vertical-align: baseline;
}

.pricing-card__note {
  margin-top: var(--sp-sm);
  font-size: var(--text-xs);
  color: var(--gray-600);
  letter-spacing: .02em;
}


/* ── Message Team (3-column layout) ─────────────────────── */
.message-team {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2xl);
  max-width: 1080px;
  margin-inline: auto;
}

/* サブ2名: 2列グリッド */
.msg-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
  max-width: 900px;
  margin-inline: auto;
}

/* サブカード: 写真上・テキスト下 */
.msg-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  align-items: start;
}

/* 代表カード: 写真float左・テキスト回り込み（.msg-cardより後に定義して上書き） */
.msg-card--lead {
  display: block;
  overflow: hidden;
  max-width: 860px;
  margin-inline: auto;
}

.msg-card--lead .msg-card__photo-wrap {
  float: left;
  width: 440px;
  margin-left: max(0px, calc(50% - 440px));
  margin-right: var(--sp-xl);
  margin-bottom: var(--sp-md);
}

.msg-card--lead .msg-card__body {
  display: block;
}

.msg-clear {
  clear: left;
}

.msg-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: .08em;
  margin-top: var(--sp-md);
}

.msg-divider::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.msg-card--lead .msg-card__sig {
  margin-top: var(--sp-lg);
  font-size: var(--text-base);
}

.msg-card__photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4 / 5;
}

.msg-card__photo::after {
  content: '';
  position: absolute;
  inset: 8px -8px -8px 8px;
  border: 1px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .45;
}

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

.msg-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.msg-card__body p {
  color: var(--gray-700);
  font-weight: 300;
  line-height: 1.9;
  font-size: var(--text-md);
  text-align: justify;
}

.msg-card__sig {
  color: var(--gray-700);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 2;
  padding-top: var(--sp-sm);
  border-top: var(--line);
  letter-spacing: .04em;
}

.msg-card__sig strong {
  display: block;
  font-family: var(--font-serif);
  color: var(--black);
  font-size: var(--text-lg);
  font-weight: 600;
}

.msg-card--sub .msg-card__photo-wrap {
  max-width: 320px;
  margin-inline: auto;
}

/* 2026-09-02 追加: MESSAGEセクション 写真下に肩書き・名前を表示 */
.msg-card__photo-name {
  padding-top: var(--sp-sm);
  border-top: var(--line);
  text-align: center;
  color: var(--gray-700);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 2;
  letter-spacing: .04em;
}

.msg-card__photo-name strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--black);
  font-weight: 600;
}

/* Sub card body text */
.msg-card--sub .msg-card__body p {
  font-size: var(--text-base);
  line-height: 1.9;
}

/*
 * Face alignment per person:
 * Kishi   = bust-up, face near top-center
 * Otahara = close-up portrait, face upper 10%
 * Tano    = wider shot, zoom in to match face size
 */
.msg-card--kishi .msg-card__photo img {
  object-position: center 12%;
}

.msg-card--otahara .msg-card__photo img {
  object-position: center 10%;
}

.msg-card--tano .msg-card__photo img {
  object-position: 25% 0%;
  transform: translateY(-8%) scale(1.3);
  transform-origin: top center;
}

@media (max-width: 900px) {
  .msg-card--lead .msg-card__photo-wrap {
    float: none;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--sp-md);
  }

  .msg-clear {
    clear: none;
  }

  .msg-sub-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Office Gallery ─────────────────────────────────────── */
.office-gallery {
  background: var(--black);
}


.office-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.office-gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.office-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .9;
  transition: opacity var(--transition), transform var(--transition);
}

.office-gallery__item:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.office-gallery__label {
  position: absolute;
  bottom: var(--sp-sm);
  left: var(--sp-sm);
  background: rgba(40, 40, 40, .72);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: .1em;
  padding: .25em .7em;
  border-radius: 2px;
}

@media (max-width: 600px) {
  .office-gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Office Photo Strip ─────────────────────────────────── */
.office-strip {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  background: var(--black);
}

.office-strip::-webkit-scrollbar {
  display: none;
}

.office-strip:active {
  cursor: grabbing;
}

.office-strip__track {
  display: flex;
  height: clamp(220px, 32vw, 420px);
  gap: 3px;
}

.office-strip__track img {
  height: 100%;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  opacity: .92;
  transition: opacity var(--transition);
}

.office-strip__track img:hover {
  opacity: 1;
}

/* ── Menu ───────────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: var(--sp-sm);
  max-width: 840px;
  margin-inline: auto;
}

.menu-grid li {
  padding: var(--sp-md) var(--sp-md);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  letter-spacing: .08em;
  text-align: center;
  color: var(--gray-700);
  transition: border-color var(--transition), color var(--transition),
    background var(--transition), font-size .25s ease;
  cursor: default;
}

.menu-grid li:hover, .menu-grid li.is-touched {
  border-color: rgba(223, 89, 17, 0.2);
  color: var(--orange);
  background: var(--orange-pale);
  font-size: var(--text-md);
}

/* ── CTA Section ────────────────────────────────────────── */
.cta-section {
  background: var(--orange);
  padding-block: var(--sp-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative lines */
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  height: 1px;
  background: rgba(255, 255, 255, .2);
}

.cta-section::before {
  top: var(--sp-xl);
}

.cta-section::after {
  bottom: var(--sp-xl);
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: var(--sp-lg);
  letter-spacing: .04em;
}

.cta-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 0;
  margin: 0 auto var(--sp-xl);
  border-top: 1px solid rgba(255, 255, 255, .25);
  max-width: 860px;
  width: 100%;
}

.cta-tags li {
  display: flex;
  align-items: center;
  gap: .75em;
  padding: var(--sp-md) var(--sp-xl);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .95);
  text-align: left;
  cursor: default;
}

.cta-tags li::before {
  content: '✓';
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .8);
  color: var(--white);
  font-size: .6rem;
  font-weight: 500;
}

.cta-section .btn--line {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.cta-section .btn--line:hover {
  background: var(--line-green);
  color: var(--white);
  border-color: var(--line-green);
  filter: none;
}

.cta-section>.container>p {
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 300;
  letter-spacing: .06em;
  margin-bottom: var(--sp-xl);
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding-block: var(--sp-2xl);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: var(--line-dark);
}

.footer__logo-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-lg);
}

.footer__logo img {
  height: 48px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
}

.footer__nav a {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .7);
}

.footer__nav a:hover {
  color: var(--white);
  opacity: 1;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-md);
  padding: var(--sp-lg) 0;
}

@media (max-width: 360px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer__bottom .footer__line-btn {
    width: 55%;
  }
}

@media (max-width: 350px) {
  .footer__line-btn svg {
    display: none;
  }
}

/* 2026-09-02 追加: フッター SNSアイコン（YouTube・Note） */
.footer__social-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__social-link:hover {
  color: var(--orange);
}

.footer__social-link--note svg {
  height: 20px;
  width: auto;
}

.footer__social-link--youtube svg {
  height: 20px;
  width: auto;
}

.footer__line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  background: var(--line-green);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .04em;
  padding: .5em 1.5em;
  border-radius: var(--radius-pill);
  transition: opacity var(--transition);
  white-space: nowrap;
}

.footer__bottom .btn::after {
  display: none;
}

.footer__line-btn:hover {
  opacity: .85;
}

.footer__copy {
  text-align: center;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .8);
}

.footer__legal {
  text-align: center;
  margin-top: .4em;
}

.footer__legal a {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, .8);
}

/* ── PC-only CTA / Mobile Sticky CTA ──────────────────── */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .pc-only-cta {
    display: none;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(223, 89, 17, .15);
    transform: translateY(110%);
    transition: transform .45s var(--spring), opacity .35s ease;
    opacity: 0;
  }

  .mobile-sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: var(--line-green);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 500;
    letter-spacing: .06em;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(6, 199, 85, .3);
    transition: filter var(--transition), transform var(--transition);
  }

  .mobile-sticky-cta__btn:hover {
    opacity: 1;
    filter: brightness(.93);
  }

  .mobile-sticky-cta__btn:active {
    filter: brightness(.88);
    transform: scale(.98);
  }
}