/*
Theme Name: seppi-renewal
Theme URI: https://seppi.tokyo/
Author: SEPPI
Description: SEPPI renewal theme
Version: 1.0.0
Text Domain: seppi-renewal
*/

@charset "UTF-8";

:root {
  --color-text: #171717;
  --color-text-soft: #6b655f;
  --color-border: rgba(23, 23, 23, 0.10);
  --color-bg: #ffffff;
  --color-bg-soft: #f6f2ed;
  --color-bg-footer: #171717;
  --color-accent: #111111;
  --color-white: #ffffff;

  --font-sans: "Helvetica Neue", "Arial", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-serif: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;

  --container: 1320px;
  --transition: all 0.3s ease;
}

/* ========================================
   Reset / Base
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd {
  margin: 0;
}

main {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ========================================
   Common Layout
======================================== */
.l-wrap {
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
}

.section-space {
  padding: 88px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.section-head__main {
  flex: 1 1 auto;
}

.section-head__eyebrow {
  margin-bottom: 10px;
  color: var(--color-text-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.section-head__desc {
  margin-top: 8px;
  color: var(--color-text-soft);
  font-size: 13px;
  line-height: 1.8;
}

.section-head__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-head__link::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.section-head__link:hover::after {
  transform: translateX(4px);
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.20);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.c-btn::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.2s ease;
}

.c-btn:hover::after {
  transform: translateX(4px);
}

.c-btn--dark {
  color: #fff;
  background: #1b1b1b;
  border-color: #1b1b1b;
}

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

.c-btn--line {
  color: var(--color-text);
  border-color: rgba(23,23,23,0.16);
  background: transparent;
}

.c-btn--line:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ========================================
   Header
======================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
  min-height: 132px;
  display: grid;
  grid-template-columns: 340px 1fr 280px;
  align-items: center;
  gap: 20px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: auto;
  height: 82px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: #111;
  transition: width 0.25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 18px;
}

.site-lang {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  white-space: nowrap;
}

.site-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 60px;
  padding: 0 24px;
  background: #1b1b1b;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-contact-btn:hover {
  background: #333;
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  align-items: center;
  justify-content: center;
  justify-self: end;
  position: relative;
  cursor: pointer;
  appearance: none;
}

.hamburger__line {
  position: absolute;
  width: 24px;
  height: 1.5px;
  background: #111;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger__line:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger__line:nth-child(2) {
  transform: translateY(0);
}

.hamburger__line:nth-child(3) {
  transform: translateY(7px);
}

.site-header.is-menu-open .hamburger__line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.site-header.is-menu-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .hamburger__line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* ========================================
   Hero
======================================== */
.top-page {
  overflow: hidden;
}

.hero {
  position: relative;
  padding-top: 132px;
  background: #f6f2ed;
}

.hero__media {
  position: relative;
  min-height: 660px;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,248,242,0.92) 0%, rgba(255,248,242,0.75) 26%, rgba(255,248,242,0.16) 58%, rgba(255,248,242,0.04) 100%);
  z-index: 1;
}

.hero__media img {
  width: 100%;
  height: 660px;
  object-fit: cover;
}

.hero__inner {
  position: absolute;
  inset: 132px 0 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero__content {
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
  pointer-events: auto;
}

.hero__copy {
  max-width: 470px;
  padding-top: 24px;
}

.hero__sub {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.9;
}

.hero__title {
  margin-bottom: 22px;
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__text {
  max-width: 340px;
  margin-bottom: 26px;
  color: var(--color-text-soft);
  font-size: 12px;
  line-height: 2;
}

.hero__button {
  display: inline-flex;
}

/* ========================================
   Businesses
======================================== */
.business {
  padding: 8px 0 0;
  background: #fff;
}

.business .section-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  margin-bottom: 24px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(23,23,23,0.08);
}

.business-card {
  position: relative;
  display: block;
  min-height: 380px;
  color: #fff;
  overflow: hidden;
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.30) 42%, rgba(0,0,0,0.08) 100%);
  z-index: 1;
}

.business-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
}

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

.business-card__body {
  position: absolute;
  inset: auto 22px 18px 22px;
  z-index: 2;
}

.business-card__num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.business-card__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.business-card__ja {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.10em;
}

.business-card__more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.business-card__more::after {
  content: "→";
  font-size: 13px;
  transition: transform 0.2s ease;
}

.business-card:hover .business-card__more::after {
  transform: translateX(4px);
}

/* ========================================
   Our Values
======================================== */
.values {
  background: #fff;
}

.values__grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.values__intro {
  padding: 34px 34px 38px 0;
  border-right: 1px solid var(--color-border);
}

.values__intro-title {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.values__intro-sub {
  margin-bottom: 16px;
  color: var(--color-text-soft);
  font-size: 12px;
}

.values__intro-text {
  max-width: 280px;
  color: var(--color-text-soft);
  font-size: 12px;
  line-height: 2;
}

.values__intro-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.values__intro-link::after {
  content: "→";
  font-size: 13px;
}

.value-item {
  padding: 34px 24px 38px;
  border-right: 1px solid var(--color-border);
}

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

.value-item__num {
  display: block;
  margin-bottom: 24px;
  color: rgba(23,23,23,0.36);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.10em;
}

.value-item__title {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.value-item__text {
  color: var(--color-text-soft);
  font-size: 11px;
  line-height: 1.95;
}

/* ========================================
   Brands & Services
======================================== */
.brands-services {
  background: #fff;
}

.brands-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.brand-card {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  background: #ddd;
  color: #fff;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.48) 100%);
  z-index: 1;
}

.brand-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.brand-card:hover img {
  transform: scale(1.06);
}

.brand-card__body {
  position: absolute;
  inset: auto 18px 16px 18px;
  z-index: 2;
}

.brand-card__name {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-card__cat {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brands-all {
  min-height: 112px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.brands-all a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brands-all a::after {
  content: "→";
  font-size: 14px;
}

.brands-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.brands-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(23,23,23,0.18);
}

.brands-dots span.is-active {
  background: rgba(23,23,23,0.72);
}

/* ========================================
   News / Journal
======================================== */
.news-journal {
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.news-card {
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.news-card__inner {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: start;
}

.news-card__thumb img {
  width: 82px;
  height: 82px;
  object-fit: cover;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--color-text-soft);
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.news-card__title {
  color: var(--color-text);
  font-size: 12px;
  line-height: 1.9;
}

.news-card__arrow {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.news-card__arrow::after {
  content: "→";
}

/* ========================================
   Bottom Links
======================================== */
.bottom-links {
  padding: 28px 0 0;
  background: #fff;
}

.bottom-links__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bottom-panel {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.bottom-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bottom-panel--dark::before {
  background: linear-gradient(90deg, rgba(17,17,17,0.94) 0%, rgba(17,17,17,0.76) 45%, rgba(17,17,17,0.20) 100%);
}

.bottom-panel--light::before {
  background: linear-gradient(90deg, rgba(247,243,238,0.98) 0%, rgba(247,243,238,0.90) 48%, rgba(247,243,238,0.34) 100%);
}

.bottom-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-panel__content {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, 420px);
  padding: 42px 0;
  margin-left: 34px;
}

.bottom-panel--dark .bottom-panel__content {
  color: #fff;
}

.bottom-panel__eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bottom-panel__title {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.bottom-panel__text {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 2;
}

/* ========================================
   Footer
======================================== */
.site-footer {
  background: var(--color-bg-footer);
  color: rgba(255,255,255,0.80);
  padding: 38px 0 16px;
}

.site-footer__inner {
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 34px;
  align-items: start;
}

.site-footer__brand {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fff;
}

.site-footer__menus {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.site-footer__title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__menu li + li {
  margin-top: 6px;
}

.site-footer__menu a {
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  line-height: 1.8;
}

.site-footer__menu a:hover {
  color: #fff;
}

.site-footer__bottom {
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer__copy,
.site-footer__legal a {
  color: rgba(255,255,255,0.54);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__sns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__sns a {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  font-size: 10px;
}

.site-footer__sns a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.36);
}

/* ========================================
   Tablet
======================================== */
@media screen and (max-width: 1200px) {
  .site-header__inner {
    width: min(100% - 40px, 1360px);
    min-height: 108px;
    grid-template-columns: 280px 1fr 220px;
  }

  .site-logo img {
    height: 66px;
  }

  .site-nav ul {
    gap: 28px;
  }

  .site-contact-btn {
    min-height: 54px;
  }

  .hero {
    padding-top: 108px;
  }

  .hero__inner {
    inset: 108px 0 0 0;
  }

  .business-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

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

  .values__intro {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-right: 0;
  }

  .value-item:nth-child(3),
  .value-item:nth-child(5) {
    border-right: none;
  }

  .brands-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__menus {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   Mobile
======================================== */
@media screen and (max-width: 768px) {
  .l-wrap,
  .site-footer__inner {
    width: min(100% - 32px, var(--container));
  }

  .section-space {
    padding: 64px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 24px;
  }

  .section-head__title {
    font-size: 24px;
  }

  .site-header__inner {
    width: min(100% - 20px, 1360px);
    min-height: 82px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .site-logo img {
    height: 48px;
  }

  .site-nav,
  .site-header__actions {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 82px);
    background: rgba(255,255,255,0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .site-header.is-menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav__inner {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 28px 0 40px;
  }

  .mobile-nav__menu ul {
    border-top: 1px solid var(--color-border);
  }

  .mobile-nav__menu li {
    border-bottom: 1px solid var(--color-border);
  }

  .mobile-nav__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-nav__menu a::after {
    content: "→";
    font-size: 14px;
  }

  .mobile-nav__actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mobile-nav__lang {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-soft);
  }

  .mobile-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    background: #111;
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-contact-btn:hover {
    background: #333;
  }

  .hero {
    padding-top: 82px;
  }

  .hero__inner {
    position: relative;
    inset: auto;
    display: block;
  }

  .hero__media,
  .hero__media img {
    min-height: 420px;
    height: 420px;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(255,248,242,0.12) 0%, rgba(255,248,242,0.86) 72%, rgba(255,248,242,0.96) 100%);
  }

  .hero__content {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
  }

  .hero__copy {
    position: relative;
    z-index: 3;
    margin-top: -84px;
    max-width: 100%;
    padding: 28px 20px 0;
    background: transparent;
  }

  .hero__sub {
    font-size: 12px;
  }

  .hero__title {
    font-size: 38px;
    line-height: 1;
  }

  .hero__text {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.95;
  }

  .business-grid,
  .news-grid,
  .brands-row,
  .site-footer__menus {
    grid-template-columns: 1fr;
  }

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

  .values__intro,
  .value-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-left: 0;
    padding-right: 0;
  }

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

  .business-card,
  .business-card img {
    min-height: 360px;
  }

  .brand-card,
  .brand-card img,
  .brands-all {
    min-height: 120px;
    height: 120px;
  }

  .news-card__inner {
    grid-template-columns: 72px 1fr;
  }

  .news-card__thumb img {
    width: 72px;
    height: 72px;
  }

  .bottom-links__grid {
    grid-template-columns: 1fr;
  }

  .bottom-panel {
    min-height: 220px;
  }

  .bottom-panel__content {
    width: min(100% - 32px, 420px);
    margin-left: 16px;
    padding: 30px 0;
  }

  .bottom-panel__title {
    font-size: 28px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    font-size: 30px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================================
   Lower Page Common
======================================== */
.sub-page {
  background: #fff;
}

.sub-hero {
  position: relative;
  padding-top: 132px;
  background: #f6f2ed;
}

.sub-hero__media {
  position: relative;
  min-height: 420px;
}

.sub-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,248,242,0.92) 0%, rgba(255,248,242,0.74) 28%, rgba(255,248,242,0.18) 58%, rgba(255,248,242,0.06) 100%);
  z-index: 1;
}

.sub-hero__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.sub-hero__inner {
  position: absolute;
  inset: 132px 0 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.sub-hero__content {
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
  padding-top: 12px;
}

.sub-hero__eyebrow {
  margin-bottom: 12px;
  color: var(--color-text-soft);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sub-hero__title {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sub-hero__lead {
  max-width: 420px;
  color: var(--color-text-soft);
  font-size: 13px;
  line-height: 2;
}

.sub-section {
  padding: 88px 0;
}

.sub-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
}

.sub-grid--intro {
  grid-template-columns: 0.95fr 1.05fr;
}

.sub-section__head {
  position: relative;
}

.sub-section__eyebrow {
  margin-bottom: 10px;
  color: var(--color-text-soft);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sub-section__title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.sub-section__body {
  min-width: 0;
}

.sub-section__text {
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 2.05;
}

.sub-section__text + .sub-section__text {
  margin-top: 18px;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.company-stat {
  padding: 18px 20px;
  border-top: 1px solid var(--color-border);
  background: #faf8f5;
}

.company-stat__label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-stat__value {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.info-table-wrap {
  border-top: 1px solid var(--color-border);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid var(--color-border);
}

.info-table th,
.info-table td {
  padding: 20px 0;
  vertical-align: top;
  text-align: left;
}

.info-table th {
  width: 180px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.info-table td {
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.95;
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.business-tags li {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  background: #faf8f5;
  color: var(--color-text);
  font-size: 12px;
  line-height: 1.4;
}

.company-panels {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
}

.company-panel {
  padding: 24px;
  border: 1px solid var(--color-border);
  background: #faf8f5;
}

.company-panel__eyebrow {
  margin-bottom: 8px;
  color: var(--color-text-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-panel__title {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.company-panel__text {
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.9;
}

.company-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(23,23,23,0.08);
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.company-list li:last-child {
  border-bottom: none;
}

.access-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: #faf8f5;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.access-card__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.access-card__body {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.access-card__zip {
  margin-bottom: 10px;
  color: var(--color-text-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.access-card__address {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.35;
}

.access-card__note {
  color: var(--color-text-soft);
  font-size: 13px;
  line-height: 2;
}

.page-cta {
  padding: 0 0 96px;
}

.page-cta__panel {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  color: #fff;
}

.page-cta__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.74) 44%, rgba(17,17,17,0.22) 100%);
  z-index: 1;
}

.page-cta__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.page-cta__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
}

.page-cta__eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-cta__title {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
}

.page-cta__text {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.82);
}

/* ========================================
   Lower Page Responsive
======================================== */
@media screen and (max-width: 1200px) {
  .sub-grid,
  .sub-grid--intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .company-panels {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .sub-hero {
    padding-top: 82px;
  }

  .sub-hero__inner {
    position: relative;
    inset: auto;
    display: block;
  }

  .sub-hero__media,
  .sub-hero__media img {
    min-height: 320px;
    height: 320px;
  }

  .sub-hero__media::after {
    background: linear-gradient(180deg, rgba(255,248,242,0.12) 0%, rgba(255,248,242,0.84) 76%, rgba(255,248,242,0.96) 100%);
  }

  .sub-hero__content {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 26px 0 0;
  }

  .sub-hero__title {
    font-size: 34px;
  }

  .sub-hero__lead {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.95;
  }

  .sub-section {
    padding: 64px 0;
  }

  .sub-section__title {
    font-size: 24px;
  }

  .company-stats {
    grid-template-columns: 1fr;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    padding: 12px 0;
  }

  .info-table th {
    padding-bottom: 2px;
  }

  .info-table td {
    padding-top: 0;
    padding-bottom: 16px;
  }

  .access-card {
    grid-template-columns: 1fr;
  }

  .access-card__media img {
    min-height: 220px;
  }

  .access-card__body {
    padding: 24px 20px;
  }

  .access-card__address {
    font-size: 24px;
  }

  .page-cta {
    padding: 0 0 72px;
  }

  .page-cta__panel,
  .page-cta__media img {
    min-height: 280px;
    height: 280px;
  }

  .page-cta__content {
    width: min(100% - 32px, var(--container));
    max-width: 100%;
  }

  .page-cta__title {
    font-size: 28px;
  }

  .page-cta__text {
    font-size: 12px;
    line-height: 1.9;
  }
}

/* ========================================
   Contact Page
======================================== */
.contact-keyfacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.contact-keyfact {
  padding: 18px 20px;
  border-top: 1px solid var(--color-border);
  background: #faf8f5;
}

.contact-keyfact__label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-keyfact__value {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.contact-form-wrap {
  padding: 34px 34px 38px;
  border: 1px solid var(--color-border);
  background: #faf8f5;
}

.contact-form-wrap label {
  display: block;
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 12px;
  line-height: 1.8;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form-col {
  min-width: 0;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="url"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(23,23,23,0.14);
  background: #fff;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.7;
  border-radius: 0;
  appearance: none;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="url"],
.contact-form-wrap select {
  min-height: 54px;
}

.contact-form-wrap textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: rgba(23,23,23,0.34);
}

.contact-consent,
.contact-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
  color: var(--color-text-soft);
  font-size: 12px;
  line-height: 1.8;
}

.contact-consent input,
.contact-form-consent input {
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-submit,
.contact-form-submit {
  margin-top: 24px;
}

.contact-form-wrap input[type="submit"],
.contact-form-submit input[type="submit"],
.contact-submit input[type="submit"] {
  min-width: 160px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.contact-form-wrap input[type="submit"]:hover,
.contact-form-submit input[type="submit"]:hover,
.contact-submit input[type="submit"]:hover {
  background: #333;
  border-color: #333;
}

.contact-fallback__lead {
  margin-bottom: 18px;
  color: var(--color-text-soft);
  font-size: 13px;
  line-height: 1.9;
}

.contact-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-panel {
  padding: 24px;
  border: 1px solid var(--color-border);
  background: #faf8f5;
}

.contact-panel__eyebrow {
  margin-bottom: 8px;
  color: var(--color-text-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel__title {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(23,23,23,0.08);
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.85;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--color-border);
  background: #faf8f5;
  overflow: hidden;
}

.contact-info-card__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.contact-info-card__body {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-card__label {
  margin-bottom: 8px;
  color: var(--color-text-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info-card__title {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-info-card__text {
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 2;
}

.contact-info-card__text + .contact-info-card__text {
  margin-top: 10px;
}

/* Contact Form 7 補助 */
.contact-form-wrap .wpcf7 {
  width: 100%;
}

.contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.contact-form-wrap .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #b30000;
  font-size: 12px;
}

.contact-form-wrap .wpcf7 form .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-width: 1px;
  font-size: 12px;
  line-height: 1.8;
}

/* ========================================
   Contact Page Responsive
======================================== */
@media screen and (max-width: 1200px) {
  .contact-panels {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .contact-keyfacts,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px 20px 28px;
  }

  .contact-info-card {
    grid-template-columns: 1fr;
  }

  .contact-info-card__media img {
    min-height: 220px;
  }

  .contact-info-card__body {
    padding: 24px 20px;
  }

  .contact-info-card__title {
    font-size: 24px;
  }
}

/* ========================================
   Concept / Business Page
======================================== */
.concept-statement {
  margin-top: 28px;
  padding: 24px 26px;
  border-top: 1px solid var(--color-border);
  background: #faf8f5;
}

.concept-statement__eyebrow {
  margin-bottom: 10px;
  color: var(--color-text-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concept-statement__text {
  color: var(--color-text);
  font-size: 15px;
  line-height: 2;
}

.concept-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.concept-principle {
  padding: 24px;
  border-top: 1px solid var(--color-border);
  background: #faf8f5;
}

.concept-principle__num {
  display: block;
  margin-bottom: 18px;
  color: rgba(23,23,23,0.36);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.10em;
}

.concept-principle__title {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.concept-principle__text {
  color: var(--color-text-soft);
  font-size: 13px;
  line-height: 2;
}

.business-features {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.business-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--color-border);
}

.business-feature:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.business-feature--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.business-feature--reverse .business-feature__media {
  order: 2;
}

.business-feature--reverse .business-feature__body {
  order: 1;
}

.business-feature__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.business-feature__body {
  min-width: 0;
}

.business-feature__eyebrow {
  margin-bottom: 10px;
  color: var(--color-text-soft);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.business-feature__title {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.business-feature__lead {
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.9;
}

.business-feature__text {
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 2.05;
}

.cross-values {
  border-top: 1px solid var(--color-border);
}

.cross-value-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.cross-value-item__mark {
  color: rgba(23,23,23,0.42);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1;
}

.cross-value-item__text {
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.95;
}

/* ========================================
   Concept / Business Responsive
======================================== */
@media screen and (max-width: 1200px) {
  .concept-principles__grid {
    grid-template-columns: 1fr;
  }

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

  .business-feature--reverse .business-feature__media,
  .business-feature--reverse .business-feature__body {
    order: initial;
  }
}

@media screen and (max-width: 768px) {
  .concept-statement {
    padding: 20px;
  }

  .concept-statement__text {
    font-size: 14px;
    line-height: 1.95;
  }

  .concept-principle {
    padding: 20px;
  }

  .concept-principle__title {
    font-size: 22px;
  }

  .business-features {
    gap: 34px;
  }

  .business-feature {
    gap: 18px;
    padding-bottom: 34px;
  }

  .business-feature__media img {
    height: 280px;
  }

  .business-feature__title {
    font-size: 30px;
  }

  .business-feature__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .business-feature__text {
    font-size: 13px;
    line-height: 2;
  }

  .cross-value-item {
    grid-template-columns: 20px 1fr;
    gap: 10px;
  }
}

/* =========================================================
   Motion Support for common.js
   このブロックを style.css の一番下に追記
========================================================= */

:root{
  --header-height-pc: 118px;
  --header-height-sp: 78px;
  --motion-ease: cubic-bezier(.22,1,.36,1);
  --motion-fast: .28s;
  --motion-base: .38s;
  --motion-slow: .8s;
  --shadow-soft: 0 18px 40px rgba(0,0,0,.08);
  --shadow-header: 0 10px 30px rgba(0,0,0,.06);
  --mobile-nav-bg: rgba(250,248,245,.98);
}

/* ---------------------------------------------------------
   Base motion polish
--------------------------------------------------------- */
html{
  scroll-padding-top: var(--header-height-pc);
}

body{
  overflow-x: hidden;
}

body.is-menu-open{
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

body.is-ready .site-header,
body.is-ready .hero,
body.is-ready .top-hero,
body.is-ready .sub-hero{
  visibility: visible;
}

/* ---------------------------------------------------------
   Header scroll / menu state
--------------------------------------------------------- */
.site-header{
  transition:
    background-color .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease,
    border-color .35s ease;
}

.site-header.is-scrolled{
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-menu-open{
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__inner{
  position: relative;
  z-index: 20;
}

.site-logo img{
  transition: transform .35s ease, opacity .35s ease;
}

.site-logo:hover img{
  transform: translate3d(0,-1px,0);
}

.site-nav a,
.site-contact-btn,
.mobile-contact-btn,
.btn,
.business-card,
.news-card,
.brand-card,
.bottom-link{
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background-color .35s ease,
    border-color .35s ease,
    color .35s ease,
    opacity .35s ease;
}

/* ---------------------------------------------------------
   Hamburger
--------------------------------------------------------- */
.hamburger{
  position: relative;
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  transition: background-color .25s ease, transform .25s ease;
}

.hamburger:hover{
  background: rgba(0,0,0,.04);
}

.hamburger:focus-visible{
  outline: 2px solid rgba(0,0,0,.24);
  outline-offset: 2px;
}

.hamburger__line{
  position: absolute;
  left: 50%;
  width: 24px;
  height: 1.5px;
  margin-left: -12px;
  background: #111;
  border-radius: 999px;
  transform-origin: center center;
  transition:
    transform .32s var(--motion-ease),
    opacity .22s ease,
    top .32s var(--motion-ease),
    background-color .25s ease;
}

.hamburger__line:nth-child(1){
  top: 18px;
}

.hamburger__line:nth-child(2){
  top: 25px;
}

.hamburger__line:nth-child(3){
  top: 32px;
}

.site-header.is-menu-open .hamburger__line:nth-child(1){
  top: 25px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .hamburger__line:nth-child(2){
  opacity: 0;
}

.site-header.is-menu-open .hamburger__line:nth-child(3){
  top: 25px;
  transform: rotate(-45deg);
}

/* ---------------------------------------------------------
   Mobile nav
--------------------------------------------------------- */
.mobile-nav{
  position: fixed;
  top: var(--header-height-pc);
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--header-height-pc));
  background: var(--mobile-nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,0,0,.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0,-12px,0);
  transition:
    opacity .32s ease,
    visibility .32s ease,
    transform .32s var(--motion-ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
}

.site-header.is-menu-open .mobile-nav{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0,0,0);
}

.mobile-nav__inner{
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  padding: 28px 0 40px;
}

.mobile-nav__menu ul{
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0,0,0,.08);
}

.mobile-nav__menu li{
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.mobile-nav__menu a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 2px;
  color: #111;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: .03em;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}

.mobile-nav__menu a::after{
  content: "→";
  display: inline-block;
  margin-left: 16px;
  font-size: 14px;
  opacity: .55;
  transform: translate3d(0,0,0);
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-nav__menu a:hover{
  opacity: .78;
}

.mobile-nav__menu a:hover::after{
  opacity: 1;
  transform: translate3d(4px,0,0);
}

.mobile-nav__menu a:focus-visible{
  outline: 2px solid rgba(0,0,0,.18);
  outline-offset: 2px;
}

.mobile-nav__actions{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
}

.mobile-nav__lang{
  color: rgba(23,23,23,.62);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mobile-contact-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-contact-btn:hover{
  background: #222;
  border-color: #222;
}

/* ---------------------------------------------------------
   Reveal animation companion
--------------------------------------------------------- */
.hero__eyebrow,
.hero__title,
.hero__text,
.hero__buttons,
.top-hero__eyebrow,
.top-hero__title,
.top-hero__text,
.top-hero__buttons,
.section-head,
.section-heading,
.sub-hero__eyebrow,
.sub-hero__title,
.sub-hero__text,
.business-card,
.value-card,
.concept-principle,
.brand-card,
.news-card,
.bottom-link,
.sub-section,
.info-table,
.company-panel,
.contact-panel,
.contact-form-wrap,
.contact-info-card,
.contact-keyfact,
.business-feature,
.cross-values__item,
.page-cta,
.access-card,
.business-scope__item,
.company-profile__item,
.news-item,
.brand-slide{
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.is-inview{
  opacity: 1 !important;
  transform: translate3d(0,0,0) !important;
}

/* ---------------------------------------------------------
   Parallax image companion
--------------------------------------------------------- */
.hero__media,
.top-hero__visual,
.sub-hero__media,
.business-card__image,
.brand-card__image,
.news-card__image{
  overflow: hidden;
}

.hero__media img,
.top-hero__visual img,
.sub-hero__media img{
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
}

/* ---------------------------------------------------------
   Card / button hover polish
--------------------------------------------------------- */
.business-card,
.news-card,
.brand-card,
.bottom-link{
  transform: translate3d(0,0,0);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.business-card:hover,
.news-card:hover,
.brand-card:hover,
.bottom-link:hover{
  box-shadow: var(--shadow-soft);
}

.btn:focus-visible,
.site-contact-btn:focus-visible,
.mobile-contact-btn:focus-visible,
.business-card:focus-visible,
.news-card:focus-visible,
.brand-card:focus-visible,
.bottom-link:focus-visible,
.page-top-button:focus-visible{
  outline: 2px solid rgba(0,0,0,.20);
  outline-offset: 3px;
}

/* ---------------------------------------------------------
   Page top button companion
--------------------------------------------------------- */
.page-top-button{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.page-top-button:hover{
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}

/* ---------------------------------------------------------
   Optional subtle hover on section media
--------------------------------------------------------- */
.top-hero__visual img,
.sub-hero__media img,
.business-feature__media img,
.access-card__media img{
  transition: transform .8s var(--motion-ease), filter .4s ease;
}

.business-feature:hover .business-feature__media img,
.access-card:hover .access-card__media img{
  transform: scale(1.03);
}

/* ---------------------------------------------------------
   Anchor targets
--------------------------------------------------------- */
section[id],
div[id]{
  scroll-margin-top: calc(var(--header-height-pc) + 20px);
}

/* ---------------------------------------------------------
   WordPress admin bar support
--------------------------------------------------------- */
body.admin-bar .site-header{
  top: 32px;
}

body.admin-bar .mobile-nav{
  top: calc(var(--header-height-pc) + 32px);
  height: calc(100dvh - var(--header-height-pc) - 32px);
}

@media screen and (max-width: 782px){
  body.admin-bar .site-header{
    top: 46px;
  }

  body.admin-bar .mobile-nav{
    top: calc(var(--header-height-sp) + 46px);
    height: calc(100dvh - var(--header-height-sp) - 46px);
  }
}

/* ---------------------------------------------------------
   Tablet / mobile
--------------------------------------------------------- */
@media screen and (min-width: 769px){
  .mobile-nav{
    display: none !important;
  }

  .hamburger{
    display: none !important;
  }
}

@media screen and (max-width: 1024px){
  html{
    scroll-padding-top: 96px;
  }

  section[id],
  div[id]{
    scroll-margin-top: 112px;
  }
}

@media screen and (max-width: 768px){
  html{
    scroll-padding-top: var(--header-height-sp);
  }

  .site-header__inner{
    min-height: var(--header-height-sp);
  }

  .site-logo img{
    max-height: 46px;
    width: auto;
  }

  .site-nav,
  .site-header__actions{
    display: none !important;
  }

  .hamburger{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav{
    top: var(--header-height-sp);
    height: calc(100dvh - var(--header-height-sp));
    display: block;
  }

  .mobile-nav__inner{
    width: min(100% - 28px, 720px);
    padding: 20px 0 28px;
  }

  .mobile-nav__menu a{
    min-height: 58px;
    font-size: 16px;
  }

  .mobile-contact-btn{
    width: 100%;
  }

  .page-top-button{
    right: 14px !important;
    bottom: 14px !important;
    width: 56px !important;
    height: 56px !important;
  }

  section[id],
  div[id]{
    scroll-margin-top: calc(var(--header-height-sp) + 14px);
  }
}

/* ---------------------------------------------------------
   Reduced motion
--------------------------------------------------------- */
@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after{
    animation: none !important;
    transition: none !important;
  }

  .hero__media img,
  .top-hero__visual img,
  .sub-hero__media img{
    transform: none !important;
  }

  .mobile-nav{
    transform: none !important;
  }
}

/* =========================================================
   /concept-business/ 4事業領域の非表示対策
========================================================= */
.concept-business-page .business-feature,
.concept-business-page .business-feature__media,
.concept-business-page .business-feature__content{
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  display: block;
}

.concept-business-page .business-feature{
  display: grid !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 48px;
}

.concept-business-page .business-feature--reverse .business-feature__media{
  order: 2;
}

.concept-business-page .business-feature--reverse .business-feature__content{
  order: 1;
}

.concept-business-page .business-feature__media{
  overflow: hidden;
}

.concept-business-page .business-feature__media img{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.concept-business-page .business-feature__content{
  width: 100%;
}

@media screen and (max-width: 1024px){
  .concept-business-page .business-feature{
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .concept-business-page .business-feature--reverse .business-feature__media,
  .concept-business-page .business-feature--reverse .business-feature__content{
    order: initial;
  }

  .concept-business-page .business-feature__media img{
    min-height: 420px;
  }
}

@media screen and (max-width: 768px){
  .concept-business-page .business-feature__media img{
    min-height: 320px;
  }
}
