.footer-meta{display:flex;flex-direction:column;align-items:flex-end;gap:8px;min-width:0;font-family:var(--sans)}
.footer-meta>a{font-size:12px;text-decoration:underline;text-underline-offset:4px}
.footer-meta>small{font-size:10px;white-space:nowrap}
@media(max-width:760px){.footer-meta{align-items:center}}

@font-face {
  font-family: "Minato Display";
  src:
    local("Honoka Shin Mincho"),
    local("Honoka Shin Mincho L"),
    local("ほのか新明朝");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@property --loader-hole {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}

:root {
  --blue: #315d84;
  --blue-deep: #274f73;
  --blue-soft: #eaf3f8;
  --blue-section: #dfeaf1;
  --ink: #26313a;
  --muted: #68737a;
  --gold: #c9a84f;
  --ivory: #faf8f3;
  --white: #fff;
  --display: "Minato Display", "YuMincho +36p Kana", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --text: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --latin-serif: Baskerville, Georgia, serif;
  --serif: var(--display);
  --sans: var(--text);
  --content: 1280px;
  --side: clamp(28px, 4.7vw, 68px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--text);
  font-feature-settings: "palt" 1;
  font-synthesis: none;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

html.loader-bypass .loading-screen {
  display: none !important;
}

html.loader-bypass body.is-loading {
  overflow: auto;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue-deep);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.mobile-only {
  display: none;
}

.brand-copy strong,
.menu-button small,
.menu-inner a,
.hero h1,
.hero-content > p,
.awards-thanks,
.award-main h2,
.award-main p,
.award-badge p,
.about-copy h2,
.section-heading h2,
.centered-heading > p:not(.heading-ornament),
.service-copy h3,
.strength-grid h3,
.works-header h2,
.work-card h3,
.contact-copy h2,
.contact-copy strong,
.site-footer p {
  font-family: var(--display);
}

.strength-number,
.contact-phone b {
  font-family: var(--latin-serif);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.loading-curtain {
  --loader-hole: 0px;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.055), transparent 28%),
    #315d84;
  -webkit-mask-image: radial-gradient(circle at center, transparent 0 var(--loader-hole), #000 calc(var(--loader-hole) + 2px));
  mask-image: radial-gradient(circle at center, transparent 0 var(--loader-hole), #000 calc(var(--loader-hole) + 2px));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: --loader-hole 0.48s cubic-bezier(0.68, 0, 0.32, 1);
}

.loading-orbit {
  position: relative;
  width: clamp(168px, 14vw, 210px);
  aspect-ratio: 1;
  color: rgba(190, 222, 239, 0.52);
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 0.65s ease,
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.loading-ring {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: loading-ring-spin 5.2s linear infinite;
}

.loading-ring text {
  fill: currentColor;
  font-family: var(--text);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.loading-screen.is-active .loading-orbit {
  opacity: 1;
  transform: scale(1);
}

.loading-screen.is-preview .loading-curtain {
  --loader-hole: clamp(46px, 4.2vw, 62px);
}

.loading-screen.is-revealing .loading-curtain {
  --loader-hole: 150vmax;
  transition-duration: 1.05s;
  transition-timing-function: cubic-bezier(0.72, 0, 0.16, 1);
}

.loading-screen.is-revealing .loading-orbit {
  opacity: 0;
  transform: scale(14);
  transition:
    transform 1.08s cubic-bezier(0.72, 0, 0.16, 1),
    opacity 0.3s ease 0.7s;
}

.loading-screen.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0s linear 0.24s;
}

@keyframes loading-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  --header-bar-height: 78px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 168px;
  pointer-events: none;
  transition: height 0.76s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: var(--header-bar-height);
  content: "";
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(39, 79, 115, 0.1);
  box-shadow: 0 8px 28px rgba(31, 49, 63, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-105%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    opacity 0.58s ease,
    transform 0.76s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled {
  height: var(--header-bar-height);
}

.site-header.is-scrolled::before {
  opacity: 1;
  transform: translateY(0);
}

.header-brush {
  position: absolute;
  top: 0;
  left: 0;
  width: min(1060px, 73.2vw);
  height: 180px;
  overflow: visible;
  fill: none;
  transform-origin: top left;
  transition:
    opacity 0.58s ease,
    transform 0.76s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .header-brush {
  opacity: 0;
  transform: translateY(-14px) scaleY(0.82);
}

.header-brush-main {
  fill: rgba(255, 255, 255, 0.96);
}

.header-brush-stroke {
  fill: none;
  stroke: rgba(255, 255, 255, 0.38);
  stroke-linecap: round;
  stroke-width: 9px;
  filter: url(#brush-fine);
}

.header-brush-stroke-soft {
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 5px;
}

.brand {
  position: absolute;
  top: 41px;
  left: clamp(32px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 20px;
  pointer-events: auto;
  transition:
    top 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.76s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .brand {
  top: calc(var(--header-bar-height) / 2);
  left: var(--side);
  gap: 12px;
  transform: translateY(-50%);
}

.brand-mark {
  width: 72px;
  height: 52px;
  object-fit: contain;
  transition:
    width 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.76s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .brand-mark {
  width: 52px;
  height: 40px;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  color: #202a31;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.1;
  transition:
    font-size 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.76s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .brand-copy strong {
  font-size: 24px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  transition:
    margin 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    font-size 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.48s ease;
}

.site-header.is-scrolled .brand-copy small {
  margin-top: 3px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
}

.menu-button {
  position: absolute;
  top: 18px;
  right: var(--side);
  display: block;
  width: 136px;
  height: 136px;
  padding: 0;
  overflow: hidden;
  background: #315c87;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(28, 68, 104, 0.18);
  cursor: pointer;
  pointer-events: auto;
  transition:
    top 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    right 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.48s ease,
    transform 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear;
}

.menu-button:hover {
  transform: translateY(-2px);
}

.menu-button-art {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

.menu-button-art img {
  position: absolute;
  top: 54%;
  left: 50%;
  width: 156%;
  height: 156%;
  max-width: none;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.menu-button:hover .menu-button-art img {
  filter: saturate(1.06) brightness(0.98);
  transform: translate(-50%, -50%) scale(1.015);
}

.header-nav {
  position: absolute;
  top: 0;
  right: var(--side);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(7px, 1vw, 16px);
  height: var(--header-bar-height);
  font-family: var(--sans);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.52s ease,
    transform 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.76s;
}

.header-nav a {
  position: relative;
  padding: 9px clamp(5px, 0.55vw, 10px);
  color: #354650;
  border-radius: 999px;
  font-size: clamp(11.5px, 0.88vw, 13.5px);
  font-weight: 500;
  letter-spacing: 0.065em;
  line-height: 1.4;
  white-space: nowrap;
  transition:
    color 0.38s ease,
    background-color 0.38s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-nav a:not(.header-nav-contact):hover {
  color: var(--blue);
  background: rgba(65, 105, 138, 0.07);
  transform: translateY(-1px);
}

.header-nav-contact {
  min-width: 108px;
  padding: 11px 19px !important;
  color: #fff !important;
  background: var(--blue);
  box-shadow: 0 7px 18px rgba(45, 88, 125, 0.17);
  text-align: center;
}

.header-nav-contact:hover {
  background: var(--blue-deep);
  box-shadow: 0 10px 23px rgba(45, 88, 125, 0.22);
  transform: translateY(-2px);
}

section[id] {
  scroll-margin-top: 94px;
}

@media (min-width: 1100px) {
  .site-header.is-scrolled .header-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0.14s, 0.14s, 0s;
  }

  .site-header.is-scrolled .menu-button {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.72);
    transition-delay: 0s, 0s, 0s, 0s, 0s, 0s, 0.56s;
  }
}

@media (max-width: 1099px) {
  .site-header {
    --header-bar-height: 72px;
  }

  .header-nav {
    display: none;
  }

  .site-header.is-scrolled .brand {
    top: calc(var(--header-bar-height) / 2);
    left: var(--side);
    gap: 10px;
  }

  .site-header.is-scrolled .brand-mark {
    width: 46px;
    height: 35px;
  }

  .site-header.is-scrolled .brand-copy strong {
    font-size: 21px;
  }

  .site-header.is-scrolled .brand-copy small {
    margin-top: 2px;
    font-size: 9px;
  }

  .site-header.is-scrolled .menu-button {
    top: 10px;
    right: var(--side);
    width: 52px;
    height: 52px;
  }
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(145deg, #315f87, #244c70);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.menu-close {
  position: absolute;
  top: 26px;
  right: var(--side);
  width: 70px;
  height: 70px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.menu-inner {
  display: grid;
  min-width: min(520px, calc(100vw - 56px));
  text-align: center;
}

.menu-eyebrow {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.35em;
}

.menu-inner a {
  padding: 15px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(22px, 2.3vw, 34px);
  letter-spacing: 0.14em;
  transition: letter-spacing 0.25s ease, background 0.25s ease;
}

.menu-inner a:hover {
  background: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.19em;
}

.hero {
  position: relative;
  height: clamp(690px, 57vw, 820px);
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: #c6b493;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 51%;
  transform: scale(1.015);
}

.hero-poster {
  z-index: 0;
}

.hero-video {
  z-index: 0;
  display: block;
  pointer-events: none;
  background: transparent;
  opacity: 0;
  will-change: opacity;
  transition: opacity 1.1s cubic-bezier(0.45, 0, 0.25, 1);
}

.hero-video.is-visible,
.hero-video.is-entering {
  opacity: 1;
}

.hero-video.is-visible {
  z-index: 1;
}

.hero-video.is-entering {
  z-index: 2;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(24, 38, 45, 0.12), transparent 28%, transparent 72%, rgba(24, 38, 45, 0.1)),
    linear-gradient(180deg, rgba(28, 42, 48, 0.05) 0 38%, rgba(24, 38, 45, 0.2));
}

.hero-content {
  position: absolute;
  top: 43%;
  left: 50%;
  z-index: 4;
  width: min(1800px, calc(100% - 80px));
  text-align: center;
  text-shadow: 0 2px 12px rgba(31, 42, 45, 0.22);
  transform: translate(-50%, -35%);
}

.hero h1 {
  margin: 0;
  font-size: clamp(31px, 4.8vw, 76px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-content > p {
  margin: 22px 0 0;
  font-size: clamp(25px, 2.55vw, 38px);
  letter-spacing: 0.13em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 55px;
  text-shadow: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 326px;
  min-height: 76px;
  padding: 18px 28px;
  border: 1px solid rgba(49, 93, 132, 0.13);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(39, 64, 82, 0.14);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.outline-button:hover,
.contact-pill:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button span,
.outline-button span {
  margin-left: auto;
  font-size: 18px;
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 12px 28px rgba(39, 79, 115, 0.25);
}

.button-light {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
}

.button-light:hover {
  background: #fff;
  box-shadow: 0 12px 28px rgba(39, 64, 82, 0.2);
}

.section-blue,
.contact {
  --section-bg: var(--blue-soft);
  position: relative;
  background: var(--section-bg);
}

.section-wave {
  position: absolute;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 130px;
  pointer-events: none;
}

.section-wave-top {
  top: -88px;
}

.section-wave-bottom {
  bottom: -88px;
}

.section-wave .wave-fill {
  fill: var(--section-bg);
  filter: url(#brush-rough);
}

.section-wave .wave-white {
  fill: #fff;
}

.section-wave .wave-ivory {
  fill: var(--ivory);
}

.section-wave .wave-stroke {
  fill: none;
  stroke: rgba(255, 255, 255, 0.68);
  stroke-linecap: round;
  stroke-width: 8px;
  stroke-dasharray: 480 10 280 7 520 13;
  filter: url(#brush-rough) drop-shadow(0 13px 0 rgba(255, 255, 255, 0.28));
}

.section-wave.hero-wave {
  top: -60px;
  height: 140px;
}

.hero-wave .wave-fill {
  fill: url(#hero-wave-blue);
  filter: url(#brush-fine);
}

.hero-wave-stroke {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  filter: url(#brush-fine);
}

.hero-wave-stroke-main {
  stroke-width: 5px;
  opacity: 0.38;
}

.hero-wave-stroke-soft {
  stroke-width: 2px;
  opacity: 0.25;
}

.award-gallery {
  --gallery-gap: 24px;
  position: relative;
  isolation: isolate;
  z-index: 4;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 16px;
}

.award-gallery-track,
.award-gallery-group {
  display: flex;
  align-items: center;
}

.award-gallery-track {
  position: relative;
  z-index: 1;
  width: -webkit-max-content;
  width: max-content;
  min-width: -webkit-max-content;
  min-width: max-content;
}

.award-gallery-top .award-gallery-track {
  transform: translateX(0);
  animation: award-gallery-left 84s linear infinite;
}

.award-gallery-bottom .award-gallery-track {
  transform: translateX(-50%);
  animation: award-gallery-right 84s linear infinite;
}

.award-gallery-bottom {
  z-index: 5;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(47, 82, 105, 0.018) 0 0.7px, transparent 0.8px 4px),
    linear-gradient(100deg, #eaf2f6 0%, #e5eef3 55%, #dce8ef 100%);
}

.award-gallery::before,
.award-gallery::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: 5%;
  pointer-events: none;
}

.award-gallery::before {
  left: 0;
  background: linear-gradient(90deg, #eaf2f6, rgba(234, 242, 246, 0));
}

.award-gallery::after {
  right: 0;
  background: linear-gradient(270deg, #dce8ef, rgba(220, 232, 239, 0));
}

.award-gallery-group {
  flex: 0 0 auto;
  width: -webkit-max-content;
  width: max-content;
  gap: var(--gallery-gap);
  padding-right: var(--gallery-gap);
}

.award-photo {
  position: relative;
  flex: 0 0 auto;
  width: clamp(250px, 20vw, 310px);
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 9px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(123, 154, 174, 0.2);
  border-radius: 8px;
  box-shadow:
    0 16px 28px rgba(43, 76, 97, 0.13),
    0 3px 8px rgba(43, 76, 97, 0.08);
  transform: rotate(-0.65deg);
}

.award-photo:nth-child(2n) {
  transform: rotate(0.7deg);
}

.award-photo:nth-child(3n) {
  transform: rotate(-0.25deg) translateY(3px);
}

.award-photo::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 11px;
  background: rgba(210, 181, 104, 0.25);
  border: 1px solid rgba(190, 157, 73, 0.13);
  transform: translateX(-50%) rotate(-1.5deg);
}

.award-photo::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 3px;
  pointer-events: none;
}

.award-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

@keyframes award-gallery-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes award-gallery-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.awards {
  z-index: 4;
  height: auto;
  min-height: 1040px;
  padding: 78px 0 68px;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.34), transparent 33%),
    repeating-radial-gradient(circle at 0 0, rgba(47, 82, 105, 0.018) 0 0.7px, transparent 0.8px 4px),
    linear-gradient(100deg, #eaf2f6 0%, #e5eef3 55%, #dce8ef 100%);
}

.awards-inner {
  position: relative;
  z-index: 4;
  width: min(1200px, 100%);
  margin: 28px auto 34px;
  padding-inline: var(--side);
  text-align: center;
}

.awards-thanks {
  margin: 0 0 0;
  font-size: 19px;
  letter-spacing: 0.18em;
}

.awards-thanks span {
  color: var(--gold);
}

.award-main {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 235px;
  margin-top: -10px;
}

.award-main > div {
  position: relative;
  z-index: 2;
  min-width: 560px;
}

.award-main > .laurel {
  position: relative;
  z-index: 1;
}

.award-person {
  position: absolute;
  bottom: 0;
  z-index: 0;
  margin: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 79%,
    rgba(0, 0, 0, 0.98) 82%,
    rgba(0, 0, 0, 0.82) 86%,
    rgba(0, 0, 0, 0.5) 89.5%,
    rgba(0, 0, 0, 0.22) 92%,
    rgba(0, 0, 0, 0.06) 94%,
    transparent 96%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 79%,
    rgba(0, 0, 0, 0.98) 82%,
    rgba(0, 0, 0, 0.82) 86%,
    rgba(0, 0, 0, 0.5) 89.5%,
    rgba(0, 0, 0, 0.22) 92%,
    rgba(0, 0, 0, 0.06) 94%,
    transparent 96%,
    transparent 100%
  );
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-position: center;
}

.award-person img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 18px rgba(39, 79, 115, 0.14));
}

.award-person-woman {
  left: 0;
  width: 180px;
  height: 285px;
}

.award-person-man {
  right: 0;
  width: 215px;
  height: 285px;
}

.award-main h2 {
  margin: 0;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.08em;
}

.award-main h2 strong {
  font-size: 83px;
  font-weight: 400;
}

.award-main p {
  margin: 5px 0 15px;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.award-ribbon {
  position: relative;
  display: inline-block;
  min-width: 278px;
  padding: 5px 34px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 1.5;
}

.award-ribbon::before,
.award-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

.award-ribbon::before {
  right: 100%;
  border-right: 16px solid var(--blue);
}

.award-ribbon::after {
  left: 100%;
  border-left: 16px solid var(--blue);
}

.laurel {
  width: 175px;
  color: var(--gold);
}

.laurel-left {
  clip-path: inset(0 50% 0 0);
  margin-right: -78px;
}

.laurel-right {
  clip-path: inset(0 0 0 50%);
  margin-left: -78px;
}

.award-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.award-badge {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 178px;
}

.award-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--gold);
}

.award-badge > div {
  position: relative;
  z-index: 1;
  padding-top: 7px;
}

.award-badge h3 {
  min-height: 48px;
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.award-badge h3 small {
  color: #b86850;
  font-size: 11px;
}

.award-badge p {
  margin: 3px 0 0;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.award-badge strong {
  color: #b98f29;
  font-size: 29px;
  font-weight: 400;
}

.about {
  position: relative;
  z-index: auto;
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 605px;
  background: #fff;
}

.about-copy {
  position: relative;
  z-index: 5;
  align-self: center;
  width: 100%;
  min-width: 0;
  padding: 54px 46px 54px max(var(--side), calc((100vw - 1224px) / 2));
}

.about-copy h2 {
  margin: 0 0 34px;
  font-size: clamp(34px, 3.15vw, 47px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.about-copy h2 span {
  display: block;
  white-space: nowrap;
}

.about-copy p {
  margin: 0 0 13px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.035em;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  min-width: 290px;
  min-height: 58px;
  margin-top: 23px;
  padding: 11px 20px 11px 28px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #7fa1bd;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, background 0.25s ease;
}

.outline-button:hover {
  background: #f3f8fb;
}

.about-photo {
  position: relative;
  z-index: 5;
  min-height: 605px;
  overflow: hidden;
  clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 100%);
}

.about-photo::after {
  content: "";
  position: absolute;
  top: -18%;
  left: -9%;
  width: 28%;
  height: 142%;
  background: rgba(255, 255, 255, 0.17);
  transform: rotate(8deg);
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.85) brightness(1.08);
}

.about-photo[data-about-parallax] img {
  --about-parallax-y: 0px;
  top: -5%;
  bottom: auto;
  height: 110%;
  transform: translate3d(0, var(--about-parallax-y), 0);
  will-change: transform;
}

.services {
  position: relative;
  z-index: 5;
  min-height: 760px;
  padding: 47px var(--side) 60px;
  background: var(--ivory);
  background-image:
    radial-gradient(circle at 72% 15%, rgba(255, 255, 255, 0.7), transparent 29%),
    repeating-radial-gradient(circle at 0 0, rgba(101, 83, 55, 0.012) 0 0.7px, transparent 0.8px 4px);
}

.section-heading h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1.45;
}

.centered-heading {
  text-align: center;
}

.centered-heading > p:not(.heading-ornament) {
  margin: 7px 0 0;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.heading-ornament {
  display: inline-block;
  margin: 0 0 -2px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 26px;
  line-height: 1;
  transform: rotate(-18deg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 42px;
  width: min(var(--content), 100%);
  margin: 37px auto 0;
}

.service-card {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-width: 0;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(49, 93, 132, 0.16);
}

.service-card > img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 5px;
}

.service-card:first-child > img {
  object-position: 49% 77%;
}

.service-copy {
  min-width: 0;
}

.service-copy h3 {
  margin: 12px 0 10px;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.service-copy p {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.service-copy .service-en {
  color: #6d8492;
  font-family: var(--latin-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
}

@media (max-width: 1100px) {
  .service-grid { gap: 26px; }
  .service-card { gap: 18px; }
  .service-card > img { height: 200px; }
  .service-copy h3 { font-size: 23px; }
  .service-copy p { font-size: 13px; }
}

@media (max-width: 800px) {
  .service-grid { grid-template-columns: 1fr; max-width: 650px; }
  .service-card { grid-template-columns: 44% minmax(0, 1fr); gap: 24px; }
  .service-card > img { height: 220px; }
}

@media (max-width: 480px) {
  .service-grid { gap: 22px; }
  .service-card { grid-template-columns: 42% minmax(0, 1fr); gap: 18px; padding-bottom: 22px; }
  .service-card > img { height: 165px; }
  .service-copy h3 { font-size: 22px; margin: 8px 0; }
  .service-copy p { font-size: 12px; }
  .service-copy .service-en { font-size: 10px; letter-spacing: 0.12em; }
}

.manufacturer-marquee {
  width: min(var(--content), 100%);
  margin: 46px auto 0;
}

.manufacturer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 13px;
  color: #6f8797;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.manufacturer-label::before,
.manufacturer-label::after {
  width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(188, 154, 65, 0.62));
}

.manufacturer-label::after {
  transform: scaleX(-1);
}

.manufacturer-viewport {
  --manufacturer-gap: 18px;
  overflow: hidden;
  padding: 10px 0 17px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.manufacturer-track,
.manufacturer-group {
  display: flex;
  align-items: center;
}

.manufacturer-track {
  width: max-content;
  animation: manufacturer-flow 96s linear infinite;
  will-change: transform;
}

.manufacturer-group {
  flex: none;
  gap: var(--manufacturer-gap);
  padding-right: var(--manufacturer-gap);
}

.manufacturer-logo {
  display: grid;
  place-items: center;
  flex: 0 0 190px;
  width: 190px;
  height: 88px;
  margin: 0;
  padding: 13px 21px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 252, 0.92));
  border: 1px solid rgba(71, 113, 142, 0.12);
  border-radius: 13px;
  box-shadow:
    0 9px 22px rgba(45, 72, 88, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.manufacturer-logo img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: contain;
}

.manufacturer-logo img[src$="lixil.svg"] {
  width: 145px;
  height: 51px;
}

@keyframes manufacturer-flow {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.strength {
  --section-bg: var(--blue-section);
  z-index: auto;
  min-height: 496px;
  padding: 14px var(--side) 34px;
  background-image:
    radial-gradient(circle at 77% 31%, rgba(255, 255, 255, 0.28), transparent 34%),
    repeating-radial-gradient(circle at 0 0, rgba(47, 82, 105, 0.018) 0 0.7px, transparent 0.8px 4px);
}

.strength-inner {
  position: relative;
  z-index: 4;
  width: min(1110px, 100%);
  margin: 0 auto;
}

.compact-heading h2 {
  font-size: 41px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 82px;
  margin-top: 24px;
}

.strength-grid article {
  position: relative;
  text-align: center;
}

.strength-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 3px;
  filter: saturate(0.88) brightness(1.03);
}

.strength-grid article:nth-child(1) img {
  object-position: 55% 37%;
}

.strength-grid article:nth-child(2) img {
  object-position: center 40%;
}

.strength-grid article:nth-child(3) img {
  object-position: 58% center;
}

.strength-number {
  position: absolute;
  top: -25px;
  left: -8px;
  z-index: 2;
  color: #7ba2b9;
  font-size: 21px;
  font-style: italic;
}

.strength-number::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 26px;
  width: 34px;
  border-top: 1px solid #c4a049;
  transform: rotate(-62deg);
}

.strength-grid h3 {
  margin: 13px 0 3px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.065em;
}

.strength-grid p {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
}

.voices {
  position: relative;
  z-index: 2;
  padding: 98px var(--side) 126px;
  background-color: #fff;
  background-image:
    radial-gradient(circle at 7% 17%, rgba(143, 194, 222, 0.3) 0 42px, rgba(143, 194, 222, 0.12) 43px 65px, transparent 92px),
    radial-gradient(circle at 16% 76%, rgba(138, 203, 182, 0.26) 0 31px, rgba(138, 203, 182, 0.1) 32px 49px, transparent 70px),
    radial-gradient(circle at 88% 16%, rgba(227, 194, 115, 0.24) 0 57px, rgba(227, 194, 115, 0.09) 58px 88px, transparent 119px),
    radial-gradient(circle at 94% 70%, rgba(163, 202, 224, 0.24) 0 96px, rgba(163, 202, 224, 0.08) 97px 145px, transparent 194px),
    radial-gradient(circle at 75% 91%, rgba(222, 172, 179, 0.18) 0 36px, rgba(222, 172, 179, 0.07) 37px 58px, transparent 82px),
    radial-gradient(circle at 38% 32%, rgba(143, 194, 222, 0.1) 0 25px, transparent 64px),
    repeating-radial-gradient(circle at 0 0, rgba(47, 82, 105, 0.012) 0 0.7px, transparent 0.8px 4px);
}

.voices-inner {
  position: relative;
  z-index: 4;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.voice-slider {
  --voice-slider-gap: 28px;
  --voice-slider-peek: clamp(76px, 8vw, 132px);
  position: relative;
  width: min(980px, calc(100% - var(--voice-slider-peek) - var(--voice-slider-peek)));
  margin: 46px auto 0;
}

.voice-slider-viewport {
  width: calc(100% + var(--voice-slider-peek) + var(--voice-slider-peek));
  padding: 12px var(--voice-slider-peek);
  margin-inline: calc(0px - var(--voice-slider-peek));
  overflow: hidden;
  overscroll-behavior-x: contain;
  border-radius: 28px;
  outline-offset: 5px;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.voice-slider-track {
  display: flex;
  align-items: stretch;
  gap: var(--voice-slider-gap);
  width: 100%;
  will-change: transform;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.voice-slider-track.is-jump {
  transition: none;
}

.voice-slider-track.is-jump .voice-card {
  transition: none;
}

.voice-card {
  display: grid;
  flex: 0 0 calc((100% - var(--voice-slider-gap)) / 2);
  grid-template-columns: 162px minmax(0, 1fr);
  grid-template-areas:
    "photo lead"
    "details details";
  column-gap: 25px;
  row-gap: 23px;
  min-width: 0;
  padding: 25px 25px 27px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(49, 93, 132, 0.11);
  border-radius: 21px;
  box-shadow:
    0 14px 38px rgba(41, 70, 88, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transition:
    opacity 620ms ease,
    filter 720ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.voice-slider.is-ready .voice-card {
  opacity: 0;
  filter: blur(3px) saturate(0.76);
  pointer-events: none;
  transform: scale(0.94);
}

.voice-slider.is-ready .voice-card.is-visible {
  z-index: 2;
  opacity: 1;
  filter: none;
  pointer-events: auto;
  transform: scale(1);
}

.voice-slider.is-ready .voice-card.is-peek {
  z-index: 1;
  opacity: 0.42;
  filter: blur(1.8px) saturate(0.82);
  transform: scale(0.955);
}

.voice-photo {
  grid-area: photo;
  width: 162px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #e8f0f4;
  border-radius: 15px;
}

.voice-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(1.015);
  user-select: none;
  -webkit-user-drag: none;
}

.voice-card-h .voice-photo img {
  object-position: center 42%;
}

.voice-card-s .voice-photo img {
  object-position: center 38%;
}

.voice-lead {
  grid-area: lead;
  align-self: center;
  min-width: 0;
}

.voice-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.045em;
}

.voice-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 12px;
  margin: 11px 0 0;
  color: #6d7c85;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.5;
}

.voice-meta strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.voice-meta span {
  padding-left: 12px;
  border-left: 1px solid rgba(49, 93, 132, 0.2);
}

.voice-details {
  display: grid;
  grid-area: details;
  gap: 17px;
  margin: 0;
  padding-top: 21px;
  border-top: 1px solid rgba(49, 93, 132, 0.13);
}

.voice-details > div {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
}

.voice-details dt {
  position: relative;
  padding-left: 17px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.8;
}

.voice-details dt::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.voice-details dd {
  margin: 0;
  color: #44525b;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.95;
  letter-spacing: 0.015em;
}

.voice-slider-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.voice-slider.is-ready .voice-slider-controls {
  display: flex;
}

.voice-slider-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(49, 93, 132, 0.27);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(41, 70, 88, 0.07);
  transition:
    color 280ms ease,
    background-color 280ms ease,
    border-color 280ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  place-items: center;
}

.voice-slider-arrow:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.voice-slider-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.voice-slider-dot {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
  place-items: center;
}

.voice-slider-dot::before {
  width: 7px;
  height: 7px;
  content: "";
  background: rgba(49, 93, 132, 0.28);
  border-radius: 999px;
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 280ms ease;
}

.voice-slider-dot.is-active::before {
  width: 24px;
  background: var(--blue);
}

.voice-slider-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .voices {
    padding: 92px var(--side) 112px;
  }

  .voice-slider {
    --voice-slider-gap: 22px;
    --voice-slider-peek: clamp(38px, 7vw, 58px);
    width: min(680px, calc(100% - 32px));
    margin-inline: auto;
  }

  .voice-card {
    flex-basis: 100%;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .voice-card {
    grid-template-columns: 126px minmax(0, 1fr);
    column-gap: 18px;
    padding: 21px;
  }

  .voice-photo {
    width: 126px;
  }

  .voice-card h3 {
    font-size: 22px;
  }

  .voice-details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (max-width: 620px) {
  .voices {
    padding: 74px var(--side) 96px;
    background-image:
      radial-gradient(circle at 3% 13%, rgba(143, 194, 222, 0.28) 0 31px, rgba(143, 194, 222, 0.1) 32px 47px, transparent 66px),
      radial-gradient(circle at 96% 19%, rgba(227, 194, 115, 0.22) 0 39px, rgba(227, 194, 115, 0.08) 40px 59px, transparent 82px),
      radial-gradient(circle at 8% 75%, rgba(138, 203, 182, 0.22) 0 24px, rgba(138, 203, 182, 0.08) 25px 37px, transparent 54px),
      radial-gradient(circle at 103% 78%, rgba(163, 202, 224, 0.23) 0 67px, rgba(163, 202, 224, 0.08) 68px 101px, transparent 136px),
      radial-gradient(circle at 74% 94%, rgba(222, 172, 179, 0.16) 0 27px, rgba(222, 172, 179, 0.06) 28px 42px, transparent 58px);
  }

  .voice-slider {
    --voice-slider-gap: 14px;
    --voice-slider-peek: clamp(30px, 9vw, 44px);
    width: calc(100% - 24px);
    margin-top: 32px;
  }

  .voice-slider-viewport {
    width: 100vw;
    padding-inline: var(--voice-slider-peek);
    margin-inline: 0;
    margin-left: 50%;
    transform: translateX(-50%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7px, #000 calc(100% - 7px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 7px, #000 calc(100% - 7px), transparent 100%);
  }

  .voice-slider.is-ready .voice-card.is-peek {
    opacity: 0.56;
    filter: blur(0.75px) saturate(0.88);
    transform: scale(0.97);
  }

  .voice-card {
    grid-template-columns: 96px minmax(0, 1fr);
    column-gap: 15px;
    row-gap: 17px;
    padding: 16px 16px 19px;
    border-radius: 16px;
  }

  .voice-photo {
    width: 96px;
    border-radius: 11px;
  }

  .voice-card h3 {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.025em;
  }

  .voice-meta {
    gap: 3px 7px;
    margin-top: 6px;
    font-size: 9px;
  }

  .voice-meta strong {
    width: 100%;
    font-size: 12px;
  }

  .voice-meta span {
    padding-left: 0;
    border-left: 0;
  }

  .voice-details {
    gap: 15px;
    padding-top: 16px;
  }

  .voice-details > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .voice-details dt {
    font-size: 11px;
  }

  .voice-details dd {
    font-size: 13px;
    line-height: 1.85;
  }

  .voice-slider-controls {
    gap: 9px;
    margin-top: 22px;
  }

  .voice-slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

}

.works {
  position: relative;
  z-index: auto;
  min-height: 610px;
  padding: 70px var(--side) 45px;
  background: var(--ivory);
  background-image:
    radial-gradient(circle at 24% 77%, rgba(255, 255, 255, 0.68), transparent 31%),
    repeating-radial-gradient(circle at 0 0, rgba(101, 83, 55, 0.012) 0 0.7px, transparent 0.8px 4px);
}

.works-header {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1250px, 100%);
  margin: 0 auto 34px;
}

.works-header h2 {
  margin: 0;
  font-size: 43px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.small-button {
  min-width: 170px;
  min-height: 46px;
  margin: 0;
  padding: 8px 17px 8px 22px;
  font-size: 12px;
}

.works-carousel {
  position: relative;
  width: min(1250px, 100%);
  margin: 0 auto;
}

.works-track {
  display: grid;
  grid-auto-columns: calc((100% - 75px) / 4);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 25px;
  overflow: auto hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.works-track::-webkit-scrollbar {
  display: none;
}

.work-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 6px;
}

.work-card:first-child img {
  object-position: 52% 76%;
}

.work-card h3 {
  margin: 13px 0 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.065em;
}

.work-card p {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}

.carousel-arrow {
  position: absolute;
  top: 126px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0 0 5px;
  color: #6c98b6;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(49, 71, 85, 0.15);
  font-family: var(--sans);
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover {
  color: var(--blue);
  transform: scale(1.06);
}

.carousel-prev {
  left: -39px;
}

.carousel-next {
  right: -39px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.carousel-dots span {
  width: 9px;
  height: 9px;
  background: #a9a9a6;
  border-radius: 50%;
}

.carousel-dots .active {
  background: var(--blue);
}

.contact {
  --section-bg: #dceaf2;
  z-index: 4;
  min-height: 340px;
  background-color: var(--section-bg);
  background-image: url("./images/minato-craftsperson.webp");
  background-position: center 41%;
  background-size: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(220, 234, 242, 0.99) 0%, rgba(220, 234, 242, 0.97) 47%, rgba(220, 234, 242, 0.76) 60%, rgba(220, 234, 242, 0.12) 78%, rgba(220, 234, 242, 0) 100%);
}

.contact-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 345px minmax(620px, 1fr);
  align-items: end;
  gap: 20px;
  width: min(1280px, calc(100% - 2 * var(--side)));
  min-height: 340px;
  margin: 0 auto;
  padding: 50px 0 36px;
}

.contact-copy {
  transform: translateY(clamp(-34px, -2vw, -20px));
}

.contact-copy h2 {
  margin: 0 0 15px;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.contact-copy p {
  margin: 0 0 23px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.85;
}

.contact-copy strong {
  color: var(--blue);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 1px;
}

.contact-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 330px;
  min-height: 112px;
  padding: 17px 23px;
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(37, 70, 92, 0.13);
  font-family: var(--sans);
  line-height: 1.25;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-pill:hover {
  box-shadow: 0 12px 26px rgba(37, 70, 92, 0.2);
}

.contact-pill svg {
  flex: 0 0 37px;
  width: 37px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-pill span {
  display: grid;
}

.contact-pill small {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.contact-phone {
  color: #fff;
  background: var(--blue);
}

.contact-phone b {
  font-family: var(--latin-serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.contact-phone em {
  margin-top: 4px;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.02em;
}

.contact-mail {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.96);
}

.contact-mail b {
  font-size: 16px;
  letter-spacing: 0.06em;
}

.contact-mail small {
  margin-top: 7px;
  color: #607987;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 13px 56px;
  color: #384149;
  background: #fff;
  font-family: var(--sans);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 42px;
}

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

.site-footer > small {
  justify-self: end;
  font-size: 9px;
}

@media (max-width: 1180px) {
  :root {
    --side: clamp(24px, 4vw, 48px);
  }

  .hero h1 {
    font-size: clamp(31px, 4.8vw, 57px);
  }

  .award-main > div {
    min-width: 500px;
  }

  .about-copy {
    padding-left: var(--side);
  }

  .about-copy h2 {
    font-size: 36px;
  }

  .strength-grid {
    gap: 46px;
  }

  .contact-inner {
    grid-template-columns: 310px 1fr;
  }

  .contact-actions {
    gap: 14px;
  }

  .contact-pill {
    width: 290px;
    padding-inline: 18px;
  }

  .site-footer nav {
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .header-brush {
    width: 92vw;
    height: 150px;
  }

  .brand {
    gap: 14px;
  }

  .brand-copy strong {
    font-size: 23px;
  }

  .menu-button {
    right: 25px;
  }

  .hero {
    height: 720px;
  }

  .hero-content {
    top: 45%;
  }

  .hero h1 {
    font-size: clamp(31px, 4.8vw, 43px);
  }

  .hero-content > p {
    font-size: 27px;
  }

  .hero-actions {
    gap: 16px;
  }

  .button {
    width: min(310px, 43vw);
  }

  .awards {
    height: auto;
    min-height: 0;
  }

  .award-gallery {
    --gallery-gap: 18px;
  }

  .award-photo {
    width: clamp(235px, 35vw, 285px);
  }

  .awards-inner {
    margin-block: 20px 28px;
  }

  .award-main > div {
    min-width: 430px;
  }

  .award-main h2 {
    font-size: 46px;
  }

  .award-main h2 strong {
    font-size: 70px;
  }

  .award-main p {
    font-size: 20px;
  }

  .award-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 650px;
    margin-inline: auto;
  }

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

  .about-copy {
    width: min(680px, 100%);
    margin: 0 auto;
    padding: 100px var(--side) 65px;
  }

  .about-photo {
    height: 500px;
    min-height: 500px;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .about-photo img {
    min-height: 500px;
    object-position: 50% 10%;
  }

  .services {
    padding-top: 65px;
  }

  .manufacturer-marquee {
    width: min(720px, 100%);
    margin-top: 40px;
  }

  .manufacturer-logo {
    flex-basis: 172px;
    width: 172px;
    height: 82px;
  }

  .strength {
    padding-block: 55px 70px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .strength-grid img {
    height: 285px;
  }

  .works-track {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
  }

  .carousel-prev {
    left: -12px;
  }

  .carousel-next {
    right: -12px;
  }

  .work-card {
    flex: 0 0 46%;
    scroll-snap-align: start;
  }

  .contact {
    min-height: 570px;
    background-position: 64% center;
  }

  .contact-overlay {
    background: linear-gradient(90deg, rgba(220, 234, 242, 0.98) 0%, rgba(220, 234, 242, 0.94) 63%, rgba(220, 234, 242, 0.2) 100%);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    align-content: center;
    width: min(680px, calc(100% - 2 * var(--side)));
    min-height: 570px;
    padding-top: 70px;
  }

  .contact-actions {
    flex-wrap: wrap;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .site-footer nav {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --side: 20px;
  }

  .site-header {
    --header-bar-height: 70px;
    height: 100px;
  }

  .site-header.is-scrolled .brand {
    top: calc(var(--header-bar-height) / 2);
    left: 16px;
    gap: 8px;
  }

  .site-header.is-scrolled .brand-mark {
    width: 42px;
    height: 32px;
  }

  .site-header.is-scrolled .brand-copy strong {
    font-size: 18px;
    letter-spacing: 0.06em;
  }

  .site-header.is-scrolled .brand-copy small {
    margin-top: 2px;
    font-size: 8.5px;
    letter-spacing: 0.08em;
    opacity: 1;
  }

  .site-header.is-scrolled .menu-button {
    top: 10px;
    right: 12px;
    width: 50px;
    height: 50px;
  }

  section[id] {
    scroll-margin-top: 82px;
  }

  .header-brush {
    width: 96vw;
    height: 110px;
  }

  .brand {
    top: 23px;
    left: 18px;
    gap: 8px;
  }

  .brand-mark {
    width: 41px;
    height: 32px;
    stroke-width: 4;
  }

  .brand-copy strong {
    font-size: 17px;
    letter-spacing: 0.08em;
  }

  .brand-copy small {
    margin-top: 4px;
    font-size: 8px;
  }

  .menu-button {
    top: 12px;
    right: 13px;
    width: 72px;
    height: 72px;
  }

  .hero {
    height: 690px;
    min-height: 690px;
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero-content {
    top: 42%;
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: clamp(18px, 5.4vw, 33px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .mobile-only {
    display: initial;
  }

  .hero-content > p {
    margin-top: 15px;
    font-size: 20px;
    letter-spacing: 0.09em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 13px;
    margin-top: 38px;
  }

  .button {
    width: min(320px, 88vw);
    min-height: 62px;
    padding-block: 13px;
    font-size: 14px;
  }

  .section-wave {
    height: 85px;
  }

  .section-wave-top {
    top: -57px;
  }

  .section-wave-bottom {
    bottom: -57px;
  }

  .section-wave.hero-wave {
    top: -42px;
    height: 98px;
  }

  .awards {
    min-height: 0;
    padding: 44px 0 78px;
  }

  .award-gallery {
    --gallery-gap: 14px;
    padding-block: 9px 12px;
  }

  .award-gallery::before,
  .award-gallery::after {
    width: 7%;
  }

  .award-photo {
    width: 226px;
    padding: 6px;
    border-radius: 6px;
    box-shadow:
      0 10px 20px rgba(43, 76, 97, 0.12),
      0 2px 6px rgba(43, 76, 97, 0.08);
  }

  .award-photo::before {
    top: -4px;
    width: 42px;
    height: 9px;
  }

  .award-photo::after {
    inset: 6px;
  }

  .award-gallery-top .award-gallery-track {
    animation-duration: 68s;
  }

  .award-gallery-bottom .award-gallery-track {
    animation-duration: 68s;
  }

  .awards-inner {
    margin-block: 18px 24px;
  }

  .awards-thanks {
    font-size: 14px;
  }

  .award-main {
    height: 190px;
    margin-top: 0;
  }

  .award-main > div {
    min-width: 0;
    width: calc(100% - 50px);
  }

  .award-main h2 {
    font-size: 35px;
  }

  .award-main h2 strong {
    font-size: 54px;
  }

  .award-main p {
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  .award-ribbon {
    min-width: 210px;
    font-size: 11px;
  }

  .laurel {
    position: absolute;
    width: 150px;
  }

  .laurel-left {
    left: 5px;
  }

  .laurel-right {
    right: 5px;
  }

  .award-grid {
    gap: 6px;
  }

  .award-badge {
    min-height: 158px;
  }

  .award-badge h3 {
    font-size: 12px;
  }

  .award-badge p {
    font-size: 13px;
  }

  .award-badge strong {
    font-size: 23px;
  }

  .about-copy {
    padding-top: 75px;
  }

  .about-copy h2 {
    margin-bottom: 25px;
    font-size: clamp(22px, 6.9vw, 27px);
    line-height: 1.65;
    letter-spacing: 0.045em;
  }

  .about-copy p {
    font-size: 13px;
  }

  .about-copy p br {
    display: none;
  }

  .outline-button {
    min-width: 250px;
  }

  .about-photo {
    height: 390px;
  }

  .about-photo,
  .about-photo img {
    min-height: 390px;
  }

  .section-heading h2,
  .compact-heading h2 {
    font-size: 31px;
  }

  .centered-heading > p:not(.heading-ornament) {
    font-size: 13px;
  }

  .manufacturer-marquee {
    width: calc(100% + (var(--side) * 2));
    margin-top: 34px;
    margin-left: calc(var(--side) * -1);
  }

  .manufacturer-label {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .manufacturer-viewport {
    --manufacturer-gap: 12px;
    padding-block: 8px 14px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }

  .manufacturer-track {
    animation-duration: 78s;
  }

  .manufacturer-logo {
    flex-basis: 150px;
    width: 150px;
    height: 72px;
    padding: 9px 16px;
    border-radius: 11px;
  }

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

  .manufacturer-logo img[src$="lixil.svg"] {
    width: 120px;
    height: 43px;
  }

  .strength-grid {
    gap: 58px;
  }

  .strength-grid img {
    height: 220px;
  }

  .works {
    min-height: 540px;
    padding-top: 50px;
  }

  .works-header {
    align-items: flex-end;
    margin-bottom: 25px;
  }

  .works-header h2 {
    font-size: 31px;
  }

  .small-button {
    min-width: 130px;
    min-height: 40px;
    padding-inline: 16px;
  }

  .work-card {
    flex-basis: 82%;
  }

  .work-card img {
    height: 245px;
  }

  .carousel-arrow {
    top: 111px;
    width: 48px;
    height: 48px;
    font-size: 36px;
  }

  .carousel-prev {
    left: -13px;
  }

  .carousel-next {
    right: -13px;
  }

  .contact {
    min-height: 660px;
    background-position: 67% bottom;
  }

  .contact-copy {
    transform: translateY(-12px);
  }

  .contact-overlay {
    background:
      linear-gradient(180deg, rgba(220, 234, 242, 0.82) 0%, rgba(220, 234, 242, 0.68) 46%, rgba(220, 234, 242, 0.2) 100%),
      linear-gradient(90deg, rgba(220, 234, 242, 0.98) 0%, rgba(220, 234, 242, 0.82) 52%, rgba(220, 234, 242, 0.08) 100%);
  }

  .contact-inner {
    align-content: start;
    min-height: 660px;
    padding-top: 55px;
  }

  .contact-copy h2 {
    font-size: 26px;
    white-space: normal;
  }

  .contact-actions {
    display: grid;
    gap: 12px;
    margin-top: 10px;
  }

  .contact-pill {
    width: min(330px, 100%);
    min-height: 94px;
  }

  .contact-phone b {
    font-size: 24px;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .site-footer p {
    font-size: 13px;
  }
}

/* ページ下部：相談導線 */
.contact {
  --section-bg: #deedf5;
  min-height: clamp(400px, 26.6vw, 580px);
  overflow: visible;
  background-color: var(--section-bg);
  background-image: url("./images/contact-craftsperson-v2.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 115%;
}

.contact-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 19% 22%, rgba(255, 255, 255, 0.72), transparent 27%),
    linear-gradient(90deg, rgba(226, 240, 248, 0.99) 0%, rgba(226, 240, 248, 0.99) 48%, rgba(226, 240, 248, 0.92) 57%, rgba(226, 240, 248, 0.36) 68%, rgba(226, 240, 248, 0.06) 75%, rgba(226, 240, 248, 0) 80%);
}

.contact-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: clamp(270px, 18.5vw, 400px) auto;
  align-items: center;
  justify-content: start;
  gap: clamp(44px, 4.15vw, 90px);
  width: min(1810px, 83.4vw);
  min-height: clamp(400px, 26.6vw, 580px);
  margin: 0 auto;
  padding: clamp(78px, 5.7vw, 124px) 0 clamp(46px, 3.3vw, 72px);
}

.contact-copy h2 {
  margin: 0 0 26px;
  color: #244f75;
  font-size: clamp(31px, 2.2vw, 42px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.contact-copy h2::after {
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 16px;
  content: "";
  background: rgba(66, 124, 167, 0.43);
}

.contact-copy p {
  margin: 0 0 27px;
  color: #33434c;
  font-size: 15px;
  line-height: 2;
}

.contact-copy strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(17px, 1.2vw, 23px);
  font-weight: 400;
  letter-spacing: 0.055em;
  white-space: nowrap;
}

.contact-copy strong svg {
  width: 25px;
  height: 25px;
  flex: none;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.contact-copy strong svg circle {
  fill: var(--section-bg);
}

.contact-copy strong span {
  padding-bottom: 4px;
  border-bottom: 2px dotted rgba(49, 93, 132, 0.36);
}

.contact-actions {
  display: grid;
  grid-template-columns: clamp(290px, 20.4vw, 445px) clamp(270px, 19vw, 385px);
  align-items: stretch;
  gap: clamp(16px, 1.5vw, 25px);
  padding: 0;
  transform: translateY(clamp(20px, 2.1vw, 46px));
}

.contact-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(15px, 1.2vw, 26px);
  width: auto;
  min-height: clamp(138px, 9.3vw, 203px);
  padding: clamp(19px, 1.55vw, 34px);
  overflow: hidden;
  border-radius: 21px;
  box-shadow: 0 13px 30px rgba(37, 70, 92, 0.16);
}

.contact-pill-icon {
  position: relative;
  z-index: 2;
  display: grid !important;
  width: clamp(60px, 4.15vw, 90px);
  height: clamp(60px, 4.15vw, 90px);
  flex: 0 0 clamp(60px, 4.15vw, 90px);
  place-items: center;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
}

.contact-pill-icon svg,
.contact-pill > svg {
  width: 36px;
  height: 36px;
  flex: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.contact-pill-copy {
  position: relative;
  z-index: 2;
  display: grid !important;
  min-width: 0;
}

.contact-pill small {
  font-size: 14px;
}

.contact-phone {
  color: #fff;
  background: linear-gradient(145deg, #376c99, #2d5d87);
}

.contact-phone::before {
  position: absolute;
  right: -12%;
  bottom: -58px;
  left: -12%;
  height: 96px;
  content: "";
  background: rgba(255, 255, 255, 0.055);
  border-radius: 50% 50% 0 0;
  transform: rotate(-4deg);
}

.contact-phone b {
  font-size: clamp(24px, 1.8vw, 34px);
  white-space: nowrap;
}

.contact-phone em {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.contact-mail {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.95);
}

.contact-mail .contact-pill-icon {
  border: 1px solid rgba(49, 93, 132, 0.24);
}

.contact-mail b {
  font-size: clamp(16px, 1.15vw, 21px);
  white-space: nowrap;
}

.contact-mail small {
  margin-top: 10px;
  color: #526875;
  font-size: 13px;
}

.contact-card-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(49, 93, 132, 0.42);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 15px;
  font-style: normal;
}

.contact-bubbles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.contact-bubbles i {
  position: absolute;
  width: 34px;
  height: 34px;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.96), rgba(191, 223, 242, 0.2) 54%, rgba(87, 155, 198, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  box-shadow: inset -4px -5px 10px rgba(80, 146, 188, 0.11), 0 5px 14px rgba(86, 150, 190, 0.09);
  opacity: 0.72;
}

.contact-bubbles i:nth-child(1) { top: 20%; left: 3%; width: 42px; height: 42px; }
.contact-bubbles i:nth-child(2) { top: 69%; left: 6%; width: 25px; height: 25px; }
.contact-bubbles i:nth-child(3) { top: 12%; left: 45%; width: 30px; height: 30px; }
.contact-bubbles i:nth-child(4) { top: 26%; left: 52%; width: 45px; height: 45px; }
.contact-bubbles i:nth-child(5) { right: 3%; bottom: 10%; width: 38px; height: 38px; }

.contact-water-wave {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 92px;
  color: rgba(164, 207, 234, 0.46);
  pointer-events: none;
}

.contact-water-wave path {
  fill: currentColor;
}

.contact > .section-wave-top {
  top: -4px;
  height: 105px;
  opacity: 0.55;
}

.contact > .section-wave-top .wave-fill {
  fill: none;
  filter: none;
}

.contact > .section-wave-top .wave-stroke {
  stroke-width: 2px;
  stroke-dasharray: none;
  filter: none;
}

/* ページ下部：フッター */
.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 4vw, 66px);
  min-height: 112px;
  padding: 22px clamp(34px, 5vw, 82px);
  color: #384149;
  background: rgba(255, 255, 255, 0.98);
  font-family: var(--sans);
  font-size: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-right: clamp(26px, 3vw, 48px);
  border-right: 1px solid rgba(49, 93, 132, 0.27);
}

.footer-brand img {
  width: 58px;
  height: 44px;
  object-fit: contain;
}

.footer-brand span {
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 27px);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.footer-address {
  justify-self: start;
  margin: 0;
  color: #40515b;
  font-size: 13px;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.045em;
  text-align: left;
}

.footer-address span {
  white-space: nowrap;
}

.footer-address span + span::before {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin: 0 16px;
  background: rgba(49, 93, 132, 0.22);
  content: "";
  vertical-align: -0.12em;
}

.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-width: 0;
}

.site-footer nav a {
  white-space: nowrap;
}

.site-footer nav a + a::before {
  margin: 0 clamp(13px, 1.7vw, 25px);
  color: #71808a;
  content: "/";
}

.site-footer > small {
  justify-self: end;
  font-size: 10px;
  white-space: nowrap;
}

@media (min-width: 1200px) and (max-width: 1365px) {
  .contact {
    background-position: calc(100% + 60px) center;
    background-size: auto 100%;
  }

  .contact-inner {
    grid-template-columns: 250px auto;
    gap: 40px;
  }

  .contact-actions {
    grid-template-columns: 270px 230px;
    gap: 14px;
  }

  .contact-pill {
    min-height: 132px;
    padding-inline: 18px;
  }

  .contact-pill-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .contact-phone b {
    font-size: 25px;
  }
}

@media (max-width: 1199px) {
  .contact {
    min-height: 0;
    background-position: right bottom;
    background-size: auto 330px;
  }

  .contact-overlay {
    background:
      linear-gradient(180deg, rgba(226, 240, 248, 0.99) 0%, rgba(226, 240, 248, 0.96) 56%, rgba(226, 240, 248, 0.56) 78%, rgba(226, 240, 248, 0.16) 100%);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    align-content: start;
    width: min(860px, calc(100% - 2 * var(--side)));
    min-height: 0;
    gap: 30px;
    padding: 70px 0 340px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy h2 {
    white-space: normal;
  }

  .contact-copy h2::after {
    margin-inline: auto;
  }

  .contact-copy strong {
    justify-content: center;
  }

  .contact-actions {
    grid-template-columns: minmax(315px, 390px) minmax(270px, 340px);
    justify-content: center;
    width: min(760px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .contact-pill {
    min-height: 148px;
    padding-inline: 22px;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
    gap: 18px 28px;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid rgba(49, 93, 132, 0.11);
  }

  .site-footer nav a + a::before {
    margin-inline: 11px;
  }

  .footer-address {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    padding-top: 14px;
    border-top: 1px solid rgba(49, 93, 132, 0.11);
  }
}

@media (max-width: 900px) {
  .contact {
    min-height: 0;
    background-position: right bottom;
    background-size: auto 330px;
  }

  .contact-overlay {
    background:
      linear-gradient(180deg, rgba(226, 240, 248, 0.99) 0%, rgba(226, 240, 248, 0.96) 56%, rgba(226, 240, 248, 0.56) 78%, rgba(226, 240, 248, 0.16) 100%);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    align-content: start;
    width: min(720px, calc(100% - 2 * var(--side)));
    min-height: 0;
    padding: 70px 0 340px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy h2 {
    white-space: normal;
  }

  .contact-copy h2::after {
    margin-inline: auto;
  }

  .contact-copy strong {
    justify-content: center;
  }

  .contact-actions {
    grid-template-columns: minmax(300px, 1fr) minmax(270px, 0.9fr);
    width: 100%;
    margin-top: 5px;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
    row-gap: 18px;
    padding-block: 22px;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid rgba(49, 93, 132, 0.11);
  }

  .footer-address {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    padding-top: 14px;
    border-top: 1px solid rgba(49, 93, 132, 0.11);
  }
}

@media (max-width: 620px) {
  .contact {
    min-height: 0;
    background-position: right bottom;
    background-size: auto 280px;
  }

  .contact-inner {
    width: calc(100% - 40px);
    min-height: 0;
    padding: 62px 0 300px;
  }

  .contact-copy h2 {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .contact-copy p {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .contact-copy strong {
    font-size: 16px;
    white-space: normal;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(350px, 100%);
    margin: 13px auto 0;
  }

  .contact-pill {
    width: 100%;
    min-height: 124px;
    padding: 19px 21px;
    border-radius: 18px;
  }

  .contact-pill-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .contact-pill-icon svg {
    width: 29px;
    height: 29px;
  }

  .contact-phone b {
    font-size: 27px;
  }

  .contact-water-wave {
    height: 64px;
  }

  .contact-bubbles i:nth-child(3),
  .contact-bubbles i:nth-child(4) {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 17px;
    min-height: 0;
    padding: 25px 20px 22px;
    text-align: center;
  }

  .footer-brand {
    gap: 12px;
    padding: 0;
    border: 0;
  }

  .footer-brand img {
    width: 45px;
    height: 34px;
  }

  .footer-brand span {
    font-size: 18px;
  }

  .site-footer nav {
    display: flex;
    grid-column: auto;
    grid-row: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 0;
    padding-top: 14px;
  }

  .site-footer nav a {
    font-size: 10px;
  }

  .site-footer nav a + a::before {
    margin-inline: 8px;
  }

  .footer-address {
    grid-column: auto;
    grid-row: auto;
    padding-top: 14px;
    font-size: 11px;
    line-height: 1.75;
    text-align: center;
  }

  .footer-address span {
    display: block;
    white-space: normal;
  }

  .footer-address span + span::before {
    display: none;
  }

  .site-footer > small {
    justify-self: center;
  }
}

@media (min-width: 1181px) {
  .award-person {
    bottom: -238px;
    height: 430px;
  }

  .award-person-woman {
    left: clamp(-175px, calc(621px - 52.5vw), 0px);
    width: clamp(180px, calc(17.5vw - 27px), 238px);
  }

  .award-person-man {
    right: clamp(-182px, calc(650px - 55vw), 0px);
    width: clamp(215px, calc(25.7vw - 89px), 300px);
    transform: translateX(clamp(22px, 2.4vw, 36px));
  }

  .award-person-woman img {
    -webkit-mask-image: radial-gradient(
      ellipse 72% 58% at 138% 82%,
      transparent 0 42%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.58) 65%,
      #000 78%
    );
    mask-image: radial-gradient(
      ellipse 72% 58% at 138% 82%,
      transparent 0 42%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.58) 65%,
      #000 78%
    );
  }

  .award-person-man img {
    -webkit-mask-image: radial-gradient(
      ellipse 72% 58% at -38% 82%,
      transparent 0 42%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.58) 65%,
      #000 78%
    );
    mask-image: radial-gradient(
      ellipse 72% 58% at -38% 82%,
      transparent 0 42%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.58) 65%,
      #000 78%
    );
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .award-person-woman {
    left: -8px;
    width: 135px;
    height: 210px;
  }

  .award-person-man {
    right: -10px;
    width: 155px;
    height: 210px;
    transform: translateX(clamp(22px, 2.4vw, 28px));
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .award-person-woman {
    left: -28px;
    width: 105px;
    height: 165px;
  }

  .award-person-man {
    right: -30px;
    width: 125px;
    height: 165px;
  }
}

@media (max-width: 767px) {
  .award-person {
    display: none;
  }
}

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

  .hero-video {
    display: none !important;
  }

  .about-photo[data-about-parallax] img {
    top: 0;
    height: 100%;
    transform: none !important;
    will-change: auto;
  }

  .award-gallery,
  .manufacturer-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .award-gallery-track,
  .manufacturer-track {
    animation: none !important;
    transform: none !important;
  }

  .award-gallery-group[aria-hidden="true"],
  .manufacturer-group[aria-hidden="true"] {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Work details: native dialog keeps focus and background interaction contained. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.work-card.is-interactive { position: relative; }
.work-card-open {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.work-card-open[hidden] { display: none; }
.work-card-open:hover { background: #315d8408; }
.work-card-open:focus-visible { outline: 3px solid var(--blue-deep); outline-offset: -3px; }
html.work-dialog-open { overflow: hidden; }
.work-dialog {
  width: min(1060px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100dvh - 40px);
  padding: 0;
  border: 0;
  border-radius: 18px;
  margin: auto;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 24px 100px #152f4d50;
  overscroll-behavior: contain;
}
.work-dialog::backdrop { background: #142b42bb; }
.work-dialog-panel { padding: 24px; }
.work-dialog-toolbar, .work-dialog-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.work-dialog-toolbar { margin-bottom: 20px; }
.work-dialog-eyebrow { color: var(--blue); font-weight: 700; letter-spacing: .15em; }
.work-dialog-close, .work-dialog-navigation button {
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid #315d8445;
  border-radius: 24px;
  background: white;
  color: var(--blue-deep);
  cursor: pointer;
}
.work-dialog-close span { margin-left: 8px; font-size: 22px; line-height: 1; }
.work-dialog-layout { margin-top: 24px; }
.work-dialog-counter { margin: 0 0 8px; color: var(--muted); font-size: 12px; }
.work-dialog-copy h2 { margin: 0 0 20px; font-size: clamp(24px, 3vw, 32px); line-height: 1.5; }
.work-dialog-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 0 0 20px; }
.work-dialog-facts > div { display: grid; grid-template-columns: 100px 1fr; padding: 14px 0; border-top: 1px solid #315d8425; }
.work-dialog-facts dt { font-size: 13px; color: var(--muted); }
.work-dialog-facts dd { margin: 0; font-size: 15px; }
.work-dialog-contact { display: block; padding: 14px 18px; border-radius: 8px; background: var(--blue); color: white; font-size: 14px; }
.work-dialog-navigation { margin-top: 24px; padding-top: 20px; border-top: 1px solid #315d8425; }
.work-dialog button:hover { background: var(--blue-soft); }
@media (max-width: 620px) {
  .work-dialog { width: calc(100% - 24px); max-height: calc(100dvh - 24px); border-radius: 12px; }
  .work-dialog-panel { padding: 16px; }
  .work-dialog-layout { grid-template-columns: 1fr; gap: 20px; }
  .work-dialog-toolbar { margin-bottom: 16px; }
  .work-dialog-copy h2 { margin-bottom: 16px; }
  .work-dialog-navigation { gap: 10px; }
  .work-dialog-navigation button { padding: 8px 12px; font-size: 14px; }
}

/* Real before/after pairs; preserve each full photograph without cropping. */
.work-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.work-comparison-photo { margin: 0; min-width: 0; border-radius: 10px; overflow: hidden; background: #edf0f2; }
.work-comparison-photo figcaption { display: flex; align-items: baseline; gap: 10px; padding: 10px 16px; color: #fff; background: #56636d; font-size: 13px; }
.work-comparison-after figcaption { background: var(--blue); }
.work-comparison-photo figcaption span { font-weight: 700; letter-spacing: .12em; font-size: 16px; }
.work-comparison-photo img { width: 100%; height: min(52vh, 540px); object-fit: contain; }
@media (max-width: 620px) {
  .work-comparison { gap: 10px; }
  .work-comparison-photo { border-radius: 6px; }
  .work-comparison-photo figcaption { flex-direction: column; gap: 0; padding: 8px 10px; font-size: 11px; }
  .work-comparison-photo figcaption span { font-size: 14px; }
  .work-comparison-photo img { height: auto; aspect-ratio: 3 / 4; object-fit: contain; }
  .work-dialog-facts { grid-template-columns: 1fr; gap: 0; }
}
