/* =============================================
   CSS Variables & Design Tokens
   ============================================= */
:root {
  /* Colors — warm palette based on mamol logo */
  --color-primary: #D4807A;
  --color-primary-hover: #C06B65;
  --color-primary-light: #E8A5A0;
  --color-accent: #A8C55A;
  --color-accent-hover: #96B34A;
  --color-sub: #89B8DC;
  --color-text: #3A3232;
  --color-text-muted: #6B5E5E;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FDF8F5;
  --color-bg-dark: #5C3A3A;
  --color-border: #E0D5D0;
  --color-success: #A8C55A;
  --color-error: #C0392B;
  --color-warning: #F39C12;
  --color-white: #FFFFFF;

  /* Typography */
  --font-primary: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.333rem;
  --text-2xl: 1.667rem;
  --text-3xl: 2rem;
  --text-4xl: 2.444rem;
  --leading-normal: 1.8;
  --leading-tight: 1.4;
  --tracking-normal: 0.04em;
  --tracking-wide: 0.08em;

  /* Spacing (8px base) */
  --space-1: 0.444rem;   /* 8px */
  --space-2: 0.889rem;   /* 16px */
  --space-3: 1.333rem;   /* 24px */
  --space-4: 1.778rem;   /* 32px */
  --space-5: 2.667rem;   /* 48px */
  --space-6: 3.556rem;   /* 64px */
  --space-7: 5.333rem;   /* 96px */

  /* Layout */
  --max-width: 1100px;
  --max-width-text: 720px;
  --header-height: 100px;
  --border-radius: 8px;
  --border-radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition: 0.2s ease;
}

/* =============================================
   Base Styles
   ============================================= */
html {
  overflow-y: scroll;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  letter-spacing: var(--tracking-normal);
}

/* Image Download Prevention */
img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Skip Navigation */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-2);
  z-index: 1000;
  padding: var(--space-1) var(--space-2);
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  border-radius: var(--border-radius);
}

.skip-link:focus {
  top: var(--space-1);
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* =============================================
   Container
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* =============================================
   Header
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 16px;
  gap: 12px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: var(--tracking-wide);
}

.header__logo-img {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-sub {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 48px;
  padding: 2px 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  background: #F0D0CD;
  border-right: 2px solid #fff;
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
}

.nav__link .sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.nav__link:hover {
  background: #D4807A;
  color: #fff;
}

.nav__link--contact {
  background: #6A9FC4;
  color: var(--color-white);
  font-weight: 700;
  width: 110px;
  border-right: none;
  border-radius: 0;
  flex-shrink: 0;
  margin-left: 4px;
}

.nav__link--contact:hover {
  background: #5A8FB4;
  color: var(--color-white);
}

.nav__link--cta {
  background: #8AB342;
  color: var(--color-white);
  font-weight: 700;
  width: 110px;
  border-right: none;
  border-radius: 0;
  flex-shrink: 0;
  margin-left: 4px;
}

.nav__link--cta:hover {
  background: #7AA332;
  color: var(--color-white);
}

.nav__link--cta-top {
  background: #6A9FC4;
  color: var(--color-white);
  font-weight: 700;
  width: 110px;
  border-right: none;
  border-radius: 0;
  flex-shrink: 0;
  margin-left: 4px;
}

.nav__link--cta-top:hover {
  background: #5A8FB4;
  color: var(--color-white);
}

.nav__link--empty {
  display: none;
}

/* Social links in header */
.nav__social {
  display: none;
}

.nav__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.nav__social a:hover {
  color: var(--color-primary);
}

.nav__social svg {
  width: 20px;
  height: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  position: relative;
  transition: background var(--transition);
}

.hamburger__line::before,
.hamburger__line::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  position: absolute;
  left: 0;
  transition: transform var(--transition);
}

.hamburger__line::before {
  top: -7px;
}

.hamburger__line::after {
  top: 7px;
}

/* Hamburger active state */
.hamburger[aria-expanded="true"] .hamburger__line {
  background: transparent;
}

.hamburger[aria-expanded="true"] .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  background: url('../images/service_welfare.jpg') center center / cover no-repeat;
  color: var(--color-white);
  padding: var(--space-7) 0;
  text-align: center;
}

.hero__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  margin-top: auto;
  margin-bottom: var(--space-3);
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero__subtitle {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  max-width: var(--max-width-text);
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: var(--border-radius);
  transition: background var(--transition), transform var(--transition);
  min-height: 48px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

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

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

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--accent {
  background: #8AB342;
  color: var(--color-white);
}

.btn--accent:hover {
  background: #7AA332;
}

.btn--sub {
  background: #6A9FC4;
  color: var(--color-white);
}

.btn--sub:hover {
  background: #5A8FB4;
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--outline-lcs {
  background: #fff;
  color: #6A9FC4;
  border: 2px solid #6A9FC4;
}

.btn--outline-lcs:hover,
.btn--outline-lcs:focus-visible {
  background: #6A9FC4;
  color: #fff;
}

.btn--lg {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-lg);
}

.btn--full {
  width: 100%;
}

.btn--disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* =============================================
   Section
   ============================================= */
.section {
  padding: var(--space-7) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

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

.section__header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.section__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-wide);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.section__title-icon {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

.section--dark .section__title {
  color: var(--color-white);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: var(--max-width-text);
  margin: 0 auto;
}

/* =============================================
   Cards
   ============================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-3);
}

.card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card__image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.card__body {
  padding: var(--space-3);
  flex: 1;
}

.card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-primary);
}

.card-grid--options {
  align-items: start;
}

.card-grid--options .card__title {
  min-height: 3.5em;
}

.card-grid--options .card__price {
  min-height: 3em;
}

.card-grid--options .card__text {
  min-height: 5em;
}

.card__price {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-1);
}

.card__price-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 400;
  display: block;
  line-height: 1.4;
}

.text-spec {
  font-size: var(--text-sm);
}

.text-minor {
  font-size: 0.7em;
}

.card__notice {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.card__notice summary {
  cursor: pointer;
  color: var(--color-primary);
  font-weight: 700;
}

.card__notice summary:hover {
  text-decoration: underline;
}

.card__notice > :not(summary) {
  margin-top: var(--space-1);
}

.card__spec {
  font-size: 0.75rem;
}

.card__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.card__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.card__footer {
  padding: 0 var(--space-3) var(--space-3);
  margin-top: auto;
}

/* =============================================
   Product Detail (products.html)
   ============================================= */
.product-detail {
  max-width: var(--max-width-text);
  margin-left: auto;
  margin-right: auto;
}

.product-detail__heading {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-1);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.product-detail__body {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--color-text-muted);
}

.product-detail__body p {
  margin-bottom: var(--space-2);
}

.product-detail__note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.product-detail__body--spec {
  font-size: 0.75rem;
}

.product-detail__body--spec .spec-table th,
.product-detail__body--spec .spec-table td {
  font-size: 0.75rem;
}

.card-grid .btn--primary,
#rental .btn--primary {
  border: 5px double var(--color-white);
}

.product-detail-toggle {
  max-width: var(--max-width-text);
  margin-left: auto;
  margin-right: auto;
}

.product-detail-toggle__summary {
  cursor: pointer;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--border-radius);
  list-style: none;
  text-align: center;
}

.product-detail-toggle__summary::-webkit-details-marker {
  display: none;
}

.product-detail-toggle__summary::before {
  content: "▶ ";
  font-size: 0.8em;
}

.product-detail-toggle[open] > .product-detail-toggle__summary::before {
  content: "▼ ";
}

.product-detail-toggle__summary:hover {
  opacity: 0.85;
}

.product-detail__list {
  padding-left: 1.5em;
  margin-bottom: var(--space-2);
}

.product-detail__list li {
  margin-bottom: 0.25em;
}

.product-detail__spec-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-2);
}

.product-detail__spec-list li::before {
  content: "・";
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-2);
}

.spec-table th {
  text-align: left;
  font-weight: 700;
  padding: var(--space-1) var(--space-2);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
  width: 8em;
}

.spec-table td {
  padding: var(--space-1) var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

/* =============================================
   Feature Grid (index)
   ============================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-3);
}

.feature-item {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--border-radius);
  color: var(--color-primary);
}

.feature-item__icon svg {
  width: 24px;
  height: 24px;
}

.feature-item__content {
  flex: 1;
}

.feature-item__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.feature-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* =============================================
   Summary (01-04 Feature Showcase)
   ============================================= */
.summary-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.summary-item {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.summary-item__body {
  width: 350px;
  flex-shrink: 0;
}

.summary-item__image {
  width: 350px;
  flex-shrink: 0;
  background: var(--color-bg-alt);
  border-radius: 16px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-item__image img {
  width: 350px;
  height: auto;
  border-radius: 16px;
}

.summary-item__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.summary-item__number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.35;
  line-height: 1;
  letter-spacing: 0.05em;
}

.summary-item__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
}

.summary-item__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* =============================================
   Function Grid
   ============================================= */
.func-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 730px;
  margin: 0 auto;
}

.func-item {
  text-align: center;
  padding: var(--space-3);
}

.func-item__icon {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: 50%;
  padding: 30px;
}

.func-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.func-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* =============================================
   Odekake Intro
   ============================================= */
.odekake-intro {
  text-align: center;
}

.odekake-intro__image {
  margin-bottom: 0.75rem;
  text-align: center;
}

.odekake-intro__image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.odekake-intro__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: var(--leading-normal);
}

.odekake-intro__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* =============================================
   News List
   ============================================= */
.news-list {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

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

.news-item__date {
  flex-shrink: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  min-width: 6em;
}

.news-item__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 2px var(--space-1);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  min-width: 4.5em;
  justify-content: center;
}

.news-item__badge--important {
  background: var(--color-error);
  color: var(--color-white);
}

.news-item__badge--release {
  background: var(--color-primary);
  color: var(--color-white);
}

.news-item__badge--topics {
  background: var(--color-success);
  color: var(--color-white);
}

.news-item__title {
  flex: 1;
  font-weight: 500;
}

.news-item__title a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-item__title a:hover {
  color: var(--color-primary);
}

/* Compact news (TOP page) */
.section--compact {
  padding: var(--space-5) 0 var(--space-4);
}

.section--compact .section__header {
  margin-bottom: var(--space-3);
}

.news-list--compact {
  max-width: 100%;
}

.news-list--compact .news-item {
  padding: var(--space-1) 0;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}

.news-list--compact .news-item__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* News filter */
.news-filter {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.news-filter__btn {
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--border-radius);
  border: 2px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  min-height: 48px;
  transition: all var(--transition);
}

.news-filter__btn:hover,
.news-filter__btn--active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* =============================================
   Info Table (Company profile, Law, etc.)
   ============================================= */
.info-table {
  width: 100%;
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.info-table dt {
  font-weight: 700;
  color: var(--color-primary);
  padding: var(--space-2) var(--space-3);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.info-table dd {
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.business-list {
  margin: 0;
}

.business-list dt {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: 0;
  background: none;
  border-bottom: none;
  margin-top: 0.75rem;
}

.business-list dt:first-child {
  margin-top: 0;
}

.business-list dd {
  font-size: var(--text-sm);
  padding: 0;
  border-bottom: none;
  margin-left: 0;
}

/* =============================================
   Alert / Warning Banner
   ============================================= */
.alert {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--border-radius);
  font-size: var(--text-base);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.alert--warning {
  background: #FEF3CD;
  border: 1px solid #F0C36D;
  color: #664D03;
}

.alert--info {
  background: #D1ECF1;
  border: 1px solid #9ECFD6;
  color: #0C5460;
}

.alert--error {
  background: #F8D7DA;
  border: 1px solid #F1AEB5;
  color: #58151C;
}

.alert__icon {
  flex-shrink: 0;
  font-size: var(--text-xl);
  line-height: 1;
}

/* =============================================
   Breadcrumb
   ============================================= */
.breadcrumb {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.breadcrumb__item::before {
  content: ">";
  color: var(--color-text-muted);
}

.breadcrumb__item:first-child::before {
  display: none;
}

.breadcrumb__link {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb__link:hover {
  color: var(--color-accent);
}

.breadcrumb__current {
  color: var(--color-text-muted);
}

/* =============================================
   Page Header
   ============================================= */
.page-header {
  background: var(--color-bg-alt);
  padding: var(--space-5) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-header__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: var(--tracking-wide);
}

/* =============================================
   Forms
   ============================================= */
.form-group {
  margin-bottom: var(--space-3);
}

.form-label {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-weight: 700;
  margin-bottom: var(--space-1);
  font-size: var(--text-base);
}

.form-label__required {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-error);
  color: var(--color-white);
  border-radius: 3px;
}

.form-label__optional {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-text-muted);
  color: var(--color-white);
  border-radius: 3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-2);
  font-size: var(--text-base);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-white);
  transition: border-color var(--transition);
  min-height: 48px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 128, 122, 0.2);
}

.form-input--error,
.form-select--error,
.form-textarea--error {
  border-color: var(--color-error);
}

.form-input--error:focus,
.form-select--error:focus,
.form-textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-error {
  display: none;
  color: var(--color-error);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
  font-weight: 500;
}

.form-error--visible {
  display: block;
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.step-indicator__item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.step-indicator__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-muted);
  font-weight: 700;
}

.step-indicator__item--active .step-indicator__number {
  background: var(--color-primary);
  color: var(--color-white);
}

.step-indicator__item--active {
  color: var(--color-primary);
  font-weight: 700;
}

.step-indicator__item--done .step-indicator__number {
  background: var(--color-success);
  color: var(--color-white);
}

.step-indicator__line {
  width: 40px;
  height: 2px;
  background: var(--color-border);
}

/* Confirm view */
.confirm-table {
  width: 100%;
  margin-bottom: var(--space-4);
}

.confirm-table th {
  text-align: left;
  padding: var(--space-2) var(--space-3);
  background: var(--color-bg-alt);
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
  width: 30%;
}

.confirm-table td {
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

/* Complete message */
.complete-message {
  text-align: center;
  padding: var(--space-6) 0;
}

.complete-message__icon {
  font-size: 3rem;
  margin-bottom: var(--space-3);
  color: var(--color-success);
}

.complete-message__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

/* =============================================
   Pricing Table
   ============================================= */
.price-table {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-4);
}

.price-table caption {
  padding: var(--space-2);
  font-weight: 700;
  text-align: left;
  font-size: var(--text-lg);
  color: var(--color-primary);
}

.price-table thead th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-3);
  text-align: left;
  font-weight: 700;
}

.price-table tbody td {
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.price-table tbody tr:nth-child(even) {
  background: var(--color-bg-alt);
}

.price-table--rental {
  table-layout: fixed;
}

.price-table--rental th:first-child,
.price-table--rental td:first-child {
  width: 35%;
}

.price-per-month {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 400;
}

.rental-heading {
  text-align: center;
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-primary);
}

.rental-notes {
  max-width: 700px;
  margin: var(--space-3) auto var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.rental-notes p {
  margin-bottom: var(--space-1);
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
  background: var(--color-bg-dark);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-6) 0;
}

.cta-section__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.cta-section__text {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-4);
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: var(--space-6) 0 var(--space-3);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__logo {
  font-size: var(--text-xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.footer__logo-img {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

.footer__company {
  font-size: var(--text-sm);
  opacity: 0.8;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.footer__link {
  padding: var(--space-1) 0;
  font-size: var(--text-sm);
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer__link:hover {
  opacity: 1;
  text-decoration: underline;
}



.footer__social {
  display: flex;
  gap: var(--space-2);
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: background var(--transition);
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.footer__legal {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-sm);
  opacity: 0.8;
  flex-wrap: wrap;
}

.footer__legal a:hover {
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer__copyright {
  font-size: var(--text-sm);
  opacity: 0.6;
}

/* =============================================
   Product Section (index.html #items)
   ============================================= */
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}

.product-intro__image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--color-bg-alt);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-intro__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.product-intro__text {
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
}

.product-intro__links {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* =============================================
   Content (for legal pages)
   ============================================= */
.content {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: var(--space-5) 0;
}

.content h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-1);
  border-bottom: 2px solid var(--color-primary);
}

.content h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-top: var(--space-3);
  margin-bottom: var(--space-1);
}

.content p {
  margin-bottom: var(--space-2);
}

.content ul,
.content ol {
  margin-bottom: var(--space-2);
  padding-left: 0;
}

.content ul {
  list-style: none;
}

.content ul ul {
  padding-left: var(--space-4);
}

.content ol {
  list-style: decimal;
}

.content li {
  margin-bottom: var(--space-1);
}

/* =============================================
   More link
   ============================================= */
.more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: var(--text-base);
  min-height: 48px;
}

.more-link:hover {
  color: var(--color-accent);
}

/* =============================================
   Address search button
   ============================================= */
.address-search {
  display: flex;
  gap: var(--space-1);
  align-items: flex-end;
}

.address-search .form-input {
  flex: 0 0 200px;
}

.address-search .btn {
  white-space: nowrap;
}

/* =============================================
   Application Form — Type Selection Cards
   ============================================= */
.app-step__lead {
  text-align: center;
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.app-step__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  text-align: center;
}

.type-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

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

.type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-4) var(--space-3);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.type-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.type-card__icon {
  width: 64px;
  height: 64px;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.type-card__icon svg {
  width: 100%;
  height: 100%;
}

.type-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
  line-height: var(--leading-tight);
}

.type-card__title span {
  display: block;
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.type-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.type-select__renewal {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.type-select__renewal a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.type-select__renewal a:hover {
  color: var(--color-primary-hover);
}

/* =============================================
   Application Form — Fieldset & Dynamic Fields
   ============================================= */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-4);
}

.form-fieldset__legend {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  padding-bottom: var(--space-1);
  border-bottom: 2px solid var(--color-primary);
  margin-bottom: var(--space-3);
  width: 100%;
}

.form-input--short {
  max-width: 120px;
}

.form-hint {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
  font-size: var(--text-base);
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.qty-table {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.qty-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-2);
}

.qty-row__name {
  font-size: var(--text-base);
}

.qty-row__qty {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  white-space: nowrap;
}

.qty-row__qty .form-input--short {
  width: 70px;
}

.qty-row__sizes {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  padding-top: var(--space-1);
}

.qty-row__sizes .js-walk-size {
  width: 220px;
}

/* =============================================
   Application Form — Rental Fixed Display
   ============================================= */
.rental-fixed {
  background: var(--color-bg-alt);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}

.rental-fixed__price {
  font-size: var(--text-lg);
  font-weight: 700;
}

.rental-fixed__note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.rental-unit-pkg {
  padding: var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-2);
  background: var(--color-white);
}

.rental-unit-pkg .form-label--sm {
  font-size: var(--text-sm);
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-1);
}

.rental-unit-pkg__row {
  display: flex;
  gap: var(--space-1);
  align-items: center;
  margin-bottom: var(--space-1);
}

.rental-unit-pkg__row .form-select {
  flex: 1;
}

.rental-unit-pkg__row .form-input--short {
  flex: 0 0 80px;
}

/* =============================================
   Application Form — Period Display
   ============================================= */
.period-display {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: #EEF6ED;
  border-radius: var(--border-radius);
  border: 1px solid #8AB342;
  margin-top: var(--space-1);
  margin-bottom: var(--space-2);
}

.period-display__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.period-display__value {
  font-size: var(--text-lg);
  color: #6B8E23;
}

/* =============================================
   Application Form — Price Summary
   ============================================= */
.price-summary {
  background: var(--color-bg-alt);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-3);
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}

.price-summary__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.price-summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-1) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-base);
}

.price-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-2);
  margin-top: var(--space-1);
  font-size: var(--text-xl);
  font-weight: 700;
}

.price-summary__total strong {
  font-size: var(--text-2xl);
  color: var(--color-primary);
}

/* =============================================
   Utility Classes
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }

.hidden { display: none !important; }
.is-hidden { display: none; }

/* =============================================
   TOP Page Hero (Slideshow)
   ============================================= */
.hero--top {
  position: relative;
  overflow: hidden;
  padding: var(--space-5) 0 var(--space-4);
  min-height: 501px;
}

.hero__slides {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(20, 20, 40, 0.45);
}

.hero--top .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(501px - var(--space-5) - var(--space-4));
}

.hero__logo {
  max-width: 280px;
  width: 100%;
  margin-bottom: var(--space-4);
}

.hero__subcopy-wrap {
  position: relative;
  height: calc(var(--text-xl) * 1.5);
}

.hero__subcopy {
  position: absolute;
  top: 0; left: 0; width: 100%;
  font-size: var(--text-xl);
  line-height: 1.5;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero__subcopy--active {
  opacity: 0.9;
}

/* =============================================
   LCS Page Hero
   ============================================= */
.hero--lcs {
  background: url('../images/service_lcs.png') center center / contain no-repeat,
              #0a1423;
  padding: var(--space-7) 0;
}

.lcs-banner-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.teaser-banner-link {
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.teaser-banner-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.teaser-banner__sub {
  text-align: right;
  margin-top: var(--space-1);
}

.teaser-banner__text-link {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #2a4a6a;
}

.teaser-banner__text-link:hover {
  text-decoration: underline;
}

.hero__label {
  font-size: var(--text-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* =============================================
   Branch Cards (TOP service selection)
   ============================================= */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.branch-card {
  display: block;
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.branch-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.branch-card__visual {
  overflow: hidden;
  background: #1a1a1a;
}

.branch-card__visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.branch-card:hover .branch-card__visual img {
  transform: scale(1.05);
}

.branch-card__visual--placeholder {
  background: linear-gradient(135deg, #1a2a3a 0%, #2a4a6a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  gap: var(--space-1);
}

.branch-card__coming {
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  opacity: 0.6;
  text-transform: uppercase;
}

.branch-card__visual-text {
  font-size: var(--text-2xl);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.branch-card__body {
  padding: var(--space-3);
}

.branch-card__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-1);
}

.branch-card--welfare .branch-card__label {
  color: var(--color-primary);
}

.branch-card--lcs .branch-card__label {
  color: #2a4a6a;
}

.branch-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-text);
}

.branch-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
  line-height: var(--leading-normal);
}

.branch-card__link {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.branch-card--lcs .branch-card__link {
  color: #2a4a6a;
}

/* =============================================
   Company Brief (TOP)
   ============================================= */
.company-brief {
  text-align: center;
}

.company-brief__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* =============================================
   CTA Bar (event-specific, above footer)
   ============================================= */
.cta-bar {
  text-align: center;
  padding: var(--space-5) 0;
}

.cta-bar--welfare,
.cta-bar--lcs,
.cta-bar--top {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.cta-bar__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.cta-bar__text {
  font-size: var(--text-base);
  opacity: 0.9;
  margin-bottom: var(--space-3);
}

.cta-bar__actions {
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}

.cta-bar__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 48px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  border-radius: 0;
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
  transition: background var(--transition);
}

.cta-bar__tab .sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.cta-bar__tab--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text-muted);
}

.cta-bar__tab--outline:hover {
  background: var(--color-bg-alt);
}

.cta-bar__tab--contact {
  background: #6A9FC4;
}

.cta-bar__tab--contact:hover {
  background: #5A8FB4;
}

.cta-bar__tab--cta {
  background: #8AB342;
}

.cta-bar__tab--cta:hover {
  background: #7AA332;
}

/* =============================================
   LCS Button
   ============================================= */
.btn--lcs {
  background: #6A9FC4;
  color: var(--color-white);
}

.btn--lcs:hover {
  background: #5A8FB4;
}

/* =============================================
   LCS Takeda Endorsement Block
   ============================================= */
.lcs-takeda {
  padding: var(--space-5) 0;
  background: #fff;
}

.lcs-takeda__grid {
  display: grid;
  grid-template-columns: minmax(220px, 27%) 1fr;
  grid-template-areas:
    "photo title"
    "photo byline"
    "photo body1"
    "photo quote"
    "photo body2";
  column-gap: var(--space-4);
  row-gap: var(--space-2);
  align-items: start;
}

.lcs-takeda__photo  { grid-area: photo;  width: 100%; height: auto; border-radius: 4px; }
.lcs-takeda__title  { grid-area: title;  color: #6A9FC4; font-size: 1.375rem; font-weight: 700; line-height: 1.5; margin: 0; }
.lcs-takeda__byline { grid-area: byline; font-size: 0.95rem; margin: 0; }
.lcs-takeda__body--1{ grid-area: body1;  line-height: 1.75; margin: 0; }
.lcs-takeda__quote  { grid-area: quote;  color: #6A9FC4; font-size: 1.0625rem; font-weight: 500; line-height: 1.5; margin: 0;
                      padding-left: 1em; text-indent: -1em; }

/* モバイル版タイトルの明示改行（PCでは非表示） */
.lcs-takeda .mobile-only { display: none; }
.lcs-takeda .pc-only { display: inline; }
.lcs-takeda__body--2{ grid-area: body2;  line-height: 1.75; margin: 0; }

@media (max-width: 1023px) {
  .lcs-takeda .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .lcs-takeda__grid {
    grid-template-columns: 90px 1fr;
    grid-template-areas:
      "photo  title"
      "photo  byline"
      "body1  body1"
      "quote  quote"
      "body2  body2";
    column-gap: 8px;
    row-gap: var(--space-2);
    align-items: start;
  }
  .lcs-takeda__photo {
    width: 100%;
    align-self: start;
  }
  .lcs-takeda__title  { font-size: 1rem; }
  .lcs-takeda__byline { font-size: 0.9rem; }
  .lcs-takeda__quote  { font-size: 1rem; }
  .lcs-takeda .mobile-only { display: inline; }
  .lcs-takeda .pc-only { display: none; }
}

/* =============================================
   Teaser Content (LCS)
   ============================================= */
.teaser-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.teaser-content__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

@media (max-width: 1023px) {
  .teaser-content__title {
    font-size: var(--text-lg);
  }
}

.teaser-content__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: var(--leading-normal);
}

#lcs-teaser {
  padding-top: var(--space-4);
}

@media (max-width: 767px) {
  #lcs-teaser {
    padding-top: var(--space-3);
  }
}

.teaser-banner {
  margin: 0 auto;
  max-width: 640px;
}

.teaser-banner__placeholder {
  width: 100%;
  aspect-ratio: 640/400;
  background: #f0f2f5;
  border: 2px dashed #ccc;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  color: #999;
}

.teaser-banner__label {
  font-size: var(--text-base);
  font-weight: 700;
}

.teaser-banner__size {
  font-size: var(--text-sm);
}

/* Checkbox label */
.form-checkbox {
  display: block;
  margin-bottom: var(--space-2);
  cursor: pointer;
  font-size: var(--text-base);
}

.form-checkbox input[type="checkbox"] {
  margin-right: 0.5em;
  vertical-align: middle;
}

/* =============================================
   Print Styles
   ============================================= */
@media print {
  .header,
  .footer,
  .hamburger,
  .cta-section,
  .hero__actions,
  .news-filter {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .hero {
    background: none;
    color: #000;
    padding: 20px 0;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1023px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .product-intro {
    grid-template-columns: 1fr;
  }

  .product-intro__image {
    max-width: 500px;
    margin: 0 auto;
  }

  .summary-item {
    flex-direction: column;
    gap: var(--space-3);
  }

  .summary-item__image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    flex-shrink: 1;
  }

  .summary-item__image img {
    width: 100%;
  }

  .summary-item__body {
    width: 100%;
    flex-shrink: 1;
    text-align: center;
    align-items: center;
  }

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

  /* Header → hamburger (1023px以下) */
  .hamburger {
    display: flex;
  }

  .header .container {
    justify-content: space-between;
    padding: 0 var(--space-3);
    gap: 0;
  }

  .header__logo-img {
    width: 160px;
    height: 74px;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--color-white);
    padding: var(--space-3);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    z-index: 99;
    gap: 0;
  }

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

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .nav__link {
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: var(--space-2) var(--space-2) var(--space-2) var(--space-3);
    background: #F0D0CD;
    color: var(--color-text);
    border-right: none;
    border-bottom: 2px solid #fff;
    font-size: var(--text-base);
    justify-content: flex-start;
    gap: 0;
    border-radius: 0;
  }

  .nav__txt::after {
    content: "｜";
  }

  .nav__link:hover {
    background: #D4807A;
    color: #fff;
  }

  .nav__link--contact {
    width: 100%;
    margin-left: 0;
    background: #6A9FC4;
    color: var(--color-white);
  }

  .nav__link--contact:hover {
    background: #5A8FB4;
  }

  .nav__link--cta {
    width: 100%;
    margin-left: 0;
    background: #8AB342;
    color: var(--color-white);
  }

  .nav__link--cta:hover {
    background: #7AA332;
  }

  .nav__link--cta-top {
    width: 100%;
    margin-left: 0;
    background: #6A9FC4;
    color: var(--color-white);
  }

  .nav__link--cta-top:hover {
    background: #5A8FB4;
  }

  .nav__link .sub {
    display: inline;
    font-size: var(--text-sm);
  }

  .nav__link--empty {
    display: none;
  }

  .nav__social {
    margin-top: var(--space-3);
    justify-content: center;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 17px;
  }

  :root {
    --header-height: 100px;
  }

  /* Hero mobile */
  .hero {
    padding: var(--space-5) 0;
  }

  .hero--top {
    min-height: 517px;
  }

  .hero--top .container {
    min-height: calc(517px - var(--space-5) - var(--space-4));
  }

  .hero__title {
    font-size: var(--text-base);
  }

  .hero__subcopy {
    font-size: var(--text-base);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Section mobile */
  .section {
    padding: var(--space-5) 0;
  }

  .section__title {
    font-size: var(--text-2xl);
  }

  /* Card grid mobile */
  .card-grid {
    grid-template-columns: 1fr;
  }

  /* Branch grid mobile */
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .hero__logo {
    max-width: 200px;
  }

  .cta-bar__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-bar__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .func-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }

  .summary-item__number {
    font-size: 3rem;
  }

  /* News mobile */
  .news-item {
    flex-direction: column;
    gap: var(--space-1);
  }

  .news-item__date {
    min-width: auto;
  }

  /* Footer mobile */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .footer__nav {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  /* Button mobile */
  .btn--full-sp {
    width: 100%;
  }

  /* Info table mobile */
  .info-table dt,
  .info-table dd {
    display: block;
    width: 100%;
  }

  /* Price table mobile */
  .price-table {
    font-size: var(--text-sm);
  }

  .price-table thead th,
  .price-table tbody td {
    padding: var(--space-1) var(--space-2);
  }

  /* Step indicator mobile */
  .step-indicator {
    gap: var(--space-1);
  }

  .step-indicator__text {
    display: none;
  }

  .step-indicator__line {
    width: 16px;
  }

  /* Type selection cards mobile */
  .type-select {
    grid-template-columns: 1fr;
  }

  .type-select--4col {
    grid-template-columns: 1fr 1fr;
  }

  .type-card {
    padding: var(--space-3) var(--space-2);
  }

  .type-card__icon {
    width: 48px;
    height: 48px;
  }

  /* Price summary mobile */
  .price-summary__row {
    font-size: var(--text-sm);
  }

  .price-summary__total {
    font-size: var(--text-lg);
  }

  .price-summary__total strong {
    font-size: var(--text-xl);
  }

  /* Confirm table mobile */
  .confirm-table th,
  .confirm-table td {
    display: block;
    width: 100%;
  }

  .confirm-table th {
    width: 100%;
  }
}

.content {
  font-size: var(--text-sm);
}

.content h2 {
  font-size: var(--text-base);
  margin-top: 72px;
  margin-bottom: 48px;
}

.content li {
  padding-left: 1.3em;
  text-indent: -1.3em;
  line-height: 1.7;
  margin-bottom: 24px;
}

.content h3 {
  font-size: var(--text-sm);
}

.content ul ul li {
  margin-bottom: 8px;
}

.info-table dd {
  font-size: var(--text-sm);
}

.sub_ttl {
  display: block;
  font-weight: 700;
  margin-top: var(--space-2);
}

.info-table dd p + p {
  margin-top: var(--space-3);
}

.note {
  display: block;
  font-size: 0.8em;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.right {
  text-align: right;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: var(--space-6) 0;
  background: var(--color-bg);
}

.faq-section .container {
  text-align: center;
}

.faq-section .section__title {
  margin-bottom: var(--space-4);
}

.faq-section .faq-toggle-all-wrap,
.faq-section .faq-category-list {
  text-align: left;
}

.faq-toggle-all-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-3);
}

.faq-toggle-all {
  display: inline-block;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.faq-toggle-all:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.faq-category-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-category {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--color-white);
}

.faq-category__header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--space-2) var(--space-4);
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  transition: background 0.2s;
  text-align: left;
}

.faq-category__header:hover {
  background: rgba(106, 159, 196, 0.06);
}

.faq-category__name {
  flex: 1;
}

.faq-category__count {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-right: var(--space-2);
}

.faq-category__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-category__icon::before,
.faq-category__icon::after {
  content: '';
  position: absolute;
  background: var(--color-text-muted);
  transition: transform 0.3s;
}

.faq-category__icon::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-category__icon::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transform: translateX(-50%);
}

.faq-category__header[aria-expanded="true"] .faq-category__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-qa-list {
  border-top: 1px solid var(--color-border);
}

.faq-qa-list--closed {
  display: none;
}

.faq-qa {
  border-bottom: 1px solid var(--color-border);
}

.faq-qa:last-child {
  border-bottom: none;
}

.faq-qa__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--space-2) var(--space-4);
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text);
  text-align: left;
  transition: background 0.2s;
  gap: var(--space-2);
}

.faq-qa__question:hover {
  background: rgba(106, 159, 196, 0.04);
}

.faq-qa__icon-q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #6A9FC4;
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.faq-qa__text {
  flex: 1;
  font-weight: 500;
}

.faq-qa__toggle {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}

.faq-qa__toggle::before,
.faq-qa__toggle::after {
  content: '';
  position: absolute;
  background: var(--color-text-muted);
  transition: transform 0.3s;
}

.faq-qa__toggle::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-qa__toggle::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transform: translateX(-50%);
}

.faq-qa__question[aria-expanded="true"] .faq-qa__toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-qa__answer {
  display: flex;
  padding: 0 var(--space-4) var(--space-3);
  padding-left: calc(var(--space-4) + 28px + var(--space-2));
  gap: var(--space-2);
  align-items: flex-start;
}

.faq-qa__answer--closed {
  display: none;
}

.faq-qa__icon-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #D4807A;
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.faq-qa__answer-text {
  flex: 1;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  white-space: pre-wrap;
}

.faq-error {
  text-align: center;
  padding: var(--space-4);
  color: var(--color-text-muted);
}

.faq-error a {
  color: #6A9FC4;
  text-decoration: underline;
}

/* FAQ Link Box (contact_welfare) */
.faq-link-box {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-3);
  background: rgba(106, 159, 196, 0.08);
  border: 1px solid rgba(106, 159, 196, 0.3);
  border-radius: var(--border-radius);
}

.faq-link-box__text {
  font-size: var(--text-sm);
  color: var(--color-text);
}

.faq-link-box__text a {
  color: #6A9FC4;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .faq-category__header {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
  }

  .faq-qa__question {
    padding: var(--space-2) var(--space-3);
    font-size: 0.8125rem;
  }

  .faq-qa__answer {
    padding: 0 var(--space-3) var(--space-2);
    padding-left: calc(var(--space-3) + 28px + var(--space-2));
  }

  .faq-qa__icon-q,
  .faq-qa__icon-a {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
}

/* =============================================
   LCS BI Tool Introduction
   ============================================= */
.lcs-bi {
  background: var(--color-bg-alt);
}

.lcs-bi__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #6A9FC4;
  text-align: center;
  margin: 0 0 var(--space-1);
  letter-spacing: var(--tracking-normal);
  line-height: 1.5;
}

.lcs-bi__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: var(--space-4);
  align-items: start;
}

/* TOC (sticky sidebar) */
.lcs-bi__toc {
  position: sticky;
  top: calc(var(--header-height) + var(--space-2));
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--space-2);
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - var(--header-height) - var(--space-4));
  overflow-y: auto;
}

.lcs-bi__toc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #6A9FC4;
  margin: 0 0 var(--space-1);
  padding-bottom: var(--space-1);
  border-bottom: 1px solid var(--color-border);
}

.lcs-bi__toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lcs-bi__toc-list li + li {
  margin-top: 2px;
}

.lcs-bi__toc-list a {
  display: block;
  padding: 6px 10px;
  font-size: 0.875rem;
  color: var(--color-text);
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: background var(--transition), border-color var(--transition);
}

.lcs-bi__toc-list a:hover,
.lcs-bi__toc-list a:focus-visible {
  background: rgba(106, 159, 196, 0.08);
  border-left-color: #6A9FC4;
}

.lcs-bi__toc-list a.is-active {
  background: rgba(106, 159, 196, 0.12);
  border-left-color: #6A9FC4;
  font-weight: 600;
}

/* Chapters (details/summary) */
.lcs-bi__content {
  min-width: 0;
}

.lcs-bi__chapter {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-2);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + var(--space-2));
}

.lcs-bi__chapter-summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-2) var(--space-3);
  background: #F5F9FC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  transition: background var(--transition);
}

.lcs-bi__chapter-summary::-webkit-details-marker {
  display: none;
}

.lcs-bi__chapter-summary:hover {
  background: #EAF1F8;
}

.lcs-bi__chapter-summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #6A9FC4;
  border-bottom: 2px solid #6A9FC4;
  transform: rotate(-45deg);
  transition: transform var(--transition);
  margin-right: 4px;
}

.lcs-bi__chapter[open] > .lcs-bi__chapter-summary::after {
  transform: rotate(45deg);
}

.lcs-bi__chapter-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #6A9FC4;
  margin: 0;
  line-height: 1.5;
}

.lcs-bi__chapter-body {
  padding: var(--space-3);
  line-height: 1.85;
}

.lcs-bi__chapter-body p {
  margin: 0 0 var(--space-2);
}

.lcs-bi__chapter-body p:last-child {
  margin-bottom: 0;
}

/* Figure (images inside chapters) */
.lcs-bi__figure {
  margin: var(--space-3) 0;
  text-align: center;
}

.lcs-bi__image {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}

.lcs-bi__figure-caption {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  text-align: center;
}

/* Pamphlet DL button wrap */
.lcs-bi__pamph-wrap {
  margin-top: var(--space-5);
  text-align: center;
}

/* Tablet / Mobile (<= 1023px): stack layout, non-sticky TOC */
@media (max-width: 1023px) {
  .lcs-bi__layout {
    grid-template-columns: 1fr;
    row-gap: var(--space-3);
  }

  .lcs-bi__toc {
    position: static;
    max-height: none;
  }

  .lcs-bi__chapter-title {
    font-size: 1rem;
  }

  .lcs-bi__chapter-body {
    padding: var(--space-2);
  }
}

/* Mobile (<= 767px) */
@media (max-width: 767px) {
  .lcs-bi__title {
    font-size: var(--text-xl);
  }

  .lcs-bi__chapter-summary {
    padding: var(--space-2);
  }

  .lcs-bi__toc-list a {
    font-size: 0.8125rem;
    padding: 8px 10px;
  }
}

/* =============================================
   LCS Guide Mini (pre-BI inline guide)
   ============================================= */
.lcs-guide-mini {
  padding: var(--space-2) 0;
  background: #fff;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
}

.lcs-guide-mini__text {
  margin: 0;
  line-height: 1.6;
}

.lcs-guide-mini__marker {
  color: #6A9FC4;
  margin-right: 4px;
  font-weight: 700;
}

.lcs-guide-mini__link {
  color: #6A9FC4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lcs-guide-mini__link:hover,
.lcs-guide-mini__link:focus-visible {
  color: #4A7FA4;
}

@media (max-width: 767px) {
  .lcs-guide-mini {
    font-size: 0.8125rem;
    padding: var(--space-1) 0;
    text-align: left;
  }

  .lcs-guide-mini .container {
    padding-left: var(--space-2);
    padding-right: var(--space-2);
  }
}

/* =============================================
   LCS BI Tool Showcase & Bridge
   ============================================= */
/* Visual Showcase: 2 画像の初期可視化 */
.lcs-bi__showcase {
  margin: 0 0 var(--space-4);
}

.lcs-bi__showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.lcs-bi__showcase-figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--space-2);
  text-align: center;
}

.lcs-bi__showcase-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.lcs-bi__showcase-caption {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  font-weight: 500;
}

.lcs-bi__showcase-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.lcs-bi__showcase-link {
  color: #6A9FC4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lcs-bi__showcase-link:hover,
.lcs-bi__showcase-link:focus-visible {
  color: #4A7FA4;
}

/* Bridge Text: LCSBasic / LCSプレミアム プラン位置づけ */
.lcs-bi__bridge {
  background: rgba(106, 159, 196, 0.05);
  border-left: 3px solid #6A9FC4;
  padding: var(--space-3);
  margin: 0 0 var(--space-5);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.lcs-bi__bridge-title {
  font-size: 1rem;
  font-weight: 700;
  color: #6A9FC4;
  margin: 0 0 var(--space-1);
  letter-spacing: 0.02em;
}

.lcs-bi__bridge-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 0 0 var(--space-2);
  color: var(--color-text);
}

.lcs-bi__bridge-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.lcs-bi__bridge-link {
  color: #6A9FC4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lcs-bi__bridge-link:hover,
.lcs-bi__bridge-link:focus-visible {
  color: #4A7FA4;
}

/* Tablet / Mobile: 1 カラム化 */
@media (max-width: 1023px) {
  .lcs-bi__showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .lcs-bi__bridge {
    padding: var(--space-2);
  }

  .lcs-bi__bridge-text {
    font-size: 0.875rem;
  }
}
