* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #111827;
  background: #ffffff;
  font-size: 16px;
  padding-top: calc(var(--header-h) - 1px);
}

/* ========== h1用 ========== */
  .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1.0px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

:root{
  --container: 1200px;
  --pad-pc: 60px;
  --pad-sp: 40px;

  --title-en: 40px;
  --title-ja: 30px;

  --title-ja-sp: 20px;
  --text-sp: 14px;

  --header-h: 0px;
}

/* ========== header ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06);
  width: 100%;
  transition: transform 0.25s ease;
}

.site-header.is-hidden { 
  transform: translateY(-100%); 
}

.header-top { 
  border-bottom: 0px 
}

.header-inner {
  width: 100%;
  height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

/* LOGO */
.header-brand { 
  display: flex; 
  align-items: center; 
  padding-left: 20px; 
}

.header-brand img { 
  display: block; 
  height: 72px; 
  width: auto; 
}

/* 電話＋採用 */
.header-info { 
  display: flex; 
  align-items: stretch; 
  margin-left: auto; 
}

.tel-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  padding: 0 18px;
  font-size: 15px;
}

.tel-label { 
  color: #555555; 
  margin-bottom: 2px; 
}

.tel-number { 
  font-size: 24px; 
  font-weight: 800; 
  white-space: nowrap; 
}

.tel-number,
.sp-contact-cta .sp-tel-number a { 
  color: inherit; 
  text-decoration: none; 
}

.tel-number:hover,
.sp-contact-cta .sp-tel-number a:hover {
  color: #D0A900;
  cursor: pointer;
}

/* 採用BTN */
.header-recruit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 40px;
  background: #D0A900;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.header-recruit:hover { 
  opacity: 0.9; 
}

/* SP NAV TOGGLE */
.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 0 16px 0 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  gap: 6px;
}

.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.nav-toggle-icon span { 
  display: block; 
  width: 22px; 
  height: 2px; 
  background: #111827; 
}

.nav-toggle-text { 
  font-size: 11px; 
  letter-spacing: 0.16em; 
}

/* NAVI */
.global-nav { 
  background: #0c2340; 
  width: 100%; 
  margin-top: 0px; 
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
}

.nav-inner a {
  display: block;
  padding: 20px 38px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  transition: background 0.4s ease;
  white-space: nowrap;
}

.nav-inner a:hover { 
  background: #d0a900; 
}

@media (max-width: 1200px) and (min-width: 769px) { 
  .nav-inner a { padding: 16px 28px; } 
}

@media (max-width: 1000px) and (min-width: 769px) { 
  .nav-inner a { padding: 14px 22px; } 
}

@media (max-width: 900px) and (min-width: 769px)  { 
  .nav-inner a { padding: 12px 18px; } 
}

/* HERO */
.hero { 
  background: #002855; 
}

.hero-slider {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  aspect-ratio: 14 / 7;
  background: #000;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* SP用 電話＋採用BTN */
.sp-contact-cta { 
  display: none; 
}

/* ========== 共通 SECTION（統一） ========== */

.section { width: 100%; }

.section__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--pad-pc) 20px;
}

.section__header{
  text-align: center;
  margin-bottom: 24px;
}

.section__title-en{
  font-size: var(--title-en);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #0050a6;
  margin: 0 0 2px;
}

.section__title-ja{
  font-size: var(--title-ja);
  font-weight: 500;
  margin: 0;
  color: #222;
}

/* 横線つき見出し（TOPで使用） */
.section__header--lined{
  width: 100%;
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 0;
  margin-bottom: 0;
  white-space: nowrap;
}

@media (max-width: 768px){
  .section__inner{ padding: var(--pad-sp) 16px; }
  .section__title-en{ font-size: 32px; }
  .section__title-ja{ font-size: var(--title-ja-sp); }
}

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

.section--news { 
  background: #ffffff; 
  padding: 30px 0 70px; 
}

.section--news .section__inner {
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  column-gap: 40px;
  align-items: center;
}

.section--news .section__header {
  grid-column: 1;
  grid-row: 1 / span 2;
  text-align: center;
}

.section--news .section__title-en { 
  font-weight: 900; 
  font-size: 50px;
}

.section--news .section__title-ja { 
  font-weight: 400; 
  font-size: 25px;
}

.news__list {
  grid-column: 2;
  grid-row: 1;
  display: block;
  margin: 0 0 16px;
}

.news__item { 
  border-bottom: 1px solid #111827; 
}

.news__item a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 8px 0 6px;
  font-size: 18px;
}

.news__date {
  font-weight: 700;
  font-size: 18px;
  color: #0050a6;
  white-space: nowrap;
}

.news__category { display: none; }

.news__title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section--news .section__footer {
  grid-column: 2;
  grid-row: 2;
  text-align: right;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  border-bottom: 1px solid #111827;
  padding-bottom: 2px;
}

.link-more:hover { 
  transform: translateY(-4px); 
  opacity: 0.7; 
}

/* ========== ABOUT ========== */

.section--about { 
  background-color: #002855; 
}

.section--about .section__header--lined { 
  border-bottom-color: #ffffff; 
}

.section--about .section__title-en,
.section--about .section__title-ja { 
  color: #ffffff; 
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.0fr);
  gap: 40px;
  align-items: center;
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__text { 
  color: #ffffff; 
  margin-bottom: 20px;
}

.about__text p {
  line-height: 1.7;
  font-size: 15px;
}

.about__text p + p { 
  margin-top: 10px; 
}

.about__more .link-more{
  border-bottom-color: #ffffff;
  color:#ffffff
}

.about__media {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.about__media img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* ========== SERVICE ========== */

.section--service { 
  background-color: #ffffff; 
}

.section--service .section__title-en {
  font-weight:950;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service__card {
  background-color: #e1e3e6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.service__media {
  width: 100%;
  height: 250px;
  overflow: hidden;
  padding: 10px;
}
.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service__body { 
  padding: 16px 18px 20px; 
  flex: 1; 
}

.service__title {
  font-size: 22px;
  font-weight: 700;
  margin: 4px 0 8px;
  text-align: center;
  color: #0f1a26;
}

.service__text {
  font-size: 15px;
  line-height: 1.7;
  padding: 0 16px;
  text-align: left;
  color: #1a1e27;
}

.service__more {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 100px;
}

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

.section--recruit { 
  background-color: #002855; 
  color: #fff; 
}

.section--recruit .section__header--lined { 
  border-bottom-color: #ffffff; 
}

.section--recruit .section__title-en{
  color: #ffffff;
}

.section--recruit .section__title-ja { 
  color: #ffffff; 
}

.recruit__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.0fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.recruit__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recruit__text p {
  line-height: 1.7;
  font-size: 15px;
}

.recruit__list {
  margin: 0 0 20px;
  padding-left: 1.2em;
}
.recruit__list li { 
  font-size: 15px; 
  line-height: 1.7; 
}

.recruit__cta {
  flex: 1;
  min-width: 220px;
  text-align: left;
  font-size: 15px;
}
.recruit__cta p { 
  margin-bottom: 25px; 
}

.recruit__cta .link-more{
  border-bottom-color: #ffffff;
}

.recruit__media { 
  width: 100%; 
  height: 350px; 
  overflow: hidden; 
}

.recruit__media img { 
  width: 100%; 
  height: 350px; 
  object-fit: cover; 
  display: block; 
}

/* ========== SDGs ========== */

.section--sdgs { 
  background-color: #ffffff; 
}

.section--sdgs .section__title-en{
    font-weight: 950;
}

.sdgs__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.0fr);
  gap: 40px;
  align-items: center;
}

.sdgs__media img {
  width: 100%;
  height: 350px;
  display: block;
  object-fit: cover;
}

.sdgs__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.section__header--sdgs {
  border-bottom-color: #333;
  margin-bottom: 14px;
}

.sdgs__logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 0px;
}

.sdgs__text {
  line-height: 1.7;
  font-size: 15px;
}

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

.site-footer {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  background-color: #002855;
  background-image: url("../images/footer_logo_suzuki.svg");
  background-repeat: no-repeat;
  background-position: center calc(85% + 80px);
  background-size: 850px auto;
  background-attachment: fixed;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #002855;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.8fr) minmax(0, 1.3fr);
  column-gap: 40px;
  align-items: flex-start;
}

.footer-column { line-height: 1.7; }

.footer-header-logo {
  display: flex;
  align-items: center;
  margin-top: -28px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-header-logo-img { 
  max-width: 100%; 
  width: auto;
  height: 70px; 
}

.footer-address-block { 
  margin-bottom: 15px; 
}

.footer-office-title { 
  font-weight: 600; 
  margin-bottom: 4px; 
  font-size: 15px; 
}

.footer-address { 
  margin: 0 0 4px; 
  line-height: 1.6; 
  font-size: 15px; 
}

.footer-address a { 
  color: inherit; 
  text-decoration: none; 
}

.footer-address a:hover { 
  text-decoration: underline; 
}

.footer-map-column .footer-heading { 
  margin-bottom: 8px; 
}

.footer-map-item + .footer-map-item { 
  margin-top: 12px; 
}

.footer-map-title { 
  font-size: 14px; 
  font-weight: 600; 
  margin-bottom: 4px; 
}

.footer-map-frame {
  position: relative;
  width: 100%;
  padding-top: 70%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #001a3a;
}
.footer-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

.footer-nav li + li { 
  margin-top: 6px; 
}

.footer-nav a {
  display: inline-block;
  font-size: 15px;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover { 
  opacity: 1; 
  transform: translateX(2px); 
}

.footer-bottom { 
  background-color: #002855; 
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-copy { 
  font-size: 12px; 
  color: #ffffff; 
  opacity: 0.8; 
  margin: 0; 
}

.footer-instagram-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 30px;
}

.footer-instagram-icon {
  width: 40px;
  height: auto;
  margin-left: 25px;
  transition: opacity 0.2s ease;
}

.footer-instagram-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  opacity: 0.9;
}

.footer-instagram-link:hover .footer-instagram-icon { 
  opacity: 0.7; 
}

.footer-instagram-link:hover .footer-instagram-label { 
  opacity: 0.75; 
}

.footer-inner,
.footer-bottom { 
  position: relative; 
  z-index: 1;
 }

/* ========== 共通ボタン ========== */

.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background-color: #D0A900;
  color: #ffffff;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover { 
  opacity: 0.9; 
  transform: translateY(-1px); 
}

/* ========== responsive ========== */

@media (max-width: 420px){
  .section__header--lined{
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  /* header */
  .header-inner { 
    flex-wrap: nowrap; 
    height: 64px; 
    padding: 0 8px; 
  }

  .header-brand { 
    padding-left: 0; 
  }

  .header-brand img { 
    height: 48px; 
  }

  .header-info { 
    display: none; 
  }

  .nav-toggle { 
    display: flex; 
  }

  .global-nav { 
    display: none; 
    margin-top: 0; 
  }

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

  .nav-inner {
    max-width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-inner a {
    padding: 14px 18px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-slider { 
    aspect-ratio: 3 / 4; 
  }

  /* NEWS */
  .section--news { 
    padding: 48px 0 56px; 
  }

  .section--news .section__inner { 
    display: block; 
    padding: 32px 16px; 
  }

  .section--news .section__header { 
    margin-bottom: 16px; 
  }

  .news__list { 
    margin-bottom: 8px; 
  }

  .news__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .news__title { 
    white-space: normal; 
  }

  /* about us */
  .section--about .section__inner { 
    padding: 40px 16px; 
  }

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

  .about__content { 
    order: 1; 
    padding-bottom: 8px; 
  }

  .about__media { 
    order: 2; 
    height: 260px; 
  }

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

  /* service */
  .service__grid { 
    grid-template-columns: 1fr; 
    gap: 24px; 
  }

  .service__card { 
    min-height: 0; 
    padding: 18px; 
  }

  .service__media { 
    height: 210px; 
  }

  .service__title { 
    font-size: 16px; 
  }

  .service__text { 
    font-size: 13px; 
  }

  /* recruit */
  .recruit__layout { 
    grid-template-columns: 1fr; 
    gap: 24px;
   }

  .recruit__text { 
    font-size: 13px; 
  }

  .recruit__cta { 
    font-size: 13px; 
  }

  /* sdgs */
  .sdgs__layout { 
    grid-template-columns: 1fr; 
  }

  .sdgs__media { 
    order: 2; 
  }

  .sdgs__content { 
    order: 1; 
  }

  /* footer */
  .site-footer { 
    background-attachment: scroll;
    background-position: center 5%;
    background-size: 520px auto;
  }

  .site-footer::before{
    opacity: 0.82;
  }

  .footer-inner { 
    grid-template-columns: 1fr; 
    gap: 24px; 
    padding: 32px 16px 24px; 
  }

  .footer-header-logo-img { 
    max-width: 100%; 
    width: 280px;
    height: auto;
  }

  .footer-header-logo { 
    padding-bottom: 0; 
    margin-bottom: 16px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.25); 
  }

  .footer-map-frame { 
    padding-top: 60%; 
  }

  .footer-bottom-inner { 
    padding: 6px 16px 8px; 
  }

  .footer-copy { 
    font-size: 11px; 
  }

  .footer-nav-block { 
    order: 1; 
    padding-bottom: 16px; 
    margin-bottom: 20px; 
  }

  .footer-company { 
    order: 2; 
  }

  .footer-map-column { 
    order: 3; 
  }

  /* btn */
  .btn-primary { 
    padding: 10px 28px; 
    font-size: 13px; 
  }

}

/* ============================== 下層ページ共通 ============================== */
.page .page-hero{
  background: #002855;
  color: #fff;
}

.page .page-hero__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 20px;
}

.page .page-hero__en{
  margin: 0 0 4px;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 28px;
}

.page .page-hero__ja{
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  opacity: .92;
}

.section-title--lined{
  position: relative;
  padding-left: 12px;
}

.section-title--lined::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1.2em;
  background: #000000;
  border-radius: 2px;
}

/* --- page-hero --- */
.page .page-hero.page-hero--diagonal{
  height: 190px;
  background: #002855;
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 50%;
  align-items: center;
}

.page .page-hero.page-hero--diagonal .page-hero__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none; 
  margin: 0;
  padding: 0 20px;
  display: grid;
  place-items: center;
}

.page .page-hero.page-hero--diagonal .page-hero__title{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;

  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  width: fit-content;
}

.page .page-hero.page-hero--diagonal .page-hero__en{
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .06em;
}

.page .page-hero.page-hero--diagonal .page-hero__ja{
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  opacity: .95;
}

.page .page-hero.page-hero--diagonal .page-hero__image{
  position: relative;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.page .page-hero.page-hero--diagonal .page-hero__image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 60%;
  transform: none;
}

.page .page-hero__title {
  margin-left: 20%
}

/*.page main .section__header{
  text-align: left;
}*/

/* --- breadcrumb --- */
.page .breadcrumb{
  max-width: 980px;
  margin: 16px auto 0;
  padding: 0 20px;
  font-size: 13px;
  color: #0f1a26;
}

.page .breadcrumb__list{
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.page .breadcrumb__item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page .breadcrumb__item + .breadcrumb__item::before{
  content: ">";
  opacity: .6;
}

/* responsive */
@media (max-width: 768px){
  .page .page-hero:not(.page-hero--diagonal) .page-hero__inner{ 
    padding: 28px 16px; 
  }

  .page .page-hero:not(.page-hero--diagonal) .page-hero__en{ 
    font-size: 22px; 
  }

  .page .page-hero:not(.page-hero--diagonal) .page-hero__ja{ 
    font-size: 16px; 
  }

  /* --- page-hero --- */
  .page .page-hero.page-hero--diagonal{
    height: 150px;
    grid-template-columns: 1fr 72%;
  }

  .page .page-hero.page-hero--diagonal .page-hero__inner{
    padding: 0 16px;
  }

  .page .page-hero.page-hero--diagonal .page-hero__title{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-bottom: none;
    padding-bottom: 0;
  }

  .page .page-hero.page-hero--diagonal .page-hero__en{
   display: block;
    white-space: nowrap;
    text-align: center;
    letter-spacing: .08em;
    font-size: 22px;
    margin-bottom: 4px;
  }

  .page .page-hero.page-hero--diagonal .page-hero__ja{
    font-size: 15px;
    opacity: .95;
  }

  .page .page-hero.page-hero--diagonal .page-hero__image{
    clip-path: polygon(18% 0, 100% 0, 86% 100%, 0 100%);
  }

  .page .page-hero.page-hero--diagonal .page-hero__image img{
    object-position: center 60%;
  }

   .page .page-hero__title {
    margin-left: 0;
  }

  .page main .section__header{
    text-align: center;
  }

  /* --- breadcrumb --- */
  .page .breadcrumb{
    margin-top: 12px;
    padding: 0 16px;
    font-size: 12px;
  }

}

/* ===============================
   NEWS（WP詳細用）
=============================== */
.page-news .news__list{
  display: grid;
  gap: 12px;
}

.page-news .news__item a{
  display: grid;
  grid-template-columns: 110px 140px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
}

.page-news .news__date{
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

.page-news .news__category{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  color: #111827;
  white-space: nowrap;
}

.page-news .news__title{
  color: #111827;
  line-height: 1.6;
}

.page-news .news-detail__title{
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.page-news .news-detail__content{
  margin-top: 18px;
}

.page-news .news-detail__content p{
  line-height: 1.95;
}

.page-news .news-detail__nav{
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.page-news .news-detail__prev{ justify-self: start; }
.page-news .news-detail__back{ justify-self: center; }
.page-news .news-detail__next{ justify-self: end; }

.page-news .news-detail__nav a{
  text-decoration: underline;
}

@media (max-width: 768px){
  .page-news .news__item a{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .page-news .news__category{
    width: fit-content;
  }
  .page-news .news-detail__nav{
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

/* ================================
 * Page Transition (overlay) 
 * ================================ */
:root{
  /* ===== Page Transition timings ===== */
  --pt-enter: 480ms;       /* 覆う（スライド） */
  --pt-enter-fade: 160ms;  /* 背景のフェードIN */
  --pt-logo-fade: 160ms;   /* ロゴのフェードIN */
  --pt-logo-delay: 60ms;  /* ロゴの遅延 */
  --pt-exit-fade: 200ms;   /* 次ページでのフェードOUT */

  /* ===== Soft reveal timings ===== */
  --soft-reveal: 200ms;    /* ★ふわっ（長めにした） */
}

/* ================================
 * Page Transition (overlay) 
 * ================================ */
.page-transition{
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

/* 背景 */
.page-transition::before{
  content:"";
  position:absolute;
  inset:0;
  background: #002855;
  transform: translateX(-100%); /* ★左に待機（左→覆う） */
  opacity: 0;
}

.page-transition__inner{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.page-transition__logo{
  width: min(320px, 70vw);
  height: auto;
  opacity: 0;
  transform: translateX(24px);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.25));
}

/* ===== 1) 覆う（フェードIN込み） ===== */
.page-transition.is-enter{
  opacity: 1;
  visibility: visible;
}

.page-transition.is-enter::before{
  transform: translateX(0);
  opacity: 1;
  transition:
    transform var(--pt-enter) cubic-bezier(.2,.8,.2,1),
    opacity   var(--pt-enter-fade) ease;
}

.page-transition.is-enter .page-transition__logo{
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity   var(--pt-logo-fade) ease var(--pt-logo-delay),
    transform var(--pt-enter) cubic-bezier(.2,.8,.2,1);
}

/* ===== 2) 次ページでフェードアウト（覆ったまま消す） ===== */
.page-transition.is-fadeout{
  opacity: 1;
  visibility: visible;
}

.page-transition.is-fadeout::before{
  transform: translateX(0);
  opacity: 0;
  transition: opacity var(--pt-exit-fade) ease;
}

.page-transition.is-fadeout .page-transition__logo{
  opacity: 0;
  transform: translateX(0);
  transition: opacity calc(var(--pt-exit-fade) * 0.8) ease;
}

/* ================================
 * Soft reveal (reduce flicker)
 * ================================ */
html.is-soft-loading body{
  opacity: 0;
}

html.is-soft-loading.is-soft-ready body{
  opacity: 1;
  transition: opacity var(--soft-reveal) ease;
}

/* 次ページで最初から覆っておく（パッ防止） */
html.pt-pending #pageTransition{
  opacity: 1;
  visibility: visible;
}
html.pt-pending #pageTransition::before{
  transform: translateX(0);
  opacity: 1;
}
html.pt-pending #pageTransition .page-transition__logo{
  opacity: 1;
  transform: translateX(0);
}

/* ================================
 * Page reveal (fade-in content)
 * ================================ */
html.is-reveal body{
  opacity: 0;
  transform: translateY(4px);
}

html.is-reveal.is-reveal-ready body{
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 500ms cubic-bezier(.22,.61,.36,1),
    transform 500ms cubic-bezier(.22,.61,.36,1);
}



@media (max-width: 900px){

  /* ================================
   * SP グローバルナビ本体
   * ================================ */
  .global-nav{
    position: fixed;
    top: var(--header-h, 120px);
    left: 0;
    right: 0;
    z-index: 9999;

    background: #002855;

    /* 初期状態（閉） */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);

    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

  /* 開いた状態 */
  .global-nav.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* is-open直後：リンクはまだ隠す */
  .global-nav.is-open .nav-inner a{
    opacity: 0;
    transform: translateY(10px);
  }

  /* アニメ開始（順番表示） */
  .global-nav.is-open.is-anim .nav-inner a{
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 240ms ease,
      transform 240ms ease;
  }

  .global-nav.is-open.is-anim .nav-inner a:nth-child(1){ transition-delay: 60ms; }
  .global-nav.is-open.is-anim .nav-inner a:nth-child(2){ transition-delay: 120ms; }
  .global-nav.is-open.is-anim .nav-inner a:nth-child(3){ transition-delay: 180ms; }
  .global-nav.is-open.is-anim .nav-inner a:nth-child(4){ transition-delay: 240ms; }
  .global-nav.is-open.is-anim .nav-inner a:nth-child(5){ transition-delay: 300ms; }
  .global-nav.is-open.is-anim .nav-inner a:nth-child(6){ transition-delay: 360ms; }


  /* ================================
   * 背景暗転（backdrop）
   * ================================ */
   .nav-backdrop{
    pointer-events: none; /* ←常にクリックを奪わない */
  }

  


  /* ================================
   * スクロール完全固定
   * ================================ */
  body.is-nav-open{
    position: fixed;
    width: 100%;
    left: 0;
  }
}









