/* ============================================================
DESIGN TOKENS
============================================================ */

:root {
  --navy:        #0d1f3c;
  --white:       #ffffff;
  --gold:        #c9a227;
  --radius:      12px;
  --section-gap: 110px;
  --text-light:  #5a6475;
  --gray-line:   #e0e5ef;
}

/* ============================================================
BASE
============================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
}

address {
  font-style: normal;
}

/* ============================================================
UTILITY
============================================================ */

@media (max-width: 768px) {
  .pc-only { display: none; }
}

/* ============================================================
LAYOUT
============================================================ */

.container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5%, 60px);
}

/* ============================================================
HEADER
============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background-color .3s ease,
    box-shadow .3s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 20px rgba(13, 31, 60, 0.08);
}

.header__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding: 14px clamp(20px, 5%, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
}

.header.is-scrolled .header__logo {
  color: var(--navy);
}

.header__logo-badge {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 400;
  opacity: 0.78;
}

.header__logo-name {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.8vw, 26px);
}

.header__nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color .2s ease, opacity .2s ease, border-color .2s ease, background-color .2s ease;
}

.header.is-scrolled .header__nav-link {
  color: var(--navy);
}

.header__nav-link:hover {
  opacity: 0.78;
}

.header__nav-link--cta {
  padding: 9px 17px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.header.is-scrolled .header__nav-link--cta {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.14);
}

.header__nav-link[aria-current="page"] {
  font-weight: 700;
  opacity: 1;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 1px;
  transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
}

.header.is-scrolled .header__hamburger span {
  background: var(--navy);
}

.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 60, 0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    height: 100svh;
    margin: 0;
    padding: 88px 24px 32px;
    background: var(--white);
    box-shadow: -8px 0 32px rgba(13, 31, 60, 0.12);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1001;
    overflow-y: auto;
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav-link {
    display: block;
    padding: 14px 0;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-line);
    white-space: normal;
  }

  .header__nav-link--cta {
    margin-top: 12px;
    text-align: center;
    border: 2px solid var(--gold);
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.12);
  }
}

/* ============================================================
PAGE HERO (subpages)
============================================================ */

.page-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 72px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 31, 60, 0.78) 0%,
    rgba(26, 74, 138, 0.52) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.page-hero__en {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 12px;
}

.page-hero__ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}

/* ============================================================
PAGE HERO — slim variant (news list / detail subpages)
============================================================ */

.page-hero--slim {
  min-height: 0;
  padding: 72px 20px 24px;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a4a8a 100%);
}

.page-hero--slim .page-hero__bg {
  display: none;
}

@media (max-width: 768px) {
  .page-hero--slim {
    padding: 64px 20px 20px;
  }
}

/* ============================================================
NEWS LIST PAGE
============================================================ */

.nlist {
  padding: clamp(48px, 6vw, 72px) 0 clamp(60px, 8vw, 96px);
  background: var(--white);
}

.nlist .news__list {
  max-width: 760px;
  margin-inline: auto;
}

/* ============================================================
BREADCRUMB
============================================================ */

.breadcrumb {
  background: #f5f7fb;
  border-bottom: 1px solid var(--gray-line);
  padding: 12px 0;
}

.breadcrumb__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5%, 60px);
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb__link {
  color: var(--navy);
  text-decoration: none;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__sep {
  margin: 0 8px;
  opacity: 0.45;
}

.breadcrumb__current {
  color: var(--text-light);
}

/* ============================================================
SECTION TITLES & UTIL
============================================================ */

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.section-title__en {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
}

.section-title__ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.2vw, 32px);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.35;
}

.section-header {
  margin-bottom: 36px;
}

.section-header .section-desc {
  margin-top: 18px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

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

/* ============================================================
BUTTONS & LINKS
============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition:
    background-color .3s ease,
    color .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.btn--primary-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--primary-dark:hover {
  background: #0a1628;
  border-color: #0a1628;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 20px rgba(13, 31, 60, 0.12);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.link-more span {
  transition: transform .2s ease;
}

.link-more:hover span {
  transform: translateX(4px);
}

/* ============================================================
NEWS DETAIL PAGE
============================================================ */
.ndetail {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}

.ndetail__wrap {
  max-width: 760px;
  margin-inline: auto;
}

.ndetail__article {
  border-top: 3px solid var(--navy);
  padding-top: 32px;
}

.ndetail__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ndetail__title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-line);
}

.ndetail__body {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.9;
}

.ndetail__body p {
  margin-bottom: 1.4em;
}

.ndetail__body h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 2em 0 0.8em;
}

.ndetail__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 16px 0;
}

.ndetail__no-body,
.ndetail__loading,
.ndetail__error {
  color: var(--text-light);
  font-size: 15px;
  padding: 24px 0;
}

.ndetail__error {
  color: #c0392b;
}

.ndetail__back {
  max-width: 760px;
  margin: 48px auto 0;
}

/* ============================================================
HERO (top)
============================================================ */

.hero {
  position: relative;
  min-height: 720px;
  height: auto;
  padding:
    clamp(140px, 18vw, 220px)
    0
    clamp(100px, 10vw, 140px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(13, 31, 60, 0.72) 0%,
      rgba(26, 74, 138, 0.48) 100%
    );
  transform: translateZ(0);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin-inline: auto;
  padding-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--white);
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin: 0 0 24px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
  max-width: 12em;
}

.hero__sub {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  line-height: 2;
  margin: 0 0 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), transparent);
  opacity: 0.8;
}

/* ============================================================
NEWS
============================================================ */

.news {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}

.news__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.news__header {
  text-align: center;
}

.news .section-title {
  align-items: center;
}

.news__list {
  width: 100%;
  max-width: 760px;
  border-top: 1px solid var(--gray-line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.news__item {
  border-bottom: 1px solid var(--gray-line);
}

.news__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 18px 4px;
  text-decoration: none;
  color: var(--navy);
  transition: background-color .2s ease;
}

.news__link:hover {
  background: rgba(13, 31, 60, 0.03);
}

.news__date {
  font-size: 13px;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}

.news__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: #eef1f6;
  color: var(--navy);
}

.news__badge--work {
  background: rgba(201, 162, 39, 0.2);
  color: #7a5f0a;
}

.news__badge--recruit {
  background: rgba(13, 31, 60, 0.08);
}

.news__title {
  flex: 1 1 200px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.news__arrow {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

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

/* ============================================================
NEWS MODAL
============================================================ */
.news-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.55);
  overflow-y: auto;
}

.news-modal-overlay.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px 60px;
}

.news-modal {
  background: #fff;
  border-radius: 8px;
  max-width: 700px;
  width: 100%;
  padding: 40px 40px 48px;
  position: relative;
}

.news-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 8px;
}

.news-modal__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-modal__title {
  font-size: clamp(17px, 4vw, 22px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 24px;
}

.news-modal__body {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.9;
}

.news-modal__no-body {
  color: var(--text-light);
  font-size: 14px;
}

@media (max-width: 600px) {
  .news-modal-overlay.is-open {
    padding: 20px 12px 40px;
  }

  .news-modal {
    padding: 32px 20px 40px;
  }
}

/* ============================================================
ABOUT (top)
============================================================ */

.about {
  padding: clamp(80px, 9.6vw, 128px) 0;
  background: var(--white);
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(13, 31, 60, 0.08);
  width: 100%;
}

.about__image img {
  width: 100%;
  height: clamp(300px, 40vw, 480px);
  object-fit: cover;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.about .section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.about .section-title__en,
.about .section-title__ja {
  text-align: left;
}

.about__lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

.about__text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 2.2;
  margin: 0;
  max-width: none;
  text-align: left;
}

.about .btn {
  margin-top: 8px;
}

@media (min-width: 900px) {
  .about__inner {
    flex-direction: row;
    align-items: stretch;
    gap: clamp(40px, 5vw, 72px);
    max-width: none;
  }

  .about__image {
    flex: 1 1 44%;
    max-width: 520px;
    align-self: stretch;
  }

  .about__image img {
    height: 100%;
  }

  .about__content {
    flex: 1 1 50%;
    padding-top: 8px;
    gap: 22px;
  }
}

/* ============================================================
SERVICE (top)
============================================================ */

.service {
  padding: clamp(80px, 9.6vw, 128px) 0;
  background: #f7f8fb;
}

.service .container {
  max-width: 1300px;
}

.service .section-header {
  text-align: center;
}

.service .section-desc {
  margin-top: 16px;
}


.service__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .service__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.service__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13, 31, 60, 0.06);
  border: 1px solid var(--gray-line);
  transition:
    box-shadow .35s ease,
    border-color .35s ease,
    background-color .35s ease;
}

.service__card:hover {
  box-shadow: 0 12px 40px rgba(13, 31, 60, 0.1);
  border-color: rgba(201, 162, 39, 0.35);
}

.service__card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.service__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 60, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}

.service__card:hover .service__card-overlay {
  opacity: 1;
}

.service__card-more {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.service__card-body {
  padding: 24px 22px 28px;
}

.service__card-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 10px;
}

.service__card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--navy);
}

.service__card-text {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

/* ============================================================
STRENGTHS
============================================================ */

.strengths {
  padding: clamp(80px, 9.6vw, 128px) 0;
  background: var(--white);
}

.strengths .container {
  max-width: 1300px;
}


.strengths__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

@media (max-width: 900px) {
  .strengths__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .strengths__grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* カード枠を撤廃してフラット化 */
.strengths__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

.strengths__item:hover {
  box-shadow: none;
}

/* 画像下部のグラデーションフェード */
.strengths__item-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.strengths__item-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.strengths__item-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.strengths__item-body {
  padding: 14px 8px 0;
}

/* 数字・テキスト横並びレイアウト */
.strengths__head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* 大きなゴールドのSerif数字 */
.strengths__num {
  flex-shrink: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  padding-top: 2px;
}

.strengths__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(13px, 1.1vw, 15px);
  margin: 0 0 6px;
  line-height: 1.45;
}

.strengths__text {
  margin: 0;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.85;
}

/* ============================================================
RECRUIT (top section)
============================================================ */

.recruit {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: clamp(100px, 14vw, 160px) 0;
  overflow: hidden;
}

.recruit__bg {
  position: absolute;
  inset: 0;
}

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

.recruit__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 31, 60, 0.88) 0%,
    rgba(13, 31, 60, 0.55) 55%,
    rgba(26, 74, 138, 0.35) 100%
  );
}

.recruit .container {
  position: relative;
  z-index: 1;
}

.recruit__content {
  max-width: 560px;
  color: var(--white);
}

.recruit__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 20px;
}

.recruit__text {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
COMPANY (top)
============================================================ */

.company {
  padding: clamp(100px, 12vw, 150px) 0;
  background: var(--white);
}

.company .section-header {
  text-align: center;
}

.company__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.company__logo-img {
  max-width: 220px;
  height: auto;
}

.company__table-wrap {
  overflow-x: auto;
}

.company__table {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  border-collapse: collapse;
  font-size: 15px;
}

.company__table th,
.company__table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--gray-line);
  text-align: left;
  vertical-align: top;
}

.company__table th {
  width: 28%;
  min-width: 120px;
  font-weight: 600;
  color: var(--navy);
  background: #f7f8fb;
}

.company__table td {
  color: var(--text-light);
  line-height: 1.8;
}

.company__tel {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.company__tel:hover {
  text-decoration: underline;
}

.timeline {
  margin: 12px 0 0;
  padding-left: 1.2em;
  color: var(--text-light);
  line-height: 1.9;
}

.timeline__year {
  font-weight: 700;
  color: var(--navy);
  margin-right: 6px;
}

/* ============================================================
CONTACT
============================================================ */

.contact {
  padding: clamp(90px, 11vw, 130px) 0;
  background: linear-gradient(180deg, #f7f8fb 0%, #eef1f6 100%);
}

.contact__inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.contact__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
}

.contact__title-en {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
}

.contact__title-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--navy);
  font-weight: 700;
}

.contact__lead {
  margin: 0 0 28px;
  color: var(--text-light);
  line-height: 1.85;
}

.contact__tel-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--gray-line);
  text-decoration: none;
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(13, 31, 60, 0.06);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.contact__tel-link:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 12px 36px rgba(13, 31, 60, 0.1);
}

.contact__tel-label {
  font-size: 13px;
  color: var(--text-light);
}

.contact__tel-num {
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact__tel-hours {
  font-size: 13px;
  color: var(--text-light);
}

.contact__fax {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--text-light);
}

/* ============================================================
FOOTER
============================================================ */

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  padding: 56px 0 24px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__logo {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.footer__logo-badge {
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.85;
}

.footer__logo-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
}

.footer__tagline {
  font-size: 14px;
  margin: 0 0 16px;
  opacity: 0.85;
}

.footer__address {
  font-size: 14px;
  line-height: 1.85;
}

.footer__address a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer__address a:hover {
  text-decoration: underline;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}

.footer__nav-list a:hover {
  color: var(--gold);
}

.footer__bottom {
  padding-top: 24px;
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-size: 12px;
  opacity: 0.55;
}

/* ============================================================
GREETING (about page)
============================================================ */

.greeting {
  padding: clamp(72px, 10vw, 110px) 0;
  background: var(--white);
}

/* 代表挨拶の見出しを大見出しサイズに拡大 */
.greeting .section-title__en {
  font-size: clamp(24px, 2.8vw, 28px);
  letter-spacing: 0.12em;
  font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', 'MS PMincho', serif;
  color: #333333;
  font-weight: 700;
}

.greeting .section-header {
  margin-bottom: 48px;
}

.greeting__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 900px) {
  .greeting__inner {
    display: grid;
    grid-template-columns: min(42%, 440px) 1fr;
    grid-template-areas:
      "image content"
      "image sig";
    column-gap: 56px;
    row-gap: 0;
    align-items: start;
  }

  .greeting__image   { grid-area: image; }
  .greeting__content { grid-area: content; }
  .greeting__sig     { grid-area: sig; }
}

@media (max-width: 899px) {
  .greeting__image {
    order: 2;
    max-width: 260px;
    margin: 0 auto;
  }

  .greeting__content { order: 1; }

  .greeting__sig {
    order: 3;
    margin-top: 0;
  }
}

.greeting__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(13, 31, 60, 0.08);
}

.greeting__image img {
  width: 100%;
  object-fit: cover;
}

.greeting__content {
  flex: 1;
}

.greeting__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.55;
  margin: 0 0 24px;
}

.greeting__text {
  margin: 0 0 18px;
  color: var(--text-light);
  line-height: 2;
}

.greeting__sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-line);
  text-align: right;
}

.greeting__sig-role {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.greeting__sig-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
}

/* ============================================================
ACCESS (about page)
============================================================ */

.access {
  padding: clamp(72px, 10vw, 120px) 0;
  background: #f7f8fb;
}

.access__inner {
  display: grid;
  gap: 36px;
}

@media (min-width: 900px) {
  .access__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

.access__map {
  min-height: 320px;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(13, 31, 60, 0.08);
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access__info-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  margin: 0 0 20px;
}

.access__info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-line);
  font-size: 14px;
}

.access__info-label {
  font-weight: 600;
  color: var(--navy);
}

.access__info-val {
  margin: 0;
  color: var(--text-light);
  line-height: 1.8;
}

.access__info-val a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.access__info-val a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .access__info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company__table {
    display: block;
  }

  .company__table tbody,
  .company__table tr {
    display: block;
  }

  .company__table th,
  .company__table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .company__table th {
    background: #f7f8fb;
    padding-bottom: 4px;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.06em;
  }

  .company__table td {
    padding-top: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-line);
  }

  .company__table tr:last-child td {
    border-bottom: none;
  }

  /* 横並び表示行（会社名・TEL・FAX・設立・代表者） */
  .company__table tr.company__row--inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid var(--gray-line);
  }

  .company__table tr.company__row--inline th,
  .company__table tr.company__row--inline td {
    width: auto;
    border-bottom: none;
  }

  .company__table tr.company__row--inline th {
    min-width: 80px;
    flex-shrink: 0;
    padding-bottom: 16px;
    white-space: nowrap;
  }

  .company__table tr.company__row--inline td {
    flex: 1;
    padding-top: 16px;
  }

}

/* ============================================================
SERVICE DETAIL (service page)
============================================================ */

.svc-detail {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
}

.svc-detail--alt {
  background: #f7f8fb;
}

.svc-detail__block {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .svc-detail__block {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }

  .svc-detail__block--reverse {
    flex-direction: row-reverse;
  }

  .svc-detail__image,
  .svc-detail__content {
    flex: 1 1 50%;
  }
}

.svc-detail__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(13, 31, 60, 0.08);
}

.svc-detail__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.svc-detail__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.svc-detail__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3.5vw, 32px);
  margin: 0 0 16px;
}

.svc-detail__lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.7;
  margin: 0 0 16px;
}

.svc-detail__text {
  margin: 0 0 14px;
  color: var(--text-light);
  line-height: 2;
}

.svc-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.svc-detail__tag {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(13, 31, 60, 0.06);
  color: var(--navy);
}

.svc-detail--alt .svc-detail__tag {
  background: rgba(255, 255, 255, 0.9);
}

/* ============================================================
RECRUIT PAGE
============================================================ */

.recruit-intro {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--white);
}

.recruit-intro__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 4vw, 38px);
  text-align: center;
  line-height: 1.45;
  margin: 0 0 20px;
}

.recruit-intro__text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--text-light);
  line-height: 2;
}

.recruit-intro__cards {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .recruit-intro__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.recruit-intro__card {
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-line);
  background: #fafbfd;
  transition:
    box-shadow .35s ease,
    border-color .35s ease,
    background-color .35s ease;
}

.recruit-intro__card:hover {
  box-shadow: 0 10px 32px rgba(13, 31, 60, 0.08);
}

.recruit-intro__card-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.recruit-intro__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.18);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.recruit-intro__card-title {
  font-size: 17px;
  margin: 0;
  line-height: 1.45;
}

.recruit-intro__card-text {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

.job-spec {
  padding: clamp(72px, 10vw, 120px) 0;
  background: #eef2f7;
}

/* ---- Section Header ---- */
.jspec-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.jspec-header__icon {
  width: 52px;
  height: 52px;
  background: #2F66F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jspec-header__icon svg {
  width: 26px;
  height: 26px;
}

.jspec-header__ja {
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
}

.jspec-header__en {
  font-size: 11px;
  color: #2F66F3;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0;
}

/* ---- Card List ---- */
.jspec-list {
  display: block;
}

/* ---- Unified Panel ---- */
.jspec-panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(13, 31, 60, 0.09);
  overflow: hidden;
}

/* ---- Row ---- */
.jspec-row {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid #e0e0e0;
}

.jspec-row:last-child {
  border-bottom: none;
}

.jspec-row__icon {
  width: 51px;
  height: 51px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.jspec-row__icon img {
  width: 51px;
  height: 51px;
  object-fit: contain;
}

.jspec-row__label {
  width: 100px;
  min-width: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  padding-right: 16px;
  border-right: 1px solid #e0e0e0;
  margin-right: 16px;
  word-break: keep-all;
  align-self: center;
}

.jspec-row__content {
  flex: 1;
  font-size: 14px;
  color: #374151;
  line-height: 1.8;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ---- Checklist（必要な経験等） ---- */
.jspec-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jspec-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.jspec-checklist li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #2F66F3;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .job-spec {
    background: #F7F8FA;
  }

  .job-spec .container {
    padding-inline: 16px;
  }

  .jspec-header {
    margin-bottom: 24px;
  }

  .jspec-panel {
    border-radius: 12px;
  }

  .jspec-row {
    padding: 12px 16px;
    align-items: center;
  }

  .jspec-row__icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }

  .jspec-row__icon img {
    width: 36px;
    height: 36px;
  }

  .jspec-row__label {
    width: 80px;
    min-width: 80px;
    font-size: 12px;
    padding-right: 12px;
    margin-right: 12px;
  }

  .jspec-row__content {
    font-size: 13px;
    line-height: 1.75;
  }

  .jspec-checklist li {
    font-size: 13px;
  }
}

/* ---- PC: カード幅を制限して余白を最適化 ---- */
@media (min-width: 601px) {
  .jspec-panel {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- CTA ---- */
.jspec-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.jspec-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  background: #2F66F3;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(47, 102, 243, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.jspec-cta__btn:hover {
  background: #2457d8;
  box-shadow: 0 6px 18px rgba(47, 102, 243, 0.4);
}

.jspec-cta__note {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* 旧テーブルスタイル（後方互換のため残置） */
.job-spec__wrap {
  overflow-x: auto;
}

.job-spec__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 31, 60, 0.06);
  font-size: 15px;
}

.job-spec__table th,
.job-spec__table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-line);
  text-align: left;
  vertical-align: top;
}

.job-spec__table th {
  width: 26%;
  min-width: 100px;
  background: #f7f8fb;
  font-weight: 600;
  color: var(--navy);
}

.job-spec__table tr:last-child th,
.job-spec__table tr:last-child td {
  border-bottom: none;
}

.job-spec__new {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  background: #c62828;
  color: var(--white);
  border-radius: 4px;
  vertical-align: middle;
}

/* 募集要項テーブル — スマホ縦積みレイアウト
   ※ベーススタイルより後に記述することで正しく上書きされる */
@media (max-width: 600px) {
  .job-spec__wrap {
    overflow-x: visible;
  }

  .job-spec__table {
    display: block;
    min-width: 0;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
  }

  .job-spec__table tbody,
  .job-spec__table tr {
    display: block;
  }

  .job-spec__table th,
  .job-spec__table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: none;
  }

  .job-spec__table th {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    letter-spacing: 0.04em;
  }

  .job-spec__table td {
    background: #fff;
    padding: 12px 16px 16px;
    border-bottom: 4px solid #f0f2f6;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.85;
  }

  .job-spec__table tr:last-child td {
    border-bottom: none;
  }
}

.apply {
  padding: clamp(72px, 10vw, 120px) 0;
  background: #F7F8FA;
}

/* ---- Section Header ---- */
.apply__head {
  text-align: center;
  margin-bottom: 44px;
}

.apply__head-en {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #C8A24D;
  margin: 0 0 10px;
}

.apply__head-ja {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: #1C2E4A;
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
}

/* ---- Inner wrapper ---- */
.apply__inner {
  max-width: 660px;
  margin-inline: auto;
}

/* ---- Notice Card ---- */
.apply__notice {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(28, 46, 74, 0.08);
  margin-bottom: 48px;
  overflow: hidden;
}

.apply__notice-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 28px 20px;
}

.apply__notice-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.apply__notice-title {
  font-size: 16px;
  font-weight: 700;
  color: #1C2E4A;
  margin: 0;
  line-height: 1.4;
}

.apply__notice-body {
  padding: 0 28px 24px;
  border-bottom: 1px solid #eef0f3;
}

.apply__notice-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 2;
  margin: 0;
}

.apply__notice-text strong {
  color: #1C2E4A;
  font-weight: 700;
}

.apply__notice-caution {
  padding: 16px 28px;
  background: #f5f6f8;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.8;
}

.apply__notice-caution p {
  margin: 0;
}

/* ---- Steps Heading ---- */
.apply__hw-cta {
  display: flex;
  justify-content: center;
  margin: 32px 0 40px;
}

.apply__steps-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  color: #1C2E4A;
  letter-spacing: 0.06em;
  margin: 0 0 24px;
  text-align: center;
}

/* ---- Step Cards ---- */
.apply__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apply__step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(28, 46, 74, 0.08);
}

/* 番号 + タイトルの横並び行 */
.apply__step-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.apply__step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1C2E4A;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply__step-title {
  font-weight: 700;
  font-size: 15px;
  color: #1C2E4A;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.apply__step-text {
  margin: 0;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.95;
  padding-left: 48px;
}

.apply__step-text strong {
  color: #1C2E4A;
}

/* ============================================================
HOVER / MOTION OPTIMIZE
============================================================ */

.btn--gold:hover,
.btn--contact:hover,
.btn--tel:hover {
  transform: none;
}

.service__card:hover,
.strengths__item:hover,
.recruit-intro__card:hover {
  transform: none;
}

.about__image:hover img,
.service__card:hover .service__card-image img,
.strengths__item:hover img,
.svc-detail__image:hover img {
  transform: none;
}

/* ============================================================
PC ONLY — Hero text size
============================================================ */

@media (min-width: 769px) {
  .hero__eyebrow {
    font-size: clamp(24px, 2.8vw, 32px);
  }

  .hero__sub {
    font-size: clamp(18px, 2vw, 22px);
  }
}

/* ============================================================
MOBILE
============================================================ */

@media (max-width: 768px) {
  .hero {
    /* URLバー表示/非表示でサイズが変わらないよう --hero-h (JSで初回固定) を使用 */
    height: var(--hero-h, 100svh);
    min-height: 0;
    padding: 140px 0 90px;
  }

  .hero__content {
    padding-top: 20px;
  }

  .hero__catch {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.5;
  }

  .hero__sub {
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.9;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .about {
    padding: 56px 0;
  }

  .about__inner {
    gap: 32px;
  }

  .about__content {
    gap: 20px;
  }

  .about .section-title {
    align-items: center;
  }

  .about .section-title__en,
  .about .section-title__ja {
    text-align: center;
  }

  .about .btn {
    align-self: center;
  }

  .about__image img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .service {
    padding: 56px 0;
  }

  .service__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strengths {
    padding: 56px 0;
  }

  .recruit {
    padding: 56px 0;
  }

  .company {
    padding: 56px 0;
  }

  .contact {
    padding: 52px 0;
  }

  .news {
    padding: 48px 0;
  }

  .news__link {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 10px;
    padding-right: 32px;
  }

  .news__title {
    flex: 0 0 100%;
  }

  .news__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .page-hero {
    padding: 96px 20px 56px;
    min-height: 200px;
  }

  .greeting {
    padding: 56px 0;
  }

  .access {
    padding: 56px 0;
  }

  .recruit-intro {
    padding: 56px 0;
  }

  .recruit-intro__text {
    text-align: left;
  }

  .job-spec {
    padding: 56px 0;
  }

  .apply {
    padding: 56px 0;
  }

  .svc-detail {
    padding: 56px 0;
  }
}

/* ============================================================
SMALL SCREEN (≤ 480px)
============================================================ */

@media (max-width: 480px) {
  .hero__catch {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .section-title__ja {
    font-size: clamp(20px, 6vw, 26px);
  }

  .about__lead {
    font-size: clamp(18px, 5vw, 22px);
  }

  .recruit__catch {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .contact__tel-num {
    font-size: clamp(24px, 7vw, 30px);
  }

  .company__table th {
    width: auto;
    min-width: 80px;
    font-size: 13px;
  }

  .company__table td {
    font-size: 13px;
  }

  .company__table th,
  .company__table td {
    padding: 12px 10px;
  }

  .company__table tr.company__row--inline th {
    padding-bottom: 12px;
  }

  .company__table tr.company__row--inline td {
    padding-top: 12px;
  }

  .apply__notice-head,
  .apply__notice-body,
  .apply__notice-caution {
    padding-left: 20px;
    padding-right: 20px;
  }

  .apply__notice-head {
    padding-top: 22px;
  }

  /* 選考プロセス: スマホでは説明文をカード幅いっぱいに左揃えで表示 */
  .apply__step {
    flex-wrap: wrap;
  }

  .apply__step-head {
    width: 100%;
  }

  .apply__step-text {
    width: 100%;
    padding-left: 0;
    text-align: left;
  }

  .strengths__head {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
TOUCH DEVICE — ホバー効果を完全無効化
============================================================ */

@media (hover: none) {
  * {
    -webkit-tap-highlight-color: transparent;
  }

  /* アニメーション無効化 */
  .fade-in {
    transform: none;
  }

  .fade-in.is-visible {
    transform: none;
  }

  .hero__scroll-line {
    animation: none;
  }

  /* ナビ */
  .header__nav-link:hover {
    opacity: 1;
  }

  /* ニュース */
  .news__link:hover {
    background: transparent;
  }

  /* ボタン */
  .btn--primary-dark:hover {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: none;
  }

  .btn--gold:hover {
    filter: none;
    box-shadow: none;
  }

  /* リンク矢印 */
  .link-more:hover span {
    transform: none;
  }

  /* サービスカード */
  .service__card:hover {
    box-shadow: 0 4px 24px rgba(13, 31, 60, 0.06);
    border-color: var(--gray-line);
  }

  .service__card:hover .service__card-overlay {
    opacity: 0;
  }

  /* 強みカード */
  .strengths__item:hover {
    box-shadow: none;
  }

  /* 採用カード */
  .recruit-intro__card:hover {
    box-shadow: none;
    border-color: var(--gray-line);
  }

  /* お問い合わせ */
  .contact__tel-link:hover {
    border-color: var(--gray-line);
    box-shadow: 0 8px 28px rgba(13, 31, 60, 0.06);
  }

  /* パンくず */
  .breadcrumb__link:hover {
    text-decoration: none;
  }

  /* フッター */
  .footer__address a:hover {
    text-decoration: none;
  }

  .footer__nav-list a:hover {
    color: rgba(255, 255, 255, 0.85);
  }

  /* 会社情報 */
  .company__tel:hover {
    text-decoration: none;
  }

  /* アクセス */
  .access__info-val a:hover {
    text-decoration: none;
  }
}
