* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #111;
  padding-top: var(--header-h);
  font-family:
    "Noto Sans JP",
    "Noto Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 80px 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero__content {
  position: relative;
  height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 30px;
  z-index: 3;
}

.hero-card {
  margin-left: 32px;
  width: min(900px, 100vw);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 36px 44px 30px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.hero-card__title {
  margin: 0 0 12px;
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.hero-card__title-accent {
  color: var(--brand);
}

.hero-card__en {
  margin: 10 10 12px;
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-card__en span {
  color: var(--brand2);
  font-weight: 700;
}

.hero-card__line {
  width: 320px;
  max-width: 70%;
  height: 2px;
  margin: 20px auto 36px;
  background-color: var(--brand);
}

.hero-card__lead {
  font-size: 34px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  margin-bottom: 16px;
}

.hero-card__area {
  font-size: 20px;
  letter-spacing: 0.04em;
  margin: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
}

.hero__col {
  position: relative;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__img--1 {
  object-position: 55% center;
  transform: scale(1.2);
}

.hero__img--2 {
  object-position: 60% center;
  transform: scale(1.3);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__col {
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1200ms ease,
    transform 3000ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero.is-animate .hero__col {
  opacity: 1;
  transform: scale(1);
}

.hero.is-animate .hero__col:nth-child(2) {
  transition-delay: 120ms;
}

.hero.is-animate .hero__col:nth-child(3) {
  transition-delay: 240ms;
}

:root {
  --ink: #2b2b2b;
  --muted: #6b6b6b;
  --line: #ded7d3;
  --card: #ffffff;
  --brand: #7b2b2b;
  --brand2: #b43a3a;
  --brand-2: #9a3a3a;
  --blue: #2a73d6;
  --blue2: #3d54d8;
  --yellow: #f3b21a;
  --header-h: 72px;
}

.home-dual {
  background: var(--bg);
  padding: 48px 16px;
}

.dual-inner {
  width: min(1450px, calc(100% - 32px));
  min-height: 480px;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 800px 1px 1fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
  padding: 0 32px;
  overflow: visible;
  box-sizing: border-box;
}

.dual-divider {
  background: var(--line);
  width: 1px;
  height: 100%;
}

.dual-col {
  min-width: 0;
}

.dual-head {
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.dual-title {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: 35px;
}

.dual-title__en {
  position: relative;
  z-index: 2;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--brand);
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  text-shadow:
    -1.5px 0 0 #fff,
    1.5px 0 0 #fff,
    0 -1.5px 0 #fff,
    0 1.5px 0 #fff,
    -1.5px -1.5px 0 #fff,
    1.5px -1.5px 0 #fff,
    -1.5px 1.5px 0 #fff,
    1.5px 1.5px 0 #fff;
}

.dual-mark {
  position: absolute;
  z-index: 1;
  width: 110px;
  transform: translate(-50px, 50px);
}

.topics__mark {
  position: absolute;
  width: 100px;
  transform: translate(-65px, -40px);
}

.information__mark {
  position: absolute;
  width: 100px;
  transform: translate(-115px, -40px);
}

.about__mark {
  position: absolute;
  transform: translate(-125px, -32px);
}

.service__mark {
  position: absolute;
  transform: translate(-105px, -32px);
}

.track-record__mark {
  position: absolute;
  transform: translate(-195px, -32px);
}

.staff__mark {
  position: absolute;
  transform: translate(-68px, -32px);
}

.contact__mark {
  position: absolute;
  transform: translate(-111px, -32px);
}

.recruit__mark {
  position: absolute;
  transform: translate(-111px, -32px);
}

.dual-title__jp {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.5em;
  line-height: 1;
  margin-top: 5px;
}

.dual-swoosh {
  width: 44px;
  height: 22px;
  background: var(--brand);
  clip-path: polygon(0 100%, 78% 0, 100% 0, 32% 100%);
  opacity: 0.95;
  margin-bottom: -14px !important;
}

.dual-col--left .dual-title__en {
  font-size: 36px;
}

.dual-col--right .dual-title__en {
  font-size: 36px;
}

.dual-rule {
  display: block;
  width: 70%;
  height: 1px;
  background: var(--line);
  margin: 2px auto 0;
}

.topics {
  position: relative;
  padding: 0 56px;
  display: block;
}

.topics-viewport {
  overflow: hidden;
  width: 100%;
}

.topics-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.topics-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  font-size: 14px;
  color: var(--brand);
  z-index: 5;
}

.topics-nav--prev {
  left: 0;
}

.topics-nav--next {
  right: 0;
}

.topics-nav:focus,
.topics-nav:active {
  color: var(--brand);
  outline: none;
}

.tcard {
  scroll-snap-align: start;
  background: #fff;
  flex: 0 0 calc((100% - 40px) / 3);
  width: calc((100% - 40px) / 3);
  height: 240px;
  border-radius: 20px;
  border: 1px solid rgba(125, 27, 27, 0.18);
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  box-shadow: none !important;
}

.tcard-media {
  background: #eee;
  overflow: hidden;
  aspect-ratio: 4 / 2;
  height: 150px;
}

.tcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
  will-change: transform;
}

.topics-track > .tcard .tcard-body {
  padding: 14px 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.topics .tcard-tags {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  justify-content: center;
}

.topics .tag {
  font-size: 10px;
  padding: 4px 8px;
  white-space: nowrap;
  line-height: 1;
}

.tag--yellow {
  background: var(--yellow);
}

.tag--blue {
  background: var(--blue);
}

.tag--blue2 {
  background: var(--blue2);
}

.tag--report,
.tag--private {
  background: var(--yellow);
  color: #fff;
}

.tag--info {
  background: var(--blue);
  color: #fff;
}

.tag--available {
  background: var(--blue2);
  color: #fff;
}

.tcard-title {
  margin: 0;
  text-align: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  height: 40px;
  padding: 0 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--outline {
  width: 150px;
  border: 2px solid #2d5ecb;
  color: #2d5ecb;
  background: #fff;
  margin: 0 auto;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.btn--solid {
  background: var(--brand);
  color: #fff;
  height: 36px;
  padding: 0 28px;
  box-shadow: 0 10px 18px rgba(123, 43, 43, 0.18);
}

.dual-foot {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.info {
  border-top: 1px solid var(--line);
  margin-top: 45px;
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-template-areas:
    "date pill"
    "text text";
  gap: 6px 14px;
  padding: 10px 10px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.info-row:hover {
  background: rgba(0, 0, 0, 0.02);
}

.info-date {
  grid-area: date;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  letter-spacing: 0.02em;
}

.pill {
  grid-area: pill;
  justify-self: start;
  align-self: start;
  color: #fff !important;
}

.info-text {
  grid-area: text;
  text-align: left;
}

.pill--red {
  background: var(--brand-2);
}

.pill--yellow {
  background: var(--yellow);
  color: #1f1a10;
}

.dual-foot {
  margin-top: 22px;
}

.dual-foot--right {
  margin-top: 30px;
}

.dual-col--right .info,
.dual-col--right .dual-foot {
  width: min(420px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.dual-col--right .pill {
  min-width: 78px;
  padding: 6px 12px;
  border-radius: 999px;
  text-align: center;
}

.info-date {
  font-size: 16px;
  font-weight: 600;
}

.info-text {
  font-size: 16px;
  line-height: 1.5;
}

.pill {
  font-size: 11px;
  padding: 6px 12px;
}

.btn {
  height: 30px;
  font-size: 11px;
  padding: 0 12px;
  border-width: 1.5px;
}

.btn--solid {
  height: 46px;
}

.btn.btn--solid {
  width: 190px;
  height: 48px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.04em;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  box-shadow: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

a.btn.btn--solid {
  background: #7b2b2b;
  color: #fff;
  border: 1px solid #7b2b2b;
  box-shadow: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  a.btn.btn--solid:hover {
    background: #fff;
    color: #7b2b2b;
    border-color: #7b2b2b;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__col {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.kpi {
  padding: 44px 16px 10px;
  overflow-x: hidden;
}

.kpi__inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.kpi__item {
  width: 720px;
  height: 280px;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  background: linear-gradient(180deg, #8b1e1e 0%, #6f2b2b 100%);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  position: relative;
  padding: 0 40px;
}

.kpi__item + .kpi__item {
  margin-left: -125px;
}

.kpi__top {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.kpi__top-strong {
  font-weight: 700;
}

.kpi__line {
  width: 140px;
  height: 2px;
  margin: 14px 0 12px;
  background: rgba(255, 255, 255, 0.28);
}

.kpi__sub {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.95;
}

.kpi__num {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.kpi__num-prefix {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.kpi__num-main {
  font-size: 86px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.kpi__unit {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.about {
  padding: 100px 0;
  background: #fff;
  position: relative;
  z-index: 5;
  background: transparent !important;
  overflow: hidden;
}

.about__inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  align-items: center;
  gap: 72px;
  z-index: 1;
}

.about__image-container {
  flex: 0 0 550px;
}

.about__image-mask {
  width: 550px;
  height: 700px;
  overflow: hidden;
  position: relative;
}

.about__image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.about__btn-wrap {
  margin-top: auto;
}

.about__content {
  flex: 1;
  text-align: center;
  position: relative;
  top: -30px;
}

.about__head {
  margin-bottom: 26px;
  width: min(720px, 92%);
  margin: 0 auto 18px;
}

.about__text {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: left;
}

.about__text p {
  font-size: 18px;
  line-height: 2.05;
  color: #333;
  margin: 0 0 1.2em;
}

.about__foot {
  margin-top: 8px;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.about.is-cta-hover .about__image-mask img {
  transform: scale(1.1);
}

:root {
  --sr-brand: #7d1b1b;
  --sr-radius: 16px;
  --sr-shadow: 0 18px 28px rgba(0, 0, 0, 0.14);
}

.service__inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.service__head {
  text-align: center;
  margin-bottom: 44px;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-content: center;
}

.svc-card {
  position: relative;
}

:root {
  --cut: 84px;
}

.svc-card__link {
  position: relative;
  display: block;
  width: 350px;
  height: 390px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - (var(--cut) * 1.2)) 100%,
    0 100%
  );
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.14);
  transform: translateZ(0);
}

.svc-card__base {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 350px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  padding: 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(2px);
  clip-path: none;
}

.svc-card__base::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  opacity: var(--fill);
}

.svc-card__base > * {
  position: relative;
  z-index: 1;
}

.svc-card__media {
  position: relative;
  background: #ddd;
}

.svc-card__media img {
  width: 350px;
  height: 390px;
  object-fit: cover;
  display: block;
}

.svc-card__hover-eyebrow {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 40px;
}

.svc-card__base-title {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 500;
  color: #111;
  text-align: center;
}

.svc-card__hover-text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 1.75;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  margin-top: 40px;
}

.svc-card--2 .svc-card__media img {
  object-position: 10% 50%;
}

.svc-card--3 .svc-card__media img {
  object-position: 70% 20%;
  transform: scale(2);
  transform-origin: 75% 10%;
}

.svc-card__link:hover .svc-card__hover,
.svc-card__link:focus-visible .svc-card__hover,
.svc-card__link:focus-within .svc-card__hover {
  transform: translateY(0);
  opacity: 1;
}

.svc-card__link:hover .svc-card__base,
.svc-card__link:focus-visible .svc-card__base,
.svc-card__link:focus-within .svc-card__base {
  opacity: 0;
  transition: opacity 240ms ease;
}

.svc-card__link:hover {
  transform: translateY(-2px);
  transition: transform 240ms ease;
}

.svc-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(125, 27, 27, 0.55);
  backdrop-filter: blur(2px);
  color: #fff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: center;
  gap: 14px;
  padding: 24px 22px;
  box-sizing: border-box;
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 360ms ease,
    opacity 360ms ease;
  clip-path: none;
}

.svc-card__base--85 {
  --fill: 0.85;
}

.svc-card__base--100 {
  --fill: 1;
}

.svc-card {
  position: relative;
  filter: drop-shadow(3px 3px 0 rgba(74, 12, 12, 0.813))
    drop-shadow(5px 5px 5px rgba(81, 13, 13, 0.573))
    drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.42));
}

.svc-card__hover .svc-card__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 42px !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  background: rgba(125, 27, 27, 0.95) !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 300 !important;
  font-size: 15px !important;
  letter-spacing: 0.06em !important;
  margin: -80px auto 0;
}

.service {
  position: relative;
  overflow: visible;
  padding: 64px 0 126px !important;
  margin-top: -40px;
  z-index: 6;
}

.service::before,
.service::after,
.service .service__decor-bottom,
.service .service__decor-bottom::before {
  z-index: 6;
}

.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(50vw) translateY(40px);
  width: 380px;
  height: 2px;
  background: var(--sr-brand);
  margin-left: -380px;
}

.service::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(50vw) translateY(40px);
  width: 10px;
  height: 10px;
  background: var(--sr-brand);
  margin-left: -380px;
  transform-origin: top left;
  translate: 0 -4px;
}

.service .service__decor-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50vw);
  width: 380px;
  height: 2px;
  background: var(--sr-brand);
}

.service .service__decor-bottom::before {
  content: "";
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--sr-brand);
  translate: 0 -4px;
}

.service__lead{
	display:none;
}

.track-record {
  position: relative;
  padding: 86px 16px 74px;
  overflow: hidden;
  background: transparent;
}

.track-record::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.track-record__inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
}

.track-record__head {
  text-align: center;
  margin-bottom: 26px;
}

.tr-marquee {
  margin-top: 10px;
}

.tr-marquee__viewport {
  overflow: hidden;
  width: 100%;
  padding: 18px 0 22px;
}

.tr-marquee__track {
  display: flex;
  gap: 26px;
  align-items: stretch;
  width: max-content;
  will-change: transform;
}

.tr-marquee__track.is-animate {
  animation: tr-marquee var(--tr-duration, 28s) linear infinite;
}

.tr-marquee .tr-card2 {
  flex: 0 0 260px;
  width: 260px;
  height: 260px;
}

.tr-marquee .tr-card2__media {
  height: 120px;
}

.tr-marquee .tr-card2__body {
  padding: 10px 12px;
}

.tr-marquee .tr-card2__name {
  font-size: 14px;
  line-height: 1.5;
  height: calc(1.5em * 2);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

.tr-marquee .tr-tag {
  height: 24px;
  font-size: 12px;
  padding: 0 10px;
}

.tr-marquee .tr-card2__meta {
  font-size: 13px;
}

.track-record__foot {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

@keyframes tr-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--tr-half, 1000px)));
  }
}

:root {
  --cta-panel: #6a1f1f;
  --cta-panel-hover: #7a2626;
  --cta-btn: #8a2c2c;
  --cta-btn-hover: #ffffff;
  --cta-btn-hover-text: #6a1f1f;
  --cta-outline: #aa2720;
  --cta-bg-l: #9e4242;
  --cta-bg-rb: #561a1a;
}

.cta {
  position: relative;
  padding: 90px 16px 110px;
  overflow: visible;
}

.cta__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta__bg {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.cta__bg--tr {
  width: 480px;
  height: 380px;
  border: 1px solid var(--cta-outline);
  top: 28px;
  left: 50%;
  transform: translateX(260px);
}

.cta__bg--l {
  width: 295px;
  height: 600px;
  background: var(--cta-bg-l);
  top: 220px;
  left: 50%;
  transform: translateX(-740px);
}

.cta__bg--rb {
  width: 295px;
  height: 800px;
  background: var(--cta-bg-rb);
  top: 560px;
  left: 40%;
  transform: translateX(560px);
}

.cta__grid {
  display: grid;
  grid-template-columns: repeat(2, 580px);
  grid-auto-rows: 420px;
  justify-content: center;
  gap: 0;
}

.cta-card {
  width: 580px;
  height: 420px;
  background: var(--cta-panel);
  border: 1px solid #fff;
  color: #fff;
  display: grid;
  grid-template-rows: 110px auto 1fr auto;
  padding: 26px 34px;
  transition: background-color 0.2s ease;
}

.cta-card__media {
  width: 500px;
  height: 110px;
  margin: 0 auto 18px;
  border: 1px solid #fff;
  overflow: hidden;
}

.cta-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-card__title {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin: 10 0 16px;
}

.cta-card__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: fit-content;
  max-width: 470px;
  font-size: 18px;
  line-height: 1.75;
  text-align: left;
}

.cta-card__list li {
  padding-left: 1.6em;
  position: relative;
}

.cta-card__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.cta-card__foot {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.cta-btn {
  width: 310px;
  height: 50px;
  background: var(--cta-btn);
  border: 0.8px solid #fff;
  color: #fff;
  font-size: 19px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .cta-card:hover {
    background: var(--cta-panel-hover);
  }

  .cta-card:hover .cta-btn {
    background: var(--cta-btn-hover);
    color: var(--cta-btn-hover-text);
  }
}

.cta-card--wide {
  grid-column: 1 / -1;
  width: 1160px;
  height: 320px;
  grid-auto-rows: initial;
  grid-template-rows: none;
  grid-template-columns: 1fr 500px;
  align-items: center;
  padding: 22px 34px;
}

.cta-card--wide .cta-card__title {
  text-align: center;
}

.cta-card--wide .cta-card__list {
  width: fit-content;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.cta-card__wide-body {
  padding-right: 34px;
}

.cta-card__media--wide {
  margin: 0;
  justify-self: end;
}

.cta-card--wide .cta-card__media {
  height: 220px;
  overflow: hidden;
  border: 1px solid #ffffff;
}

.cta-card--wide .cta-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-card--wide .cta-card__title {
  margin-top: 0;
}

.cta-card--wide .cta-btn {
  width: 380px;
  max-width: 100%;
}

.cta-card {
  opacity: 0;
  transform: translate3d(var(--cta-tx, 0px), var(--cta-ty, 0px), 0) scale(0.985);
  filter: blur(2px);
  transition:
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 700ms ease,
    filter 800ms ease;
  transition-delay: var(--cta-delay, 0ms);
  will-change: transform, opacity, filter;
}

.cta.is-inview .cta-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.cta__grid > .cta-card:nth-child(1) {
  --cta-tx: -28px;
  --cta-ty: -18px;
  --cta-delay: 0ms;
}

.cta__grid > .cta-card:nth-child(2) {
  --cta-tx: 28px;
  --cta-ty: -18px;
  --cta-delay: 80ms;
}

.cta__grid > .cta-card:nth-child(3) {
  --cta-tx: -24px;
  --cta-ty: 18px;
  --cta-delay: 140ms;
}

.cta__grid > .cta-card:nth-child(4) {
  --cta-tx: 24px;
  --cta-ty: 18px;
  --cta-delay: 220ms;
}

.cta__grid > .cta-card:nth-child(5) {
  --cta-tx: 0px;
  --cta-ty: 28px;
  --cta-delay: 300ms;
}

.cta__bg {
  display: block;
}

.cta,
.cta * {
  font-family:
    "Noto Sans JP",
    "Noto Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.staff {
  position: relative;
  padding: 0px 16px 74px;
  overflow: hidden;
}

.staff::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.staff__inner {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 32px));
  margin: 0 auto;
}

.staff__head {
  text-align: center;
  margin: 0 0 40px;
}

.staff__grid {
  display: grid;
  grid-template-columns: repeat(5, 270px);
  gap: 32px;
  justify-content: center;
  align-items: start;
}

.staff-card {
  width: 270px;
  height: 325px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}

.staff-card__media {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 22px auto 0;
  overflow: visible;
}

.staff-card__photo,
.staff-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-card__noimage {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.staff-card__noimage img {
  width: 70%;
  opacity: 0.25;
}

.staff-card__role {
  position: absolute;
  right: -25px;
  bottom: -18px;
  z-index: 2;
  width: 100px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8a2c2c;
  color: #fff;
  font-family:
    "Noto Sans",
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.staff-card__photo-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.staff-card__body {
  padding: 24px 16px 0;
  text-align: center;
}

.staff-card__name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.staff-card__name-en {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.staff__foot {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.staff__inner {
  max-width: 1600px;
}

.staff {
  position: relative;
}

.staff::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 2px;
  background: #6e2424;
}

.recruit {
  position: relative;
  padding: 90px 16px 300px;
  background: #fff;
}

.recruit__inner {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.recruit__media {
  width: 1270px;
  height: 500px;
  margin: 0 auto;
  border: 1px solid #8b1e1e;
  overflow: hidden;
  background: #eee;
}

.recruit__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit__panel {
  width: 940px;
  height: 400px;
  background: #fff;
  border: 1px solid #6e2424;
  position: absolute;
  left: 50%;
  bottom: -220px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  padding: 0px 40px 0;
  box-sizing: border-box;
  place-items: center;
}

.recruit__panel .dual-title {
  margin-top: 20px;
}

.recruit__lead {
  margin: 0 0 26px;
  text-align: center;
  font-family:
    "Noto Sans",
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 30px;
  line-height: 1.55;
  color: #111;
}

.recruit__cta {
  display: flex;
  justify-content: center;
}

.recruit__btn {
  width: 345px;
  height: 63px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #8a2c2c;
  color: #fff;
  text-decoration: none;
  font-family:
    "Noto Sans",
    "Noto Sans JP",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 0;
}

.recruit__media {
  overflow: hidden;
}

.recruit__img {
  display: block;
  width: 1270px;
  height: 500px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.recruit:has(.recruit__btn:hover) .recruit__img {
  transform: scale(1.05);
}

.recruit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 345px;
  height: 63px;
  background: #8a2c2c;
  color: #fff;
  text-decoration: none;
  font-family: "Noto Sans JP", "Noto Sans", system-ui, sans-serif;
  font-size: 25px;
  letter-spacing: 0.04em;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 56px 0;
}

.social {
  width: 335px;
  height: 90px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.social.threads {
  background: #000;
}

.social.threads img {
  height: 32px;
}

.social.instagram {
  background: #fff;
  border: 1px solid #6b1f1f;
  gap: 0px;
}

.social.instagram .instagram-icon {
  height: 50px;
}

.social.instagram .instagram-text {
  height: 50px;
}

.social:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}


@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

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

  .section {
    padding: 40px 0;
  }

  .hero {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: auto;
  }
  .header__inner {
    max-width: 100%;
  }

  .hero__media {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    height: 40vh;
    min-height: 260px;
    max-height: 420px;
  }

  .hero__img {
    height: 100%;
    transform: none !important;
  }
  .hero__img--1 {
    object-position: 55% center;
  }
  .hero__img--2 {
    object-position: 60% center;
  }
  .hero__img--3 {
    object-position: 70% center;
  }

  .hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
    height: auto;
    padding-bottom: 18px;
  }

  .hero-card {
    margin-left: 0;
    width: min(86vw, 360px);
    padding: 14px 14px 12px;
    border-radius: 14px;
    transform: translateY(0px);
  }

  .hero-card__title {
    font-size: 23px;
    white-space: normal;
    line-height: 0.8;
    letter-spacing: 0.03em;
  }
  .hero-card__en {
    font-size: 10px;
    margin: 0 0 10px !important;
  }
  .hero-card__line {
    width: 200px;
    margin: 10px auto 8px;
  }
  .hero-card__lead {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600 !important;
    margin: 10px auto 2px;
  }
  .hero-card__area {
    font-size: 10px;
    margin-top: 0px;
  }

  .home-dual {
    padding-top: 14px;
  }

  .home-dual .dual-inner,
  .dual-inner {
    width: 100%;
    max-width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }

  .home-dual .dual-divider,
  .dual-divider {
    display: none;
  }

  .dual-head {
    margin-bottom: 16px;
  }

  .dual-title {
    font-size: 28px;
    line-height: 1.05;
    margin: 15px 0 15px;
  }
  .dual-title__en {
    font-size: 28px;
    text-shadow:
      0px 1px 0 #fff,
      -1px 1px 0 #fff,
      1px -1px 0 #fff,
      -1px -1px 0 #fff;
  }

  .dual-col--left .dual-title {
    margin-top: 30px;
  }

  .recruit__panel .dual-title {
    margin: 5px 0 5px;
  }

  .contact__panel .dual-title {
    margin: 0 0 5px;
  }

  .dual-title__jp {
    font-size: 10px;
    margin-top: 2px !important;
  }

  .dual-col--left .dual-title__en {
    font-size: 28px;
  }

  .dual-col--right .dual-title__en {
    font-size: 28px;
  }

  .dual-mark {
    position: absolute;
    z-index: 1;
    width: 60px !important;
    transform: translate(-50px, 50px);
  }

  .topics__mark {
    position: absolute;
    width: 100px;
    transform: translate(-50px, -18px);
  }

  .information__mark {
    position: absolute;
    width: 100px;
    transform: translate(-93px, -18px);
  }

  .about__mark {
    position: absolute;
    transform: translate(-62px, -20px);
  }

  .service__mark {
    position: absolute;
    transform: translate(-52px, -20px);
  }

  .track-record__mark {
    position: absolute;
    transform: translate(-98px, -20px);
  }

  .staff__mark {
    position: absolute;
    transform: translate(-34px, -20px);
  }

  .contact__mark {
    position: absolute;
    transform: translate(-50px, -20px);
  }

  .recruit__mark {
    position: absolute;
    transform: translate(-54px, -20px);
  }

  .topics {
    padding: 0;
    margin-top: -8px;
  }
  .topics-nav {
    display: none;
  }

  .topics-track {
    width: calc(16px + 150px + 12px + 150px + 16px) !important;
    display: flex !important;
    gap: 12px !important;
    padding: 8px 16px 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    box-sizing: border-box;
    scrollbar-width: none;
  }

  .topics-track > .tcard {
    flex: 0 0 150px !important;
    width: 150px !important;
    height: 154px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .topics-track > .tcard .tcard-media {
    width: 100%;
    height: 80px;
    flex: 0 0 auto;
    overflow: hidden;
  }

  .topics-track > .tcard .tcard-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .topics-track > .tcard .tcard-body {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    padding: 12px;
    margin: 0;
    gap: 4px;
    min-height: 0;
  }

  .topics-track > .tcard .btn {
    display: none !important;
  }

  .topics {
    overflow: visible !important;
  }

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

  .topics .tcard-tags {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .topics .tag {
    font-size: 9px;
    padding: 4px 6px;
    white-space: nowrap;
    line-height: 1;
  }

  .dual-foot .btn--solid {
    height: 40px !important;
    padding: 0 22px !important;
    font-size: 14px !important;
    border-radius: 999px;
  }
  .dual-inner {
    padding-top: 0 !important;
    padding-right: 16px !important;
    padding-bottom: 24px !important;
    padding-left: 16px !important;
  }

  .tag {
    font-size: 9px;
    font-weight: 200;
    padding: 4px 4px;
    border-radius: 999px;
    color: #fff;
    line-height: 1;
    font-weight: 700;
  }

  .tcard-body .tcard-title {
    margin: 0;
    text-align: center;
    font-weight: 400 !important;
    color: var(--ink);
    font-size: 11px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 999px;
    height: 40px !important;
    padding: 0 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
    white-space: nowrap;
    font-size: 14px !important;
  }

  .btn--solid {
    background: var(--brand);
    color: #fff;
    height: 40px;
    padding: 0 22px;
    box-shadow: 0 10px 18px rgba(123, 43, 43, 0.18);
    font-size: 14px !important;
    border-radius: 999px;
  }

  .dual-col--right .info-row {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .dual-col--right .info-date {
    flex: 0 0 92px;
    white-space: nowrap;
    font-size: 13px;
  }
  .dual-col--right .pill {
    flex: 0 0 78px;
    white-space: nowrap;
    text-align: center;
    font-size: 11px;
    padding: 6px 10px;
  }
  .dual-col--right .info-text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    line-height: 1.35;
  }

  .info {
    margin: 10px 0 0;
  }

  .dual-rule {
    display: none;
  }

  .kpi {
    padding: 10px 0 16px;
  }

  .kpi__inner {
    display: flex !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 16px !important;
    gap: 14px !important;

    overflow-x: auto !important;
    overflow-y: visible !important;
    justify-content: flex-start !important;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    box-sizing: border-box !important;
    max-width: 100% !important;
  }

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

  .kpi__inner::before,
  .kpi__inner::after {
    content: "";
    flex: 0 0 1px;
  }

  .kpi__item {
    flex: 0 0 92vw !important;
    max-width: 92vw !important;
    height: 112px;
    padding: 0 18px;
    margin-left: 0 !important;

    background: linear-gradient(180deg, #8b1e1e 0%, #6f2b2b 100%);
    border: 1px solid rgba(206, 168, 90, 0.7);
    border-radius: 8px;
    clip-path: none;

    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;

    scroll-snap-align: center;
    position: relative !important;
    transform: none !important;
    min-width: 0 !important;
  }

  .kpi__item::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 16px;
    border: 1px solid;
    border-image-source: linear-gradient(
      to right,
      #b18f31 4%,
      #ffffff 17%,
      #bea152 29%,
      #ffffff 47%,
      #bea152 72%,
      #ffffff 82%,
      #b18f31 94%
    );
    border-image-slice: 1;
    pointer-events: none;
  }

  .kpi__line {
    display: none;
  }

  .kpi__top {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 3 !important;
    align-self: start !important;

    transform: translateY(3px) !important;
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
    margin: 0;
  }

  .kpi__sub {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
    justify-self: center !important;
    text-align: left !important;

    font-size: 12px;
    margin: 14px 0 0 !important;
    opacity: 0.9;
  }

  .kpi__num {
    grid-column: 2 / 3 !important;
    grid-row: 2 / 3 !important;
    justify-self: center !important;
    text-align: right !important;

    transform: translateY(0px) !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 4px;
    margin: 0 !important;
  }

  .kpi__num-main {
    font-size: 50px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
  }

  .kpi__num-main::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.5px;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.2) 100%
    ) !important;
  }

  .kpi__num-prefix,
  .kpi__unit {
    font-size: 13px;
    padding-bottom: 8px;
  }

  .about {
    padding: 60px 0;
    padding-bottom: 150px;
    position: relative;
  }

  .about__inner {
    display: block !important;
    position: relative;
    max-width: none;
    padding: 0 16px;
    box-sizing: border-box !important;
  }

  .about__image-container {
    flex: none !important;
    width: 92%;
    max-width: 560px;
    margin: 0;
  }

  .about__image-mask {
    width: 100% !important;
    height: clamp(420px, 60vh, 600px);
    min-height: 0;
    max-height: none;
  }
  .about__image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about__content {
    position: absolute;
    top: 10%;
    left: 0;
    width: 86%;
    max-width: 520px;
    margin-left: 40px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    padding: 10px 18px;
    text-align: center;
    box-sizing: border-box;
    z-index: 2;
  }

  .about__head {
    margin: 0 auto 10px !important;
  }
  .about__text {
    margin: 0 auto 8px !important;
  }

  .about__text p {
    font-size: 13px;
    color: #000;
    line-height: 1.8;
    margin: 0 0 0.75em;
  }

  .about__foot {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    margin-right: 50px;
  }

  .service {
    padding: 46px 0 46px !important;
    position: relative !important;
    overflow: visible !important;
    margin-top: 0 !important;
    z-index: 10 !important;
  }

  .service::before,
  .service::after {
    display: block !important;
    left: auto !important;
    right: 0 !important;
    margin-left: 0 !important;
  }
  .service::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;

    left: auto !important;
    right: 0 !important;

    margin-left: 0 !important;
    transform: none !important;
    translate: none !important;

    width: 140px !important;
    height: 1px !important;
    background: var(--sr-brand) !important;
    z-index: 6 !important;
  }

  .service::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;

    left: auto !important;
    right: 0 !important;

    margin-left: 0 !important;
    transform: none !important;
    translate: none !important;

    width: 5px !important;
    height: 5px !important;
    background: var(--sr-brand) !important;

    transform: translate(-140px, calc(-50% + 0px)) !important;
    z-index: 6 !important;
  }
  .service .service__decor-bottom {
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    width: 140px !important;
    height: 1px !important;
    background: var(--sr-brand) !important;
  }
  .service .service__decor-bottom::before {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    width: 5px !important;
    height: 5px !important;
    background: var(--sr-brand) !important;
    transform: translateY(calc(-50% + 4px)) !important;
  }

  .service__inner {
    width: calc(100% - 32px) !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;

    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas:
      "head head"
      "card1 card2"
      "card3 card4" !important;
    gap: 14px !important;
    align-items: start !important;
  }

  .service__head {
    grid-area: head !important;
    text-align: center !important;
    margin: 0 0 6px !important;
  }

  .service__grid {
    display: contents !important;
  }

  .service__grid .svc-card:nth-child(1) {
    grid-area: card1 !important;
  }
  .service__grid .svc-card:nth-child(2) {
    grid-area: card2 !important;
  }
  .service__grid .svc-card:nth-child(3) {
    grid-area: card3 !important;
  }
  .service__grid .svc-card:nth-child(4) {
    grid-area: card4 !important;
  }

  .svc-card {
    width: 170px !important;
    height: 190px !important;
    position: relative !important;
    filter: none !important;
  }

  .svc-card__link {
    width: 170px !important;
    height: 190px !important;
    display: block !important;
    position: relative !important;
    overflow: hidden !important;

    --cut: 34px !important;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - var(--cut)),
      calc(100% - (var(--cut) * 1.2)) 100%,
      0 100%
    ) !important;

    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14) !important;
    transform: none !important;
  }

  .svc-card__media {
    height: 190px !important;
  }
  .svc-card__media img {
    width: 170px !important;
    height: 190px !important;
    object-fit: cover !important;
    display: block !important;
    object-position: center !important;
  }

  .svc-card__base {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 170px !important;
    height: 72px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    padding: 0 10px !important;
    box-sizing: border-box !important;

    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    backdrop-filter: blur(2px) !important;
  }

  .svc-card__base::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.92) 100%
    ) !important;
    opacity: 1 !important;
  }

  .svc-card__base > * {
    position: relative !important;
    z-index: 1 !important;
  }

  .svc-card__base-title {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    color: #111 !important;
  }

  .svc-card__hover {
    display: none !important;
  }
	
	.svc-card--3 .svc-card__media {
    overflow: hidden;
  }

  .svc-card--3 .svc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 20%;
    transform: scale(2.6);
    transform-origin: 75% 10%;
  }

  .track-record {
    padding: 54px 0 54px;
  }

  .track-record__head {
    margin: 0 0 14px !important;
    padding: 0 16px !important;
    text-align: center !important;
  }

  .track-record__inner {
    width: 100%;
    margin: 0;
  }

  .tr-marquee__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;

    padding: 0 16px;
    box-sizing: border-box;
  }

  .tr-marquee__track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 12px 0 16px;
    box-sizing: border-box;
    animation: none !important;
  }

  .tr-marquee .tr-marquee__viewport {
    padding: 10px 16px 14px;
  }

  .tr-marquee .tr-marquee__track {
    gap: 14px;
  }

  .tr-marquee .tr-card2 {
    flex: 0 0 160px;
    width: 160px;
    height: 150px;
  }

  .tr-marquee .tr-card2__tags {
    margin: 5px;
  }

  .tr-marquee .tr-card2__media {
    height: 70px;
  }

  .tr-marquee .tr-card2__name {
    font-size: 11px;
  }

  .tr-marquee .tr-tag {
    height: 16px;
    font-size: 9px;
    padding: 0 6px;
  }

  .track-record__foot {
    margin-top: 22px;
  }

  .tr-marquee__viewport::-webkit-scrollbar {
    display: none;
  }
  .tr-marquee__viewport {
    scrollbar-width: none;
  }

  .cta {
    padding: 40px 2px 60px;
  }

  .cta__inner {
    width: 100%;
  }

  .cta__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    grid-auto-rows: auto !important;
    align-items: start;
  }

  .cta-card {
    width: 100%;
    height: 170px;

    padding: 8px 0px;

    display: grid;
    grid-template-rows: 36px auto 1fr auto;
  }

  .cta-card__media {
    width: 170px;
    height: 36px;
    margin: 0 auto 6px;
  }

  .cta-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cta-card__title {
    font-size: 12px;
    margin: 6px 0 4px;
    text-align: center;
  }

  .cta-card__list {
    font-size: 9.5px;
    line-height: 1.5;
    max-width: 100%;
  }

  .cta-card__list li {
    padding-left: 1em;
  }

  .cta-card__foot {
    margin-top: 6px;
  }

  .cta-btn {
    width: 150px;
    height: 23px;

    font-size: 10px;
    gap: 4px;
  }

  .cta-card--wide {
    height: auto !important;
    min-height: 140px !important;

    display: grid !important;
    grid-template-columns: 1fr 173px !important;
    grid-template-rows: auto !important;

    align-items: center !important;

    padding: 6px 10px 8px !important;
    row-gap: 0 !important;
  }

  .cta-card--wide .cta-card__wide-body {
    padding-right: 10px !important;
    transform: translateY(-4px);
  }
  .cta-card--wide .cta-card__media--wide {
    display: block !important;
    width: 173px !important;
    height: 92px !important;

    margin: 0 !important;
    justify-self: end !important;
    align-self: center !important;
  }

  .cta-card--wide .cta-card__media--wide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .cta-card--wide .cta-btn {
    width: 150px !important;
    height: 23px !important;
    font-size: 10px !important;
  }
  .cta-card--wide .cta-card__title {
    margin: 0 0 6px !important;
    line-height: 1.2 !important;
  }
  .cta-card--wide .cta-card__list {
    margin: 0 0 8px !important;
    line-height: 1.6 !important;
  }
  .cta-card--wide .cta-card__foot {
    margin-top: 10px !important;
    justify-content: center !important;
  }

  .cta-card--wide .cta-card__media {
    width: 173px !important;
    height: 73px !important;
    margin: 0 !important;
    align-self: center !important;
    justify-self: end !important;
  }

  .cta__bg {
    position: absolute;
    z-index: 0;
  }

  .cta__bg--tr {
    width: 190px;
    height: 140px;

    top: 20px;
    right: -40px;

    left: auto;
    transform: none;
  }

  .cta__bg--l {
    width: 100px;
    height: 420px;

    top: 130px;
    left: 0px;

    transform: none;
  }

  .cta__bg--rb {
    width: 160px;
    height: 320px;

    bottom: -120px;
    right: -20px;

    top: auto;
    left: auto;
    transform: none;
  }

  .staff {
    padding: 36px 16px 40px;
  }
  .staff__head {
    margin-bottom: 14px;
  }
  .staff__grid {
    grid-template-columns: repeat(3, 110px);
    gap: 12px;
    justify-content: center;
  }

  .staff-card {
    width: 110px;
    height: 138px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  }

  .staff-card__media {
    width: 88px;
    height: 88px;
    margin: 10px auto 0;
    overflow: visible;
    background: #eee;
  }

  .staff-card__photo,
  .staff-card__media img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    display: block;
  }

  .staff-card__noimage {
    width: 88px;
    height: 88px;
  }

  .staff-card__role {
    width: 42px;
    height: 14px;
    font-size: 6.5px;
    letter-spacing: 0.06em;

    right: 0;
    bottom: -7px;
    z-index: 2;
  }

  .staff-card__body {
    padding: 9px 6px 0;
    text-align: center;
  }

  .staff-card__name {
    font-size: 12.5px;
    line-height: 1.2;
  }

  .staff-card__name-en {
    margin-top: 0;
    font-size: 6.5px;
    letter-spacing: 0.08em;
  }

  .staff__foot {
    margin-top: 18px;
  }

  .staff__grid > .staff-card:nth-child(n + 4) {
    display: none;
  }

  .staff__grid {
    grid-template-columns: repeat(3, 110px);
    gap: 12px;
    justify-content: center;
  }
  .staff {
    position: relative;
    overflow: hidden;
  }

  .staff::before,
  .staff::after {
    position: absolute;
    z-index: 0;
    pointer-events: none;
  }

  .staff > * {
    position: relative;
    z-index: 1;
  }
  .recruit {
    padding: 36px 0 50px;
  }

  .recruit__inner {
    position: relative;
    width: 100%;
  }

  .recruit__media {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    height: 32vh;
    min-height: 200px;
    max-height: 280px;

    overflow: hidden;
    border: none;
  }

  .recruit__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
  }

  .recruit__panel {
    width: min(92vw, 550px);
    height: auto;
    padding: 0px;
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    display: grid;
    min-height: 180px;
  }

  .recruit__panel-inner {
    display: grid;
    place-items: center;
    gap: 5px;
    transform: translateY(0px);
  }

  .recruit__lead {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
  }

  .recruit__btn {
    width: 130%;
    height: 30px;
    font-size: 13px;
    padding: 0 24px;
  }

  .social-links {
    gap: 14px;
    margin: 0px 0;
    padding: 20px 16px;
  }

  .social {
    width: min(44vw, 200px);
    height: auto;
    padding: 12px 0;
    gap: 10px;
  }

  .social.threads img {
    height: var(--threads-logo-h, 20px);
  }

  .social.instagram {
    gap: 0;
  }

  .social.instagram .instagram-icon {
    height: var(--ig-icon-h, 30px);
    width: auto;
    display: block;
  }

  .social.instagram .instagram-text {
    height: var(--ig-text-h, 30px);
    width: auto;
    display: block;
  }
	
	.contact-cta {
    display: none !important;
  }
}

@media (min-width: 900px) and (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  .gnav {
    gap: 14px;
  }

  .site-header__inner,
  .header__inner {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .brand,
  .site-header .brand {
    max-width: 240px;
  }

  .brand__logo,
  .site-header .brand__logo {
    height: 42px !important;
    width: auto !important;
  }

  .header-tel.header-tel--pc {
    display: none !important;
  }

  .site-header__contact,
  .site-header__line,
  .header-contact,
  .header-line {
    transform: scale(0.92);
    transform-origin: center;
  }

  .dual-inner,
  .about__inner,
  .service__inner,
  .track-record__inner,
  .cta__inner,
  .staff__inner,
  .recruit__inner {
    width: calc(100% - 48px);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .dual-inner {
    grid-template-columns: 1fr 1px 0.92fr;
    gap: 20px;
    min-height: auto;
    padding: 0 20px;
  }

  .dual-col--right {
    min-width: 0;
  }

  .dual-col--right .info,
  .dual-col--right .dual-foot {
    width: 100%;
    max-width: 100%;
  }

  .about__mark {
    position: absolute;
    transform: translate(-100px, -40px);
  }

  .service__mark {
    position: absolute;
    transform: translate(-88px, -40px);
  }

  .track-record__mark {
    position: absolute;
    transform: translate(-155px, -40px);
  }

  .staff__mark {
    position: absolute;
    transform: translate(-55px, -40px);
  }

  .contact__mark {
    position: absolute;
    transform: translate(-88px, -40px);
  }

  .recruit__mark {
    position: absolute;
    transform: translate(-88px, -40px);
  }

  .dual-title__en {
    font-size: 44px;
  }

  .topics {
    padding: 0 44px;
  }

  .topics-track {
    gap: 14px;
  }

  .tcard {
    flex: 0 0 68%;
    width: 68%;
    height: 235px;
  }

  .tcard-media {
    height: 125px;
  }

  .tcard-title {
    font-size: 12px;
    line-height: 1.45;
  }

  .btn--outline {
    width: 128px;
    font-size: 12px;
  }

  .topics .tag {
    font-size: 9px;
    padding: 4px 6px;
  }

  .info-row {
    grid-template-columns: 110px 1fr;
    gap: 6px 10px;
    padding: 10px 6px;
  }

  .info-date {
    font-size: 14px;
  }

  .info-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .pill {
    font-size: 10px;
    padding: 5px 10px;
  }

  .kpi {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .kpi__inner {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0 !important;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
  }

  .kpi__item {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: 210px;
    padding: 0 22px;
  }

  .kpi__item + .kpi__item {
    margin-left: -72px;
  }

  .kpi__top {
    font-size: 28px;
  }

  .kpi__sub {
    font-size: 15px;
  }

  .kpi__num-main {
    font-size: 64px;
  }

  .kpi__num-prefix,
  .kpi__unit {
    font-size: 17px;
  }

  .about__inner {
    gap: 32px;
    padding: 0 20px;
  }

  .about__image-container {
    flex: 0 0 46%;
  }

  .about__image-mask {
    width: 100%;
    height: 560px;
  }

  .about__content {
    top: 0;
  }

  .about__text p {
    font-size: 16px;
    line-height: 1.95;
  }

  .service__inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .service__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    justify-content: center;
  }

  .svc-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .svc-card__link,
  .svc-card__base,
  .svc-card__media img {
    width: 100%;
  }

  .svc-card__link {
    height: 360px;
  }

  .svc-card__media {
    height: 360px;
  }

  .svc-card__media img {
    height: 360px;
    object-fit: cover;
  }

  .svc-card__base {
    height: 110px;
    padding: 0 14px;
  }

  .svc-card__base-title {
    font-size: 16px;
    line-height: 1.35;
  }

  .svc-card__hover {
    display: none;
  }

  .track-record__inner {
    width: calc(100% - 48px);
    max-width: 980px;
  }

  .tr-marquee__viewport {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .tr-marquee__track {
    animation: none !important;
  }

  .tr-marquee .tr-card2 {
    flex: 0 0 220px;
    width: 220px;
    height: 230px;
  }

  .cta__bg--tr {
    width: 190px;
    height: 140px;

    top: 20px;
    right: -40px;

    left: auto;
    transform: none;
  }

  .cta__bg--l {
    width: 100px;
    height: 420px;

    top: 130px;
    left: 0px;

    transform: none;
  }

  .cta__bg--rb {
    width: 160px;
    height: 320px;

    bottom: -10px;
    right: -20px;

    top: auto;
    left: auto;
    transform: none;
  }

  .cta__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto !important;
    gap: 1px;
    align-items: start;
  }

  .cta-card {
    width: 100%;
    height: auto !important;
    min-height: 210px;
    padding: 14px 14px 16px;
    display: grid;
    grid-template-rows: 56px auto 1fr auto;
    align-content: start;
    box-sizing: border-box;
  }

  .cta-card__media {
    width: 100%;
    max-width: 100%;
    height: 56px;
    margin: 0 auto 8px;
  }

  .cta-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cta-card__title {
    font-size: 14px;
    line-height: 1.4;
    margin: 4px 0 6px;
    text-align: center;
  }

  .cta-card__list {
    font-size: 11px;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 10px;
  }

  .cta-card__foot {
    margin-top: 0;
    justify-content: center;
  }

  .cta-btn {
    width: 170px;
    height: 32px;
    font-size: 11px;
  }

  .cta-card--wide {
    grid-column: 1 / -1;
    width: 100%;
    height: auto !important;
    min-height: 160px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    grid-template-rows: auto;
    align-items: center;
    column-gap: 18px;
    padding: 14px 18px;
    box-sizing: border-box;
  }

  .cta-card--wide .cta-card__wide-body {
    padding-right: 0;
    min-width: 0;
    width: min(320px, 100%);
    max-width: 320px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    align-self: center;
  }

  .cta-card__wide-body * {
    text-align: left;
  }

  .cta-card--wide .cta-card__media,
  .cta-card--wide .cta-card__media--wide {
    width: 330px;
    max-width: 330px;
    height: 108px;
    margin: 0;
    justify-self: end;
    align-self: center;
  }

  .cta-card--wide .cta-card__media img,
  .cta-card--wide .cta-card__media--wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cta-card--wide .cta-card__title {
    font-size: 14px;
    margin: 0 0 8px;
    text-align: left;
  }

  .cta-card--wide .cta-card__list {
    font-size: 11px;
    line-height: 1.6;
    margin: 0 0 10px;
    max-width: 100%;
  }

  .cta-card--wide .cta-card__foot {
    margin-top: 0;
    justify-content: flex-start;
  }

  .cta-card--wide .cta-btn {
    width: 180px;
    height: 32px;
    font-size: 11px;
  }

  .cta-card--wide .cta-card__media,
  .cta-card--wide .cta-card__media--wide {
    align-self: center;
  }

  #cta.is-inview {
    padding: 30px 16px 45px;
  }

  .staff__grid {
    grid-template-columns: repeat(3, 240px);
    gap: 20px;
    justify-content: center;
  }

  .staff-card {
    width: 240px;
    height: 300px;
  }

  .staff-card__media {
    width: 190px;
    height: 190px;
  }

  .staff-card__photo,
  .staff-card__media img {
    width: 190px;
    height: 190px;
  }

  .recruit__media,
  .recruit__img {
    width: 100%;
    height: 400px;
  }

  .recruit__panel {
    width: min(90%, 720px);
    height: 300px;
    bottom: -150px;
    padding: 20px 28px;
  }

  .recruit__lead {
    font-size: 22px;
  }

  .recruit__btn {
    width: 260px;
    height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 959px) {
  .gnav {
    display: none !important;
  }

  .site-header__tel,
  .header-tel,
  .header-tel--pc {
    display: none !important;
  }
}

