
:root {
  --blue: #0852b8;
  --blue-deep: #00398d;
  --blue-darker: #052e7b;
  --white: #fff;
  --text: #111318;
  --light-gray: #ececec;
  --gray: #d8d8d8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.section-inner {
  width: min(90%, 1520px);
  margin: 0 auto;
}

.section-inner--narrow {
  width: min(90%, 1320px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.site-header__inner {
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  padding: 12px 18px 12px 10px;
  min-width: 0;
}
.site-logo img {
  width: auto;
  height: 66px;
  max-width: 100%;
}
.global-nav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}
.global-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px 0 14px;
}
.global-nav__list > li { position: relative; }
.global-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
}
.global-nav__list > li > a:hover,
.dropdown a:hover { color: var(--blue); }
.dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: -14px;
  min-width: 190px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 34px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s ease;
}
.dropdown a {
  display: block;
  padding: 12px 14px;
  font-size: 13px;
}
.dropdown li + li { border-top: 1px solid rgba(0,0,0,.06); }
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-contact {
  width: 104px;
  min-width: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(180deg, #0a67cb 0%, #004fae 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.35;
}
.header-contact i { font-size: 24px; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin: auto 12px auto auto;
  border: 0;
  border-radius: 50%;
  background: #e6e6ea;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  background: #5d6270;
  transition: .25s ease;
}
.menu-toggle span:nth-child(1){ top: 15px; }
.menu-toggle span:nth-child(2){ top: 22px; }
.menu-toggle span:nth-child(3){ top: 29px; }
.menu-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity: 0; }
.menu-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.hero { background: transparent; }

/* Ver.2 hero trial: transplanted into the current V4 design */
.hero-ver2 {
  position: relative;
  min-height: calc(100svh - 92px);
  overflow: hidden;
  isolation: isolate;
  background: #031225;
  color: #fff;
}
.hero-ver2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 25%, rgba(0, 163, 232, .22), transparent 34%),
    linear-gradient(120deg, #031225 0%, #061a39 46%, rgba(6, 26, 57, .18) 47%, transparent 100%);
  pointer-events: none;
}
.hero-ver2__panel {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 49%;
  background: linear-gradient(135deg, rgba(0, 63, 145, .95), rgba(3, 18, 37, .98));
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}
.hero-ver2__photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 69%;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-ver2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.06);
}
.loaded .hero-ver2__photo img { animation: heroVer2Zoom 14s ease-out forwards; }
.hero-ver2__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 37, .94), rgba(3, 18, 37, .36) 38%, rgba(3, 18, 37, .04) 72%),
    linear-gradient(0deg, rgba(3, 18, 37, .48), transparent 50%);
}
.hero-ver2__lineart {
  position: absolute;
  right: 5vw;
  bottom: 9vh;
  z-index: 2;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}
.hero-ver2__lineart::before,
.hero-ver2__lineart::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(158, 232, 255, .14);
  border-radius: 50%;
}
.hero-ver2__lineart::after { inset: 24%; }
.hero-ver2__content {
  position: relative;
  z-index: 4;
  width: min(90%, 1520px);
  margin: 0 auto;
  padding-top: clamp(105px, 18vh, 185px);
}
.hero-ver2__kicker {
  display: inline-block;
  margin: 0;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .11);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .34em;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(18px);
}
.hero-ver2 h1 {
  margin: 22px 0 25px;
  font-size: clamp(54px, 6.4vw, 104px);
  font-weight: 900;
  line-height: .99;
  letter-spacing: .03em;
}
.hero-ver2 h1 span {
  display: inline-block;
  color: #fff;
  opacity: 0;
  transform: translateX(-28px);
}
.hero-ver2__lead {
  width: min(610px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  opacity: 0;
  transform: translateY(18px);
}
.hero-ver2__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(18px);
}
.hero-ver2__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 190px;
  padding: 15px 25px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: linear-gradient(135deg, #0852b8, #0072ce);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .05em;
  box-shadow: 0 16px 35px rgba(0, 45, 111, .3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-ver2__button:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(0, 45, 111, .4); }
.hero-ver2__button--light { background: #fff; color: #0852b8; }
.hero-ver2__badge {
  position: absolute;
  top: 10vh;
  right: 4.5vw;
  z-index: 2;
  color: rgba(255, 255, 255, .13);
  font-family: Arial, sans-serif;
  font-size: clamp(64px, 8vw, 135px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.05em;
  text-align: right;
}
.hero-ver2__vertical {
  position: absolute;
  top: 50%;
  left: 22px;
  z-index: 4;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  letter-spacing: .28em;
}
.hero-ver2__scroll {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 4;
  color: rgba(255, 255, 255, .8);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-align: center;
}
.hero-ver2__scroll span {
  display: block;
  position: relative;
  width: 1px;
  height: 48px;
  margin: 9px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .4);
}
.hero-ver2__scroll span::after {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 1px;
  height: 28px;
  background: #fff;
  animation: heroVer2Scroll 1.6s linear infinite;
}
.hero-ver2__marquee {
  position: absolute;
  bottom: 2vh;
  left: 0;
  z-index: 3;
  display: flex;
  width: max-content;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}
.hero-ver2__marquee span {
  display: inline-block;
  color: rgba(255, 255, 255, .07);
  font-size: clamp(50px, 7vw, 112px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .03em;
  animation: heroVer2Marquee 23s linear infinite;
}
.loaded .hero-ver2__kicker { animation: heroVer2Up .7s .15s ease forwards; }
.loaded .hero-ver2 h1 span:nth-child(1) { animation: heroVer2In .7s .28s ease forwards; }
.loaded .hero-ver2 h1 span:nth-of-type(2) { animation: heroVer2In .7s .4s ease forwards; }
.loaded .hero-ver2 h1 span:nth-of-type(3) { animation: heroVer2In .7s .52s ease forwards; }
.loaded .hero-ver2__lead { animation: heroVer2Up .7s .64s ease forwards; }
.loaded .hero-ver2__actions { animation: heroVer2Up .7s .76s ease forwards; }
@keyframes heroVer2Zoom { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes heroVer2In { to { opacity: 1; transform: none; } }
@keyframes heroVer2Up { to { opacity: 1; transform: none; } }
@keyframes heroVer2Scroll { to { top: 62px; } }
@keyframes heroVer2Marquee { to { transform: translateX(-100%); } }
.hero__pc, .hero__sp { position: relative; width: 100%; }
.hero__sp { display: none; }
.hero__base { width: 100%; height: auto; }
.hero__visual,
.hero__copy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
}
.hero__copy { z-index: 3; }
.hero__visual { z-index: 2; }
.hero-animate { opacity: 0; }
.loaded .hero-animate--1 { animation: heroVisual 1s ease .25s forwards; }
.loaded .hero-animate--2 { animation: heroCopy .95s ease .8s forwards; }
@keyframes heroVisual { from { opacity: 0; transform: translateX(40px);} to {opacity: 1; transform: translateX(0);} }
@keyframes heroCopy { from { opacity: 0; transform: translateX(-40px);} to {opacity: 1; transform: translateX(0);} }

.hero-news-wrap {
  width: 100%;
  margin: -62px 0 0;
  position: relative;
  z-index: 4;
}

.media-card__caption {
  margin: 10px 0 0;
  color: #5f6773;
  font-size: 13px;
  text-align: center;
  letter-spacing: .04em;
}

.section-head--ja-only {
  margin-bottom: 28px;
  padding-top: 0;
}
.section-head--ja-only .section-title-ja {
  margin-top: 0;
}
.news-box {
  margin-left: auto;
  margin-right: 0;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 140px 1fr 118px;
  background: var(--blue);
  color: #fff;
}
.news-box__title {
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: .04em;
}
.news-box__body { padding: 18px 18px 16px; }
.news-list { display: grid; gap: 5px; }
.news-list li {
  display: grid;
  grid-template-columns: 78px 50px 1fr;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}
.news-list time { font-weight: 700; }
.news-list .tag {
  display: inline-flex;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  padding: 1px 0;
  font-size: 9px;
}
.news-box__more {
  background: #e8e8e8;
  color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.news-box__grid {
  width: 24px;
  height: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
}
.news-box__grid span { background: var(--blue); }

.section { padding: 110px 0; }
.section--business {
  position: relative;
  background: #fff url('../img/pc_business_bg.webp') center/cover no-repeat;
  background-image: image-set(url('../img/pc_business_bg.webp') type('image/webp'), url('../img/pc_business_bg.webp') type('image/png'));
}


.section--business .section-inner {
  width: min(90%, 1520px);
}
.section--business .business-grid {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 24px;
}
@media (min-width: 961px) {
  .section--business .business-grid { margin-top: 32px; }
}

.section--feature { background: #fff; }
.section--company {
  background: #0a4ba8 url('../img/company_background.webp') center/cover no-repeat;
  background-image: image-set(url('../img/company_background.webp') type('image/webp'), url('../img/company_background.webp') type('image/png'));
}
.section-head { margin-bottom: 34px; }
.section-head--light .section-title-en,
.section-head--light .section-title-ja { color: #fff; }
.section-title-en {
  margin: 0;
  font-size: clamp(96px, 8vw, 110px);
  line-height: .95;
  letter-spacing: .06em;
  font-weight: 900;
  color: #d4d4d4;
}
.section--company .section-title-en {
  color: #fff;
  font-size: clamp(96px, 8vw, 110px) !important;
}
.section-title-ja {
  margin: 16px 0 0;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--blue);
}
.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}
.section-intro h2,
.feature-intro h2,
.company-panel h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}
.section-intro__text p,
.feature-intro p,
.company-panel p {
  max-width: 640px;
  margin: 0;
  font-size: 11px;
  line-height: 1.8;
}
.view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: .04em;
  white-space: nowrap;
}
.view-more i,
.footer-button i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
}
.view-more--light { color: #fff; }
.view-more--light i { background: #fff; color: var(--blue); }

.business-grid {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 0;
  align-items: end;
  width: 100%;
  margin-top: 24px;
}
.business-grid .business-card:nth-child(1){ transition-delay:.05s; }
.business-grid .business-card:nth-child(2){ transition-delay:.12s; }
.business-grid .business-card:nth-child(3){ transition-delay:.19s; }
.business-grid .business-card:nth-child(4){ transition-delay:.26s; }
.business-grid .business-card:nth-child(5){ transition-delay:.33s; }
.business-grid .business-card:nth-child(6){ transition-delay:.40s; }
.business-grid .business-card:nth-child(7){ transition-delay:.47s; }
.business-card { overflow: hidden; position: relative; }
.business-card a { display: block; position: relative; height: 100%; }
.business-card a::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0));
}
.business-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82);
  transition: transform .5s ease;
}
.business-card:hover img { transform: scale(1.04); }
.business-card__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  line-height: 1;
  text-shadow: 0 3px 12px rgba(0,0,0,.35);
}
.business-card__caption span {
  display: block;
  font-size: 54px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 4px;
}
.business-card__caption h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}
.business-card__caption p {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 500;
}
@media (min-width: 961px) {
  .business-grid { margin-top: 32px; }
  .business-card { transform: none; }
}
.business-card--01 { grid-column: 1 / span 4; aspect-ratio: 0.82; }
.business-card--02 { grid-column: 5 / span 4; aspect-ratio: 0.82; }
.business-card--03 { grid-column: 9 / span 4; aspect-ratio: 0.82; }
.business-card--04 { grid-column: 13 / span 4; aspect-ratio: 0.82; }
.business-card--05 { grid-column: 3 / span 4; aspect-ratio: 0.82; }
.business-card--06 { grid-column: 7 / span 4; aspect-ratio: 0.82; }
.business-card--07 { grid-column: 11 / span 4; aspect-ratio: 0.82; }

.company-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
  color: #fff;
  padding-top: 24px;
  padding-bottom: 24px;
}
.company-panel__text { padding-left: 8px; }
.company-panel__text p { color: rgba(255,255,255,.9); margin-top: 16px; }
.company-panel__image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.feature-intro { margin-bottom: 30px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}
.feature-card img { width: 100%; aspect-ratio: 1.63; object-fit: cover; }
.feature-card__body { padding-top: 10px; }
.feature-card h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
}
.feature-card p { margin: 0; font-size: 11px; line-height: 1.8; }

.site-footer {
  background: #444;
  color: #fff;
  padding-top: 0;
}
.footer-cta-wrap {
  width: 100%;
  background-image: linear-gradient(rgba(20,23,31,.52), rgba(20,23,31,.52)), url('../img/cta_background.webp');
  background-image: linear-gradient(rgba(20,23,31,.52), rgba(20,23,31,.52)), image-set(url('../img/cta_background.webp') type('image/webp'), url('../img/cta_background.webp') type('image/png'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-cta {
  width: min(90%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.footer-cta__item {
  min-height: 200px;
  padding: 42px 50px;
}
.footer-cta__item + .footer-cta__item { border-left: 1px solid rgba(255,255,255,.18); }
.footer-cta__item h2,
.footer-main h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
}
.footer-cta__item p,
.footer-company p,
.footer-links a,
.footer-map p { font-size: 11px; color: rgba(255,255,255,.88); }
.footer-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0a67cb 0%, #004fae 100%);
  font-size: 13px;
  font-weight: 700;
}
.footer-button i { background: rgba(255,255,255,.2); }
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 40px;
  padding: 34px 0 20px;
}
.footer-links ul { display: grid; gap: 4px; }
.footer-map__box {
  min-height: 96px;
  background: #f0f0f0;
  color: #111;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}
.copyright {
  margin: 0;
  padding: 12px 20px 16px;
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,.75);
}
.footer-legal {
  margin: 0;
  padding: 20px 20px 0;
  color: rgba(255,255,255,.85);
  text-align: center;
  font-size: 12px;
}
.footer-legal a {
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .site-header__inner { min-height: 66px; }
  .site-logo { padding-right: 8px; }
  .site-logo img { height: 46px; }
  .menu-toggle { display: block; }
  .global-nav {
    position: fixed;
    top: 66px;
    right: 0;
    width: min(86vw, 340px);
    height: calc(100dvh - 66px);
    background: rgba(255,255,255,.98);
    box-shadow: -18px 0 30px rgba(0,0,0,.14);
    transform: translateX(100%);
    transition: transform .3s ease;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    scrollbar-gutter: stable;
  }
  .global-nav.is-open { transform: translateX(0); }
  .global-nav__list {
    display: block;
    padding: 20px 18px 0;
  }
  .global-nav__list > li { border-bottom: 1px solid rgba(0,0,0,.08); }
  .global-nav__list > li > a {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 14px;
    height: auto;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    min-width: 0;
    padding: 0 0 10px 10px;
  }
  .dropdown a { padding: 8px 0; }
  .header-contact {
    width: auto;
    min-width: 0;
    margin: 18px;
    padding: 14px 18px;
    flex-direction: row;
    gap: 10px;
    border-radius: 8px;
    font-size: 12px;
  }

  .hero__pc { display: none; }
  .hero__sp { display: block; }
  .hero-news-wrap {
    margin: 0;
  }
  .news-box {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .news-box__title {
    justify-items: start;
    place-items: start;
    padding: 14px 18px 4px;
    font-size: 28px;
  }
  .news-box__body { padding: 0 18px 14px; }
  .news-list li { grid-template-columns: 74px 46px 1fr; font-size: 10px; }
  .news-box__more {
    flex-direction: row;
    justify-content: center;
    padding: 12px 16px 12px;
    gap: 8px;
  }

  .section { padding: 72px 0; }
  .section-title-en { font-size: 68px; }
  .section--company .section-title-en { font-size: 68px !important; }
  .section-intro,
  .company-panel,
  .footer-main,
  .footer-cta,
  .feature-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .business-card--01,
  .business-card--02,
  .business-card--03,
  .business-card--04,
  .business-card--05,
  .business-card--06,
  .business-card--07 { grid-column: auto; aspect-ratio: .92; }
  .company-panel { gap: 28px; }
  .company-panel__text { padding-left: 0; }
  .footer-cta__item + .footer-cta__item { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .footer-main { gap: 20px; }
}

@media (max-width: 767px) {
  .section-inner { width: min(100% - 24px, 100%); }
  .site-header__inner { min-height: 58px; }
  .site-logo { padding: 6px 8px; }
  .site-logo img { height: 42px; }
  .menu-toggle { width: 38px; height: 38px; margin-right: 8px; }
  .menu-toggle span { left: 10px; width: 18px; }
  .menu-toggle span:nth-child(1){ top: 12px; }
  .menu-toggle span:nth-child(2){ top: 18px; }
  .menu-toggle span:nth-child(3){ top: 24px; }
  .global-nav { top: 58px; height: calc(100dvh - 58px); }

  .section { padding: 58px 0; }
  .section-title-en { font-size: 54px; }
  .section--company .section-title-en { font-size: 54px !important; }
  .section-title-ja { margin-top: 12px; font-size: 18px; }
  .section-intro { gap: 18px; margin-bottom: 24px; }
  .section-intro h2,
  .feature-intro h2,
  .company-panel h2 { font-size: 18px; }
  .section-intro__text p,
  .feature-intro p,
  .company-panel p,
  .feature-card p,
  .footer-cta__item p,
  .footer-company p,
  .footer-links a,
  .footer-map p { font-size: 10px; line-height: 1.7; }

  .news-box__title { font-size: 26px; }
  .news-box__body { padding: 0 16px 12px; }
  .news-list li { grid-template-columns: 68px 42px 1fr; gap: 6px; font-size: 9px; }
  .news-box__more { min-height: 56px; }

  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .business-card { aspect-ratio: .86 !important; }
  .business-card__caption { left: 10px; bottom: 10px; }
  .business-card__caption span { font-size: 26px; }
  .business-card__caption h3 { font-size: 12px; }

  .section--company {
    background-position: center;
  }
  .company-panel__image img { aspect-ratio: auto; }

  .feature-grid { gap: 18px; }
  .feature-card h3 { font-size: 14px; }

  .footer-cta { width: min(100% - 24px, 1320px); }
  .footer-cta__item { min-height: 140px; padding: 28px 18px; }
  .footer-main { padding: 26px 0 18px; }
  .footer-map__box { min-height: 74px; }
}

@media (max-width: 960px) {
  .section--business {
    background-image: url('../img/sp_business_bg.webp');
    background-image: image-set(url('../img/sp_business_bg.webp') type('image/webp'), url('../img/sp_business_bg.webp') type('image/png'));
    background-position: center top;
  }
}

@media (max-width: 960px) {
  .business-grid { gap: 0 !important; width: 100%; left: auto; transform: none; position: static; }
  .business-card { transform: none !important; }
}


/* ===== COMPANY heading spacing fix ===== */
.section--company .section-title-en{
  line-height: .95 !important;
}
.section--company .section-title-ja{
  line-height: 1.5 !important;
  margin-top: 16px;
}
@media (max-width: 960px) {
  .section--company .section-title-ja {
    margin-top: 12px;
  }
}
.section--company .section-head{
  margin-bottom: 34px;
}

/* ===== PC typography up only ===== */
@media (min-width: 961px){
  .section-intro h2,
  .feature-intro h2,
  .company-panel h2{
    font-size: 28px;
  }

  .section-intro__text p,
  .feature-intro p,
  .company-panel p{
    font-size: 14px;
    line-height: 1.9;
  }

  .business-card__caption h3,
  .feature-card h3,
  .footer-cta__item h2,
  .footer-main h3{
    font-size: 20px;
  }

  .business-card__caption p,
  .feature-card p,
  .footer-cta__item p,
  .footer-company p,
  .footer-links a,
  .footer-map p{
    font-size: 13px;
    line-height: 1.9;
  }

  .news-list li{
    font-size: 12px;
  }

  .news-box__more,
  .view-more,
  .footer-button{
    font-size: 12px;
  }
}


/* ===== lower page common ===== */
.lower-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(8,82,184,.93), rgba(4,43,109,.88));
  overflow: hidden;
}
.lower-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(8,82,184,.88), rgba(7,93,171,.72)), url('../img/company_background.webp');
  background-image: image-set(url('../img/company_background.webp') type('image/webp'), url('../img/company_background.webp') type('image/png'));
  background-size: cover;
  background-position: center;
  filter: saturate(.95);
}
.lower-hero__inner {
  position: relative;
  z-index: 1;
  padding: 110px 0 90px;
  color: #fff;
}
.lower-hero__eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  opacity: .9;
}
.lower-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: .04em;
}
.lower-hero p {
  margin: 18px 0 0;
  font-size: 16px;
  max-width: 720px;
  line-height: 1.8;
}
.breadcrumbs {
  padding: 18px 0 0;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #687183;
}
.lower-section { padding: 90px 0; }
.lower-section--tight { padding-top: 50px; }
.lower-section--gray { background: #f3f6fa; }
.lower-section--blue { background: linear-gradient(135deg, #063b84 0%, #052e70 100%); color: #fff; }
.lower-section--blue .section-title-en,
.lower-section--blue .section-title-ja { color: #fff; }
.content-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}
.content-grid--reverse { grid-template-columns: .95fr 1.05fr; }
.lead-block h2, .single-column h2, .page-section h2, .contact-block h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 1.3;
  font-weight: 700;
}
.lead-block p, .single-column p, .page-section p, .contact-block p, .card-copy p, .news-archive__item p, .entry-content p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
}
.media-card img, .image-panel img, .interview-card img { width: 100%; height: 100%; object-fit: cover; }
.media-card, .image-panel, .stat-card, .service-card, .interview-card, .news-archive__item, .recruit-block, .contact-card, .template-card {
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 34px rgba(0,0,0,.06);
}
.media-card { min-height: 100%; }
.media-card img { min-height: 420px; }
.info-table {
  width: 100%; border-collapse: collapse; background: #fff; box-shadow: 0 18px 34px rgba(0,0,0,.05);
}
.info-table th, .info-table td {
  padding: 18px 22px; border-bottom: 1px solid #eceff4; vertical-align: top; font-size: 14px; line-height: 1.8;
}
.info-table th { width: 24%; background: #f7f9fc; text-align: left; font-weight: 700; }
.timeline {
  display: grid; gap: 18px; margin-top: 10px;
}
.timeline__item { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding-bottom: 18px; border-bottom: 1px solid #e7ebf1; }
.timeline__year { color: var(--blue); font-weight: 900; font-size: 18px; }
.business-index-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px;
}
.business-index-card { position: relative; min-height: 340px; overflow: hidden; }
.business-index-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.business-index-card:hover img { transform: scale(1.06); }
.business-index-card__overlay {
  position: absolute; inset: auto 0 0 0; padding: 26px; color: #fff; background: linear-gradient(to top, rgba(0,0,0,.74), rgba(0,0,0,0));
}
.business-index-card__overlay span { display:block; font-size: 42px; font-weight: 900; line-height: .95; margin-bottom: 6px; }
.business-index-card__overlay h3 { margin: 0 0 10px; font-size: 28px; }
.business-index-card__overlay p { margin: 0; font-size: 14px; line-height: 1.8; }
.service-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 26px;
}
.service-card { padding: 24px 22px; }
.service-card h3 { margin: 0 0 10px; font-size: 19px; color: var(--blue); }
.service-card p { margin: 0; font-size: 14px; line-height: 1.85; }
.related-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.related-links a, .button-link {
  display: inline-flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px; background: var(--blue); color: #fff; font-weight: 700; font-size: 14px;
}
.news-archive { display: grid; gap: 18px; }
.news-archive__item { padding: 28px 30px; }
.news-archive__meta { display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-bottom: 12px; font-size: 12px; font-weight: 700; color: #5d6880; }
.news-tag { display:inline-flex; align-items:center; justify-content:center; min-width:58px; padding:4px 10px; border:1px solid #a7bddf; color: var(--blue); border-radius: 999px; font-size: 11px; }
.news-archive__item h2 { margin: 0 0 10px; font-size: 28px; line-height: 1.35; }
.entry-content { background:#fff; box-shadow:0 18px 34px rgba(0,0,0,.05); padding: 44px 46px; }
.entry-visual { margin: 30px 0; overflow: hidden; background: #eef3f9; }
.entry-visual img { display: block; width: 100%; height: auto; }
.entry-content h2 { margin: 38px 0 16px; font-size: 24px; }
.entry-content ul { list-style: disc; padding-left: 1.3em; margin: 0 0 16px; }
.entry-content li { margin-bottom: 8px; font-size: 15px; line-height: 1.85; }
.recruit-stats { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.stat-card { padding: 28px 22px; text-align:center; }
.stat-card__num { font-size: clamp(40px, 4vw, 64px); line-height: 1; font-weight: 900; color: var(--blue); }
.stat-card__label { margin-top: 10px; font-size: 16px; font-weight: 700; }
.stat-card__note { margin-top: 8px; font-size: 12px; color: #6d7381; }
.stat-card--access .stat-card__num { font-size: clamp(30px, 3vw, 48px); }
.stat-card--access .stat-card__num span { display:block; margin-top: 8px; font-size: .72em; }
.recruit-blocks, .interview-grid, .benefit-grid, .template-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.recruit-block { padding: 28px 24px; }
.recruit-block h3, .contact-card h3, .template-card h3 { margin:0 0 12px; font-size:22px; }
.recruit-flow { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.recruit-flow__step { background:#fff; box-shadow:0 18px 34px rgba(0,0,0,.05); padding:24px 22px; }
.recruit-flow__step span { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.recruit-flow__step h3 { margin: 8px 0 10px; font-size: 20px; }
.career-path-image {
  display: block;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #d7dfeb;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 35, 86, .08);
}
.career-path-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .35s ease, filter .35s ease;
}
.career-path-image:hover img {
  transform: scale(1.012);
  filter: brightness(1.04);
}
.career-path-note {
  margin: 10px 0 0;
  color: #68758a;
  font-size: 12px;
  text-align: right;
}
.media-card--message img {
  height: auto;
  min-height: 0;
  object-position: 50% 42%;
}
.media-card--message {
  align-self: start;
  min-height: 0;
}
.equipment-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 38px;
  border-left: 5px solid var(--blue);
  background: #fff;
  box-shadow: 0 18px 34px rgba(0,0,0,.05);
}
.equipment-panel h2 {
  margin: 0 0 10px;
  font-size: 24px;
}
.equipment-panel p {
  margin: 0;
  color: #59677a;
  font-size: 14px;
  line-height: 1.8;
}
.equipment-panel__button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  min-width: 265px;
  padding: 16px 20px;
  border: 1px solid #cbd5e4;
  background: #eef2f7;
  color: #526277;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.equipment-panel__button:hover { border-color: var(--blue); background:#fff; color:var(--blue); }
.equipment-panel__button i {
  color: #b33434;
  font-size: 27px;
}
.equipment-panel__button span {
  font-size: 14px;
  font-weight: 700;
}
.equipment-panel__button small {
  display: block;
  margin-top: 3px;
  color: #7b8798;
  font-size: 10px;
  font-weight: 500;
}
.document-inline-link { color:var(--blue); font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.document-inline-link + br + .document-inline-link { display:inline-block; margin-top:6px; }
.certification-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.certification-card { display:grid; grid-template-columns:auto minmax(0,1fr) auto; gap:16px; align-items:center; min-height:112px; padding:22px 24px; border:1px solid #dce4ef; background:#fff; box-shadow:0 14px 30px rgba(0,35,86,.06); transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.certification-card:hover { transform:translateY(-3px); border-color:#8fb3df; box-shadow:0 18px 34px rgba(0,35,86,.11); }
.certification-card__icon { display:grid; place-items:center; width:48px; height:48px; border-radius:50%; background:#edf4fc; color:#b33434; font-size:23px; }
.certification-card strong { display:block; color:#173357; font-size:17px; line-height:1.5; }
.certification-card small { display:block; margin-top:4px; color:#6d7888; font-size:12px; line-height:1.6; }
.certification-card > .fa-arrow-up-right-from-square { color:var(--blue); font-size:13px; }
.lower-section--visual { padding-top:0; padding-bottom:76px; }
.service-visual { margin:0; overflow:hidden; border:1px solid #dce4ef; background:#fff; box-shadow:0 20px 42px rgba(0,35,86,.08); }
.service-visual img { display:block; width:100%; height:auto; }
.benefit-grid--detailed { grid-template-columns:repeat(2,minmax(0,1fr)); }
.benefit-grid--detailed .recruit-block { padding:32px 30px; }
.benefit-grid--detailed .recruit-block h3 { color:#173357; }
.benefit-grid--detailed .recruit-block h3 i { margin-right:8px; color:var(--blue); }
.benefit-grid--detailed .recruit-block p { font-size:14px; line-height:1.85; }
.benefit-grid--detailed .recruit-block ul { margin:18px 0 0; padding-left:1.25em; list-style:disc; }
.benefit-grid--detailed .recruit-block li { margin-bottom:8px; color:#405168; font-size:13px; line-height:1.75; }
.benefit-grid--detailed .recruit-block__note { margin-top:16px; padding:12px 14px; background:#f1f6fc; color:#31557f; font-size:12px; }
.interview-card img { aspect-ratio: 1 / 1; }
.interview-card__body { padding: 18px; }
.interview-card__body h3 { margin: 0 0 8px; font-size: 20px; }
.interview-card__body p { margin:0; font-size:14px; line-height:1.85; }
.benefit-grid .recruit-block { min-height: 100%; }
.contact-layout { display:grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.contact-card { padding: 28px 26px; }
.contact-form { display:grid; gap: 16px; }
.contact-form label { display:grid; gap: 8px; font-weight: 700; font-size: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; border: 1px solid #d8deea; font: inherit; background:#fff;
}
.contact-form textarea { min-height: 180px; resize: vertical; }
.template-grid { margin-top: 28px; }
.template-card { padding: 28px 24px; }
.lower-note { font-size: 13px; color: #657186; }
.privacy-content,
.privacy-contact {
  color: #26384d;
  font-size: 15px;
  line-height: 1.95;
}
.privacy-content > p:first-child {
  margin-top: 0;
}
.privacy-content h2,
.privacy-contact h2 {
  margin: 52px 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
  color: #142d4f;
  font-size: 24px;
  line-height: 1.5;
}
.privacy-content h3,
.privacy-contact h3 {
  margin: 30px 0 12px;
  color: var(--blue);
  font-size: 18px;
}
.privacy-content ol,
.privacy-content ul {
  margin: 18px 0 30px;
  padding-left: 1.6em;
}
.privacy-content li {
  margin-bottom: 12px;
}
.privacy-content ul {
  list-style: disc;
}
.privacy-signature {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  padding: 24px 28px;
  background: #f3f6fa;
}
.privacy-signature p {
  margin: 0;
}
.privacy-table-wrap {
  overflow-x: auto;
}
.privacy-table th {
  width: 210px;
}
.privacy-contact {
  padding: 34px 38px;
  border-left: 5px solid var(--blue);
  background: #fff;
  box-shadow: 0 18px 34px rgba(0,0,0,.05);
}
.privacy-contact h2 {
  margin-top: 0;
}
@media (max-width: 640px) {
  .privacy-content,
  .privacy-contact {
    font-size: 14px;
  }
  .privacy-content h2,
  .privacy-contact h2 {
    margin-top: 38px;
    font-size: 20px;
  }
  .privacy-content h3,
  .privacy-contact h3 {
    font-size: 16px;
  }
  .privacy-signature {
    flex-direction: column;
    padding: 20px;
  }
  .privacy-contact {
    padding: 26px 22px;
  }
}
.is-current, .is-current-parent > a { color: var(--blue); }
.footer-company strong { font-weight: 700; }
@media (max-width: 1200px) {
  .business-index-grid, .recruit-blocks, .interview-grid, .benefit-grid, .template-grid { grid-template-columns: repeat(2,1fr); }
  .recruit-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .lower-hero__inner { padding: 84px 0 70px; }
  .lower-hero p { font-size: 14px; }
  .content-grid, .content-grid--reverse, .contact-layout, .recruit-flow { grid-template-columns: 1fr; }
  .business-index-grid, .service-list, .related-links, .recruit-blocks, .interview-grid, .benefit-grid, .template-grid { grid-template-columns: 1fr; }
  .timeline__item { grid-template-columns: 1fr; gap: 8px; }
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display:block; width:100%; }
  .info-table th { border-bottom:0; padding-bottom: 8px; }
  .media-card img { min-height: 280px; }
  .certification-grid, .benefit-grid--detailed { grid-template-columns:1fr; }
  .lower-section--visual { padding-bottom:54px; }
}


.interview-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.interview-card__link i {
  font-size: 12px;
}


/* ===== patch2: lower page title consistency ===== */
.lower-section .section-title-en{
  font-size: clamp(96px, 8vw, 110px) !important;
  line-height: .95 !important;
}

/* ===== patch2: recruit interview cards clickable ===== */
.interview-card{
  cursor: pointer;
}
.interview-card a{
  position: relative;
  z-index: 2;
}


/* ===== patch3: recruit interview button visual ===== */
.interview-card__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(8,82,184,.18);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
}
.interview-card__link:hover{
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}




/* ===== patch: recruit interview button visibility ===== */
.interview-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.interview-card img{
  width:100%;
  height:auto;
  aspect-ratio: 1 / 1;
  object-fit:cover;
  display:block;
  flex:0 0 auto;
}
.interview-card__body{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
  flex:1 1 auto;
}
.interview-card__body p{
  margin:0 0 14px;
}

/* ===== staff interview: cards and chat pages ===== */
.interview-card--staff {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}
.interview-card__visual {
  position: relative;
  overflow: hidden;
  background: #eef4fa;
}
.interview-card--staff .interview-card__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center top;
  transition: transform .55s ease, filter .55s ease;
}
.interview-card--staff:hover .interview-card__visual img {
  transform: scale(1.035);
  filter: brightness(1.06);
}
.interview-card__number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.interview-card__dept {
  margin-bottom: 5px !important;
  color: var(--blue);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .08em;
}
.interview-card--staff .interview-card__body h3 {
  font-size: 28px;
  letter-spacing: .08em;
}
.interview-person-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 48px rgba(12, 43, 82, .09);
}
.interview-person-hero__image {
  min-height: 420px;
  background: #eef4fa;
}
.interview-person-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}
.interview-person-hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}
.interview-person-hero__label {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.interview-person-hero__body h2 {
  margin: 0 0 8px;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: .08em;
}
.interview-person-hero__dept {
  margin: 0 0 22px;
  color: #4a6077;
  font-weight: 700;
}
.interview-person-hero__lead {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}
.interview-profile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.interview-profile__item {
  padding: 22px;
  background: #f4f7fb;
  border-top: 3px solid var(--blue);
}
.interview-profile__item dt {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.interview-profile__item dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
}
.interview-chat {
  width: min(100%, 1040px);
  margin: 0 auto;
}
.interview-chat__row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: 0 0 30px;
}
.interview-chat__row--answer {
  grid-template-columns: minmax(0, 1fr) 90px;
  margin-bottom: 54px;
}
.interview-chat__person {
  text-align: center;
}
.interview-chat__avatar {
  display: block;
  width: 78px;
  height: 78px;
  margin: 0 auto 8px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #e8eef5;
  box-shadow: 0 7px 20px rgba(12, 43, 82, .14);
}
.interview-chat__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}
.interview-chat__name {
  display: block;
  color: #34495e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}
.interview-chat__bubble {
  position: relative;
  margin-top: 5px;
  padding: 22px 25px;
  border-radius: 4px 18px 18px 18px;
  background: #eef4fa;
  color: #1f3348;
  font-size: 15px;
  line-height: 1.95;
}
.interview-chat__bubble::before {
  content: "";
  position: absolute;
  top: 22px;
  left: -13px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 15px solid #eef4fa;
  border-bottom: 10px solid transparent;
}
.interview-chat__bubble strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 16px;
}
.interview-chat__row--answer .interview-chat__person {
  grid-column: 2;
}
.interview-chat__row--answer .interview-chat__bubble {
  grid-column: 1;
  grid-row: 1;
  border-radius: 18px 4px 18px 18px;
  background: var(--blue);
  color: #fff;
}
.interview-chat__row--answer .interview-chat__bubble::before {
  right: -13px;
  left: auto;
  border-right: 0;
  border-left: 15px solid var(--blue);
}
.interview-chat__row--answer .interview-chat__bubble strong {
  color: #fff;
}
.interview-schedule {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.interview-schedule__item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.28);
}
.interview-schedule__item time {
  font-weight: 900;
}
@media (max-width: 767px) {
  .interview-person-hero {
    grid-template-columns: 1fr;
  }
  .interview-person-hero__image,
  .interview-person-hero__image img {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
  .interview-person-hero__body {
    padding: 30px 22px 36px;
  }
  .interview-person-hero__lead {
    font-size: 14px;
  }
  .interview-profile {
    grid-template-columns: 1fr;
  }
  .interview-chat__row {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 22px;
  }
  .interview-chat__row--answer {
    grid-template-columns: minmax(0, 1fr) 62px;
    margin-bottom: 38px;
  }
  .interview-chat__avatar {
    width: 58px;
    height: 58px;
    border-width: 2px;
  }
  .interview-chat__bubble {
    padding: 16px 17px;
    font-size: 12px;
    line-height: 1.85;
  }
  .interview-chat__bubble strong {
    font-size: 13px;
  }
  .equipment-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    padding: 26px 22px;
  }
  .equipment-panel__button {
    justify-content: center;
    min-width: 0;
    width: 100%;
  }
  .interview-chat__bubble::before {
    top: 16px;
  }
  .interview-schedule__item {
    grid-template-columns: 58px 1fr;
    gap: 8px;
  }
}
.interview-card__link{
  margin-top:auto;
}

/* ===== patch: lower page section-title-en responsive fix ===== */
@media (max-width: 960px){
  .lower-section .section-title-en{
    font-size:68px !important;
    line-height:.95 !important;
    word-break:break-word;
    overflow-wrap:anywhere;
  }
}
@media (max-width: 767px){
  .lower-section .section-title-en{
    font-size:54px !important;
    line-height:.95 !important;
    word-break:break-word;
    overflow-wrap:anywhere;
  }
}

/* V4 content update: long-form message readability */
.lead-block p + p { margin-top: 1em; }

/* ===== patch: image hover brightness requested ===== */

/* Japanese section labels must not inherit paragraph sizing from lead/content blocks. */
.section-head > .section-title-ja {
  margin: 16px 0 0 !important;
  font-size: 22px !important;
  line-height: 1.5 !important;
  font-weight: 800 !important;
}
@media (max-width: 960px) {
  .section-head > .section-title-ja {
    margin-top: 12px !important;
    font-size: 18px !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .business-card img,
  .business-index-card img,
  .feature-card img,
  .media-card img,
  .image-panel img {
    transition: transform .5s ease, filter .5s ease, opacity .5s ease;
  }

  .business-card:hover img {
    transform: scale(1.04);
    filter: brightness(1.08);
    opacity: .62;
  }

  .business-card a::after {
    transition: opacity .5s ease;
  }

  .business-card:hover a::after {
    opacity: .62;
  }

  .business-index-card img {
    filter: brightness(.86);
  }

  .business-index-card:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);
    opacity: .92;
  }

  .feature-card:hover img,
  .media-card:hover img,
  .image-panel:hover img {
    filter: brightness(1.08);
    opacity: .92;
  }
}

/* ===== contact form sending ===== */
.form-required,
.form-optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 9px;
  padding: 2px 7px;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  vertical-align: 2px;
}
.form-required { background: #e53e3e; }
.form-optional { background: #718096; }
.form-consent {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px !important;
  margin: 8px 0 24px;
}
.form-consent input {
  width: 20px !important;
  height: 20px;
  margin: 0;
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-errors {
  margin: 0 0 28px;
  padding: 18px 22px;
  border: 1px solid #e53e3e;
  border-radius: 6px;
  background: #fff5f5;
  color: #9b2c2c;
}
.form-errors p { margin: 0 0 8px; font-weight: 700; }
.form-errors ul { margin: 0; padding-left: 1.4em; }
.confirm-table { width: 100%; margin: 0 0 30px; border-collapse: collapse; }
.confirm-table th,
.confirm-table td {
  padding: 18px;
  border-bottom: 1px solid #dfe5ee;
  text-align: left;
  vertical-align: top;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.confirm-table th { width: 28%; background: #f4f7fb; color: #12427b; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.form-actions .button-link { margin: 0; }
.button-link--back {
  border: 1px solid #6b7280;
  background: #fff;
  color: #374151;
}
.form-status { margin: 0 0 26px; font-size: 15px; line-height: 1.9; }
@media (max-width: 767px) {
  .confirm-table,
  .confirm-table tbody,
  .confirm-table tr,
  .confirm-table th,
  .confirm-table td { display: block; width: 100%; }
  .confirm-table th { padding: 12px 14px; border-bottom: 0; }
  .confirm-table td { padding: 14px 14px 20px; }
  .form-actions { display: grid; grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero-ver2 { min-height: calc(100svh - 66px); }
  .hero-ver2__panel {
    width: 72%;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    opacity: .94;
  }
  .hero-ver2__photo { width: 100%; clip-path: none; }
  .hero-ver2__photo img { object-position: 62% center; }
  .hero-ver2__content { width: calc(100% - 40px); padding-top: clamp(95px, 17vh, 150px); }
  .hero-ver2 h1 { font-size: clamp(48px, 8vw, 70px); }
  .hero-ver2__badge { display: none; }
  .hero-ver2__scroll { display: none; }
}

@media (max-width: 767px) {
  .hero-ver2 {
    min-height: 740px;
    max-height: 850px;
  }
  .hero-ver2::before {
    background: linear-gradient(90deg, rgba(3, 18, 37, .42) 0%, rgba(3, 18, 37, .22) 42%, transparent 68%);
  }
  .hero-ver2__panel {
    width: 100%;
    opacity: .48;
    clip-path: polygon(0 0, 62% 0, 42% 100%, 0 100%);
  }
  .hero-ver2__photo { height: 100%; }
  .hero-ver2__photo img {
    height: calc(100% + 120px);
    margin-top: -120px;
    object-position: 76% center;
    filter: saturate(1.04) contrast(1.02) brightness(1.05);
  }
  .hero-ver2__photo::after {
    background:
      linear-gradient(90deg, rgba(3, 18, 37, .68) 0%, rgba(3, 18, 37, .16) 45%, transparent 67%),
      linear-gradient(180deg, transparent 0%, transparent 67%, rgba(3, 18, 37, .48) 100%);
  }
  .hero-ver2__lineart {
    right: -24vw;
    bottom: 4vh;
    width: 82vw;
  }
  .hero-ver2__content {
    display: flex;
    min-height: 740px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 180px;
  }
  .hero-ver2__kicker {
    align-self: flex-start;
    font-size: 10px;
    letter-spacing: .25em;
  }
  .hero-ver2 h1 {
    margin: 16px 0 17px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
    text-shadow: 0 5px 18px rgba(0, 20, 55, .5);
  }
  .hero-ver2__lead { font-size: 13px; line-height: 1.8; }
  .hero-ver2__actions { gap: 9px; margin-top: 22px; }
  .hero-ver2__button {
    min-width: 0;
    padding: 12px 16px;
    font-size: 11px;
  }
  .hero-ver2__vertical { display: none; }
  .hero-ver2__marquee { bottom: 22px; }
  .hero-ver2__marquee span { font-size: 46px; }
  .hero--ver2 .hero-news-wrap { margin-top: -34px; }
  .pc-only { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ver2__photo img,
  .hero-ver2__marquee span,
  .hero-ver2__scroll span::after { animation: none !important; }
  .hero-ver2__kicker,
  .hero-ver2 h1 span,
  .hero-ver2__lead,
  .hero-ver2__actions { opacity: 1; transform: none; animation: none !important; }
}
