/* =====================================================
   CSS Variables — B Pattern (Light)
   ===================================================== */
:root {
  --bg: #f0efeb;
  --bg-alt: #e8e6e0;
  --text: #2C3341;
  --text-muted: rgba(0, 0, 51, 0.5);
  --accent: #2C3341;
  --border: rgba(0, 0, 51, 0.1);
  --nav-bg: rgba(240, 239, 235, 0.94);
  --photo-fallback: #e8e6e0;

  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans-jp: 'Noto Sans JP', sans-serif;
  --font-garamond: 'EB Garamond', Georgia, serif;
  --font-jost: 'Jost', sans-serif;

  --nav-h: 96px;
  --max-w: 1200px;
  --section-py: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans-jp);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* =====================================================
   Section Fade
   ===================================================== */
.section-fade {
  /* 常時表示：JSに依存しない */
}

/* =====================================================
   Section Head
   ===================================================== */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 26px;
}

.section-head--center {
  align-items: center;
  text-align: center;
}

.section-head__label {
  font-family: var(--font-sans-jp);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.section-head__en {
  font-family: var(--font-garamond);
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

/* =====================================================
   Hover Line
   ===================================================== */
.hover-line {
  position: relative;
}

.hover-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s ease;
}

.hover-line:hover::after {
  width: 100%;
}

/* =====================================================
   Tags
   ===================================================== */
.tag {
  display: inline-block;
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  background: #2C3341;
  color: #ffffff;
  border: none;
  padding: 3px 10px;
  border-radius: 2px;
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  display: block;
  overflow: hidden;
  height: 1.4em;
  font-family: var(--font-jost);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav__link:hover {
  opacity: 1;
}

.nav__link-inner {
  display: block;
  transition: transform 0.3s ease;
}

.nav__link:hover .nav__link-inner {
  transform: translateY(-100%);
}

.nav__link-inner::after {
  content: attr(data-label);
  display: block;
  transform: translateY(100%);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-symbol-fixed {
  position: fixed;
  right: -18%;
  bottom: -18%;
  width: 80vw;
  height: 80vw;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  color: #2C3341;
}

.page-symbol-fixed svg {
  width: 100%;
  height: 100%;
  color: #2C3341;
  overflow: visible;
}

.page-symbol-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-h);
  padding-bottom: 15vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.hero__eyebrow {
  font-family: var(--font-jost);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #f07800;
  margin-top: 20px;
  margin-bottom: 0;
}

.hero__heading {
  font-family: var(--font-serif-jp);
  font-weight: 200;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.5;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.hero__right {
  max-width: 420px;
  padding-bottom: 8px;
}

.hero__lead {
  font-size: 14px;
  line-height: 2;
  color: rgba(0, 0, 51, 0.85);
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.hero__scroll-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 51, 0.25);
}

.hero__scroll-text {
  font-family: var(--font-jost);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* =====================================================
   TICKER
   ===================================================== */
.news {
  padding: 16px 0;
  background: #dddbd4;
  border-top: none;
  border-bottom: 1px solid rgba(0, 0, 51, 0.2);
}

.news__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.news__header {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0.25rem;
}

.news__header .section-head__label {
  line-height: 1;
  margin-bottom: 0;
}

.news__title {
  font-family: var(--font-garamond);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin: 0;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.news__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 51, 0.3);
  overflow: hidden;
}

.news__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.news__body {
  padding: 0.4rem 1rem 1.6rem;
}

.news__date {
  background: #2C3341;
  color: #ffffff;
  padding: 1px 6px;
  font-size: 10px;
  font-family: var(--font-jost);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.news__text {
  font-family: var(--font-sans-jp);
  font-size: 12px;
  color: var(--text);
  line-height: 1.6;
  min-height: calc(12px * 1.6 * 3); /* 3行分 = 57.6px */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =====================================================
   PHILOSOPHY
   ===================================================== */
.philosophy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--section-py) / 2) 40px;
  align-items: start;
  color: var(--text);
}

.philosophy__quote {
  font-family: var(--font-serif-jp);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.9;
  border-left: 4px solid #f07800;
  padding-left: 20px;
  margin-bottom: 28px;
  color: var(--text);
  font-style: normal;
}

.philosophy__text {
  font-size: 14px;
  line-height: 2;
  color: rgba(0, 0, 51, 0.8);
  margin-bottom: 16px;
}

.philosophy__text:last-child { margin-bottom: 0; }

/* Cards */
.philosophy__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.philosophy__card {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}

.philosophy__card-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 16px;
}

.philosophy__card-icon svg {
  width: 100%;
  height: 100%;
}

/* background-position アニメーションでテキストに干渉せず左→右グラデーションを実現 */
.philosophy__card-title {
  font-family: var(--font-serif-jp);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding: 12px 16px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(
    to right,
    #636d82 0%,
    #4a5368 40%,
    #2C3341 55%,
    #2C3341 100%
  );
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position 0.6s ease;
}

.philosophy__card:hover .philosophy__card-title {
  background-position: left center;
}

.philosophy__card-text {
  font-family: var(--font-sans-jp);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(44, 51, 65, 0.85);
  padding: 14px 16px;
  border-left: 1.5px solid #2C3341;
}


/* =====================================================
   SERVICES
   ===================================================== */
.services {
  position: relative;
  z-index: 1;
  background: var(--bg-alt);
  padding: calc(var(--section-py) / 2) 0 calc(var(--section-py) / 4);
  border-top: 1px solid var(--border);
  color: var(--text);
}

.services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.services__inner > .section-head {
  margin-bottom: 28px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 51, 0.08);
}

.service-card__image {
  background: #f0efeb;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__num {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.service-card__en {
  font-family: var(--font-garamond);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}

.service-card__title {
  font-family: var(--font-sans-jp);
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  word-break: break-word;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0, 0, 51, 0.8);
  word-break: break-word;
}

/* =====================================================
   PHOTO BREAK
   ===================================================== */
.photo-break {
  position: relative;
  z-index: 1;
  background: #2C3341;
  border-top: none;
  border-bottom: none;
  padding: 0 max(20px, calc((100vw - var(--max-w)) / 2 + 40px));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}

.photo-break__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: -98px;
  margin-right: -49px;  /* シンボル右〜テキスト間スペースを半分に */
  height: 228px;        /* SVG上下の透明余白を半分にクリップ(90px→45px) */
  overflow: hidden;
}

.photo-break__logo-img {
  width: 360px;
  height: auto;
  display: block;
  background: transparent;
}

.photo-break__content {
  text-align: left;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.photo-break__catch {
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  word-break: break-word;
}

.photo-break__body {
  font-family: var(--font-sans-jp);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #ffffff;
  word-break: break-word;
}

/* =====================================================
   CLIENTS
   ===================================================== */
.clients {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: var(--section-py) 0;
  color: var(--text);
}

.clients__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid rgba(0, 0, 51, 0.12);
}

.clients__card {
  padding: 48px 40px;
  background: transparent;
  border-right: 0.5px solid rgba(0, 0, 51, 0.12);
  border-bottom: 0.5px solid rgba(0, 0, 51, 0.12);
  transition: opacity 0.3s;
}

.clients__card:last-child { border-right: none; }

.clients__card:hover {
  opacity: 0.7;
}

.clients__icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.6;
}

.clients__icon svg {
  width: 100%;
  height: 100%;
}

.clients__num {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.clients__name-en {
  font-family: var(--font-garamond);
  font-style: italic;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.clients__name-ja {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--section-py) / 2) 40px calc(var(--section-py) / 2);
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--text);
}

.about__text {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(0, 0, 51, 0.75);
  margin-bottom: 48px;
}

.about__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.about__table th,
.about__table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  vertical-align: top;
}

.about__table th {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  width: 140px;
  padding-right: 20px;
}

.about__table td { color: var(--text); }

.clients-logo-row {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.clients-label {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  width: 140px;
  padding-right: 20px;
  flex-shrink: 0;
  margin: 0;
}

.clients-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.clients-logos img {
  width: auto;
  flex-shrink: 0;
  opacity: 1;
  filter: none;
  object-fit: contain;
  background: #ffffff;
  padding: 4px 8px;
}

.clients-logos img[alt="Sony Music Solutions"] {
  height: 56px;
}

.clients-logos img[alt="Classmethod"] {
  height: 56px;
}

.clients-logos img[alt="Red Horse Corporation"] {
  height: 68px;
}

@media (max-width: 600px) {
  .clients-logos {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .clients-logos img {
    height: auto !important;
    max-height: 36px;
    flex-shrink: 0;
  }
}

.about__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.08;
  color: var(--text);
  overflow: visible;
}

.about__symbol svg {
  width: 80%;
  max-width: 320px;
  height: auto;
  color: #2C3341;
  overflow: visible;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  position: relative;
  z-index: 1;
  background: #2C3341;
  padding: calc(var(--section-py) / 2) max(20px, calc((100vw - var(--max-w)) / 2 + 40px)) calc(var(--section-py) / 2);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  word-break: keep-all;
}

.contact .section-head__label {
  color: rgba(255, 255, 255, 0.6);
}

.contact .section-head__en {
  color: #ffffff;
}

.contact__lead {
  font-family: var(--font-serif-jp);
  font-size: 22px;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 16px;
  border-left: 4px solid #f07800;
  padding-left: 20px;
}

.contact__sub {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

.contact__form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.form-label {
  font-family: var(--font-jost);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 0.3rem;
  white-space: nowrap;
}

.form-label .required { color: rgba(255, 255, 255, 0.6); margin-left: 2px; }

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: var(--font-sans-jp);
  font-size: 14px;
  font-weight: 300;
  padding: 0.3rem 0;
  outline: none;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}

textarea.form-input {
  min-height: 60px;
  height: 60px;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8);
}

.form-input.error {
  border-bottom-color: #e05;
}

.form-submit {
  align-self: flex-start;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 0.6rem 2rem;
  margin-top: 0.25rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.form-submit:hover {
  border-color: #ffffff;
  color: #2C3341;
  background: #ffffff;
}

.form-notice {
  font-size: 13px;
  color: var(--text-muted);
  min-height: 1.5em;
}

.form-notice.success { color: #f5a623; }
.form-notice.error { color: #e05; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  position: relative;
  z-index: 1;
  border-top: none;
  padding: 24px 40px;
  background: #e8e6e0;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__name {
  font-family: var(--font-jost);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #2C3341;
}


.footer__copy {
  font-family: var(--font-jost);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #2C3341;
}

/* ── カルーセルボタン：PCでは非表示 ── */
.carousel-next { display: none; }

/* =====================================================
   RESPONSIVE — Tablet (≤1024px)
   ===================================================== */
@media (max-width: 1024px) {
  :root { --section-py: 56px; }

  .philosophy { gap: 48px; }

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

  .service-item { grid-template-columns: 160px 1fr; gap: 28px; }

  .about { gap: 48px; }
}

/* =====================================================
   RESPONSIVE — Mobile (≤768px)
   ===================================================== */
@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
    --section-py: 44px;
  }

  .nav__inner { padding: 0 20px; }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(240, 239, 235, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
  }

  .nav__links.is-open { display: flex; }

  .nav__link {
    font-size: 18px;
    height: auto;
    overflow: visible;
  }

  .nav__hamburger { display: flex; }

  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 80px;
    gap: 32px;
  }

  .hero__right { max-width: 100%; }

  .philosophy {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: var(--section-py) 24px;
  }

  .services__inner { padding: 0 20px; }

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

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .photo-break {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 24px 48px;
    text-align: center;
  }

  .photo-break__logo {
    margin-left: 0;
    margin-right: 0;
    height: 143px;   /* 320px幅でのSVG透明余白をクリップ */
    overflow: hidden;
  }

  .photo-break__content { text-align: center; }

  .photo-break__logo-img { width: 320px; }

  .clients { padding: var(--section-py) 0; }

  .clients__inner { padding: 0 20px; }

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

  .clients__card { border-right: none; }

  .about {
    grid-template-columns: 1fr;
    padding: var(--section-py) 24px;
    gap: 48px;
  }

  .about__symbol { display: none; }

  .cta__corner--tl { top: 24px; left: 24px; }
  .cta__corner--tr { top: 24px; right: 24px; }
  .cta__corner--bl { bottom: 24px; left: 24px; }
  .cta__corner--br { bottom: 24px; right: 24px; }

  /* ── カルーセル共通 ── */
  .carousel-wrap {
    position: relative;
  }

  .carousel-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #2C3341;
    color: #ffffff;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    opacity: 0.85;
  }

  /* ── News カルーセル ── */
  .news__inner { padding: 0 0 0 16px; }

  .news__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-right: 48px;
  }

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

  .news__card {
    flex: 0 0 80%;
    scroll-snap-align: start;
    max-width: none;
  }

  /* ── Services カルーセル ── */
  .services__inner { padding: 0 0 0 20px; }

  .services__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-right: 48px;
  }

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

  .service-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .contact {
    grid-template-columns: 1fr;
    padding: var(--section-py) 24px;
    gap: 48px;
    word-break: keep-all;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .form-label { padding-top: 0; }

  .footer {
    padding: 20px 20px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-head__en { font-size: 32px; }
}
