:root {
  --bg: #eef3f6;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #20201b;
  --muted: #66604e;
  --accent: #197d98;
  --accent-soft: rgba(80, 194, 219, 0.18);
  --border: rgba(32, 32, 27, 0.12);
  --shadow: 0 16px 40px rgba(32, 32, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, "Hiragino Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbfd 0%, var(--bg) 100%);
}

body {
  margin: 0;
  min-height: 100vh;
}

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

.shell {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  z-index: 20;
  height: 78px;
  padding: 16px 74px 18px 54px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}

.site-header:not(.is-overlay) {
  position: sticky;
  top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: auto;
  height: 44px;
}

.nav-frame {
  display: flex;
  align-items: center;
  height: 36px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.nav-toggle__line + .nav-toggle__line {
  margin-top: 5px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: clamp(24px, 3vw, 62px);
}

.nav-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 8px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  transition: opacity 160ms ease;
}

.nav-link:hover,
.nav-link.is-current {
  opacity: 0.7;
}

.nav-en {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #50c2db;
}

.nav-ja {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

.site-header.is-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: none;
}

.top-hero {
  --hero-object-left: 364px;
  --hero-object-top: -175.05px;
  --hero-object-width: 524.16px;
  --hero-object-height: 1035.05px;
  --hero-object-angle: 19.36deg;
  --hero-cut-top: 300.38px;
  --hero-cut-bottom: 19.29px;
  position: relative;
  width: 100%;
  height: 806px;
  margin: 0;
  overflow: hidden;
  background: #7b8a92;
}

.top-hero__canvas {
  position: relative;
  width: 100%;
  margin: 0;
}

.top-hero__image {
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  height: 800px;
  background: url("/images/top/top-main-v.png") center top / cover no-repeat;
  z-index: 0;
}

.top-hero__shade {
  position: absolute;
  inset: 6px auto 0 0;
  width: var(--hero-cut-top);
  height: 800px;
  background: rgba(26, 22, 22, 0.56);
  clip-path: polygon(0 0, 100% 0, var(--hero-cut-bottom) 100%, 0 100%);
  z-index: 1;
}

.top-hero__object {
  position: absolute;
  top: var(--hero-object-top);
  left: var(--hero-object-left);
  width: var(--hero-object-width);
  height: var(--hero-object-height);
  background: linear-gradient(180deg, rgba(80, 194, 219, 0) 0%, #50c2db 100%);
  transform: rotate(var(--hero-object-angle));
  transform-origin: top left;
  opacity: 1;
  z-index: 2;
}

.top-hero__inner {
  position: relative;
  min-height: 806px;
}

.top-hero__copy {
  position: absolute;
  top: 393px;
  left: 238px;
  z-index: 3;
  width: 1045px;
  color: #ffffff;
}

.top-hero__eyebrow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 46px;
  font-size: 125px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.16);
}

.top-hero__eyebrow span {
  display: block;
}

.top-hero__subline {
  display: flex;
  align-items: flex-end;
  gap: 42px;
}

.top-hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  min-height: 53px;
  margin: 0;
  padding: 19px 13px 15px;
  border: 3px solid #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  background: transparent;
}

.top-hero__title {
  margin: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.93);
  white-space: nowrap;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.16);
}

.message-section {
  position: relative;
  width: 100%;
  min-height: 603px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(14, 14, 14, 0.62), rgba(14, 14, 14, 0.62)),
    url("/images/top/section-bg1.png") center center / cover no-repeat;
}

.message-section__label {
  position: absolute;
  top: -3px;
  left: 67px;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 128px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.message-section__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 279px 607px;
  gap: 153px;
  width: 1039px;
  min-height: 486px;
  padding-top: 55px;
  margin-left: 307px;
}

.message-section__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 18px;
}

.message-section__lead {
  margin: 0 0 10px;
  color: #50c2db;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.message-section__heading {
  margin: 0 0 40px;
  color: #50c2db;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.message-section__body {
  margin-bottom: 35px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.message-section__body p {
  margin: 0 0 24px;
}

.message-section__body p:last-child {
  margin-bottom: 0;
}

.message-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  height: 53px;
  gap: 10px;
  padding: 14px 20px 13px 27px;
  border-radius: 5px;
  background: #50c2db;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.message-section__button span:first-child {
  white-space: nowrap;
}

.message-section__button-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background: #ffffff;
  clip-path: polygon(28% 22%, 28% 78%, 82% 50%);
}

.message-section__visual {
  position: relative;
  width: 607px;
  height: 486px;
}

/* .message-section__visual::after {
  content: "";
  position: absolute;
  inset: -19px -22px 21px 24px;
  border: 2px solid #ffffff;
  border-radius: 8px;
} */

.message-section__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.service-section {
  width: 100%;
  min-height: 603px;
  background: #ffffff;
  overflow: hidden;
}

.service-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: 580px 542px;
  grid-template-rows: 329px auto;
  column-gap: 63px;
  row-gap: 36px;
  width: 1185px;
  min-height: 471px;
  margin: 66px auto;
}

.service-section__visual {
  position: relative;
  grid-row: 1 / span 2;
  width: 580px;
  height: 463px;
}

.service-section__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.service-section__label {
  position: absolute;
  right: -225px;
  bottom: -20px;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 150px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.service-section__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 542px;
  min-height: 329px;
  padding: 38px 32px 41px 58px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 7px 8px 0 0 rgba(179, 179, 179, 0.28);
}

.service-section__heading {
  margin: 0;
  color: #50c2db;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.service-section__line {
  width: 179px;
  margin: 32px 0 42px;
  border-top: 5px solid #50c2db;
}

.service-section__catch {
  margin: 0 0 34px;
  color: #3c3c3c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.service-section__body {
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.service-section__button {
  position: absolute;
  right: 130px;
  bottom: 8px;
}

.equipment-section {
  position: relative;
  width: 100%;
  min-height: 1086px;
  padding: 60px 116px 72px;
  background: url("/images/top/section-bg2.png") center center / cover no-repeat;
  overflow: hidden;
}

.equipment-section__heading {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 1315px;
  min-height: 204px;
  margin: 0 auto 34px;
}

.equipment-section__intro {
  position: relative;
  z-index: 1;
  width: 410px;
}

.equipment-section__title {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.equipment-section__title-line {
  width: 229px;
  margin: 30px 0 26px;
  border-top: 5px solid #ffffff;
}

.equipment-section__lead {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.equipment-section__eyebrow {
  position: absolute;
  top: 30px;
  left: 420px;
  z-index: 0;
  margin: 0;
  color: #ffffff;
  font-size: 150px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.equipment-section__grid {
  display: grid;
  grid-template-columns: 477px 716px;
  grid-template-rows: repeat(2, 316px);
  column-gap: 14px;
  row-gap: 16px;
  width: 1207px;
  margin: 0 auto;
}

.equipment-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
}

.equipment-card--large {
  grid-row: 1 / span 2;
  box-shadow: 0 0 18.7px 0 rgba(0, 0, 0, 0.25);
}

.equipment-card--compact {
  display: grid;
  grid-template-columns: 291px 1fr;
  box-shadow: 0 0 8.1px 0 rgba(0, 0, 0, 0.25);
}

.equipment-card__image {
  display: block;
  object-fit: cover;
}

.equipment-card__image--large {
  width: 456px;
  padding: 10.5px 0;
  margin: auto;
  height: 302px;
}

.equipment-card__image--compact {
  width: 291px;
  height: 292px;
  margin: auto;
  padding: 0 10.5px;
}

.equipment-card__content {
  display: flex;
  flex-direction: column;
  padding: 20px 26px 20px;
}

.equipment-card__content--stacked {
  padding: 18px 26px 24px;
}

.equipment-card__title {
  margin: 0;
  color: #25252c;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.equipment-card__line {
  width: 100%;
}

.equipment-card__line--solid {
  margin: 18px 0 22px;
  border-top: 3px solid #50c2db;
}

.equipment-card__line--dashed {
  margin: 12px 0 12px;
  border-top: 3px dashed #50c2db;
}

.equipment-card__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: end;
  gap: 16px;
}

.equipment-card__label,
.equipment-card__value {
  margin: 0;
  color: #34333c;
  font-size: 16px;
  line-height: 1.3;
}

.equipment-card__label {
  font-style: italic;
  font-weight: 500;
}

.equipment-card__value {
  text-align: right;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
}

.equipment-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  height: 53px;
  gap: 10px;
  padding: 14px 20px 13px 27px;
  border-radius: 5px;
  background: #ffffff;
  color: #50c2db;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.equipment-section__button-row {
  display: flex;
  justify-content: flex-end;
  width: 1207px;
  margin: 42px auto 0;
}

.equipment-section__button span:first-child {
  white-space: nowrap;
}

.equipment-section__button-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background: #50c2db;
  clip-path: polygon(28% 22%, 28% 78%, 82% 50%);
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 534px;
  padding: 83px 0 35px;
  background: url("/images/top/section-bg3.png") center center / cover no-repeat;
}

.contact-section__panel {
  width: 721px;
  min-height: 396px;
  padding: 26px 137px 74px 107px;
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.59);
}

.contact-section__title {
  margin: 0 0 88px;
  color: #50c2db;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.contact-section__phone {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 48px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.contact-section__hours {
  margin: 0 0 58px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: right;
}

.contact-section__button {
  display: flex;
  margin: 0 auto;
}

.subpage-hero {
  --hero-object-left: 364px;
  --hero-object-top: -175.05px;
  --hero-object-width: 524.16px;
  --hero-object-height: 1035.05px;
  --hero-object-angle: 19.36deg;
  position: relative;
  width: 100%;
  height: 612px;
  overflow: hidden;
  background: #1d1f26;
}

.subpage-hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(20, 20, 20, 0.28) 0%,
      rgba(20, 20, 20, 0.08) 55%,
      rgba(20, 20, 20, 0.12) 100%
    ),
    var(--subpage-hero-image) center center / cover no-repeat;
  z-index: 0;
}

.subpage-hero__object {
  position: absolute;
  top: var(--hero-object-top);
  left: var(--hero-object-left);
  width: var(--hero-object-width);
  height: var(--hero-object-height);
  background: linear-gradient(180deg, rgba(80, 194, 219, 0) 0%, #50c2db 100%);
  transform: rotate(var(--hero-object-angle));
  transform-origin: top left;
  opacity: 1;
  z-index: 1;
}

.subpage-hero__content {
  position: absolute;
  top: 292px;
  left: 258px;
  z-index: 3;
  color: #ffffff;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.subpage-hero__eyebrow {
  margin: 0 0 18px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.subpage-hero__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.93);
}

.subpage-hero__base {
  position: absolute;
  top: 542px;
  left: 50%;
  width: min(1167.75px, calc(100% - 272px));
  height: auto;
  display: block;
  transform: translateX(-50%);
  z-index: 2;
}

.subpage-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(830px, calc(100% - 48px));
  gap: 26px;
  text-align: center;
}

.subpage-section-header__title {
  margin: 0;
  color: #25252c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.subpage-section-header__line {
  width: min(413px, 100%);
  border-top: 6px solid #50c2db;
}

.subpage-section-header__lead {
  margin: 0;
  color: #25252c;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.equipment-factory-section {
  min-height: 879px;
  padding: 0 0 90px;
  background: #ffffff;
}

.equipment-factory-section--simple {
  min-height: auto;
  padding-top: 76px;
}

.equipment-factory-section__header {
  position: relative;
  z-index: 3;
  margin: -30px auto 68px;
}

.equipment-factory-card {
  display: grid;
  grid-template-columns: 641px 460px;
  width: 1172px;
  min-height: 562px;
  margin: 0 auto;
  padding-right: 71px;
  border: 2px solid #3c3c3c;
  background: #ffffff;
}

.equipment-factory-card--reverse {
  grid-template-columns: 460px 641px;
  justify-content: space-between;
  padding-right: 0;
  padding-left: 0;
}

.equipment-factory-card--plain {
  border: 0;
  background: transparent;
}

.equipment-factory-card--tall {
  width: 1170px;
  height: 705px;
  padding-right: 0;
}

.equipment-factory-card__image {
  display: block;
  width: 641px;
  height: 558px;
  object-fit: cover;
}

.equipment-factory-card--tall .equipment-factory-card__image {
  width: 584px;
  height: 701px;
}

.equipment-factory-card__image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: auto;
}

.equipment-factory-card--tall .equipment-factory-card__image-stack {
  height: 701px;
}

.equipment-factory-card__image-stack-item {
  display: block;
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  object-fit: cover;
}

.equipment-factory-card--reverse .equipment-factory-card__image {
  order: 2;
  width: 641px;
  height: 558px;
  justify-self: end;
}

.equipment-factory-card__body {
  display: flex;
  flex-direction: column;
  width: 460px;
  min-height: 468px;
  gap: 25px;
  padding: 26px 0 36px 36px;
}

.equipment-factory-card--tall .equipment-factory-card__body {
  width: auto;
  min-height: 0;
  gap: 32px;
  padding: 42px 0 42px;
}

.equipment-factory-card--reverse .equipment-factory-card__body {
  order: 1;
  padding: 26px 36px 36px 0;
  justify-content: flex-start;
}

.equipment-factory-card__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 32px;
  margin: 0;
  padding: 3px 19px 4px;
  border-radius: 3px;
  background: #50c2db;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: center;
}

.equipment-factory-card__tab--wide {
  width: 180px;
  height: 26px;
  padding: 0 12px;
  font-size: 16px;
  line-height: 1;
}

.equipment-factory-card__titles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.equipment-factory-card__eyebrow {
  margin: 0;
  color: #3c3c3c;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.equipment-factory-card__title {
  margin: 0;
  color: #3c3c3c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.equipment-factory-card__divider {
  display: block;
  flex: 0 0 6px;
  align-self: flex-start;
  width: 452px;
  max-width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #50c2db 0 12px,
    transparent 12px 24px
  );
  border-radius: 999px;
}

.equipment-factory-card__description {
  margin: 0;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: 0;
}

.equipment-factory-card__specs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.equipment-factory-card__spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
}

.equipment-factory-card__spec-name {
  margin: 0;
  color: #3c3c3c;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.equipment-factory-card__spec-count {
  margin: 0;
  color: #34333c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.equipment-factory-card__spec-line {
  width: 452px;
  border-bottom: 2px solid rgba(80, 194, 219, 0.58);
}

.equipment-bending-section {
  min-height: 751px;
  padding: 84px 0;
  background: linear-gradient(
    270deg,
    #50c2db 0%,
    #86d5e6 32.69%,
    #ffffff 81.25%
  );
}

.equipment-video-section {
  min-height: 1239px;
  padding: 96px 0 104px;
  background: #ffffff;
}

.equipment-video-section__inner {
  display: flex;
  flex-direction: column;
  width: min(1370px, calc(100% - 48px));
  min-height: 1039px;
  margin: 0 auto;
  gap: 19px;
}

.equipment-video-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.equipment-video-section__title {
  margin: 0;
  color: #25252c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.equipment-video-section__line {
  width: 413px;
  border-top: 6px solid #50c2db;
}

.equipment-video-section__content {
  display: grid;
  grid-template-columns: 304px 560px 304px;
  justify-content: center;
  align-items: start;
  gap: 54px;
}

.equipment-video-section__column {
  display: flex;
  flex-direction: column;
  gap: 108px;
  padding-top: 69px;
}

.equipment-video-section__map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipment-video-section__map img {
  display: block;
  width: 100%;
  height: auto;
}

.equipment-video-section__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
}

.equipment-video-thumb {
  display: block;
  width: 304px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.equipment-video-section__row .equipment-video-thumb {
  width: 100%;
}

.equipment-video-thumb__media {
  position: relative;
  display: block;
  overflow: hidden;
}

.equipment-video-thumb__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.equipment-video-thumb:hover .equipment-video-thumb__media img {
  transform: scale(1.05);
}

.equipment-video-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 16px rgba(16, 18, 24, 0.28);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.equipment-video-thumb__play::before {
  content: "";
  margin-left: 3px;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent #25252c;
  transition: border-color 0.25s ease;
}

.equipment-video-thumb:hover .equipment-video-thumb__play {
  background: #50c2db;
  transform: translate(-50%, -50%) scale(1.08);
}

.equipment-video-thumb:hover .equipment-video-thumb__play::before {
  border-left-color: #ffffff;
}

.equipment-video-thumb__label {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 190px;
  min-height: 36px;
  padding: 6px 18px 6px 24px;
  background: #50c2db;
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
}

.equipment-video-dialog {
  width: min(920px, calc(100% - 32px));
  padding: 0;
  border: 0;
  background: transparent;
}

.equipment-video-dialog::backdrop {
  background: rgba(16, 18, 24, 0.62);
}

.equipment-video-dialog__panel {
  position: relative;
  padding: 36px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.equipment-video-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #25252c;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.equipment-video-dialog__eyebrow {
  margin: 0 0 10px;
  color: #50c2db;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
}

.equipment-video-dialog__title {
  margin: 0 0 24px;
  color: #25252c;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}

.equipment-video-dialog__player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 16px;
  background: #000000;
}

.equipment-video-dialog__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.flow-process-section {
  min-height: 1424px;
  padding: 0 235px 74px 214px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 24%,
    rgba(80, 194, 219, 0.34) 67%,
    #50c2db 100%
  );
}

.flow-process-section__header {
  position: relative;
  z-index: 3;
  margin: -30px auto 68px;
}

.flow-process-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 991px;
  min-height: 1176px;
  margin: 0 auto;
  gap: 52px;
}

.flow-process-section__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.flow-process-section__title {
  margin: 0;
  color: #25252c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.flow-process-section__line {
  width: 411px;
  border-top: 6px solid #50c2db;
}

.flow-process-section__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 52px;
  width: 991px;
}

.flow-process-section__timeline::before {
  content: "";
  position: absolute;
  top: 150px;
  bottom: 150px;
  left: 85px;
  width: 8px;
  background: #50c2db;
}

.flow-process-step {
  position: relative;
  width: 991px;
  min-height: 150px;
}

.flow-process-step__frame {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 193px;
  height: 150px;
}

.flow-process-step__frame img {
  display: block;
  width: 193px;
  height: 150px;
}

.flow-process-step__frame-content {
  width: 170px;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 14px 14px;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
}

.flow-process-step__number {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.flow-process-step__label {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.flow-process-step__label--compact {
  font-size: 17px;
}

.flow-process-step__card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 991px;
  min-height: 150px;
  padding: 28px 42px 26px 255px;
  background: #ffffff;
  box-shadow: 5px 5px 0 rgba(60, 60, 60, 0.14);
}

.flow-process-step__description {
  margin: 0;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.73;
  letter-spacing: 0.05em;
}

.flow-process-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 269px;
  height: 53px;
  gap: 10px;
  padding: 14px 20px 13px 27px;
  border-radius: 5px;
  background: #ffffff;
  color: #50c2db;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.flow-process-section__button-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background: #50c2db;
  clip-path: polygon(28% 22%, 28% 78%, 82% 50%);
}

.contact-form-section {
  min-height: 1424px;
  padding: 0 235px 74px 214px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 24%,
    rgba(80, 194, 219, 0.34) 67%,
    #50c2db 100%
  );
}

.contact-form-section__header {
  width: min(980px, calc(100% - 48px));
}

.contact-form-section__header .subpage-section-header__line {
  width: min(410px, 100%);
}

.contact-form-section__header .subpage-section-header__lead {
  color: #3c3c3c;
  line-height: 1.65;
  text-align: center;
}

.contact-form-panel {
  width: 922px;
  min-height: 1033px;
  margin: 0 auto;
  padding: 10px;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 0 11.3px 0 rgba(0, 0, 0, 0.26);
}

.contact-form-panel__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 795px;
  margin: 46px auto 58px;
  gap: 40px;
}

.contact-form-field {
  width: 795px;
}

.contact-form-field__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-form-field__label {
  margin: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.contact-form-field__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 18px;
  padding: 0 10px;
  border-radius: 2px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.contact-form-field__tag--optional {
  background: #a9a9a9;
}

.contact-form-field__tag--required {
  background: #d48b16;
}

.contact-form-field__input {
  width: 795px;
  height: 39px;
  padding: 10px;
  border: 1px solid #a9a9a9;
  background: #e3e3e3;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

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

.contact-form-field__input::placeholder {
  color: #8b8b8b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.contact-form-field__input:focus {
  outline: none;
  border-color: #50c2db;
  background: #ffffff;
}

.contact-form-privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 795px;
  min-height: 204px;
  padding: 30px 114px 30px 128px;
  border: 3px solid #50c2db;
  border-radius: 16px;
}

.contact-form-privacy__title {
  margin: 0 0 34px;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.contact-form-privacy__text {
  margin: 0;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
  text-align: center;
}

.contact-form-privacy__consent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 257px;
  min-height: 20px;
  margin-top: 34px;
  cursor: pointer;
}

.contact-form-privacy__checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 3px solid #3c3c3c;
  background: #ffffff;
  cursor: pointer;
}

.contact-form-privacy__checkbox:checked {
  background: #3c3c3c;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.contact-form-privacy__consent-label {
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.contact-form-panel__submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  height: 53px;
  gap: 10px;
  padding: 14px 20px 13px 27px;
  border: 0;
  border-radius: 5px;
  background: #50c2db;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.contact-form-panel__submit-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background: #ffffff;
  clip-path: polygon(28% 22%, 28% 78%, 82% 50%);
}

.service-intro-section {
  min-height: 873px;
  padding: 0 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 38%, #50c2db 100%);
}

.service-intro-section__inner {
  display: flex;
  flex-direction: column;
  gap: 47px;
  width: 1047px;
  min-height: 813px;
  margin: 0 auto;
}

.service-intro-section__header {
  position: relative;
  z-index: 3;
  margin: -30px auto 0;
}

.service-intro-section__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.service-intro-section__lead {
  margin: 0;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: center;
}

.service-intro-section__description {
  width: 100%;
  max-width: 940px;
  margin: 0;
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: center;
}

.service-intro-section__cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-intro-section__cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 509px);
  gap: 29px;
}

.service-strength-card {
  width: 509px;
  min-height: 294px;
  padding: 17px 49px 45px 42px;
  border: 1px solid #000000;
  background: #ffffff;
}

.service-strength-card__inner {
  display: flex;
  flex-direction: column;
  gap: 27px;
  width: 418px;
  min-height: 232px;
}

.service-strength-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.service-strength-card__icon {
  display: block;
  flex: 0 0 auto;
  max-width: 98px;
  height: auto;
}

.service-strength-card__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  color: #3c3c3c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.service-strength-card__title span {
  display: block;
}

.service-strength-card__line,
.service-history-card__line {
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(90deg, #50c2db 0 10px, transparent 10px 25px);
  border-radius: 999px;
}

.service-strength-card__body {
  margin: 0;
  color: #3c3c3c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: center;
}

.service-history-card {
  width: 1047px;
  min-height: 218px;
  padding: 24px 86px 38px 115px;
  border: 1px solid #000000;
  background: #ffffff;
}

.service-history-card__inner {
  display: grid;
  grid-template-columns: 357px 411px;
  align-items: center;
  justify-content: space-between;
  gap: 78px;
  width: 846px;
  min-height: 168px;
}

.service-history-card__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 357px;
  min-height: 168px;
}

.service-history-card__icon {
  display: block;
  width: 98px;
  height: auto;
}

.service-history-card__title {
  margin: 0;
  color: #3c3c3c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.service-history-card__right {
  width: 411px;
}

.service-history-card__body {
  margin: 0;
  color: #3c3c3c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.service-products-section {
  min-height: auto;
  padding: 56px 0 96px;
  background: #ffffff;
}

.service-products-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  width: 1144px;
  margin: 0 auto;
}

.service-products-section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 410px;
}

.service-products-section__title {
  margin: 0;
  color: #25252c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.service-products-section__line {
  width: 410px;
  border-top: 6px solid #50c2db;
}

.service-products-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 28px;
  width: 1144px;
}

.service-product-card {
  width: 100%;
  padding: 32px 28px;
  background: #ffffff;
  box-shadow: 0 0 7.3px 0 rgba(0, 0, 0, 0.43);
}

.service-product-card__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.service-product-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.service-product-card__icon {
  display: block;
  flex: 0 0 auto;
  max-width: 89px;
  max-height: 78px;
  width: auto;
  height: auto;
}

.service-product-card__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #3c3c3c;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.service-product-card__title-segment {
  display: inline-block;
}

.service-product-card__line {
  width: 100%;
  border-top: 6px solid #e4e4e4;
}

.service-product-card__body {
  margin: 0;
  color: #3c3c3c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.company-intro-section {
  min-height: 980px;
  padding: 0 0 110px;
  background: #ffffff;
}

.company-intro-section__header {
  position: relative;
  z-index: 3;
  margin: -30px auto 68px;
}

.company-intro-section__header .subpage-section-header__lead {
  line-height: 1.65;
}

.company-intro-section__image {
  width: min(1014px, calc(100% - 160px));
  margin: 0 auto;
}

.company-intro-section__image img {
  display: block;
  width: 100%;
  height: auto;
}

.company-policy-section {
  min-height: 432px;
  padding: 61px 253px;
  background: url("/images/company/section-bg1.svg") center center / cover
    no-repeat;
}

.company-policy-section__inner {
  display: grid;
  grid-template-columns: repeat(2, 445px);
  justify-content: center;
  align-items: start;
  width: 928px;
  min-height: 298px;
  margin: 0 auto;
  gap: 38px;
}

.company-policy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 445px;
  min-height: 298px;
  padding: 34px 11px 46px 7px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(11.2px);
}

.company-policy-card__title {
  margin: 0;
  color: #25252c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.company-policy-card__line {
  width: 157px;
  margin: 20px 0 36px;
  border-top: 6px solid #50c2db;
}

.company-policy-card__body {
  margin: 0;
  color: #25252c;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.87;
  letter-spacing: 0;
  text-align: center;
}

.company-overview-section {
  min-height: 1113px;
  padding: 110px 0 90px;
  background: #ffffff;
}

.company-overview-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1072px, calc(100% - 64px));
  min-height: 913px;
  margin: 0 auto;
  gap: 75px;
}

.company-overview-section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.company-overview-section__title {
  margin: 0;
  color: #25252c;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.company-overview-section__line {
  width: 157px;
  border-top: 6px solid #50c2db;
}

.company-overview-section__columns {
  display: grid;
  grid-template-columns: 426px 547px;
  align-items: start;
  column-gap: 75px;
  width: 100%;
}

.company-overview-column--left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 426px;
  min-height: 790px;
}

.company-overview-column--right {
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: 547px;
  min-height: 667px;
}

.company-overview-item {
  width: 100%;
  min-height: 98px;
  padding-bottom: 13px;
  border-bottom: 2px solid #50c2db;
}

.company-overview-item__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 107px;
  height: 45px;
  margin: 0 0 20px;
  padding: 0 20px;
  border-radius: 8px;
  background: #50c2db;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.company-overview-item__content {
  color: #25252c;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.87;
  letter-spacing: 0;
}

.company-overview-item__content p {
  margin: 0;
}

.company-history-section {
  min-height: 1312px;
  padding: 71px 278px 64px 260px;
  background: #50c2db;
}

.company-history-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 904px;
  min-height: 1049px;
  margin: 0 auto;
  gap: 56px;
}

.company-history-section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.company-history-section__title {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.company-history-section__line {
  width: 157px;
  border-top: 6px solid #ffffff;
}

.company-history-section__timeline {
  display: flex;
  flex-direction: column;
  width: 904px;
  gap: 11px;
}

.company-history-row {
  display: grid;
  grid-template-columns: 303px 1fr;
  align-items: start;
  width: 904px;
  min-height: 42px;
  padding: 0 0 11px;
  border-bottom: 2px solid #ffffff;
  column-gap: 48px;
}

.company-history-row__year,
.company-history-row__event {
  margin: 0;
  color: #ffffff;
}

.company-history-row__year {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.company-history-row__event {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  white-space: pre-line;
}

.site-footer {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 418px;
  padding: 54px 0 173px;
  background: #25252c;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(960px, calc(100% - 48px));
  min-height: 191px;
  gap: 35px;
}

.site-footer__company {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: center;
}

.site-footer__address {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-align: center;
}

.site-footer__nav {
  width: 100%;
}

.site-footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 16px clamp(24px, 3vw, 62px);
}

.site-footer__nav-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 8px;
}

.site-footer__nav-en {
  color: #50c2db;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.site-footer__nav-ja {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.hero {
  padding: 6rem 0 3rem;
}

.hero-inner {
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding-bottom: 5rem;
}

.panel {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.panel h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.panel.full {
  grid-column: 1 / -1;
}

@media (max-width: 1366px) {
  .shell {
    width: min(1200px, calc(100% - 32px));
  }

  .site-header {
    padding: 16px 32px 18px;
  }

  .top-hero__copy {
    left: clamp(96px, 12vw, 180px);
    width: calc(100% - clamp(160px, 22vw, 320px));
  }

  .message-section__label {
    left: 24px;
    font-size: clamp(6rem, 8vw, 8rem);
  }

  .message-section__content {
    grid-template-columns: minmax(240px, 279px) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
    width: min(1039px, calc(100% - 96px));
    margin-left: auto;
    margin-right: auto;
  }

  .message-section__visual {
    width: 100%;
    height: auto;
  }

  .message-section__visual img {
    height: auto;
    aspect-ratio: 607 / 486;
  }

  .service-section__inner {
    width: min(1185px, calc(100% - 64px));
    grid-template-columns: minmax(0, 1fr) minmax(420px, 542px);
  }

  .service-section__visual {
    width: 100%;
    height: auto;
  }

  .service-section__visual img {
    height: auto;
    aspect-ratio: 580 / 463;
  }

  .service-section__label {
    right: clamp(-80px, -9vw, -225px);
    font-size: clamp(6.5rem, 12vw, 9.375rem);
  }

  .service-section__button {
    right: clamp(24px, 6vw, 130px);
  }

  .equipment-section {
    padding-right: clamp(32px, 4vw, 116px);
    padding-left: clamp(32px, 4vw, 116px);
  }

  .equipment-section__heading,
  .equipment-section__grid,
  .equipment-section__button-row {
    width: min(1207px, 100%);
  }

  .equipment-section__heading {
    min-height: 180px;
  }

  .equipment-section__intro {
    width: min(360px, 34vw);
  }

  .equipment-section__eyebrow {
    left: min(34vw, 420px);
    font-size: clamp(6rem, 11vw, 9.375rem);
  }

  .equipment-section__grid {
    grid-template-columns: minmax(0, 477px) minmax(0, 1fr);
  }

  .equipment-card--compact {
    grid-template-columns: minmax(240px, 291px) minmax(0, 1fr);
  }

  .equipment-card__image--large,
  .equipment-card__image--compact {
    width: 100%;
  }

  .contact-section__panel {
    width: min(721px, calc(100% - 64px));
    padding-right: clamp(36px, 10vw, 137px);
    padding-left: clamp(36px, 8vw, 107px);
  }

  .equipment-factory-section {
    padding-right: 32px;
    padding-left: 32px;
  }

  .equipment-factory-card,
  .equipment-factory-card--tall {
    width: min(1172px, 100%);
  }

  .equipment-factory-card {
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    height: auto;
    min-height: 562px;
    padding-right: clamp(24px, 3vw, 48px);
  }

  .equipment-factory-card--reverse {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  }

  .equipment-factory-card__image,
  .equipment-factory-card--reverse .equipment-factory-card__image,
  .equipment-factory-card--tall .equipment-factory-card__image {
    width: 100%;
    height: auto;
  }

  .equipment-factory-card__body,
  .equipment-factory-card--tall .equipment-factory-card__body {
    width: auto;
  }

  .equipment-factory-card--reverse .equipment-factory-card__body {
    padding-right: clamp(24px, 3vw, 36px);
  }

  .equipment-factory-card__divider,
  .equipment-factory-card__spec-line {
    width: 100%;
  }

  .equipment-video-section__inner {
    width: min(1370px, calc(100% - 64px));
  }

  .equipment-video-section__content {
    grid-template-columns: minmax(200px, 304px) minmax(280px, 560px) minmax(200px, 304px);
    gap: clamp(20px, 3vw, 36px);
  }

  .equipment-video-thumb {
    width: 100%;
  }

  .equipment-video-section__row {
    gap: clamp(16px, 2vw, 32px);
  }

  .flow-process-section,
  .contact-form-section {
    padding-right: clamp(32px, 6vw, 180px);
    padding-left: clamp(32px, 6vw, 180px);
  }

  .flow-process-section__inner,
  .flow-process-section__timeline,
  .flow-process-step,
  .flow-process-step__card {
    width: min(991px, 100%);
  }

  .contact-form-panel {
    width: min(922px, 100%);
  }

  .contact-form-panel__inner,
  .contact-form-field,
  .contact-form-field__input,
  .contact-form-privacy {
    width: 100%;
  }

  .service-intro-section {
    min-height: auto;
    padding: 0 32px 72px;
  }

  .service-intro-section__inner {
    width: 100%;
    min-height: 0;
  }

  .service-intro-section__cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .service-strength-card,
  .service-history-card {
    width: 100%;
    min-height: 0;
  }

  .service-strength-card {
    padding: 24px 24px 32px;
  }

  .service-strength-card__inner {
    width: 100%;
    min-height: 0;
  }

  .service-history-card {
    padding: 28px 32px 34px;
  }

  .service-history-card__inner {
    width: 100%;
    min-height: 0;
    grid-template-columns: minmax(300px, 357px) minmax(0, 1fr);
    gap: 48px;
  }

  .service-history-card__left,
  .service-history-card__right {
    width: 100%;
  }

  .service-products-section {
    padding: 56px 32px 80px;
  }

  .service-products-section__inner,
  .service-products-section__grid {
    width: 100%;
    min-height: 0;
  }

  .service-products-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .service-product-card {
    width: 100%;
    min-height: 0;
    padding: 24px 22px 28px;
  }

  .service-product-card__inner {
    width: 100%;
    min-height: 0;
  }

  .company-overview-section__inner {
    width: min(1072px, calc(100% - 64px));
  }

  .company-overview-section__columns {
    grid-template-columns: minmax(0, 426px) minmax(0, 1fr);
    column-gap: clamp(32px, 4vw, 64px);
  }

  .company-overview-column--left,
  .company-overview-column--right {
    width: auto;
    min-height: 0;
  }

  .company-history-section {
    padding-right: clamp(32px, 6vw, 180px);
    padding-left: clamp(32px, 6vw, 180px);
  }

  .company-history-section__inner,
  .company-history-section__timeline,
  .company-history-row {
    width: min(904px, 100%);
  }

  .company-history-row {
    grid-template-columns: minmax(240px, 303px) 1fr;
    column-gap: clamp(24px, 4vw, 48px);
  }
}

@media (max-width: 1024px) {
  .site-header {
    position: sticky;
    top: 0;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
    padding: 14px 20px;
  }

  .site-header.is-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: none;
    padding: 14px 20px;
  }

  .header-inner {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  .brand img {
    height: 34px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-toggle__line {
    background: #25252c;
  }

  .nav-frame {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 40px));
    height: auto;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(37, 37, 44, 0.92);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
  }

  .nav-frame.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .nav-link {
    align-items: flex-start;
    height: auto;
    gap: 6px;
  }

  .nav-toggle.is-open .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .top-hero {
    height: auto;
  }

  .top-hero__inner {
    min-height: 720px;
  }

  .top-hero__shade {
    inset: 0 auto 0 0;
    width: 220px;
    height: 100%;
  }

  .top-hero__object {
    top: 40px;
    left: 180px;
    width: 260px;
    height: 700px;
  }

  .top-hero__copy {
    top: 280px;
    left: 32px;
    width: calc(100% - 64px);
  }

  .top-hero__eyebrow {
    gap: 10px;
    margin-bottom: 26px;
    font-size: clamp(4rem, 13vw, 6rem);
  }

  .top-hero__subline {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .top-hero__title {
    font-size: clamp(2.25rem, 6vw, 3.25rem);
    white-space: normal;
  }

  .message-section {
    min-height: auto;
    padding: 56px 32px 64px;
  }

  .message-section__label {
    position: static;
    margin-bottom: 24px;
    font-size: clamp(5rem, 13vw, 7rem);
    writing-mode: horizontal-tb;
    transform: none;
  }

  .message-section__content {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    min-height: 0;
    padding-top: 0;
  }

  .message-section__text {
    padding-top: 0;
  }

  .message-section__visual {
    max-width: 700px;
    margin: 0 auto;
  }

  .service-section {
    min-height: auto;
    padding: 56px 32px 72px;
  }

  .service-section__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .service-section__visual {
    grid-row: auto;
  }

  .service-section__label {
    right: 32px;
    bottom: -12px;
    font-size: clamp(5rem, 16vw, 7rem);
  }

  .service-intro-section {
    min-height: auto;
    padding: 0 32px 64px;
  }

  .service-intro-section__inner {
    width: 100%;
    min-height: 0;
    gap: 40px;
  }

  .service-intro-section__header {
    margin: -20px auto 0;
  }

  .service-intro-section__copy {
    gap: 24px;
  }

  .service-intro-section__description {
    max-width: 100%;
  }

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

  .service-strength-card {
    padding: 24px 28px 32px;
  }

  .service-history-card {
    padding: 28px 32px 34px;
  }

  .service-history-card__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-products-section {
    padding: 56px 32px 72px;
  }

  .service-products-section__inner {
    width: 100%;
    min-height: 0;
    gap: 36px;
  }

  .service-products-section__grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-product-card {
    width: 100%;
    padding: 24px 32px 30px;
  }

  .service-product-card__inner {
    width: 100%;
    min-height: 0;
  }

  .service-section__button {
    position: static;
  }

  .equipment-section {
    min-height: auto;
    padding: 56px 32px 72px;
  }

  .equipment-section__heading {
    display: block;
    width: 100%;
    min-height: 0;
    margin-bottom: 32px;
  }

  .equipment-section__intro {
    width: 100%;
  }

  .equipment-section__eyebrow {
    position: static;
    margin-top: 20px;
    font-size: clamp(5rem, 15vw, 7rem);
  }

  .equipment-section__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
    width: 100%;
  }

  .equipment-card--large,
  .equipment-card--compact {
    grid-row: auto;
    display: block;
  }

  .equipment-card__content,
  .equipment-card__content--stacked {
    padding: 18px 18px 24px;
  }

  .equipment-section__button-row {
    width: 100%;
    margin-top: 28px;
  }

  .contact-section {
    min-height: auto;
    padding: 56px 32px 64px;
  }

  .contact-section__panel {
    width: 100%;
    max-width: 721px;
  }

  .subpage-hero {
    height: auto;
    min-height: 500px;
  }

  .subpage-hero__object {
    top: -40px;
    left: 240px;
    width: 360px;
    height: 760px;
  }

  .subpage-hero__content {
    top: 230px;
    left: 40px;
    width: calc(100% - 80px);
  }

  .subpage-hero__eyebrow {
    font-size: clamp(2.8rem, 9vw, 4rem);
  }

  .subpage-hero__title {
    font-size: clamp(1.8rem, 4.6vw, 2.25rem);
  }

  .subpage-hero__base {
    top: auto;
    bottom: -18px;
    width: calc(100% - 80px);
  }

  .subpage-section-header {
    width: 100%;
    gap: 20px;
  }

  .subpage-section-header__line {
    width: min(320px, 100%);
  }

  .subpage-section-header__lead {
    font-size: 15px;
  }

  .equipment-factory-section {
    min-height: auto;
    padding: 0 32px 72px;
  }

  .equipment-factory-section--simple {
    padding-top: 56px;
  }

  .equipment-factory-section__header {
    margin: -20px auto 48px;
  }

  .equipment-factory-card,
  .equipment-factory-card--tall {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    height: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .equipment-factory-card__body,
  .equipment-factory-card--tall .equipment-factory-card__body,
  .equipment-factory-card--reverse .equipment-factory-card__body {
    width: 100%;
    min-height: 0;
    gap: 22px;
    padding: 28px 24px 32px;
  }

  .equipment-factory-card--reverse .equipment-factory-card__image,
  .equipment-factory-card--reverse .equipment-factory-card__body {
    order: initial;
  }

  .equipment-bending-section {
    min-height: auto;
    padding: 56px 32px 72px;
  }

  .equipment-video-section {
    min-height: auto;
    padding: 64px 32px 72px;
  }

  .equipment-video-section__inner {
    width: 100%;
    min-height: 0;
    gap: 32px;
  }

  .equipment-video-section__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .equipment-video-section__column {
    gap: 24px;
    padding-top: 0;
  }

  .equipment-video-section__map {
    order: -1;
  }

  .equipment-video-thumb {
    max-width: 420px;
    margin: 0 auto;
  }

  .equipment-video-section__row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
    margin: 0 auto;
    gap: 24px;
  }

  .equipment-video-section__row .equipment-video-thumb {
    max-width: none;
  }

  .flow-process-section {
    min-height: auto;
    padding: 72px 32px 64px;
  }

  .flow-process-section__header {
    margin: -20px auto 48px;
  }

  .flow-process-section__inner {
    width: 100%;
    min-height: 0;
    gap: 40px;
  }

  .flow-process-section__timeline {
    width: 100%;
    gap: 32px;
  }

  .flow-process-section__timeline::before {
    display: none;
  }

  .flow-process-step {
    width: 100%;
    min-height: 0;
  }

  .flow-process-step__frame {
    position: relative;
    margin: 0 auto -12px 0;
  }

  .flow-process-step__card {
    width: 100%;
    min-height: 0;
    padding: 32px 24px 28px;
  }

  .flow-process-section__button {
    width: 100%;
    max-width: 269px;
  }

  .contact-form-section {
    min-height: auto;
    padding: 72px 32px 64px;
  }

  .contact-form-section__header {
    width: 100%;
  }

  .contact-form-panel {
    width: 100%;
    min-height: 0;
  }

  .contact-form-panel__inner {
    width: 100%;
    margin: 0;
  }

  .contact-form-field,
  .contact-form-field__input,
  .contact-form-privacy {
    width: 100%;
  }

  .company-intro-section {
    min-height: auto;
    padding: 0 32px 72px;
  }

  .company-intro-section__header {
    margin: -20px auto 48px;
  }

  .company-intro-section__image {
    width: 100%;
  }

  .company-policy-section {
    min-height: auto;
    padding: 56px 32px 72px;
  }

  .company-policy-section__inner {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    gap: 24px;
  }

  .company-policy-card {
    width: 100%;
    min-height: 0;
  }

  .company-overview-section {
    min-height: auto;
    padding: 72px 32px;
  }

  .company-overview-section__inner {
    width: 100%;
    min-height: 0;
    gap: 48px;
  }

  .company-overview-section__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .company-overview-column--left,
  .company-overview-column--right {
    width: 100%;
    min-height: 0;
  }

  .company-history-section {
    min-height: auto;
    padding: 64px 32px 72px;
  }

  .company-history-section__inner {
    width: 100%;
    min-height: 0;
    gap: 40px;
  }

  .company-history-section__timeline {
    width: 100%;
  }

  .company-history-row {
    width: 100%;
    grid-template-columns: 220px 1fr;
    column-gap: 20px;
  }

  .company-history-row__year,
  .company-history-row__event {
    font-size: 18px;
  }
}

@media (max-width: 800px) {
  .site-header {
    position: sticky;
    top: 0;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
    padding: 14px 20px;
  }

  .site-header.is-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: none;
    padding: 14px 20px;
  }

  .header-inner {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  .brand img {
    height: 34px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-toggle__line {
    background: #25252c;
  }

  .nav-frame {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 40px));
    height: auto;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(37, 37, 44, 0.92);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
  }

  .nav-frame.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .nav-link {
    align-items: flex-start;
    height: auto;
    gap: 6px;
  }

  .nav-toggle.is-open .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .top-hero {
    height: auto;
  }

  .top-hero__inner {
    min-height: 680px;
  }

  .top-hero__canvas {
    width: 100%;
  }

  .top-hero__shade {
    inset: 0 auto 0 0;
    width: 256px;
    height: 100%;
  }

  .top-hero__object {
    top: 94px;
    left: 223px;
    width: 243px;
    height: 620px;
  }

  .top-hero__copy {
    top: 250px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .top-hero__eyebrow {
    gap: 10px;
    margin-bottom: 26px;
font-size: clamp(3rem, 10vw, 5.4rem);
  }

  .top-hero__subline {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .top-hero__tag {
    padding: 14px 12px 12px;
    font-size: 14px;
  }

  .top-hero__title {
    position: static;
    display: block;
    margin-top: 18px;
    font-size: clamp(2rem, 8vw, 3rem);
    white-space: normal;
  }

  .message-section {
    min-height: auto;
    padding: 48px 24px 56px;
  }

  .message-section__label {
    position: static;
    margin-bottom: 24px;
    font-size: clamp(3.5rem, 18vw, 6rem);
    writing-mode: horizontal-tb;
    transform: none;
  }

  .message-section__content {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    min-height: 0;
    padding-top: 0;
    margin-left: 0;
  }

  .message-section__text {
    padding-top: 0;
  }

  .message-section__heading {
    margin-bottom: 28px;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .message-section__visual {
    width: 100%;
    height: auto;
  }

  .message-section__visual::after {
    inset: -10px -10px 10px 10px;
  }

  .message-section__visual img {
    height: auto;
    aspect-ratio: 607 / 486;
  }

  .service-section {
    min-height: auto;
    padding: 48px 24px 56px;
  }

  .service-section__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 28px;
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .service-section__visual {
    grid-row: auto;
    width: 100%;
    height: auto;
  }

  .service-section__visual img {
    height: auto;
    aspect-ratio: 580 / 463;
  }

  .service-section__label {
    right: 12px;
    bottom: -8px;
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .service-section__card {
    width: 100%;
    min-height: 0;
    padding: 28px 24px 32px;
  }

  .service-section__heading {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .service-section__line {
    margin: 22px 0 28px;
  }

  .service-section__catch {
    margin-bottom: 24px;
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    line-height: 1.4;
    text-align: center;
  }

  .service-section__button {
    position: static;
  }

  .equipment-section {
    min-height: auto;
    padding: 48px 24px 56px;
  }

  .equipment-section__heading {
    display: block;
    width: 100%;
    min-height: 0;
    margin-bottom: 28px;
  }

  .equipment-section__intro {
    width: 100%;
  }

  .equipment-section__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .equipment-section__title-line {
    width: 180px;
    margin: 20px 0;
  }

  .equipment-section__lead {
    font-size: 14px;
  }

  .equipment-section__eyebrow {
    position: static;
    margin-top: 20px;
    font-size: clamp(4rem, 18vw, 6.5rem);
    line-height: 0.9;
  }

  .equipment-section__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    width: 100%;
  }

  .equipment-card--large,
  .equipment-card--compact {
    grid-row: auto;
    display: block;
  }

  .equipment-card__image--large,
  .equipment-card__image--compact {
    width: 100%;
    height: auto;
    aspect-ratio: 456 / 302;
  }

  .equipment-card__content,
  .equipment-card__content--stacked {
    padding: 18px 18px 22px;
  }

  .equipment-card__title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .equipment-card__line--solid {
    margin: 16px 0 18px;
  }

  .equipment-card__row {
    grid-template-columns: 84px 1fr;
    gap: 12px;
  }

  .equipment-card__label,
  .equipment-card__value {
    font-size: 16px;
  }

  .equipment-section__button {
    margin: 0;
  }

  .equipment-section__button-row {
    width: 100%;
    margin: 24px 0 0;
  }

  .contact-section {
    min-height: auto;
    padding: 48px 24px 56px;
  }

  .contact-section__panel {
    width: 100%;
    min-height: 0;
    padding: 28px 24px 36px;
  }

  .contact-section__title {
    margin-bottom: 42px;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .contact-section__phone {
    margin-bottom: 18px;
    font-size: clamp(2rem, 7vw, 2.75rem);
    white-space: normal;
  }

  .contact-section__hours {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .contact-section__button {
    display: flex;
    margin: 0 auto;
  }

  .subpage-hero {
    height: auto;
    min-height: 420px;
  }

  .subpage-hero__object {
    top: -90px;
    width: 320px;
    height: 620px;
  }

  .subpage-hero__content {
    top: 210px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .subpage-hero__eyebrow {
    margin-bottom: 12px;
    max-width: 100%;
    font-size: clamp(1.95rem, 8.4vw, 2.75rem);
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .subpage-hero__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .subpage-hero__base {
    top: auto;
    bottom: -19px;
    left: 24px;
    width: calc(100% - 48px);
    height: auto;
    transform: none;
  }

  @media (max-width: 480px) {
    .subpage-hero__eyebrow {
      font-size: clamp(1.85rem, 8vw, 2.35rem);
    }
  }

  .subpage-section-header {
    width: 100%;
    gap: 18px;
  }

  .subpage-section-header__title {
    font-size: 20px;
  }

  .subpage-section-header__line {
    width: min(240px, 100%);
    border-top-width: 4px;
  }

  .subpage-section-header__lead {
    font-size: 14px;
  }

  .equipment-factory-section {
    min-height: auto;
    margin-top: -2px;
    padding: 0 24px 56px;
  }

  .equipment-factory-section--simple {
    padding-top: 48px;
  }

  .equipment-factory-section__header {
    margin: 8px auto 36px;
  }

  .equipment-factory-card {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    height: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .equipment-factory-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 641 / 558;
  }

  .equipment-factory-card__body {
    width: 100%;
    min-height: 0;
    gap: 20px;
    padding: 24px 20px 28px;
  }

  .equipment-factory-card--tall .equipment-factory-card__image {
    width: 100%;
    height: auto;
  }

  .equipment-factory-card--tall .equipment-factory-card__body {
    width: 100%;
    gap: 20px;
    padding: 24px 20px 28px;
  }

  .equipment-factory-card--reverse .equipment-factory-card__image,
  .equipment-factory-card--reverse .equipment-factory-card__body {
    order: initial;
  }

  .equipment-factory-card--reverse .equipment-factory-card__body {
    padding: 24px 20px 28px;
  }

  .equipment-factory-card__eyebrow,
  .equipment-factory-card__title,
  .equipment-factory-card__spec-name,
  .equipment-factory-card__spec-count {
    font-size: 20px;
  }

  .equipment-factory-card__divider,
  .equipment-factory-card__spec-line {
    width: 100%;
  }

  .equipment-factory-card__spec-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .equipment-bending-section {
    min-height: auto;
    padding: 48px 24px 56px;
  }

  .equipment-video-section {
    min-height: auto;
    padding: 56px 24px 64px;
  }

  .equipment-video-section__inner {
    width: 100%;
    min-height: 0;
    gap: 32px;
  }

  .equipment-video-section__header {
    gap: 18px;
  }

  .equipment-video-section__title {
    font-size: 20px;
  }

  .equipment-video-section__line {
    width: min(240px, 100%);
    border-top-width: 4px;
  }

  .equipment-video-section__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .equipment-video-section__column {
    gap: 24px;
    padding-top: 0;
  }

  .equipment-video-section__map {
    order: -1;
  }

  .equipment-video-section__column
    + .equipment-video-section__map
    + .equipment-video-section__column {
    gap: 24px;
  }

  .equipment-video-thumb {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .equipment-video-section__row {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 20px;
  }

  .equipment-video-thumb__play {
    width: 44px;
    height: 44px;
  }

  .equipment-video-thumb__play::before {
    border-width: 7px 0 7px 11px;
  }

  .equipment-video-thumb__label {
    min-width: 160px;
    min-height: 32px;
    font-size: 13px;
  }

  .equipment-video-dialog {
    width: calc(100% - 24px);
  }

  .equipment-video-dialog__panel {
    padding: 28px 20px 20px;
  }

  .equipment-video-dialog__title {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .flow-process-section {
    min-height: auto;
    margin-top: -2px;
    padding: 0 24px 56px;
  }

  .flow-process-section__header {
    margin: 8px auto 40px;
  }

  .flow-process-section__inner {
    width: 100%;
    min-height: 0;
    gap: 32px;
  }

  .flow-process-section__title-block {
    gap: 16px;
  }

  .flow-process-section__title {
    font-size: 20px;
  }

  .flow-process-section__line {
    width: min(240px, 100%);
    border-top-width: 4px;
  }

  .flow-process-section__timeline {
    width: 100%;
    gap: 24px;
  }

  .flow-process-section__timeline::before {
    display: none;
  }

  .flow-process-step {
    width: 100%;
    min-height: 0;
    padding-top: 0;
  }

  .flow-process-step__frame {
    position: relative;
    width: 193px;
    margin: 0 auto -12px 0;
  }

  .flow-process-step__card {
    width: 100%;
    min-height: 0;
    margin-left: 0;
    padding: 32px 20px 24px;
  }

  .flow-process-step__label {
    font-size: 18px;
    white-space: normal;
  }

  .flow-process-step__description {
    font-size: 14px;
    line-height: 1.8;
  }

  .flow-process-section__button {
    width: 100%;
    max-width: 269px;
  }

  .contact-form-section {
    min-height: auto;
    margin-top: -2px;
    padding: 0 24px 56px;
  }

  .contact-form-section__header {
    width: 100%;
  }

  .contact-form-section__header .subpage-section-header__line {
    width: min(240px, 100%);
  }

  .contact-form-panel {
    width: 100%;
    min-height: 0;
    padding: 24px 16px 28px;
  }

  .contact-form-panel__inner {
    width: 100%;
    margin: 0;
    gap: 28px;
  }

  .contact-form-field {
    width: 100%;
  }

  .contact-form-field__head {
    gap: 10px;
    margin-bottom: 12px;
  }

  .contact-form-field__input {
    width: 100%;
    height: 44px;
  }

  .contact-form-field__input--textarea {
    height: 180px;
  }

  .contact-form-privacy {
    width: 100%;
    min-height: 0;
    padding: 24px 20px;
  }

  .contact-form-privacy__title {
    margin-bottom: 20px;
  }

  .contact-form-privacy__text {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-form-privacy__consent {
    width: auto;
    margin-top: 24px;
  }

  .contact-form-privacy__consent-label {
    font-size: 14px;
  }

  .contact-form-panel__submit {
    width: 100%;
    max-width: 210px;
  }

  .service-intro-section {
    min-height: auto;
    margin-top: -2px;
    padding: 0 24px 56px;
  }

  .service-intro-section__inner {
    width: 100%;
    min-height: 0;
    gap: 32px;
  }

  .service-intro-section__header {
    margin: 8px auto 0;
  }

  .service-intro-section__copy {
    gap: 20px;
  }

  .service-intro-section__lead {
    font-size: 15px;
  }

  .service-intro-section__description {
    font-size: 14px;
  }

  .service-intro-section__cards {
    gap: 20px;
  }

  .service-strength-card {
    padding: 24px 18px 28px;
  }

  .service-strength-card__inner {
    gap: 22px;
  }

  .service-strength-card__header {
    flex-direction: column;
    gap: 16px;
  }

  .service-strength-card__icon {
    max-width: 78px;
  }

  .service-strength-card__title {
    align-items: center;
    font-size: 20px;
    text-align: center;
  }

  .service-strength-card__body {
    font-size: 14px;
  }

  .service-history-card {
    padding: 24px 18px 28px;
  }

  .service-history-card__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-history-card__left {
    min-height: 0;
  }

  .service-history-card__icon {
    width: 78px;
  }

  .service-history-card__title {
    font-size: 20px;
  }

  .service-history-card__body {
    font-size: 14px;
    text-align: left;
  }

  .service-products-section {
    padding: 48px 24px 56px;
  }

  .service-products-section__inner {
    width: 100%;
    min-height: 0;
    gap: 28px;
  }

  .service-products-section__heading {
    width: 100%;
    gap: 16px;
  }

  .service-products-section__title {
    font-size: 20px;
  }

  .service-products-section__line {
    width: min(240px, 100%);
    border-top-width: 4px;
  }

  .service-products-section__grid {
    width: 100%;
    gap: 20px;
  }

  .service-product-card {
    width: 100%;
    min-height: 0;
    padding: 22px 18px 24px;
  }

  .service-product-card__inner {
    width: 100%;
    min-height: 0;
    gap: 20px;
  }

  .service-product-card__header {
    flex-direction: column;
    gap: 12px;
    min-height: 0;
  }

  .service-product-card__icon {
    max-width: 72px;
    max-height: 62px;
  }

  .service-product-card__title {
    font-size: 19px;
    text-align: center;
  }

  .service-product-card__line {
    border-top-width: 4px;
  }

  .service-product-card__body {
    font-size: 14px;
  }

  .company-intro-section {
    min-height: auto;
    margin-top: -2px;
    padding: 0 24px 56px;
  }

  .company-intro-section__header {
    margin: 8px auto 36px;
  }

  .company-intro-section__image {
    width: 100%;
  }

  .company-policy-section {
    min-height: auto;
    padding: 48px 24px 56px;
  }

  .company-policy-section__inner {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    gap: 24px;
  }

  .company-policy-card {
    width: 100%;
    min-height: 0;
    padding: 28px 20px 32px;
  }

  .company-policy-card__line {
    margin: 18px 0 26px;
  }

  .company-overview-section {
    min-height: auto;
    padding: 56px 24px 64px;
  }

  .company-overview-section__inner {
    width: 100%;
    min-height: 0;
    gap: 40px;
  }

  .company-overview-section__heading {
    gap: 18px;
  }

  .company-overview-section__title {
    font-size: 20px;
  }

  .company-overview-section__line {
    width: 140px;
    border-top-width: 4px;
  }

  .company-overview-section__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .company-overview-column--left,
  .company-overview-column--right {
    width: 100%;
    min-height: 0;
  }

  .company-overview-item {
    min-height: 0;
  }

  .company-overview-item__tab {
    min-width: 96px;
    height: 42px;
    margin-bottom: 16px;
    padding: 0 16px;
  }

  .company-history-section {
    min-height: auto;
    padding: 56px 24px 64px;
  }

  .company-history-section__inner {
    width: 100%;
    min-height: 0;
    gap: 36px;
  }

  .company-history-section__heading {
    gap: 18px;
  }

  .company-history-section__title {
    font-size: 20px;
  }

  .company-history-section__line {
    width: 140px;
    border-top-width: 4px;
  }

  .company-history-section__timeline {
    width: 100%;
    gap: 14px;
  }

  .company-history-row {
    grid-template-columns: 1fr;
    width: 100%;
    row-gap: 10px;
    column-gap: 0;
    padding-bottom: 14px;
  }

  .company-history-row__year,
  .company-history-row__event {
    font-size: 16px;
  }

  .company-history-row__event {
    line-height: 1.5;
    letter-spacing: 0;
  }

  .site-footer {
    min-height: auto;
    padding: 48px 24px 64px;
  }

  .site-footer__inner {
    width: 100%;
    min-height: 0;
    gap: 24px;
  }

  .site-footer__company {
    font-size: 20px;
  }

  .site-footer__address {
    font-size: 14px;
  }

  .site-footer__nav {
    width: 100%;
    height: auto;
  }

  .site-footer__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    gap: 16px 32px;
  }

  .site-footer__nav-link {
    height: auto;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-inner,
  .panel {
    padding: 1.5rem;
    border-radius: 24px;
  }

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