﻿:root {
  --color-base: #101a22;
  --color-base-rgb: 16, 26, 34;
  --color-primary: #101a22;
  --color-secondary: #46505d;
  --color-brown: #b2a295;
  --color-brown-rgb: 178, 162, 149;
  --color-blue: #245ca6;
  --color-skyblue: #e1eaf2;
  --color-gray: #f0f0f2;
  --color-bg: #ffffff;
  --color-muted: #6a7380;
  --color-line: #dfe3e8;
  --font: "Satoshi", "IBM Plex Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --container-pad: 24px;
  --container: calc(100% - var(--container-pad) * 2);
  --header-height-lg: 94px;
  --header-height-md: 78px;
  --header-h: var(--header-height-lg);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-header: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (min-width: 768px) {
  :root {
    --container: 768px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container: 1024px;
  }
}

@media (min-width: 1280px) {
  :root {
    --container: 1230px;
  }
}

@media (min-width: 1400px) {
  :root {
    --container: 1360px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-base);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0;
  transition: opacity 480ms ease;
}

body.is-loaded {
  opacity: 1;
}

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

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

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

/* Header - ieshima match */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  grid-template-areas: "logo gnav contact";
  align-items: center;
  height: var(--header-height-lg);
  padding: 0 50px;
  gap: 28px;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  color: #fff;
  transition:
    height 0.3s var(--ease-header),
    border-bottom-color 0.3s var(--ease-header),
    background-color 0.3s var(--ease-header);
}

.site-header.is-not-top .site-header__inner {
  border-bottom-color: rgba(var(--color-base-rgb), 0.1);
  background-color: #fff;
  color: var(--color-base);
}

.site-header.is-menu-open .site-header__inner {
  border-bottom-color: transparent;
  background-color: transparent;
  color: #fff;
}

.brand {
  grid-area: logo;
  display: inline-flex;
  align-items: center;
  width: 202px;
  max-width: 100%;
  line-height: 1;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-logo {
  display: block;
  width: 202px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-logo--dark {
  display: none;
}

.home-page .site-header:not(.is-not-top):not(.is-menu-open) .brand-logo--dark {
  display: none;
}

.site-header.is-not-top .brand-logo--light {
  display: none;
}

.site-header.is-menu-open .brand-logo--light {
  display: block;
}

.site-header.is-not-top .brand-logo--dark {
  display: block;
}

.site-header.is-menu-open .brand-logo--dark {
  display: none;
}

.site-nav {
  grid-area: gnav;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  margin-left: 40px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-nav a:first-child {
  margin-left: 0;
}

.site-header.is-not-top .site-nav a {
  color: var(--color-base);
}

.site-nav a:hover {
  opacity: 1;
}

/* Text flip hover (ieshima-style) */
[data-hover-animation-target] {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  line-height: 1.2;
  vertical-align: top;
}

.biz-name[data-hover-animation-target] {
  display: block;
  width: 100%;
}

[data-hover-animation-first-el],
[data-hover-animation-second-el] {
  display: block;
  white-space: nowrap;
}

[data-hover-animation-second-el] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 150%, 0);
}

.header-contact [data-hover-animation-target] {
  display: block;
  width: 100%;
  line-height: 1.4;
  text-align: center;
}

.header-contact [data-hover-animation-first-el],
.header-contact [data-hover-animation-second-el] {
  width: 100%;
  text-align: center;
}

.header-contact {
  grid-area: contact;
  display: block;
  justify-self: end;
  width: max-content;
  min-width: 134px;
  padding: 10px 13px;
  border-radius: 30px;
  background-color: #fff;
  text-align: center;
  transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-contact span {
  color: var(--color-base);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-header.is-not-top .header-contact {
  background-color: var(--color-base);
}

.site-header.is-not-top .header-contact span {
  color: #fff;
}

.site-header.is-menu-open .header-contact {
  display: none;
}

.nav-toggle {
  display: none;
  grid-area: hamburger;
  justify-self: end;
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.nav-toggle span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 1s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 19px;
}

.nav-toggle span:nth-child(3) {
  top: 24px;
}

.nav-toggle[aria-expanded="true"] {
  color: #fff;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 19px;
  transform: rotate(-40deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 19px;
  transform: rotate(40deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--color-brown);
  visibility: hidden;
  pointer-events: none;
}

.drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-base);
  transform: translateY(-100%);
}

.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer.is-open::before {
  animation: drawerSlideIn 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.drawer.is-closing::before {
  animation: drawerSlideOut 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.drawer[hidden] {
  display: none;
}

.drawer-nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  text-align: center;
  opacity: 0;
  transform: scale(1.01);
}

.drawer.is-open .drawer-nav {
  animation: drawerScaleIn 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.35s forwards;
}

.drawer.is-closing .drawer-nav {
  animation: drawerFadeOut 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.drawer-nav a {
  padding: 14px 24px;
  color: var(--color-brown);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: opacity 0.3s ease;
}

.drawer-nav a:hover,
.drawer-nav a:focus {
  color: var(--color-brown);
  opacity: 0.7;
}

@keyframes drawerSlideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes drawerSlideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}

@keyframes drawerScaleIn {
  from {
    opacity: 0;
    transform: scale(1.01);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drawerFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Hero / KV + About scroll stage (ieshima-style) */
.home-top {
  position: relative;
}

.top-kv {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
  background: #08121a;
}

.top-kv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.top-kv__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 26, 0.55) 0%, rgba(8, 18, 26, 0.2) 48%, rgba(8, 18, 26, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 18, 26, 0.28) 0%, transparent 40%, rgba(8, 18, 26, 0.45) 100%);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1100ms ease, transform 7000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide--mobile {
  display: none;
}

@media (max-width: 767px) {
  .hero-slide--pc {
    display: none;
  }

  .hero-slide--mobile {
    display: block;
  }

  .hero-slide--mobile.is-active {
    opacity: 1;
    transform: scale(1);
  }
}

.top-kv__blur {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  will-change: backdrop-filter, -webkit-backdrop-filter;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.top-kv__bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-color: rgba(11, 46, 77, 0.4);
  opacity: 0;
  will-change: opacity;
}

.top-kv__catch-wrap {
  position: absolute;
  right: 0;
  bottom: 8%;
  left: 0;
  z-index: 3;
  width: var(--container);
  max-width: calc(100% - 480px);
  margin: 0 0 0 4%;
  padding: 0;
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.top-kv__catch-wrap.is-hidden {
  opacity: 0 !important;
  animation: none !important;
  pointer-events: none;
}

.top-kv__catch-en {
  margin: 0 0 28px;
  font-size: clamp(48px, 6vw, 100px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.top-kv__catch-ja {
  margin: 0;
  max-width: 18em;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.top-kv__news {
  position: absolute;
  right: 6%;
  bottom: 6%;
  z-index: 3;
  display: block;
  width: 440px;
  max-width: calc(100% - 12%);
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.top-kv__news.is-hidden {
  opacity: 0 !important;
  animation: none !important;
  pointer-events: none;
}

.top-kv__news-label {
  display: block;
  margin: 0 0 27px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.top-kv__news-link {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
  color: #fff;
  gap: 0;
}

.top-kv__news-link time {
  flex: 0 0 90px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}

.top-kv__news-title {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-kv__news-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 18px;
  height: 18px;
}

.top-kv__news-arrow svg {
  display: block;
  width: 18px;
  height: 13px;
  margin-top: 2px;
}

/* About over blurred KV */
.top-about__wrapper {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.top-about {
  display: block;
  width: auto;
  min-height: 100dvh;
  margin: 0;
  padding: clamp(100px, 14vw, 160px) 4% clamp(80px, 10vw, 140px);
  color: #fff;
  background: transparent;
}

.top-about__link {
  display: block;
  width: var(--container);
  max-width: none;
  margin: 0 auto;
  color: #fff;
}

.top-about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: end;
}

.top-about__catch {
  margin: 0;
}

.catch-en {
  display: block;
  margin: 0 0 24px;
  font-size: clamp(40px, 5.8vw, 88px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.catch-ja {
  display: block;
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
}

.top-about__body {
  display: grid;
  gap: 18px;
}

.top-about__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 2;
}

.top-about__button {
  display: flex;
  justify-content: flex-end;
  width: var(--container);
  margin: 48px auto 0;
}

/* Mouse stalker (About) */
.js-mouse-stalker {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10002;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
}

.js-mouse-stalker__cursor,
.js-mouse-stalker__follower {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
}

.js-mouse-stalker__cursor {
  z-index: 2;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    left 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    width 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    height 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0.3s ease;
}

.js-mouse-stalker__follower {
  z-index: 1;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  opacity: 0;
  transition: top 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    left 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    width 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    height 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-mouse-stalker.is-hover .js-mouse-stalker__cursor {
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background-color: #fff;
  opacity: 0;
}

.js-mouse-stalker.is-hover .js-mouse-stalker__cursor::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-base);
  font-size: 1.625rem;
  letter-spacing: 0.03em;
  content: "";
}

.js-mouse-stalker.is-hover .js-mouse-stalker__follower {
  opacity: 0;
}

.js-mouse-stalker.is-hover.about .js-mouse-stalker__cursor {
  opacity: 1;
}

.js-mouse-stalker.is-hover.about .js-mouse-stalker__cursor::before {
  content: "About";
}

@media (hover: hover) and (pointer: fine) {
  .top-about__link {
    cursor: none;
  }

  body.has-stalker-about {
    cursor: none;
  }

  body.has-stalker-about a,
  body.has-stalker-about button {
    cursor: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .js-mouse-stalker {
    display: none !important;
  }
}

/* Shared */
.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.c-title {
  margin: 0;
}

.c-title__en {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.c-title__ja {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.c-title--light {
  color: #fff;
}

.c-title--light .c-title__ja {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.text-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color 180ms ease;
}

.text-more:hover {
  color: var(--color-blue);
}

.arrow-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.55;
}

.arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 56px;
  padding: 0 40px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-brown);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 200ms ease, transform 160ms ease;
}

.btn-pill:hover {
  background: #182632;
  transform: translateY(-1px);
}

.btn-pill:active {
  transform: translateY(1px) scale(0.98);
}

.btn-pill--light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-pill--light:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* News (Blog-style) */
.top-news {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin: 0 auto;
  padding-top: clamp(70px, 2.102rem + 11.36vw, 170px);
  padding-bottom: clamp(40px, 0.227rem + 11.36vw, 140px);
  background: var(--color-bg);
}

.top-news__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.top-news__title {
  position: sticky;
  top: calc(var(--header-h) + 36px);
}

.top-news__main {
  min-width: 0;
}

.news-card {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #f2f0ee;
}

.news-card:last-of-type {
  border-bottom: 1px solid #f2f0ee;
}

.news-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.news-card__body {
  display: flex;
  gap: 80px;
  align-items: stretch;
}

.news-card__media {
  flex: 0 0 20%;
}

.news-card__figure {
  position: relative;
  margin: 0;
  padding-top: 65%;
  overflow: hidden;
  background: var(--color-base);
}

.news-card__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.news-card:hover .news-card__figure img {
  transform: scale(1.03);
}

.news-card__right {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.news-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-right: 126px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.news-card__meta time {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-base);
}

.news-card__cat {
  display: inline-block;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--color-base);
}

.news-card__heading {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 16px 0 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-base);
}

.news-card__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 37px;
  height: 37px;
  transform: translateY(-50%);
}

.news-card__arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 14px;
  background:
    linear-gradient(currentColor, currentColor) left center / 12px 1.5px no-repeat;
  color: var(--color-base);
  transition:
    transform 700ms cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card__arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.news-card__arrow-icon--a {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.news-card__arrow-icon--b {
  transform: translate(-80%, -50%);
  opacity: 0;
}

.news-card:hover .news-card__arrow-icon--a {
  transform: translate(0%, -50%);
  opacity: 0;
}

.news-card:hover .news-card__arrow-icon--b {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.top-news__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 90px;
}

.top-news--page {
  padding-top: clamp(40px, 3vw, 80px);
}

/* Staff (Cases-style / Splide) */
.top-staff {
  position: relative;
  z-index: 3;
  padding-top: clamp(50px, 1.761rem + 6.82vw, 110px);
  padding-bottom: clamp(80px, 2.955rem + 10.23vw, 170px);
  overflow: hidden;
  background: var(--color-base);
  color: var(--color-brown);
}

.top-staff__container {
  width: var(--container);
  margin: 0 auto;
}

.top-staff__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.c-title--staff .c-title__en,
.c-title--staff .c-title__ja {
  color: var(--color-brown);
}

.text-more--on-dark {
  color: var(--color-brown);
}

.text-more--on-dark:hover {
  color: #fff;
}

.top-staff__slide {
  margin-top: 60px;
}

.top-staff__slide .splide__track {
  overflow: visible;
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  user-select: none;
}

.top-staff__slide .splide__list,
.top-staff__slide .splide__slide,
.top-staff__slide .staff-card {
  touch-action: pan-y pinch-zoom;
}

.top-staff__slide .splide__list {
  display: flex;
  align-items: stretch;
  backface-visibility: hidden;
}

.top-staff__slide .splide__slide {
  height: auto;
  flex: 0 0 auto;
  width: 430px;
  max-width: 90vw;
}

.staff-card {
  position: relative;
  height: 100%;
  padding: 30px 30px 40px;
  background: #08121a;
  color: var(--color-brown);
  cursor: grab;
}

.staff-card:active {
  cursor: grabbing;
}

.staff-card img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.staff-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.staff-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.staff-card__figure {
  position: relative;
  margin: 0;
  padding-top: 130%;
  overflow: hidden;
}

.staff-card__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.staff-card:hover .staff-card__figure img {
  transform: scale(1.08);
}

.staff-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(178, 162, 149, 0.2);
}

.staff-card__meta time {
  display: inline-block;
  color: var(--color-brown);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.staff-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.staff-card__cats span {
  display: inline-block;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.staff-card__title {
  margin: 20px 0 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.top-staff-progress {
  width: 100%;
  margin-top: 60px;
  height: 1px;
  background: rgba(var(--color-brown-rgb), 0.4);
}

.top-staff-progress-bar {
  width: 0;
  height: 1px;
  background: var(--color-brown);
  transition: width 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.news-rows {
  border-top: 1px solid var(--color-line);
}

.news-rows a {
  display: grid;
  grid-template-columns: 120px 100px minmax(0, 1fr) 36px;
  gap: 20px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--color-line);
  transition: background 180ms ease, padding-left 180ms ease;
}

.news-rows a:hover {
  background: var(--color-gray);
  padding-left: 16px;
}

.news-rows time {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

.news-cat {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-skyblue);
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 500;
}

.news-title {
  font-size: 16px;
  font-weight: 500;
}

/* Business - ieshima layout: image flush to viewport left */
.top-business {
  position: relative;
  padding-top: clamp(3.563rem, 1.494rem + 10.34vw, 9.25rem);
  padding-bottom: clamp(3.563rem, 1.494rem + 10.34vw, 9.25rem);
  background: transparent;
}

.top-business__wrapper {
  position: relative;
  width: 100%;
}

.top-business__visual {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 53%;
  height: 100%;
  overflow: hidden;
  background: #08121a;
}

.biz-figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.biz-figure.is-active {
  opacity: 1;
  z-index: 1;
}

.biz-figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-business__container {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  pointer-events: none;
}

.top-business__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  position: relative;
}

.top-business__left {
  flex: 0 0 53%;
  pointer-events: none;
}

.top-business__panel {
  flex: 0 0 calc(47% - 100px);
  display: block;
  padding: 0;
  background: transparent;
  pointer-events: auto;
}

.top-business__title {
  margin: 0 0 140px;
}

.biz-list {
  margin: 0;
  border-top: 1px solid rgba(var(--color-base-rgb), 0.2);
}

.biz-list button {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(var(--color-base-rgb), 0.2);
  background: transparent;
  color: rgba(var(--color-base-rgb), 0.5);
  font: inherit;
  font-size: 1.375rem;
  text-align: left;
  cursor: pointer;
  transition:
    color 280ms ease,
    padding-left 280ms cubic-bezier(0.19, 1, 0.22, 1);
}

.biz-list button:hover,
.biz-list button.is-active {
  color: var(--color-base);
}

.biz-list button.is-active {
  padding-left: 8px;
}

.biz-list button:focus-visible {
  outline: 2px solid rgba(36, 92, 166, 0.35);
  outline-offset: 2px;
}

.biz-num {
  flex: 0 0 50px;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: inherit;
}

.biz-name {
  flex: 0 0 calc(100% - 50px);
  padding-right: 36px;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.biz-list .arrow-icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 280ms ease, transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.biz-list button.is-active .arrow-icon,
.biz-list button:hover .arrow-icon {
  opacity: 1;
  transform: translate(4px, -50%);
}

/* Materials carousel */
.materials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.material-card {
  scroll-snap-align: start;
}

.material-card figure {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  background: var(--color-gray);
}

.material-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

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

.material-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

/* Partners */
.top-partners {
  width: 100%;
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--color-gray);
}

.top-partners__inner {
  width: var(--container);
  margin: 0 auto;
}

.top-partners__title {
  margin-bottom: 120px;
  text-align: center;
}

.top-partners__title h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.partner-cards article {
  display: grid;
  place-items: center;
  padding:22px;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  transition: transform 220ms var(--ease), background 220ms ease;
}

.partner-cards article:nth-child(2),
.partner-cards article:nth-child(4) {
  background: #fff;
}

.partner-cards article:hover {
  transform: translateY(-4px);
  background: #fff;
}

.partner-cards h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.partner-card__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.partner-card__logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.partner-cards p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

/* Company band */
.top-company {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.top-company__bg {
  position: absolute;
  inset: 0;
}

.top-company__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
}

.top-company__content {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: 680px;
  text-align: center;
  padding: 100px 0;
}

.top-company__content p {
  margin: 28px auto 40px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 2;
}

/* Recruit */
.top-recruit__head {
  margin-bottom: 48px;
}

.recruit-join {
  margin: 0 0 18px;
  color: var(--color-blue);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.recruit-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
}

.recruit-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 12px;
  border-bottom: 1px solid var(--color-line);
  font-size: 18px;
  font-weight: 500;
  transition: color 180ms ease, padding-left 180ms ease;
}

.recruit-links li:nth-child(odd) a {
  border-right: 1px solid var(--color-line);
  padding-right: 28px;
}

.recruit-links li:nth-child(even) a {
  padding-left: 28px;
}

.recruit-links a:hover {
  color: var(--color-blue);
  padding-left: 20px;
}

.top-recruit__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 56px;
  padding: 40px clamp(24px, 4vw, 48px);
  border-radius: 20px;
  background: var(--color-primary);
  color: #fff;
}

.top-recruit__cta p {
  margin: 0;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.9;
}

/* Footer CTA (Payn-style marquee band) */
.footer-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;
  width: 100%;
  padding: 100px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #1f1e1d 0%, #322e27 25%, #4b4135 50%, #625441 75%, #76644c 100%);
  color: #fff;
}

.footer-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 720px;
  padding: 0 24px;
  text-align: center;
}

.footer-cta__title {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #fff;
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 56px;
  padding: 0 40px;
  border-radius: 999px;
  background: #fff;
  color: #1f1e1d;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: transform 200ms var(--ease), background 200ms ease, color 200ms ease;
}

.footer-cta__btn:hover {
  background: var(--color-brown);
  color: #1f1e1d;
  transform: translateY(-1px);
}

.footer-cta__btn:active {
  transform: translateY(1px) scale(0.98);
}

.footer-cta__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-cta__fade {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 20%;
  height: 100%;
  pointer-events: none;
}

.footer-cta__fade--left {
  left: 0;
  background:linear-gradient(90deg, rgb(100 86 66) 0%, rgba(118, 100, 76, 0) 100%);
}

.footer-cta__fade--right {
  right: 0;
  background: linear-gradient(270deg, rgb(100 86 66) 0%, rgba(118, 100, 76, 0) 100%);
}

.footer-cta__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: footer-cta-marquee 32s linear infinite;
  will-change: transform;
}

.footer-cta__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  white-space: nowrap;
  font-size: clamp(48px, 8vw, 118px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color:rgb(151 127 96 / 27%);
  user-select: none;
}

.footer-cta__group span {
  display: inline-block;
}

.footer-cta__dot {
  display: inline-block;
  width: 0.22em;
  height: 0.22em;
  margin: 0 0.12em;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
}

@keyframes footer-cta-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-cta__track {
    animation: none;
  }
}

@media (max-width: 767px) {
  .footer-cta {
    gap: 48px;
    padding-top: 80px;
  }

  .footer-cta__inner {
    gap: 36px;
  }

  .footer-cta__group {
    gap: 28px;
    padding-right: 28px;
  }
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: var(--color-brown);
  padding: clamp(64px, 8vw, 110px) 0 40px;
}

.footer-inner {
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px 64px;
  align-items: start;
}

.footer-name {
  margin: 0 0 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.footer-logo {
  display: block;
  width: 202px;
  max-width: 100%;
  height: auto;
  margin: 0 0 14px;
}

.footer-brand p:not(.footer-name) {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  align-content: start;
}

.footer-nav a {
  font-size: 14px;
  transition: color 160ms ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(178, 162, 149, 0.25);
}

.footer-bottom small {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-privacy {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--color-brown);
  transition: color 160ms ease;
}

.footer-privacy:hover {
  color: #fff;
}

.privacy-content {
  max-width: 760px;
}

.privacy-content h2 {
  margin: 36px 0 12px;
  font-size: clamp(20px, 2.4vw, 28px);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-list {
  margin: 0;
  padding-left: 1.25em;
  color: var(--color-secondary);
  display: grid;
  gap: 8px;
}

.privacy-list li {
  list-style: disc;
}

.privacy-updated {
  margin-top: 40px !important;
  color: var(--color-muted) !important;
  font-size: 14px !important;
}

/* Subpage heroes */
.page-hero {
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 72px) 0 64px;
  border-bottom: 1px solid var(--color-line);
}

.page-hero .eyebrow {
  margin: 0 0 12px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 18px 0 0;
  max-width: 36em;
  color: var(--color-secondary);
  font-size: 15px;
}

.page-hero.image-backed {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: auto;
  min-height: 52dvh;
  margin: var(--header-h) 4% 0;
  padding: 48px;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 18, 26, 0.78), rgba(8, 18, 26, 0.28)),
    url("../images/metal-trade-hero.png") center / cover;
}

.page-hero.image-backed .eyebrow,
.page-hero.image-backed h1,
.page-hero.image-backed p {
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Lower page header (ieshima contact-header style) */
.page-header {
  position: relative;
  width: 100%;
  height: 85svh;
  min-height: 500px;
  overflow: hidden;
  background: #08121a;
}

.page-header__figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

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

.page-header__title {
  display: flex;
  position: absolute;
  top: 20%;
  left: 0;
  flex-direction: column-reverse;
  gap: 8px;
  padding: 0 4%;
  margin: 0;
  color: #fff;
  z-index: 1;
}

.page-header__title-en {
  font-weight: 400;
  font-size: clamp(3rem, 1.364rem + 8.18vw, 7.5rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.page-header__title-ja {
  font-weight: 400;
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
  letter-spacing: 0.1em;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .page-header {
    height: 500px;
    min-height: 500px;
  }
}

/* Content blocks used on subpages */
.two-column,
.partner-band,
.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.25;
}

.section h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 500;
}

.section p {
  margin: 0;
  color: var(--color-secondary);
}

.text-stack {
  display: grid;
  gap: 16px;
}

.text-stack p {
  font-size: 15px;
  line-height: 2;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(16, 26, 34, 0.06);
}

.profile-table th,
.profile-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

.profile-table th {
  width: 180px;
  background: var(--color-gray);
  font-weight: 500;
}

.profile-table tr:last-child th,
.profile-table tr:last-child td {
  border-bottom: 0;
}

/* Company greeting (ieshima #greeting → 会社案内) */
.company-greeting {
  position: relative;
  z-index: 1;
  padding-top: clamp(5rem, 1.591rem + 17.05vw, 14.375rem);
  padding-bottom: clamp(3rem, 5vw, 6rem);
  background: #fff;
}

.company-greeting__container {
  width: var(--container);
  margin: 0 auto;
}

.company-greeting__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.company-greeting__title {
  margin-bottom: 80px;
  text-align: center;
}

.company-greeting__title h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.company-greeting__text {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--color-base);
}

.company-greeting__text:not(:last-child) {
  margin-bottom: 20px;
}

.company-greeting__name {
  margin-top: 30px;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: right;
}

.company-greeting__name span {
  padding-right: 20px;
  font-weight: 400;
  font-size: 1.125rem;
}

/* Company overview (ieshima #overview) */
.company-overview {
  position: relative;
  z-index: 1;
  padding-top: clamp(5rem, 3.182rem + 9.09vw, 10rem);
  padding-bottom: clamp(5rem, 3.182rem + 9.09vw, 10rem);
  background: #fff;
}

.company-overview__container {
  width: var(--container);
  margin: 0 auto;
}

.company-overview__title {
  margin-bottom: 120px;
  text-align: center;
}

.company-overview__title h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.company-overview__dl {
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.company-overview__dl .dl-row {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 140px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

.company-overview__dt {
  flex: 0 0 223px;
  padding-right: 20px;
  margin: 0;
  font-weight: 400;
}

.company-overview__dd {
  flex: 0 0 calc(100% - 223px);
  margin: 0;
}

.company-overview__dd ul {
  margin: 12px 0 0;
  padding-left: 1.3rem;
  list-style: disc;
}

.company-overview__dd li {
  margin-top: 0.4rem;
}

@media (max-width: 1023px) {
  .company-greeting__title {
    margin-bottom: 40px;
  }

  .company-greeting__title h2,
  .company-overview__title h2 {
    font-size: 1.75rem;
  }

  .company-greeting__text {
    font-size: 1rem;
  }

  .company-greeting__name {
    font-size: 1.125rem;
  }

  .company-greeting__name span {
    padding-right: 10px;
    font-size: 0.875rem;
  }

  .company-overview__title {
    margin-bottom: 40px;
  }

  .company-overview__title h2,
  .top-partners__title h2 {
    font-size: 1.75rem;
  }

  .top-partners__title {
    margin-bottom: 40px;
  }

  .company-overview__dl .dl-row {
    padding: 20px 40px;
    font-size: 1rem;
  }

  .company-overview__dt {
    flex: 0 0 160px;
  }

  .company-overview__dd {
    flex: 0 0 calc(100% - 160px);
  }
}

@media (max-width: 767px) {
  .company-overview__dl .dl-row {
    padding: 20px 0;
    font-size: 0.875rem;
  }

  .company-overview__dt {
    flex: 0 0 100%;
    margin-bottom: 5px;
    padding-right: 0;
  }

  .company-overview__dd {
    flex: 0 0 100%;
  }
}

/* Business list (ieshima ship-list style) */
.business-intro {
  position: relative;
  z-index: 1;
  padding-top: clamp(5rem, 3.182rem + 9.09vw, 10rem);
  background: #fff;
}

.business-intro__container {
  width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.business-intro__title {
  margin-bottom: 80px;
  text-align: center;
}

.business-intro__title h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.business-intro__body {
  max-width: 1080px;
  margin: 0 auto;
}

.business-intro__body p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--color-base);
}

.business-intro__body p + p {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .business-intro__title {
    margin-bottom: 48px;
  }

  .business-intro__title h2 {
    font-size: 1.75rem;
  }

  .business-intro__body p {
    font-size: 1rem;
  }
}

.business-list {
  position: relative;
  z-index: 1;
  padding-top: clamp(3rem, 5vw, 6rem);
  padding-bottom: clamp(5rem, 2.727rem + 11.36vw, 11.25rem);
  background: #fff;
}

.business-list__container {
  width: var(--container);
  margin: 0 auto;
}

.business-list__item {
  padding: 70px 0;
  border-top: 1px solid rgba(var(--color-base-rgb), 0.2);
}

.business-list__item:last-child {
  border-bottom: 1px solid rgba(var(--color-base-rgb), 0.2);
}

.business-list__row {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.business-list__figure {
  margin: 0;
  overflow: hidden;
  background: #08121a;
  aspect-ratio: 4 / 3;
}

.business-list__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.business-list__item:hover .business-list__figure img {
  transform: scale(1.03);
}

.business-list__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.business-list__name {
  margin: 0 0 30px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.business-list__body {
  margin: 0;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

@media (max-width: 1023px) {
  .business-list__item {
    padding: 40px 0;
  }

  .business-list__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .business-list__name {
    margin-bottom: 16px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .business-list__name {
    margin-bottom: 12px;
    font-size: 1.25rem;
  }

  .business-list__body {
    font-size: 0.875rem;
  }
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-list span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--color-skyblue);
  font-weight: 500;
}

/* Recruit interview (ieshima #interview) */
.recruit-interview {
  margin-top: clamp(5rem, 3.182rem + 9.09vw, 10rem);
  margin-bottom: clamp(4rem, 6vw, 8rem);
  overflow: hidden;
}

.recruit-interview__container {
  width: var(--container);
  margin: 0 auto;
}

.recruit-interview__title {
  margin-bottom: 80px;
  text-align: center;
}

.recruit-interview__title h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.recruit-interview .splide__track {
  overflow: visible;
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  user-select: none;
}

.recruit-interview .splide__list,
.recruit-interview .splide__slide,
.recruit-interview__card {
  touch-action: pan-y pinch-zoom;
}

.recruit-interview .splide__list {
  align-items: flex-end;
}

.recruit-interview .splide__slide {
  width: 25% !important;
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.recruit-interview .splide__slide.is-active {
  width: 65% !important;
  opacity: 1;
  pointer-events: auto;
}

.recruit-interview .splide__slide.is-prev {
  opacity: 0;
}

.recruit-interview .splide__arrow {
  position: absolute;
  top: 40%;
  z-index: 2;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  opacity: 1;
  transform: translateY(-50%);
}

.recruit-interview .splide__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.recruit-interview .splide__arrow--prev {
  left: -1rem;
}

.recruit-interview .splide__arrow--next {
  right: -1rem;
}

.recruit-interview .splide__arrow--prev::before,
.recruit-interview .splide__arrow--next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.recruit-interview .splide__arrow--prev::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='27' viewBox='0 0 15 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41421 13.435L0.707101 12.7279L0 13.435L0.7071 14.1421L1.41421 13.435ZM2.12131 14.1421L14.8492 1.41422L13.435 0L0.707101 12.7279L2.12131 14.1421ZM14.8492 25.4558L2.12131 12.7279L0.7071 14.1421L13.435 26.8701L14.8492 25.4558Z' fill='black'/%3E%3C/svg%3E");
}

.recruit-interview .splide__arrow--next::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='15' height='27' viewBox='0 0 15 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5858 13.565L14.2929 14.2721L15 13.565L14.2929 12.8579L13.5858 13.565ZM12.8787 12.8579L0.150789 25.5858L1.56499 27L14.2929 14.2721L12.8787 12.8579ZM0.150791 1.5442L12.8787 14.2721L14.2929 12.8579L1.56499 0.129899L0.150791 1.5442Z' fill='black'/%3E%3C/svg%3E");
}

.recruit-interview-progress {
  width: 100%;
  margin-top: 80px;
  height: 2px;
  background: rgba(var(--color-base-rgb), 0.3);
}

.recruit-interview-progressbar {
  width: 0;
  height: 2px;
  background: var(--color-base);
  transition: width 0.4s ease;
}

.recruit-interview__card__link {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  color: var(--color-base);
}

.recruit-interview__card__figure {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 804 / 1072;
  background: #08121a;
}

.recruit-interview__card__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.recruit-interview__card:hover .recruit-interview__card__figure img {
  transform: scale(1.03);
}

.recruit-interview__card__bottom {
  display: none;
  flex: 0 0 50%;
  opacity: 0;
  white-space: nowrap;
}

.recruit-interview .splide__slide.is-active .recruit-interview__card__bottom {
  display: block;
  opacity: 1;
  animation: interviewSlideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.recruit-interview .splide__slide.is-active .recruit-interview__card__figure {
  flex: 0 0 50%;
}

.recruit-interview__card__catch {
  position: relative;
  padding-left: 30px;
  font-size: clamp(1.125rem, 0.8rem + 1vw, 1.6875rem);
  line-height: 2;
  white-space: normal;
}

.recruit-interview__card__catch::before {
  position: absolute;
  left: 0;
  content: "「";
}

.recruit-interview__card__catch::after {
  content: "」";
}

.recruit-interview__card__year {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--color-base-rgb), 0.2);
  color: rgba(var(--color-base-rgb), 0.7);
  letter-spacing: 0.03em;
  font-size: 0.9375rem;
}

.recruit-interview__card__name {
  margin-top: 10px;
}

.recruit-interview__card__name--en {
  font-weight: 500;
  font-size: clamp(1.125rem, 0.9rem + 0.8vw, 1.5rem);
  letter-spacing: 0.03em;
}

.recruit-interview__card__name--ja {
  margin-top: 5px;
  color: rgba(var(--color-base-rgb), 0.7);
  font-size: 1.125rem;
  letter-spacing: 0.03em;
}

@keyframes interviewSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .recruit-interview__title {
    margin-bottom: 48px;
  }

  .recruit-interview__title h2 {
    font-size: 1.75rem;
  }

  .recruit-interview .splide__slide.is-active .recruit-interview__card__figure {
    flex: 0 0 40%;
  }

  .recruit-interview__card__link {
    gap: 24px;
  }

  .recruit-interview .splide__arrow {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .recruit-interview {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .recruit-interview__container {
    width: auto;
    padding: 0 4%;
  }

  .recruit-interview .splide__track {
    overflow: hidden;
  }

  .recruit-interview .splide__list {
    align-items: stretch;
  }

  .recruit-interview .splide__slide,
  .recruit-interview .splide__slide.is-active {
    width: 100% !important;
    opacity: 1;
    pointer-events: auto;
  }

  .recruit-interview .splide__slide.is-prev {
    opacity: 1;
  }

  .recruit-interview__card__link {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .recruit-interview__card__figure,
  .recruit-interview .splide__slide.is-active .recruit-interview__card__figure {
    flex: 0 0 auto;
    width: 100%;
  }

  .recruit-interview__card__bottom,
  .recruit-interview .splide__slide.is-active .recruit-interview__card__bottom {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    opacity: 1;
    white-space: normal;
    animation: none;
  }

  .recruit-interview .splide__arrow--prev {
    left: 0;
  }

  .recruit-interview .splide__arrow--next {
    right: 0;
  }

  .recruit-interview-progress {
    margin-top: 40px;
  }

  .recruit-career {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

/* Recruit career (ieshima recruitment キャリア採用) */
.recruit-career {
  margin-top: clamp(4rem, 6vw, 8rem);
  margin-bottom: clamp(3rem, 5vw, 6rem);
}

.recruit-career__container {
  width: var(--container);
  margin: 0 auto;
}

.recruit-career__title {
  margin-bottom: 64px;
}

.recruit-career__title h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.recruit-career__details {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.recruit-career__details:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.recruit-career__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
  cursor: pointer;
  list-style: none;
  color: var(--color-blue);
  font-weight: 500;
  font-size: clamp(1.063rem, 0.903rem + 0.8vw, 1.5rem);
  letter-spacing: 0.03em;
}

.recruit-career__summary::-webkit-details-marker,
.recruit-career__summary::marker {
  display: none;
  content: "";
}

.recruit-career__summary span:first-child {
  padding-right: 40px;
}

.recruit-career__icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.recruit-career__icon::before,
.recruit-career__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-base);
  opacity: 0.6;
  transform: translate(-50%, -50%);
}

.recruit-career__icon::before {
  width: 20px;
  height: 2px;
}

.recruit-career__icon::after {
  width: 2px;
  height: 20px;
}

.recruit-career__details[open] .recruit-career__icon {
  transform: rotate(135deg);
}

.recruit-career__content {
  overflow: hidden;
  padding: 0;
  opacity: 1;
  transition:
    height 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.35s ease;
}

.recruit-career__content-inner {
  padding: 0 0 40px;
}

.recruit-career__table {
  margin: 0;
}

.recruit-career__row {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.recruit-career__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.recruit-career__row dt {
  flex: 0 0 223px;
  padding-right: 20px;
  margin: 0;
  font-weight: 400;
  font-size: 1.125rem;
}

.recruit-career__row dd {
  flex: 0 0 calc(100% - 223px);
  margin: 0;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
.recruit-career__row dd p{margin:0;}
@media (max-width: 767px) {
  .recruit-career__container {
    width: auto;
    padding: 0 4%;
  }

  .recruit-career__title {
    margin-bottom: 40px;
  }

  .recruit-career__title h2 {
    font-size: 1.75rem;
  }

  .recruit-career__summary {
    padding: 24px 0;
  }

  .recruit-career__content-inner {
    padding-bottom: 24px;
  }

  .recruit-career__row {
    padding: 24px 0;
  }

  .recruit-career__row dt {
    flex: 0 0 100%;
    margin-bottom: 12px;
    padding-right: 0;
    font-size: 1rem;
  }

  .recruit-career__row dd {
    flex: 0 0 100%;
    font-size: 0.875rem;
  }
}

.material-grid,
.service-strip,
.staff-grid,
.news-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.material-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.material-grid article {
  grid-column: span 3;
}

.material-grid article:nth-child(5) {
  grid-column: span 6;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 26, 34, 0.88), rgba(36, 92, 166, 0.72)),
    url("../images/metal-trade-hero.png") center / cover;
}

.material-grid article:nth-child(5) h2,
.material-grid article:nth-child(5) p {
  color: #fff;
}

.service-strip article,
.material-grid article,
.staff-grid article,
.news-cards article,
.contact-form {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-radius: 16px;
  background: var(--color-gray);
  transition: transform 220ms var(--ease), background 220ms ease;
}

.service-strip article:hover,
.material-grid article:hover,
.staff-grid article:hover,
.news-cards article:hover {
  transform: translateY(-4px);
  background: var(--color-skyblue);
}

.service-strip span {
  display: block;
  margin-bottom: 40px;
  color: rgba(16, 26, 34, 0.15);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
}

.category {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-skyblue);
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 500;
}

.text-link,
.back-link {
  color: var(--color-blue);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

.news-cards article {
  display: grid;
  gap: 12px;
  align-content: start;
}

.article-page {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 100px) 0 100px;
}

.page-header + .article-page {
  padding-top: clamp(48px, 6vw, 80px);
}

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

.article-page h1 {
  margin: 18px 0 28px;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.25;
}

.article-page p {
  margin: 0 0 18px;
  color: var(--color-secondary);
  font-size: 15px;
  line-height: 2;
}

.article-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(var(--color-base-rgb), 0.12);
  font-size: 1.25rem;
}

.article-pagenavi__previous,
.article-pagenavi__backpage,
.article-pagenavi__next {
  flex: 0 0 33.333%;
  max-width: 100%;
}

.article-pagenavi__link {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--color-base);
  font-weight: 400;
}

.article-pagenavi__backpage .article-pagenavi__link {
  justify-content: center;
}

.article-pagenavi__next .article-pagenavi__link {
  justify-content: flex-end;
}

.article-pagenavi__arrow {
  flex: 0 0 auto;
  width: 23px;
  height: auto;
}

.article-pagenavi__link:hover {
  color: var(--color-base);
  opacity: 0.65;
}

@media (max-width: 767px) {
  .article-pagenavi {
    padding-top: 40px;
    font-size: 0.875rem;
  }

  .article-pagenavi__link {
    gap: 10px;
  }

  .article-pagenavi__arrow {
    width: 14px;
  }
}

.staff-initial {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-brown);
  font-size: 28px;
  font-weight: 500;
}

.role {
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 500;
}

.joined {
  margin-bottom: 12px !important;
  color: var(--color-muted) !important;
  font-size: 13px !important;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 40px;
  border-radius: 20px;
  background: var(--color-primary);
  color: #fff;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  margin-top: 8px;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.82) !important;
}

.contact-note h2 {
  margin-bottom: 14px;
}

.form-note {
  margin-top: 16px !important;
  color: var(--color-blue) !important;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 16px;
  min-height: auto;
  background: var(--color-gray);
}

.contact-form__row {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #fff;
  color: var(--color-base);
  padding: 14px 16px;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(36, 92, 166, 0.28);
  border-color: var(--color-blue);
}

.contact-form__result {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-form__result.is-success {
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
}

.contact-form__result.is-error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
}

.contact-form button[disabled] {
  opacity: 0.6;
  cursor: wait;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-brown);
  font: inherit;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 200ms ease, transform 160ms ease;
}

.button:hover,
.button.primary:hover {
  background: #182632;
  transform: translateY(-1px);
}

.button.primary {
  background: var(--color-primary);
  color: var(--color-brown);
}

.button.secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 900ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.business-list__item.reveal:nth-child(1) { transition-delay: 0ms; }
.business-list__item.reveal:nth-child(2) { transition-delay: 80ms; }
.business-list__item.reveal:nth-child(3) { transition-delay: 160ms; }
.business-list__item.reveal:nth-child(4) { transition-delay: 240ms; }
.business-list__item.reveal:nth-child(5) { transition-delay: 320ms; }
.business-list__item.reveal:nth-child(6) { transition-delay: 400ms; }

body.is-loaded .top-kv__catch-en,
body.is-loaded .top-kv__catch-ja,
body.is-loaded .top-kv__news {
  animation: riseIn 800ms var(--ease) both;
}

body.is-loaded .top-kv__catch-en {
  animation-delay: 120ms;
}

body.is-loaded .top-kv__catch-ja {
  animation-delay: 280ms;
}

body.is-loaded .top-kv__news {
  animation-delay: 460ms;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .reveal,
  .top-kv__catch-en,
  .top-kv__catch-ja,
  .top-kv__news {
    opacity: 1 !important;
    transform: none !important;
  }

  .drawer::before,
  .drawer-nav,
  .drawer.is-open::before,
  .drawer.is-closing::before,
  .drawer.is-open .drawer-nav,
  .drawer.is-closing .drawer-nav {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: 1fr 40px;
    grid-template-areas: "logo hamburger";
    height: var(--header-height-md);
    padding: 0 25px;
    gap: 20px;
  }

  .brand,
  .brand-logo {
    width: 160px;
  }

  .footer-inner {
    padding: 0 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .site-nav,
  .header-contact {
    display: none;
  }

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

  .top-about__inner,
  .two-column,
  .partner-band,
  .intro-grid,
  .section-head,
  .top-staff__head,
  .top-recruit__cta,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .top-business__wrapper {
    display: flex;
    flex-direction: column;
  }

  .top-business__inner {
    flex-direction: column;
    gap: 40px;
  }

  .top-business__left {
    display: none;
  }

  .top-business__container {
    order: 1;
    width: var(--container);
    margin: 0 auto;
    pointer-events: auto;
  }

  .top-business__visual {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    z-index: auto;
    width: var(--container);
    height: 0;
    margin: 40px auto 0;
    padding-top: 60%;
  }

  .top-business__panel {
    flex: 0 0 auto;
    width: 100%;
  }

  .top-business__title {
    margin-bottom: 40px;
  }

  .biz-list button {
    padding: 20px 0;
    font-size: 1rem;
  }

  .biz-num {
    flex: 0 0 40px;
  }

  .biz-name {
    flex: 0 0 calc(100% - 40px);
  }

  .partner-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-strip,
  .staff-grid,
  .news-cards,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .material-grid article,
  .material-grid article:nth-child(5) {
    grid-column: auto;
  }

  .top-news__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .top-news__title {
    position: static;
  }

  .top-news__button {
    position: absolute;
    top: 30px;
    right: 0;
    margin-top: 0;
  }

  .top-news {
    position: relative;
  }

  .news-card {
    padding: 20px 0;
  }

  .news-card__body {
    gap: 26px;
  }

  .news-card__media {
    flex: 0 0 28%;
  }

  .news-card__content {
    padding-right: 0;
  }

  .news-card__meta {
    gap: 20px;
  }

  .news-card__meta time {
    font-size: 13px;
    font-weight: 400;
  }

  .news-card__cat {
    font-size: 13px;
  }

  .news-card__figure {
    padding-top: 100%;
  }

  .news-card__arrow {
    display: none;
  }

  .news-rows a {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
  }

  .news-rows time {
    grid-column: 1;
  }

  .news-cat {
    grid-column: 1;
  }

  .news-title {
    grid-column: 1;
  }

  .news-rows .arrow-icon {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .recruit-links {
    grid-template-columns: 1fr;
  }

  .recruit-links li:nth-child(odd) a,
  .recruit-links li:nth-child(even) a {
    border-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .top-kv__news {
    right: 6%;
    left: 6%;
    width: auto;
    max-width: none;
    bottom: 6%;
  }

  .top-kv__catch-wrap {
    bottom: 28%;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0 4%;
  }

  .top-about__button {
    justify-content: flex-start;
    width: var(--container);
    padding: 0;
  }

  .page-hero.image-backed {
    margin-right: 4%;
    margin-left: 4%;
  }
}

@media (min-width: 1081px) and (max-width: 1279px) {
  .top-business__inner {
    gap: 70px;
  }

  .top-business__panel {
    flex-basis: calc(47% - 70px);
  }
}

@media (max-width: 640px) {
  .top-kv__catch-wrap {
    bottom: 32%;
  }

  .top-kv__catch-en {
    font-size: 44px;
  }

  .top-about {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .partner-cards {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .section,
  .article-page,
  .top-news {
    width: auto;
    padding-right: 4%;
    padding-left: 4%;
  }

  .top-news__button {
    position: static;
    justify-content: flex-start;
    margin-top: 40px;
  }

  .news-card__body {
    gap: 20px;
  }

  .news-card__heading {
    margin-top: 12px;
    font-size: 15px;
  }

  .page-hero.image-backed {
    min-height: 42dvh;
    padding: 28px;
    border-radius: 14px;
  }

  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
  }

  .profile-table th {
    border-bottom: 0;
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .staff-card {
    padding: 20px 20px 30px;
  }

  .staff-card__meta {
    margin-top: 17px;
  }

  .staff-card__cats span {
    font-size: 13px;
  }

  .staff-card__title {
    margin-top: 12px;
    font-size: 14px;
  }

  .top-staff__slide {
    margin-top: 40px;
  }

  .top-staff__slide .splide__track {
    overflow: hidden;
  }

  .top-staff-progress {
    margin-top: 34px;
  }
}
