@charset "UTF-8";
/*----------------------------------------
   Fonts
----------------------------------------*/
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter18pt-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter18pt-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter18pt-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
:root {
  --font-base: 'Noto Sans JP', 'Inter', 'Poppins', sans-serif;
  --font-sub: 'Inter', 'Poppins', sans-serif;
  --font-en: 'Poppins', 'Inter', sans-serif;
}

/*----------------------------------------
   Colors
----------------------------------------*/
:root {
  --color-main: #333333;
  --color-accent: #004098;
}

/*----------------------------------------
   リセットcss
----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

/*----------------------------------------
   共通設定
----------------------------------------*/
body {
  margin: 0;
  font-family: var(--font-base);
  line-height: 1.6;
  color: var(--color-main);
}

a {
  color: inherit;
}

.wrap.lr {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 768px) {
  .site-main {
    padding-top: 60px;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 240px;
  height: 54px;
  padding: 0 20px 0 40px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn.btn--lr {
  min-width: 300px;
}

.btn.btn--home {
  min-width: 300px;
}

.btn.btn--primary {
  color: #fff;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn.btn--secondary {
  color: var(--color-accent);
  background-color: #fff;
  border: 1px solid var(--color-accent);
}

.btn.btn--border-white,
.page-home-recruit__btn.btn--border-white {
  border: 1px solid #fff;
}

.btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(1px);
}

.btn.btn--primary:hover {
  color: var(--color-accent);
  background-color: #fff;
}

.btn.btn--secondary:hover {
  color: #fff;
  background-color: var(--color-accent);
}

@media (max-width: 768px) {
  .btn.btn--home {
    min-width: auto;
    width: 100%;
    max-width: 350px;
  }
  .btn.btn--lr {
    min-width: auto;
    width: 100%;
    max-width: 350px;
  }
}
/*----------------------------------------
   header
----------------------------------------*/
.site-header {
  margin: 0;
  background-color: #fff;
  height: 90px;
  padding: 0 30px;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  z-index: 500;
}

.site-header.is-menu-open {
  z-index: 10001;
}

body.home .site-header {
  margin: 20px 20px 0;
  border: 1px solid #eeeeee;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.site-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-header__brand {
  width: 225px;
  height: auto;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__brand-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header__tools-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 4.1666666667vw, 60px);
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.9444444444vw, 28px);
}

.site-header__nav-item > a {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s ease;
  text-underline-offset: 0.2em;
}

.site-header__nav-item > a:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.site-header__tools {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.96vw, 57px);
}

.site-header__tool {
  width: 31px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__group {
  width: 64px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-header__group::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 1px;
  height: 100%;
  background-color: #dddddd;
}

/* SP: ハンバーガー（1080px以下で表示・ナビ非表示と同期） */
.site-header__menu-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 3;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: #333333;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.site-header__menu-toggle-inner {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
}

.site-header__menu-line {
  position: absolute;
  left: 19px;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.site-header__menu-line:nth-child(1) {
  top: 20px;
}

.site-header__menu-line:nth-child(2) {
  top: 30px;
}

.site-header__menu-line:nth-child(3) {
  top: 40px;
}

.site-header.is-menu-open .site-header__menu-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-header__menu-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.site-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.35s;
}

.site-header.is-menu-open .site-header__drawer {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.site-header__drawer-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-header.is-menu-open .site-header__drawer-backdrop {
  opacity: 1;
}

.site-header__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 100px 20px 40px;
  z-index: 2;
}

.site-header.is-menu-open .site-header__drawer-panel {
  transform: translateX(0);
}

.site-header__drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__drawer-list li + li {
  margin-top: 4px;
}

.site-header__drawer-link {
  display: block;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-main);
  text-decoration: none;
  border-bottom: 1px solid #eeeeee;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__drawer-link:hover,
.site-header__drawer-link:focus-visible {
  color: var(--color-accent);
  background-color: #f9f9f9;
}

.site-header__tool-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1220px) {
  .site-header {
    padding: 0 80px 0 15px;
  }
  .site-header__nav {
    display: none;
  }
  .site-header__menu-toggle {
    display: flex;
  }
  .site-header__group {
    width: 64px;
  }
  .site-header__group::before {
    left: unset;
    right: -20px;
  }
}
@media (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    padding: 0 70px 0 15px;
  }
  .site-header__brand {
    width: 160px;
  }
  .site-header__group {
    width: 40px;
  }
  .site-header__group::before {
    left: unset;
    right: -10px;
  }
  body.home .site-header {
    margin: 0;
    border: 0;
    border-bottom: 1px solid #eeeeee;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}
body.is-header-menu-open {
  overflow: hidden;
}

body.home .site-header.is-menu-open {
  z-index: 10001;
}

/*----------------------------------------
   footer
----------------------------------------*/
.site-footer {
  padding-top: 30px;
  border-top: 1px solid #dddddd;
}

.site-footer__inner {
  padding: 24px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__nav-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 52px;
}

.site-footer__links {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-footer__accordion-grid {
  display: grid;
  grid-template-columns: 187px 205px 187px 187px;
  gap: 50px 30px;
}

.site-footer__heading {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.site-footer__heading-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 1.3;
  color: inherit;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
}

.site-footer__heading-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
}

.site-footer__heading-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(1px);
}

.site-footer__accordion-toggle {
  display: none;
}

.site-footer__accordion-label {
  flex: 1;
  text-align: left;
  font-weight: 500;
}

.site-footer__accordion-sign {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  min-width: 15px;
  height: 15px;
  margin-right: 20px;
  position: relative;
}

.site-footer__accordion-sign::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.site-footer__accordion-sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 15px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.site-footer__accordion-item.is-open .site-footer__accordion-sign::after {
  opacity: 0;
}

.site-footer__link-parent {
  margin-bottom: 6px;
}

.site-footer__list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__sub-list {
  padding-left: 14px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__accordion-panel a,
.site-footer__legal a {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: fit-content;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
}

.site-footer__accordion-panel a:hover,
.site-footer__legal a:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.site-footer__accordion-panel .site-footer__link-external {
  display: inline;
}

.site-footer__external-icon {
  display: inline-block;
  width: 12px;
  height: 13px;
  vertical-align: baseline;
  transform: translateX(-5px);
}

.site-footer__external-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__legal {
  margin: 0;
}

.site-footer__legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 4列目: お知らせ見出しの下に区切り線＋関連リンク（PC・SP とも同じカラム内） */
.site-footer__accordion-item--direct {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.site-footer__accordion-item--direct .site-footer__heading {
  margin-bottom: 16px;
}

.site-footer__accordion-item--direct .site-footer__legal {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid #dddddd;
  width: 100%;
}

.site-footer__accordion-item--direct .site-footer__legal-list {
  display: grid;
  gap: 12px;
}

.site-footer__cta {
  width: 230px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer__cta-button {
  position: relative;
  height: 68px;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--color-accent);
  transition: all 0.3s ease;
}

.site-footer__cta-button:hover {
  background: #fff;
  color: var(--color-accent);
}

.site-footer__cta-button:hover::after {
  background-color: var(--color-accent);
}

.site-footer__cta-button:hover .site-footer__cta-icon::before {
  border-top-color: var(--color-accent);
  border-right-color: var(--color-accent);
}

.site-footer__cta-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 63px;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.site-footer__cta-icon {
  position: relative;
  display: inline-block;
  width: 9px;
  height: 14px;
}

.site-footer__cta-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}

.site-footer__cta-logo {
  margin: 40px auto 0;
}

.site-footer__copyright {
  border-top: 1px solid #dddddd;
  padding: 26px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #6c6c6c;
}

@media (max-width: 1200px) {
  .site-footer__nav-area {
    display: block;
  }
  .site-footer__accordion-grid {
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  }
  .site-footer__cta {
    margin: 60px auto 0;
    justify-self: center;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding-top: 50px;
  }
  .site-footer__sp-company {
    margin: 0 0 40px;
  }
  .site-footer__sp-company-brand {
    display: block;
    width: 100%;
    max-width: 250px;
  }
  .site-footer__sp-company-brand img {
    width: 100%;
    height: auto;
    display: block;
  }
  .site-footer__sp-company-address {
    margin: 22px 0 0;
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: #333333;
  }
  .site-footer__inner {
    padding: 0 0 60px;
  }
  .site-footer__nav-area {
    padding-bottom: 0;
  }
  .site-footer__links {
    gap: 0;
  }
  .site-footer__accordion-panel a,
  .site-footer__legal a {
    font-size: 13px;
    line-height: 1.3;
  }
  .site-footer__list {
    gap: 15px;
  }
  .site-footer__accordion-grid {
    display: block;
  }
  .site-footer__accordion-item {
    border-bottom: 1px solid #dddddd;
  }
  .site-footer__accordion-item--direct {
    border-bottom: 0;
  }
  .site-footer__accordion-item--direct .site-footer__heading {
    margin-bottom: 0;
  }
  .site-footer__heading {
    margin: 0;
  }
  .site-footer__heading-link {
    display: none;
  }
  /* お知らせ: アコーディオンにせず一覧へ直接リンク（SP は＋なし・行高さはトグルと同じ 68px） */
  .site-footer__accordion-item--direct .site-footer__heading-link {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    min-height: 68px;
    padding: 0;
    box-sizing: border-box;
    font-weight: 500;
  }
  .site-footer__accordion-item--direct .site-footer__heading-icon {
    display: none;
  }
  .site-footer__accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 68px;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: inherit;
    cursor: pointer;
    box-sizing: border-box;
  }
  .site-footer__accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .site-footer__accordion-panel-inner {
    overflow: hidden;
    min-height: 0;
  }
  .site-footer__accordion-item.is-open .site-footer__accordion-panel {
    grid-template-rows: 1fr;
  }
  .site-footer__accordion-item.is-open .site-footer__accordion-panel-inner {
    padding-bottom: 16px;
  }
  .site-footer__accordion-item--direct .site-footer__legal {
    padding-top: 20px;
  }
  .site-footer__accordion-item--direct .site-footer__legal-list {
    gap: 15px;
  }
  .site-footer__legal a {
    width: auto;
    max-width: none;
  }
  .site-footer__cta {
    width: 100%;
    max-width: 350px;
  }
  .site-footer__cta-button {
    width: 100%;
    max-width: 100%;
  }
  .site-footer__copyright {
    padding: 25px 0 60px;
    font-size: 10px;
    letter-spacing: 0.03em;
  }
  .site-footer__cta-logo {
    width: 100%;
    max-width: 350px;
  }
  .site-footer__cta-logo img {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-footer__accordion-panel {
    transition: none;
  }
}
/*----------------------------------------
   下層　共通（テンプレ単体は assets/scss/template-parts/）
----------------------------------------*/
.page-content {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  .page-content {
    padding: 60px 0 80px;
  }
}
/*----------------------------------------
   template-parts/*.php と対応する SCSS（※注釈のあるものは例外）
   ※ content-block: content-block-*.php 複数可
   main.scss から @use 'template-parts/index' で読み込み
----------------------------------------*/
/*----------------------------------------
   template-parts/page-fv.php
----------------------------------------*/
.page-fv {
  position: relative;
  padding: 10px 0 0;
  overflow-x: clip;
}

@media (max-width: 768px) {
  .page-fv {
    padding: 4px 0 0;
  }
}
/* お知らせ詳細など: パンくずのみ（タイトル・アイブローは本文側） */
.page-fv--breadcrumb-only {
  padding-bottom: 8px;
}

.page-fv--breadcrumb-only .page-fv__breadcrumb {
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .page-fv--breadcrumb-only .page-fv__breadcrumb {
    margin-bottom: 20px;
  }
}
.page-fv::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 50%;
  width: 1265px;
  height: 1265px;
  background: url("../img/common/page_fv_bg.png") no-repeat center/contain;
  pointer-events: none;
  z-index: 0;
  transform: translateX(-202px);
}

.page-fv__breadcrumb {
  margin-bottom: 70px;
  font-size: 12px;
  letter-spacing: 0.07em;
  color: #707070;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.page-fv__breadcrumb a {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #2b2b2b;
}

.page-fv__breadcrumb .bcn-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  margin: 0 12px;
}

.page-fv__breadcrumb .bcn-separator::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  border-top: 1.5px solid #2b2b2b;
  border-right: 1.5px solid #2b2b2b;
  border-radius: 1px;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.page-fv__content {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0 100px;
  align-items: flex-start;
}

.page-fv__heading {
  min-height: 140px;
  width: max-content;
}

.page-fv__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: clamp(16px, 0.381vw + 14.5143px, 20px);
  line-height: 1;
  font-weight: 500;
  font-family: var(--font-en);
  color: var(--color-accent);
}

.page-fv__eyebrow-text::first-letter {
  text-transform: uppercase;
  color: #e60012;
}

.page-fv__eyebrow-char-red {
  color: #e60012;
}

.page-fv__eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #e60012;
  flex-shrink: 0;
}

.page-fv__title {
  font-size: clamp(24px, 1.5238vw + 18.0571px, 40px);
  line-height: 1;
  font-weight: 700;
}

.page-fv__description {
  font-size: clamp(14px, 0.1904761905vw + 13.2571428571px, 16px);
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: "Noto Sans JP";
}

@media (max-width: 768px) {
  .page-fv__content {
    grid-template-columns: 1fr;
  }
  .page-fv::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 176.6666666667vw;
    background: url("../img/common/page_fv_bg_sp.png") no-repeat center/cover;
    pointer-events: none;
    z-index: 0;
    transform: none;
  }
  .page-fv__breadcrumb {
    margin-bottom: 30px;
  }
  .page-fv__description {
    margin: 38px 0 0;
  }
  .page-fv__heading {
    min-height: auto;
  }
  /* 代表メッセージ: ヘッダー内の page-fv（パンくず・FV見出し）のみ非表示。本文の社長FVは .page-company-message__fv で表示 */
  body.is-page-company-message .page-fv {
    display: none;
  }
}
/*----------------------------------------
   template-parts/contact-cta-banner.php
----------------------------------------*/
.contact-cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.contact-cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #76bff2 0%, rgba(118, 191, 242, 0) 100%), url("../img/common/contact_cta_bg.jpg") no-repeat center/cover;
}

.contact-cta-banner__panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 15px;
  padding: 70px 48px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-cta-banner__panel:hover {
  border-color: var(--color-accent);
}

.contact-cta-banner__panel:hover .contact-cta-banner__arrow {
  transform: translateX(5px);
}

.contact-cta-banner__title {
  font-size: clamp(42px, 3.619vw + 27.8857px, 80px);
  line-height: 1;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.contact-cta-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP";
}

.contact-cta-banner__label span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e60012;
}

.contact-cta-banner__arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-cta-banner__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .contact-cta-banner {
    padding: 60px 0;
  }
  .contact-cta-banner__panel {
    padding: 40px 20px;
  }
}
/*----------------------------------------
   template-parts/benefits-intro-split.php
----------------------------------------*/
.benefits-intro-split__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.benefits-intro-split__content {
  padding: 40px 50px 40px 70px;
}

.benefits-intro-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: clamp(16px, 0.381vw + 14.5143px, 20px);
  line-height: 1;
  font-weight: 500;
  font-family: var(--font-en);
}

.benefits-intro-split__eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #e60012;
  flex-shrink: 0;
}

.benefits-intro-split__title {
  margin: 0 0 20px;
  font-size: clamp(24px, 0.381vw + 22.5143px, 28px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.benefits-intro-split__text {
  margin: 0 0 25px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.03em;
}

.benefits-intro-split__action {
  margin: 0;
}

.benefits-intro-split__figure {
  aspect-ratio: 500/342;
  flex-shrink: 0;
}

.benefits-intro-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .benefits-intro-split__inner {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .benefits-intro-split__content {
    order: 2;
    padding: 20px 30px;
  }
  .benefits-intro-split__figure {
    order: 1;
    width: 100%;
  }
}
/*----------------------------------------
   template-parts/company-links.php
----------------------------------------*/
.company-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.company-links__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--color-accent);
  padding: 16px 20px 16px 40px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  color: var(--color-accent);
  text-decoration: none;
  box-sizing: border-box;
}

.company-links__item::after {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(1px);
}

.company-links__item:hover {
  color: #fff;
  background-color: var(--color-accent);
}

@media (max-width: 1100px) {
  .company-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .company-links__grid {
    grid-template-columns: 1fr;
  }
  .company-links__item {
    padding: 14px 16px 14px 24px;
    font-size: 16px;
  }
}
/*----------------------------------------
   template-parts/content-block*.php（.content-block）
   汎用コンテンツ塊。段組・切替UI・図版など拡張前提
----------------------------------------*/
.content-block {
  margin: 0 0 0;
}

/* 先頭行: 切替用トリガー（現状は横並びボタン。別UIに差し替え可） */
.content-block__triggers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin: 0 0 100px;
  border-bottom: 0;
}

.content-block__trigger {
  margin: 0;
  padding: 24px 20px;
  border: 0;
  border: 1px solid #dddddd;
  background-color: #fff;
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.content-block__trigger:last-child {
  border-right: 0;
}

.content-block__trigger:hover {
  background-color: var(--color-accent);
  color: #fff;
}

.content-block__trigger.is-active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.content-block__trigger.is-active + .content-block__trigger {
  border-left-color: #e0e0e0;
}

.content-block__views {
  position: relative;
}

.content-block__view {
  display: none;
}

.content-block__view.is-active {
  display: block;
}

/* 1ビュー内の段組（テキストボックス＋メディア） */
.content-block__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 900px);
  gap: 0;
}

.content-block__textbox {
  position: relative;
  z-index: 2;
  padding: 60px 50px 60px 60px;
  background-color: #fff;
  margin: 60px -200px 0 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1019607843);
  min-width: 560px;
}

.content-block__heading {
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.content-block__copy {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--color-main);
}

.content-block__media {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 900/400;
}

.content-block__media img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-block__triggers {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #e0e0e0;
  }
  .content-block__trigger {
    border-right: 0;
  }
  .content-block__split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .content-block__textbox {
    margin: 0 0 0;
    order: 2;
  }
  .content-block__media {
    order: 1;
    min-height: 200px;
  }
  .content-block__media img {
    min-height: 220px;
  }
}
/*----------------------------------------
   template-parts/news-sidebar.php
----------------------------------------*/
.page-news-archive__sidebar {
  position: sticky;
  top: 100px;
}

.page-news-archive__filter {
  margin-bottom: 40px;
}

.page-news-archive__filter-label {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-news-archive__filter-label--cat {
  margin-top: 0;
  margin-bottom: 16px;
}

.page-news-archive__select-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.page-news-archive__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  transform: translateY(-65%) rotate(135deg);
  pointer-events: none;
}

.page-news-archive__select {
  width: 100%;
  max-width: 100%;
  padding: 16px 40px 16px 16px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-main);
  cursor: pointer;
  appearance: none;
}

.page-news-archive__cats {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news-archive__cats-item {
  margin: 0;
  padding: 0;
}

.page-news-archive__cat {
  display: block;
  padding: 16px 16px;
  font-size: clamp(14px, 0.1904761905vw + 13.2571428571px, 16px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  margin: 0 0 10px;
}

.page-news-archive__cats-item:last-child .page-news-archive__cat {
  margin-bottom: 0;
}

.page-news-archive__cat:hover {
  color: #fff;
  background: var(--color-accent);
}

.page-news-archive__cat.is-active {
  background: var(--color-accent);
  color: #ffffff;
}

@media (max-width: 900px) {
  .page-news-archive__sidebar {
    position: static;
  }
  .page-news-archive__select-wrap {
    max-width: 360px;
  }
  .page-news-archive__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 6px;
  }
  .page-news-archive__cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    margin: 0;
  }
}
/*========================================
   お知らせ — news-archive-main（一覧 UI + レイアウト共通）
   ----------------------------------------
   ・一覧のカード等: template-parts/news-archive-main.php
   ・.page-news-archive__layout（サイドバー＋メインのグリッド）:
     archive-news.php / category.php / single-post.php でも共通利用
   ・旧 _archive-news.scss の内容はこのファイル先頭に統合済み
========================================*/
/* ---- レイアウト共通 ---- */
.page-news-archive__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .page-news-archive__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* グリッド子・flex 子で nowrap+ellipsis が効くよう最小幅を許容 */
.page-news-archive__main {
  min-width: 0;
}

/* ---- 一覧メイン（news-archive-main.php のマークアップ）---- */
.page-news-archive__list {
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.page-news-archive__item {
  min-width: 0;
}

.page-news-archive-card {
  min-width: 0;
  padding: 0;
  border-bottom: 1px solid #e8e8e8;
}

.page-news-archive-card.page-news-archive-card--article {
  padding: 0;
}

.page-news-archive-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.page-news-archive-card__date {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  min-width: 105px;
}

.page-news-archive-card__tag {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding: 5px 0;
  min-width: 120px;
  text-align: center;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.page-news-archive-card__title:not(.page-news-archive-card__title--plain) {
  display: block;
  min-width: 0;
  max-width: 100%;
  font-weight: 500;
  font-size: clamp(16px, 0.1904761905vw + 15.2571428571px, 18px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: all 0.3s ease;
}

.page-news-archive-card__title:not(.page-news-archive-card__title--plain):hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.page-news-archive-card__pdf {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* PC: PDF/外部 43px 上下 · 通常記事リンク 57.5px（下段） */
.page-news-archive-card--pdf .page-news-archive-card__link,
.page-news-archive-card--external .page-news-archive-card__link {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 43px 60px 43px 15px;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-news-archive-card--pdf .page-news-archive-card__link:hover,
.page-news-archive-card--external .page-news-archive-card__link:hover {
  color: inherit;
}

.page-news-archive-card--pdf .page-news-archive-card__link:hover .page-news-archive-card__title:not(.page-news-archive-card__title--plain) {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.page-news-archive-card--external .page-news-archive-card__link:hover .page-news-archive-card__title:not(.page-news-archive-card__title--plain) {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.page-news-archive-card--pdf .page-news-archive-card__link:hover .page-news-archive-card__pdf {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.page-news-archive-card--external .page-news-archive-card__link:hover .page-news-archive-card__external {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.page-news-archive-card--pdf .page-news-archive-card__pdf {
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.page-news-archive-card--external .page-news-archive-card__external {
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.page-news-archive-card--pdf .page-news-archive-card__title:not(.page-news-archive-card__title--plain) {
  margin-top: 0;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.page-news-archive-card--external .page-news-archive-card__title:not(.page-news-archive-card__title--plain) {
  margin-top: 0;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.page-news-archive-card__pdf-icon {
  display: flex;
  flex-shrink: 0;
}

.page-news-archive-card__pdf-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.page-news-archive-card__external {
  /* .page-news-archive-card__pdf と同じ（補足テキスト＋アイコン行） */
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: fit-content;
  max-width: 100%;
  margin-top: 4px;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
}

.page-news-archive-card__external-icon {
  display: flex;
  flex-shrink: 0;
}

.page-news-archive-card__external-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.page-news-archive-card--article .page-news-archive-card__link {
  display: flex;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 57.5px 15px;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-news-archive-card--article .page-news-archive-card__link:hover {
  color: inherit;
}

.page-news-archive-card--article .page-news-archive-card__link:hover .page-news-archive-card__title:not(.page-news-archive-card__title--plain) {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.page-news-archive-card--title-only .page-news-archive-card__static {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 41.5px 15px;
}

.page-news-archive-card--title-only .page-news-archive-card__title--plain,
.page-news-archive-card--title-only .page-news-archive-card__title--plain:hover {
  color: inherit;
  text-decoration: none;
  text-decoration-color: transparent;
  cursor: default;
}

.page-news-archive-card__main {
  flex: 1;
  min-width: 0;
}

.page-news-archive-card--article .page-news-archive-card__title:not(.page-news-archive-card__title--plain) {
  margin-top: 0;
  font-size: clamp(16px, 0.1904761905vw + 15.2571428571px, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.page-news-archive-card--article.page-news-archive-card--title-only .page-news-archive-card__title--plain {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0;
  font-size: clamp(16px, 0.1904761905vw + 15.2571428571px, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-news-archive-card--article.page-news-archive-card--title-only .page-news-archive-card__title--plain,
.page-news-archive-card--article.page-news-archive-card--title-only .page-news-archive-card__title--plain:hover {
  text-decoration: none;
  text-underline-offset: 0;
  transition: none;
}

.page-news-archive-card__chev {
  flex-shrink: 0;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  transform: rotate(45deg) translateY(1px);
}

.page-news-archive__empty {
  margin: 0;
  padding: 48px 0;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #666666;
}

.page-news-archive__back {
  margin-top: 60px;
  text-align: center;
}

.page-news-archive__back.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .page-news-archive-card.page-news-archive-card--article {
    width: 100%;
  }
  .page-news-archive-card--article .page-news-archive__item {
    width: 100%;
  }
  .page-news-archive-card--article .page-news-archive__main {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-news-archive-card {
    min-width: 0;
    padding: 0;
    border-bottom: 1px solid #e8e8e8;
  }
  .page-news-archive__item:first-child .page-news-archive-card {
    border-top: 1px solid #e8e8e8;
  }
  /* SPでもカード本体は0、余白はリンク/静的ブロック側で統一 */
  .page-news-archive-card.page-news-archive-card--article {
    padding: 0;
  }
  .page-news-archive-card__meta {
    margin-bottom: 15px;
  }
  .page-news-archive-card__date {
    font-size: 14px;
    min-width: 82px;
  }
  .page-news-archive-card__tag {
    font-size: 11px;
    padding: 3px 0;
    min-width: 106px;
  }
  /* SP: 種類共通の余白・横幅いっぱい（PC の 57.5 / 43 の差はつけない） */
  .page-news-archive-card--pdf .page-news-archive-card__link,
  .page-news-archive-card--external .page-news-archive-card__link,
  .page-news-archive-card--article .page-news-archive-card__link,
  .page-news-archive-card--title-only .page-news-archive-card__static {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 30px 15px;
  }
  .page-news-archive-card--pdf .page-news-archive-card__link,
  .page-news-archive-card--external .page-news-archive-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .page-news-archive-card__chev {
    display: none;
  }
}
/*----------------------------------------
   template-parts/pagination.php（paginate_links 共通）
----------------------------------------*/
.pagination {
  margin-top: 48px;
}

.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a.page-numbers,
.pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid #dddddd;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-main);
  background: #ffffff;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pagination a.page-numbers:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.pagination span.page-numbers.current {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #ffffff;
}

.pagination span.page-numbers.dots {
  border: none;
  background: transparent;
}

/* recruit-other-interviews.php — 働く人を知る（PC/SP 共通スライダー・右はみ出し） */
.page-recruit-people {
  margin: 0;
  overflow: hidden;
}

.page-recruit-people__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 60px;
}

.page-recruit-people__title {
  margin: 0;
  font-size: clamp(26px, 0.5714285714vw + 23.7714285714px, 32px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page-recruit-people__nav-group {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

/* SP 用矢印（PC では非表示。.nav より詳細度を上げないと display:flex が勝つ） */
.page-recruit-people__nav.page-recruit-people__nav--sp {
  display: none;
}

.page-recruit-people__sp-slider-main {
  display: block;
  width: 100%;
  min-width: 0;
}

.page-recruit-people__sp-slider-view {
  display: block;
}

.page-recruit-people__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-accent);
  background: #ffffff;
  cursor: pointer;
  box-sizing: border-box;
}

.page-recruit-people__nav::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  box-sizing: border-box;
}

.page-recruit-people__nav--prev::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.page-recruit-people__nav--next::before {
  transform: rotate(45deg);
  margin-right: 3px;
}

/* 左は .wrap.lr と同じガターに固定。右はビューポート端まで */
.page-recruit-people__slider-shell {
  --rp-gutter: max(20px, calc((100vw - 1300px) / 2 + 20px));
  /* スライダー可視幅（= 100vw − 左ガター）。1440 幅・1300 箱のとき 1350px 相当 */
  --rp-track-w: calc(100vw - var(--rp-gutter));
  /* PC の --rp-pc-slide-w は 769px 以上でメディアクエリ側に記述（1440 未満は固定） */
  margin-left: var(--rp-gutter);
  width: var(--rp-track-w);
  overflow-x: clip;
  overflow-y: visible;
}

/* 1440 未満の PC: 列幅は 1440 時デザイン値のまま固定 */
@media (min-width: 769px) and (max-width: 1439.98px) {
  .page-recruit-people__slider-shell {
    --rp-pc-slide-w: 277.5px;
  }
}
/* 1440 以上: トラック幅に連動し「4枚 + 5枚目チラ見せ」の割合を維持（gap 40px 固定） */
@media (min-width: 1440px) {
  .page-recruit-people__slider-shell {
    --rp-pc-slide-w: calc(
        max(0px, var(--rp-track-w) - 160px) * 277.5 / 1190
    );
  }
}
.page-recruit-people__slider-area {
  padding-left: 0;
  max-width: none;
}

.page-recruit-people__slider.swiper {
  overflow: hidden;
}

.page-recruit-people__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.page-recruit-people__item.swiper-slide {
  width: 100%;
  flex-shrink: 0;
  height: auto;
}

.page-recruit-people__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.page-recruit-people__figure {
  margin: 0 0 25px;
  aspect-ratio: 277.5/203.16;
  overflow: hidden;
}

.page-recruit-people__figure--empty {
  background-color: #f0f4f8;
}

.page-recruit-people__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.page-recruit-people__card:hover .page-recruit-people__img {
  transform: scale(1.03);
}

@media (min-width: 769px) {
  .page-recruit-people__slider-shell {
    overflow-x: visible;
  }
  /* カード列幅＝画像幅（参考サイトのように画像だけが vw で相似拡縮、本文は既存 px） */
  .page-recruit-people__item.swiper-slide {
    width: var(--rp-pc-slide-w);
    min-width: 0;
  }
  /* 画像下余白はスライド幅に比例（1440 時 277.5:25 と同じ比） */
  .page-recruit-people__figure {
    width: 100%;
    margin-bottom: calc(var(--rp-pc-slide-w) * 25 / 277.5);
  }
}
/* 一覧（archive）に近い番号＋斜線 */
.page-recruit-people__number {
  position: relative;
  margin: 0 0 20px;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
}
.page-recruit-people__number::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 1px;
  background: var(--color-accent);
  left: 14.5px;
  top: 39px;
  transform-origin: left center;
  transform: rotate(-45deg);
}

.page-recruit-people__number-value {
  display: inline-block;
}

.page-recruit-people__catch {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

.page-recruit-people__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

.page-recruit-people__name-last,
.page-recruit-people__name-first {
  display: inline;
}

.page-recruit-people__meta-line {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

.page-recruit-people__meta-role {
  display: block;
}

.page-recruit-people__meta-slash {
  margin: 0 0.2em;
}

.page-recruit-people__all {
  display: block;
  margin: 60px auto 0;
  text-align: center;
}

.page-recruit-people__all-btn {
  max-width: 350px;
  margin: 0 auto;
  width: 100%;
  min-height: 59px;
  min-width: 0;
}

@media (max-width: 768px) {
  .page-recruit-people__head {
    display: block;
    margin-bottom: 40px;
  }
  .page-recruit-people__title {
    line-height: 1.6;
  }
  .page-recruit-people__nav-group--pc {
    display: none;
  }
  .page-recruit-people__nav.page-recruit-people__nav--sp {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    width: 24px;
    height: 24px;
  }
  /* はみ出した矢印を切らない（親の overflow: hidden を上書き） */
  .page-recruit-people {
    overflow: visible;
  }
  .page-recruit-people__sp-slider-view {
    position: relative;
    container-type: inline-size;
    --rp-sp-slider-gutter: 20px;
    --rp-sp-nav-gap: 8px;
  }
  .page-recruit-people__nav--sp-out {
    position: absolute;
    top: calc((100cqi - 2 * var(--rp-sp-slider-gutter)) * 227 / 620);
    z-index: 2;
    box-sizing: border-box;
    justify-content: center;
  }
  .page-recruit-people__nav--sp-out.page-recruit-people__nav--prev {
    left: 23px;
    transform: translate(calc(-100% - var(--rp-sp-nav-gap)), -50%);
  }
  .page-recruit-people__nav--sp-out.page-recruit-people__nav--next {
    right: 23px;
    transform: translate(calc(100% + var(--rp-sp-nav-gap)), -50%);
  }
  .page-recruit-people__nav::before {
    width: 12px;
    height: 12px;
  }
  .page-recruit-people__slider.swiper {
    position: relative;
    z-index: 1;
    margin: 0 var(--rp-sp-slider-gutter);
  }
  .page-recruit-people__slider-shell {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1300px;
    padding: 0 20px;
    box-sizing: border-box;
    overflow-x: visible;
  }
  .page-recruit-people__item.swiper-slide {
    width: 100%;
  }
  .page-recruit-people__figure {
    margin-bottom: 15px;
    aspect-ratio: 310/227;
  }
  .page-recruit-people__catch {
    font-size: 18px;
  }
  .page-recruit-people__all {
    margin: 50px 20px 0;
  }
}
/*----------------------------------------
   top / 共通パーツ
----------------------------------------*/
.page-home__title-ja {
  font-size: clamp(24px, 0.7619vw + 21.0286px, 32px);
  font-weight: 700;
  line-height: 1.1875;
}

.page-home__title-en {
  font-size: clamp(16px, 0.381vw + 14.5143px, 20px);
  font-weight: 500;
  line-height: 1.5;
  font-family: var(--font-en);
  color: var(--color-accent);
  margin: 10px 0 0;
}

.page-home__title-lead {
  margin: 40px 0 0;
  font-size: clamp(16px, 0.381vw + 14.5143px, 20px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .page-home__title-en {
    line-height: 1.2;
    margin: 8px 0 0;
  }
  .page-home__title-lead {
    margin: 50px 0 0;
    line-height: 1.6;
  }
}
/*----------------------------------------
   top / ファーストビュー（Swiper）
----------------------------------------*/
/* FV 設計サイズ 1440×647 を基準。中心 (-148, 490)、終点 (881, 368) までの距離を半径 r とし、楕円の両軸は r をそれぞれ幅・高さに対する % で表す（円に見える白の広がり）。白は 100% → 10% 不透明度。 */
.page-home-fv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-home-fv__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-blend-mode: multiply;
  background: linear-gradient(180deg, rgba(0, 132, 255, 0) 55%, rgba(0, 132, 255, 0.4) 100%), radial-gradient(71.94% 379.36% at -10.21% 75.73%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.08) 100%);
  opacity: 0.8;
}

/* フェード切替時もラッパー高さを確保 */
.page-home-fv.swiper-fade .swiper-wrapper {
  position: absolute;
  inset: 0;
}

.page-home-fv__slide {
  position: relative;
  height: 100%;
  object-fit: cover;
}

.page-home-fv__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-home-fv__frame {
  position: relative;
  z-index: 2;
}

.page-home-fv__frame-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 163px 40px 274px 66px;
  position: relative;
}

.page-home-fv__intro,
.page-home-fv__bottom,
.page-home-fv__controls,
.page-home-fv__recruit {
  pointer-events: auto;
}

.page-home-fv__heading {
  margin: 0 0 20px;
  font-size: clamp(26px, 3.2380952381vw + 13.3714285714px, 60px);
  font-weight: 700;
  line-height: 1.3333333333;
  color: #000000;
  text-shadow: 0 0 40px rgb(255, 255, 255), 0 0 40px rgb(255, 255, 255);
}

.page-home-fv__heading-line {
  display: block;
}

.page-home-fv__heading-line-sub {
  font-weight: 400;
}

.page-home-fv__lead {
  margin: 0;
  font-size: clamp(16px, 0.5714vw + 13.7714px, 22px);
  font-weight: 500;
  color: #000000;
  text-shadow: 0 0 40px rgb(255, 255, 255), 0 0 40px rgb(255, 255, 255);
}

.page-home-fv__bottom {
  position: absolute;
  inset: 0;
}

.page-home-fv__controls {
  position: absolute;
  bottom: 29px;
  left: 66px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 19px;
}

.page-home-fv__recruit {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  width: 270px;
  overflow: hidden;
  background: #ffffff;
  color: var(--color-main);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  padding: 8px;
}

.page-home-fv__recruit:hover {
  opacity: 0.8;
}

.page-home-fv__recruit-photo {
  aspect-ratio: 254/110;
  overflow: hidden;
}

.page-home-fv__recruit-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home-fv__recruit-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 10px;
  margin: 8px 0 0;
  border: 1px solid #dddddd;
}

.page-home-fv__recruit-label {
  font-size: clamp(10px, 0.380952381vw + 8.5142857143px, 14px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page-home-fv__recruit-arrow {
  flex-shrink: 0;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  transform: rotate(45deg);
}

/* Swiper ページネーションを左下バー内で横並び */
.page-home-fv__pagination.swiper-pagination {
  position: static;
  width: auto;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 19px;
}

.page-home-fv__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  opacity: 1;
  background: #ffffff;
}

.page-home-fv__pagination .swiper-pagination-bullet-active {
  background: #0077c6;
}

.page-home-fv__pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9px;
  height: 13px;
  padding: 0;
  margin: 0;
  border-left: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s ease;
}

/* 一時停止中はアクティブドットと同じ色（.swiper-pagination-bullet-active） */
.page-home-fv__pause.is-paused {
  border-left-color: #0077c6;
  border-right-color: #0077c6;
}

@media (max-width: 768px) {
  .page-home-fv__gradient {
    background-blend-mode: multiply;
    background: linear-gradient(180deg, rgba(0, 132, 255, 0) 55%, rgba(0, 132, 255, 0.4) 100%), radial-gradient(989.06% 262.99% at 61.74% 100%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.7) 100%);
  }
  .page-home-fv__frame-inner {
    padding: 100px 20px 245px 30px;
  }
  .page-home-fv__intro,
  .page-home-fv__bottom,
  .page-home-fv__controls,
  .page-home-fv__recruit {
    pointer-events: auto;
  }
  .page-home-fv__heading {
    line-height: 1.6;
  }
  .page-home-fv__heading-line {
    display: block;
  }
  .page-home-fv__heading-line-sub {
    font-weight: 700;
  }
  .page-home-fv__lead {
    margin: 0;
    font-size: clamp(16px, 0.5714vw + 13.7714px, 22px);
    font-weight: 500;
    color: #000000;
    text-shadow: 0 0 40px rgb(255, 255, 255), 0 0 40px rgb(255, 255, 255);
  }
  .page-home-fv__bottom {
    position: absolute;
    inset: 0;
  }
  .page-home-fv__controls {
    display: none;
  }
  .page-home-fv__recruit {
    bottom: 20px;
    right: 20px;
    width: 190px;
    box-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
    padding: 8px;
  }
  .page-home-fv__recruit-photo {
    aspect-ratio: 175/75;
    overflow: hidden;
  }
  .page-home-fv__recruit-bar {
    gap: 8px;
    padding: 6px 10px;
  }
  /* Swiper ページネーションを左下バー内で横並び */
  .page-home-fv__pagination.swiper-pagination {
    position: static;
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 19px;
  }
  .page-home-fv__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    opacity: 1;
    background: #ffffff;
  }
  .page-home-fv__pagination .swiper-pagination-bullet-active {
    background: #0077c6;
  }
  .page-home-fv__pause {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 9px;
    height: 13px;
    padding: 0;
    margin: 0;
    border-left: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    cursor: pointer;
    background: transparent;
    transition: border-color 0.2s ease;
  }
  /* 一時停止中はアクティブドットと同じ色（.swiper-pagination-bullet-active） */
  .page-home-fv__pause.is-paused {
    border-left-color: #0077c6;
    border-right-color: #0077c6;
  }
}
/*----------------------------------------
   top / NEWS バー（スライダー直下）
----------------------------------------*/
.page-home-newsbar {
  border-bottom: 1px solid #cbd5e0;
}

.page-home-newsbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.page-home-newsbar__head {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 26px;
}

.page-home-newsbar__label {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
}

.page-home-newsbar__all {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.page-home-newsbar__all::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(45deg);
  margin-left: 11px;
}

.page-home-newsbar__all:hover {
  opacity: 0.8;
}

.page-home-newsbar__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  min-width: 0;
}

.page-home-newsbar__main {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  gap: 10px;
}

.page-home-newsbar__link {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  outline-offset: 2px;
}

/* PDF / 外部: タイトルと（キャプション）を1ブロックにまとめる */
.page-home-newsbar__tail-stack {
  display: inline-flex;
  flex: 1 1 auto;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  min-width: 0;
  max-width: 100%;
}

.page-home-newsbar__link .page-home-newsbar__title-core {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-home-newsbar__date {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
}

.page-home-newsbar__date-pc {
  display: inline;
}

.page-home-newsbar__date-sp {
  display: none;
}

.page-home-newsbar__tag {
  flex-shrink: 0;
  display: inline-block;
  padding: 6px 33px;
  background: #fff;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-sub);
  line-height: 1;
}

.page-home-newsbar__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: var(--color-main);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: all 0.3s ease;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-home-newsbar__title-lines {
  display: inline;
}

.page-home-newsbar__link:hover .page-home-newsbar__title,
.page-home-newsbar__link:hover .page-home-newsbar__title-core {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.page-home-newsbar__main--nolink {
  cursor: default;
}

.page-home-newsbar__main--nolink .page-home-newsbar__title {
  text-decoration: none;
  transition: none;
}

.page-home-newsbar__empty {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--color-main);
}

.page-home-newsbar__link .page-home-newsbar__pdf {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  margin-left: 0;
}

.page-home-newsbar__pdf {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP";
  color: #1c1c1c;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  outline-offset: 2px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.page-home-newsbar__pdf-icon {
  display: block;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home-newsbar__pdf-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-home-newsbar__link .page-home-newsbar__external {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  margin-left: 0;
}

.page-home-newsbar__external {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP";
  color: #1c1c1c;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  outline-offset: 2px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.page-home-newsbar__external-icon {
  display: block;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home-newsbar__external-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* （キャプション）とアイコンを1まとまりにする（SPフローでは下で nowrap を上書き） */
.page-home-newsbar__tail-glue {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* PDF / 外部リンク行: ベースの #1c1c1c より後でホバーを上書き（一覧の PDF と同じ） */
.page-home-newsbar__link:hover .page-home-newsbar__pdf,
.page-home-newsbar__link:hover .page-home-newsbar__external {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

@media (max-width: 1080px) {
  .page-home-newsbar {
    border-bottom: none;
  }
  .page-home-newsbar__inner {
    display: block;
    padding: 20px;
  }
  .page-home-newsbar__head {
    justify-content: space-between;
    gap: 12px;
  }
  .page-home-newsbar__label {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--color-accent);
    text-transform: lowercase;
  }
  .page-home-newsbar__label::first-letter {
    text-transform: uppercase;
  }
  .page-home-newsbar__all {
    min-width: 97px;
    height: 35px;
    justify-content: center;
    padding: 0 15px 0 30px;
    border: 1px solid var(--color-accent);
    border-radius: 0;
    color: var(--color-accent);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 500;
  }
  .page-home-newsbar__all::after {
    width: 7px;
    height: 7px;
    margin-left: 12px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
  }
  .page-home-newsbar__body {
    margin-top: 15px;
  }
  .page-home-newsbar__main {
    display: block;
    overflow: visible;
  }
  .page-home-newsbar__date {
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-right: 10px;
    transform: translateY(3px);
  }
  .page-home-newsbar__date-pc {
    display: none;
  }
  .page-home-newsbar__date-sp {
    display: inline;
  }
  .page-home-newsbar__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    height: 19px;
    padding: 0 10px;
    vertical-align: baseline;
    padding-top: 2px;
  }
  /* 詳細リンクのみ */
  .page-home-newsbar__link:not(.js-newsbar-with-tail) {
    display: block;
    margin-top: 15px;
    overflow: visible;
  }
  /* タイトルのみ: 最大2行省略 */
  .page-home-newsbar__link:not(.js-newsbar-with-tail) .page-home-newsbar__title-lines,
  .page-home-newsbar__main--nolink .page-home-newsbar__title-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .page-home-newsbar__link.js-newsbar-with-tail {
    display: block;
    margin-top: 15px;
    overflow: visible;
  }
  .page-home-newsbar__link.js-newsbar-with-tail .page-home-newsbar__tail-stack {
    display: block;
    width: 100%;
    min-width: 0;
    word-break: normal;
    overflow-wrap: break-word;
  }
  /* フロー: タイトルが2行以内で収まる → 省略なし。inline-flex+nowrap の tail はアトミックになり早すぎる改行の原因になるため使わない */
  .page-home-newsbar__link.js-newsbar-with-tail:not(.page-home-newsbar__link--sp-clamp) .page-home-newsbar__title-core {
    display: inline;
    width: auto;
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: normal;
    overflow-wrap: break-word;
    vertical-align: baseline;
  }
  .page-home-newsbar__link.js-newsbar-with-tail:not(.page-home-newsbar__link--sp-clamp) .page-home-newsbar__pdf,
  .page-home-newsbar__link.js-newsbar-with-tail:not(.page-home-newsbar__link--sp-clamp) .page-home-newsbar__external {
    display: inline;
    white-space: normal;
    vertical-align: baseline;
    margin-top: 0;
    margin-left: 0;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
  /* （キャプション）+ アイコンを分離させない。inline-flex 全体は使わず nowrap のインライン塊にする */
  .page-home-newsbar__link.js-newsbar-with-tail:not(.page-home-newsbar__link--sp-clamp) .page-home-newsbar__tail-glue {
    display: inline;
    white-space: nowrap;
    vertical-align: baseline;
  }
  .page-home-newsbar__link.js-newsbar-with-tail:not(.page-home-newsbar__link--sp-clamp) .page-home-newsbar__pdf-meta,
  .page-home-newsbar__link.js-newsbar-with-tail:not(.page-home-newsbar__link--sp-clamp) .page-home-newsbar__external-meta {
    display: inline;
    vertical-align: baseline;
  }
  .page-home-newsbar__link.js-newsbar-with-tail:not(.page-home-newsbar__link--sp-clamp) .page-home-newsbar__pdf-meta ~ .page-home-newsbar__pdf-icon,
  .page-home-newsbar__link.js-newsbar-with-tail:not(.page-home-newsbar__link--sp-clamp) .page-home-newsbar__external-meta ~ .page-home-newsbar__external-icon {
    margin-left: 4px;
  }
  .page-home-newsbar__link.js-newsbar-with-tail:not(.page-home-newsbar__link--sp-clamp) .page-home-newsbar__pdf-icon,
  .page-home-newsbar__link.js-newsbar-with-tail:not(.page-home-newsbar__link--sp-clamp) .page-home-newsbar__external-icon {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
  }
  /* クランプ: glue を無視して pdf/external の flex 子に meta・icon を戻す */
  .page-home-newsbar__link.js-newsbar-with-tail.page-home-newsbar__link--sp-clamp .page-home-newsbar__tail-glue {
    display: contents;
  }
  /* クランプ: タイトル単体が2行を超えるときのみ2行＋…、（）は次行 */
  .page-home-newsbar__link.js-newsbar-with-tail.page-home-newsbar__link--sp-clamp .page-home-newsbar__tail-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-home-newsbar__link.js-newsbar-with-tail.page-home-newsbar__link--sp-clamp .page-home-newsbar__title-core {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .page-home-newsbar__link.js-newsbar-with-tail.page-home-newsbar__link--sp-clamp .page-home-newsbar__pdf,
  .page-home-newsbar__link.js-newsbar-with-tail.page-home-newsbar__link--sp-clamp .page-home-newsbar__external {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    align-self: flex-start;
    min-width: 0;
    white-space: nowrap;
    margin-top: 0;
    margin-left: 0;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
  /* title-core 併記の span は除外（ブロック化すると（）が必ず次行になる） */
  .page-home-newsbar__title:not(.page-home-newsbar__title-core) {
    display: block;
    width: 100%;
    min-width: 0;
    white-space: normal;
    overflow: visible;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    flex: none;
  }
  .page-home-newsbar__main--nolink .page-home-newsbar__title {
    margin-top: 15px;
  }
  .page-home-newsbar__link.js-newsbar-with-tail.page-home-newsbar__link--sp-clamp .page-home-newsbar__pdf-meta,
  .page-home-newsbar__link.js-newsbar-with-tail.page-home-newsbar__link--sp-clamp .page-home-newsbar__external-meta {
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
/*----------------------------------------
   top / Vision
----------------------------------------*/
.page-home-vision {
  position: relative;
  overflow: hidden;
  background: #f0f2f5;
}

.page-home-vision__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-home-vision__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(54.89% 54.89% at 50% 33.62%, #ffffff 25%, rgba(255, 255, 255, 0.4) 100%);
}

.page-home-vision__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-home-vision__inner {
  position: relative;
  z-index: 2;
}

.page-home-vision__grid {
  display: flex;
  gap: 120px;
  align-items: start;
  padding: 100px 0 164px;
}

.page-home-vision__title {
  margin: 0;
  font-size: clamp(22px, 1.5238095238vw + 16.0571428571px, 38px);
  font-weight: 700;
  line-height: 1.9473684211;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

.page-home-vision__body {
  flex: 1;
  padding-top: 55px;
}

.page-home-vision__lead {
  margin: 0;
  font-size: clamp(15px, 0.6666666667vw + 12.4px, 22px);
  line-height: 1.8181818182;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-shadow: 0px 0px 60px 0px #ffffff;
}

.page-home-vision__cta {
  margin-top: 50px;
  text-align: right;
}

.page-home-vision__marquee-container {
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  z-index: 1;
}

.page-home-vision__marquee {
  position: relative;
  z-index: 1;
}

/* 右→左に流れる無限ループ（同一文を2連でシーム接続） */
.page-home-vision__marquee-track {
  display: flex;
  width: max-content;
  animation: page-home-vision-marquee 105s linear infinite;
}

.page-home-vision__marquee-chunk {
  flex-shrink: 0;
  padding-right: 80px;
}

.page-home-vision__marquee-text {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 160px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .page-home-vision__marquee-track {
    animation: none;
  }
}
@keyframes page-home-vision-marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .page-home-vision {
    position: relative;
    overflow: hidden;
    background: #f0f2f5;
  }
  .page-home-vision__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .page-home-vision__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(54.89% 54.89% at 50% 33.62%, #ffffff 25%, rgba(255, 255, 255, 0.4) 100%);
  }
  .page-home-vision__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .page-home-vision__inner {
    position: relative;
    z-index: 2;
  }
  .page-home-vision__grid {
    flex-direction: column;
    gap: 50px;
    padding: 80px 0 120px;
  }
  .page-home-vision__title {
    line-height: 2.1818181818;
    text-shadow: 0 0 60px rgb(255, 255, 255);
  }
  .page-home-vision__body {
    flex: 1;
    padding-top: 0;
    width: 100%;
  }
  .page-home-vision__lead {
    line-height: 2;
    letter-spacing: 0.05em;
    text-shadow: unset;
  }
  .page-home-vision__cta {
    text-align: center;
  }
  .page-home-vision__marquee-container {
    bottom: -7px;
  }
  /* 右→左に流れる無限ループ（同一文を2連でシーム接続） */
  .page-home-vision__marquee-track {
    animation: page-home-vision-marquee 105s linear infinite;
  }
  .page-home-vision__marquee-text {
    font-size: 70px;
  }
}
/*----------------------------------------
   top / 会社情報（Corporate Information）
----------------------------------------*/
.page-home-company {
  background: #edf2f7;
  padding: 100px 0;
}

.page-home-company__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 20px;
}

.page-home-company__header-cta {
  flex-shrink: 0;
  margin: 12px 0 0;
}

.page-home-company__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home-company-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-home-company-card:hover {
  opacity: 0.7;
}

.page-home-company-card:hover .page-home-company-card__figure img {
  transform: scale(1.03);
}

.page-home-company-card__figure {
  position: relative;
  margin: 0 0 30px;
  aspect-ratio: 393/220;
  overflow: hidden;
}

.page-home-company-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

.page-home-company-card__label {
  display: block;
  font-size: clamp(20px, 0.380952381vw + 18.5142857143px, 24px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 768px) {
  .page-home-company {
    padding: 80px 0;
  }
  .page-home-company__header {
    display: contents;
  }
  .page-home-company__inner {
    display: grid;
  }
  .page-home-company__intro {
    order: 1;
  }
  .page-home-company__header-cta {
    margin: 50px 0 0;
    text-align: center;
    order: 3;
  }
  .page-home-company__cards {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 50px 0 0;
    order: 2;
  }
  .page-home-company-card__figure {
    margin: 0 0 20px;
    aspect-ratio: 350/184;
  }
}
/*----------------------------------------
   top / 事業紹介（Business）
----------------------------------------*/
.page-home-business {
  background: linear-gradient(90deg, #00265b 0%, #003680 100%);
  color: #ffffff;
  padding: 100px 0;
}

.page-home-business__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 60px;
}

.page-home-business .page-home__title-en {
  color: #ffffff;
}

.page-home-business__header-cta {
  flex-shrink: 0;
  margin: 12px 0 0;
}

.page-home-business__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.page-home-business-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
}

.page-home-business-card__media {
  width: 100%;
  aspect-ratio: 480/500;
  overflow: hidden;
}

.page-home-business-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

.page-home-business-card:hover .page-home-business-card__media img {
  transform: scale(1.04);
}

.page-home-business-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(102, 102, 102, 0.5) 100%);
  pointer-events: none;
}

.page-home-business-card__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 100px 20px 100px 40px;
}

.page-home-business-card__title {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(22px, 0.5714285714vw + 19.7714285714px, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-home-business-card__sub {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(14px, 0.380952381vw + 12.5142857143px, 18px);
}

@media (max-width: 767px) {
  .page-home-business {
    padding: 80px 0;
    display: grid;
  }
  .page-home-business .wrap {
    display: contents;
  }
  .page-home-business__header {
    display: contents;
  }
  .page-home-business__intro {
    order: 1;
    padding: 0 20px;
  }
  .page-home-business__header-cta {
    margin: 50px 0 0;
    text-align: center;
    order: 3;
    padding: 0 20px;
  }
  .page-home-business__grid {
    grid-template-columns: 1fr;
    order: 2;
    margin: 50px 0 0;
  }
  .page-home-business-card__media {
    aspect-ratio: 390/410;
  }
  .page-home-business-card__body {
    padding: 80px 20px 20px 20px;
  }
  .page-home-business-card__title {
    margin-bottom: 20px;
  }
}
/*----------------------------------------
   top / お知らせ（News）
----------------------------------------*/
.page-home-news {
  background: #ffffff;
  padding: 100px 0;
}

.page-home-news__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 40px;
  margin-bottom: 60px;
}

.page-home-news__header-cta {
  flex-shrink: 0;
  margin: 12px 0 0;
}

.page-home-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* クリック範囲・カード UI は template-parts/_news-archive-main.scss（page-news-archive-card）と同一 */
.page-home-news__item {
  min-width: 0;
}

.page-home-news .page-news-archive-card {
  border-bottom-color: #cbd5e0;
}

.page-home-news__empty {
  margin: 0;
  padding: 40px 15px;
  font-size: clamp(16px, 0.1904761905vw + 15.2571428571px, 18px);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .page-home-news {
    padding: 80px 0;
  }
  .page-home-news__inner {
    display: grid;
  }
  .page-home-news__header {
    display: contents;
  }
  .page-home-news__header-intro {
    order: 1;
    margin: 0 0 50px;
  }
  .page-home-news__header-cta {
    flex-shrink: 0;
    margin: 50px 0 0;
    text-align: center;
    order: 3;
  }
  .page-home-news__header-cta .btn {
    color: var(--color-accent);
    background: #fff;
    border: 1px solid var(--color-accent);
    transition: all 0.3s ease;
  }
  .page-home-news__header-cta .btn:hover {
    color: #fff;
    background: var(--color-accent);
  }
  .page-home-news__list {
    margin: 0;
    padding: 0;
    list-style: none;
    order: 2;
  }
  /* クリック範囲・カード UI は template-parts/_news-archive-main.scss（page-news-archive-card）と同一 */
  .page-home-news__item {
    min-width: 0;
  }
  .page-home-news .page-news-archive-card {
    border-bottom-color: #e8e8e8;
  }
  .page-home-news__list .page-news-archive-card:first-child {
    border-top: 1px solid #e8e8e8;
  }
}
/*----------------------------------------
   top / 採用情報（Recruit）
----------------------------------------*/
.page-home-recruit {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.page-home-recruit__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home-recruit__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home-recruit__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-home-recruit__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 38, 91, 0.6);
}

.page-home-recruit__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}

.page-home-recruit__content {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-home-recruit .page-home__title-en {
  color: #ffffff;
}

.page-home-recruit__main {
  text-align: center;
  margin: 10px 0 0;
}

.page-home-recruit__slogan {
  margin: 0 0 40px;
  font-size: clamp(18px, 1.1428571429vw + 13.5428571429px, 30px);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.page-home-recruit__btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px;
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  gap: 150px;
}

.page-home-recruit__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 115px;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.page-home-recruit__btn:hover {
  background: #ffffff;
  color: var(--color-accent);
}

.page-home-recruit__btn:hover::after {
  background-color: var(--color-accent);
}

.page-home-recruit__btn:hover .page-home-recruit__btn-icon::before {
  border-top-color: var(--color-accent);
  border-right-color: var(--color-accent);
}

.page-home-recruit__btn-label {
  font-size: clamp(18px, 0.7619vw + 15.0286px, 26px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.page-home-recruit__btn-sep {
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.55);
}

.page-home-recruit__btn-icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 29px;
}

.page-home-recruit__btn-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .page-home-recruit {
    position: relative;
    overflow: hidden;
    color: #ffffff;
  }
  .page-home-recruit .wrap {
    display: contents;
  }
  .page-home-recruit__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .page-home-recruit__bg picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .page-home-recruit__bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .page-home-recruit__overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 45.13%), linear-gradient(0deg, rgba(0, 38, 91, 0.3), rgba(0, 38, 91, 0.3));
  }
  .page-home-recruit__inner {
    position: relative;
    z-index: 1;
    padding: 80px 20px 60px;
  }
  .page-home-recruit__content {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0;
  }
  .page-home-recruit .page-home__title-en {
    color: #ffffff;
  }
  .page-home-recruit__main {
    text-align: center;
    margin: 30px 0 0;
  }
  .page-home-recruit__slogan {
    margin: 0 0 30px;
    letter-spacing: 0.05em;
  }
  .page-home-recruit__btn {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px 0 40px;
    background: var(--color-accent);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    gap: 0;
    width: 100%;
    max-width: 350px;
    height: 95px;
  }
  .page-home-recruit__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 73px;
    transform: translateY(-50%);
    width: 1px;
    height: 35px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .page-home-recruit__btn-icon {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 29px;
  }
  .page-home-recruit__btn-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transition: all 0.3s ease;
    transform: rotate(45deg);
  }
}
/*----------------------------------------
   top / グループ会社（Group Company）
----------------------------------------*/
.page-home-group {
  padding: 100px 0 0;
}

.page-home-group__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.page-home-group__header-cta {
  flex-shrink: 0;
}

.page-home-group__list {
  max-width: 1060px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(172px, 1fr));
  gap: 20px 50px;
}

.page-home-group__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.page-home-group__logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 172/121;
  margin: 0 auto;
  border: 1px solid #dddddd;
  box-sizing: border-box;
}

.page-home-group__logo-box img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.page-home-group__caption {
  margin: 0;
  max-width: 100%;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP";
  text-align: left;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .page-home-group {
    padding: 60px 0 0;
  }
  .page-home-group__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
  .page-home-group__header {
    display: contents;
  }
  .page-home-group__header-cta {
    order: 3;
    margin: 50px auto 0;
    min-width: 100%;
    text-align: center;
  }
  .page-home-group__list {
    max-width: 1060px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 50px;
  }
  .page-home-group__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    min-width: 0;
  }
  .page-home-group__logo-box {
    width: 33.3333333333vw;
    aspect-ratio: 130/98;
  }
  .page-home-group__caption {
    flex: 1;
  }
}
/*----------------------------------------
   top / サービス（Service ブランドカード）
----------------------------------------*/
.page-home-service {
  padding: 100px 0;
}

.page-home-service__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.page-home-service__header-cta {
  flex-shrink: 0;
}

.page-home-service__list {
  max-width: 1060px;
  margin: 50px auto 0;
  display: flex;
  gap: 20px 50px;
  justify-content: center;
}

.page-home-service__card {
  width: 505px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
  border: 1px solid #dddddd;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-home-service__card--aijo-solutions {
  padding: 0 46px 0 110px;
}

.page-home-service__card--smart-world-business {
  padding: 0 46px 0 50px;
}

.page-home-service__card:hover {
  border: 1px solid var(--color-accent);
}

.page-home-service__card:hover .page-home-service__arrow {
  transform: translateX(10px);
}

.page-home-service__card-main {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.page-home-service__logo-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.page-home-service__logo-wrap img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.page-home-service__arrow {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.page-home-service__arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .page-home-service__list {
    flex-direction: column-reverse;
    width: 100%;
  }
  .page-home-service__card {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .page-home-service {
    padding: 60px 0;
  }
  .page-home-service__header-cta {
    display: none;
  }
  .page-home-service__item {
    width: 100%;
  }
  .page-home-service__card {
    width: 100%;
  }
  .page-home-service__card--aijo-solutions {
    padding: 0 20px 0 20%;
  }
  .page-home-service__card--smart-world-business {
    padding: 0 20px 0 8.5714285714%;
  }
  .page-home-service__card--aijo-solutions .page-home-service__card-main {
    width: 43.5897435897vw;
  }
  .page-home-service__card--smart-world-business .page-home-service__card-main {
    width: 66.6666666667vw;
  }
  .page-home-service__logo-wrap {
    width: 100%;
  }
}
/* news/category page styles */
/*----------------------------------------
   news / お知らせ詳細（2カラム＋サイドバー）
   本文は the_content()（ブロックエディタ）のみ想定
----------------------------------------*/
.page-news-single .page-content {
  padding: 60px 0 100px;
}

.page-news-single__main {
  min-width: 0;
}

.page-news-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 40px;
}

.page-news-single__date {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  min-width: 105px;
}

.page-news-single__tag {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding: 5px 0;
  min-width: 120px;
  text-align: center;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.page-news-single__title {
  font-weight: 500;
  font-size: clamp(22px, 0.5714vw + 19.7714px, 28px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e8e8e8;
  padding: 0 0 40px;
  margin: 0 0 40px;
}

.page-news-single__footer {
  margin: 60px 0 0;
  text-align: center;
}

.page-news-single__back.btn {
  max-width: 100%;
}

/* ---- 本文（ブロックエディタ / the_content）----
   CMS想定: H2〜H4・リスト・表・引用・関連カード・ボタン・画像・動画
----------------------------------------*/
.page-news-single__content {
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--color-main);
  padding: 0 15px;
}

.page-news-single__content > *:first-child {
  margin-top: 0;
}

.page-news-single__content > *:last-child {
  margin-bottom: 0;
}

.page-news-single__content > * + * {
  margin-top: 20px;
}

.page-news-single__content p {
  margin: 0;
  font-size: clamp(16px, 0.1904761905vw + 15.2571428571px, 18px);
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-news-single__content > p + p {
  margin-top: 12px;
}

.page-news-single__content strong {
  font-weight: 700;
}

.page-news-single__content em {
  font-style: normal;
}

@media (max-width: 768px) {
  .page-news-single__content {
    padding: 0;
  }
}
/* Gutenberg color class */
.page-news-single__content .has-red-color,
.page-news-single__content .has-brand-secondary-color {
  color: #e60012;
}

.page-news-single__content .has-blue-color,
.page-news-single__content .has-brand-primary-color {
  color: #004098;
}

/* 本文リンク: p と同じ字体・色は本文に揃え、下線で区別（スクショ寄せ） */
.page-news-single__content a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-news-single__content a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* CMS: H2〜H4 */
.page-news-single__content h2,
.page-news-single__content h3,
.page-news-single__content h4,
.page-news-single__content .wp-block-heading {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

.page-news-single__content h2,
.page-news-single__content .wp-block-heading:where(h2) {
  margin: 0 0 24px;
}

.page-news-single__content h3,
.page-news-single__content .wp-block-heading:where(h3),
.page-news-single__content h4,
.page-news-single__content .wp-block-heading:where(h4) {
  margin: 0 0 16px;
}

.page-news-single__content h2:first-child,
.page-news-single__content > .wp-block-heading:first-child {
  margin-top: 0;
}

.page-news-single__content > * + h2,
.page-news-single__content > * + .wp-block-heading:where(h2) {
  margin-top: 50px;
}

.page-news-single__content > * + h3,
.page-news-single__content > * + .wp-block-heading:where(h3),
.page-news-single__content > * + h4,
.page-news-single__content > * + .wp-block-heading:where(h4) {
  margin-top: 28px;
}

/* 本文 p は 18px。見出しはいずれも本文以上で段差を付ける */
.page-news-single__content h2,
.page-news-single__content .wp-block-heading:where(h2) {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(21px, 0.2857142857vw + 19.8857142857px, 24px);
}

.page-news-single__content h2::before,
.page-news-single__content .wp-block-heading:where(h2)::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 1.5em;
  background: #004098;
}

.page-news-single__content h3,
.page-news-single__content .wp-block-heading:where(h3) {
  font-size: clamp(18px, 0.1904761905vw + 17.2571428571px, 20px);
}

.page-news-single__content h4,
.page-news-single__content .wp-block-heading:where(h4) {
  font-size: 16px;
}

/* CMS: リスト（箇条書き・番号） ※_common の list-style 解除 */
.page-news-single__content ul,
.page-news-single__content .wp-block-list:is(ul) {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.page-news-single__content ol,
.page-news-single__content .wp-block-list:is(ol) {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.page-news-single__content .wp-block-list {
  box-sizing: border-box;
}

.page-news-single__content li {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  padding-left: 16px;
}

.page-news-single__content li + li {
  margin-top: 5px;
}

.page-news-single__content ul > li::before,
.page-news-single__content .wp-block-list:is(ul) > li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-main);
}

.page-news-single__content ol {
  counter-reset: news-list-number;
}

.page-news-single__content ol > li,
.page-news-single__content .wp-block-list:is(ol) > li {
  counter-increment: news-list-number;
  padding-left: 22px;
}

.page-news-single__content ol > li::before,
.page-news-single__content .wp-block-list:is(ol) > li::before {
  content: counter(news-list-number) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

/* ブロックの追加クラス想定: 青リスト */
.page-news-single__content ul.is-blue > li::before,
.page-news-single__content .wp-block-list.is-blue:is(ul) > li::before,
.page-news-single__content .default_list.is-blue > li::before,
.page-news-single__content .default_list--blue > li::before,
.page-news-single__content .news-list-blue > li::before {
  background: #004098;
}

.page-news-single__content ol.is-blue > li::before,
.page-news-single__content .wp-block-list.is-blue:is(ol) > li::before,
.page-news-single__content .order_list.is-blue > li::before,
.page-news-single__content .order_list--blue > li::before,
.page-news-single__content .news-order-blue > li::before {
  color: #004098;
}

/* ブロックの追加クラス想定: 赤リスト */
.page-news-single__content ul.is-red > li::before,
.page-news-single__content .wp-block-list.is-red:is(ul) > li::before,
.page-news-single__content .default_list.is-red > li::before,
.page-news-single__content .default_list--red > li::before,
.page-news-single__content .news-list-red > li::before {
  background: #e60012;
}

.page-news-single__content ol.is-red > li::before,
.page-news-single__content .wp-block-list.is-red:is(ol) > li::before,
.page-news-single__content .order_list.is-red > li::before,
.page-news-single__content .order_list--red > li::before,
.page-news-single__content .news-order-red > li::before {
  color: #e60012;
}

/* CMS: 引用 */
.page-news-single__content blockquote,
.page-news-single__content .wp-block-quote {
  position: relative;
  margin: 1.5em 0;
  padding: 40px 60px;
  border: 1px solid #dddddd;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.page-news-single__content blockquote::before,
.page-news-single__content .wp-block-quote::before,
.page-news-single__content blockquote::after,
.page-news-single__content .wp-block-quote::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}

.page-news-single__content blockquote::before,
.page-news-single__content .wp-block-quote::before {
  top: 20px;
  left: 30px;
  background-image: url("../img/news/icon_quote_open.svg");
}

.page-news-single__content blockquote::after,
.page-news-single__content .wp-block-quote::after {
  right: 30px;
  bottom: 20px;
  background-image: url("../img/news/icon_quote_close.svg");
}

.page-news-single__content .wp-block-quote cite,
.page-news-single__content blockquote cite {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: inherit;
}

/* 引用内は本文 p より詰め、最終行の下余白なし。空 p は Gutenberg が出すことがあるので隠す */
.page-news-single__content blockquote p,
.page-news-single__content .wp-block-quote p {
  margin: 0 0 0.6em;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.page-news-single__content blockquote > :last-child,
.page-news-single__content .wp-block-quote > :last-child {
  margin-bottom: 0;
}

.page-news-single__content blockquote p:empty,
.page-news-single__content .wp-block-quote p:empty {
  display: none;
  margin: 0;
}

.page-news-single__content blockquote cite::before,
.page-news-single__content .wp-block-quote cite::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #c3c3c3;
  flex-shrink: 0;
}

.page-news-single__content blockquote cite > a,
.page-news-single__content .wp-block-quote cite > a {
  text-decoration: none;
  color: inherit;
}

.page-news-single__content .wp-block-quote:has(> p:last-child:empty) > p:nth-last-of-type(2),
.page-news-single__content blockquote:has(> p:last-child:empty) > p:nth-last-of-type(2) {
  margin-bottom: 0;
}

.page-news-single__content hr,
.page-news-single__content .wp-block-separator {
  margin: 2em 0;
  border: none;
  border-top: 1px solid #dddddd;
}

/* CMS: 表（FV装飾が透けないよう白背景） */
.page-news-single__content figure.wp-block-table {
  margin: 1.5em 0;
  overflow-x: auto;
  background-color: #fff;
}

.page-news-single__content table,
.page-news-single__content .wp-block-table table {
  width: 100%;
  min-width: 945px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background-color: #fff;
}

.page-news-single__content th,
.page-news-single__content td {
  padding: 24px 15px;
  border: 1px solid #dddddd;
  vertical-align: middle;
  text-align: center;
}

.page-news-single__content table tr:first-child > th,
.page-news-single__content table tr:first-child > td,
.page-news-single__content .wp-block-table table tr:first-child > th,
.page-news-single__content .wp-block-table table tr:first-child > td {
  background: #f6f6f6;
  font-weight: 500;
  padding: 14px 15px;
}

.page-news-single__content thead th {
  background: #f6f6f6;
  font-weight: 500;
  padding: 14px 15px;
}

.page-news-single__content tbody th,
.page-news-single__content tr > :first-child {
  font-weight: 500;
  width: 240px;
}

.page-news-single__content figure {
  margin: 2em 0;
}

.page-news-single__content .wp-block-image {
  margin: 2em 0;
  padding: 0 35px;
  box-sizing: border-box;
}

.page-news-single__content img,
.page-news-single__content .wp-block-image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.page-news-single__content .wp-block-image a img {
  transition: opacity 0.3s ease;
}

.page-news-single__content .wp-block-image a:hover img {
  opacity: 0.7;
}

.page-news-single__content figcaption,
.page-news-single__content .wp-element-caption {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05rem;
  color: #2b2b2b;
  text-align: center;
}

/* CMS: 動画（埋め込み・動画ブロック） */
.page-news-single__content .wp-block-embed {
  margin: 2em 0;
  padding: 0 35px;
  box-sizing: border-box;
}

.page-news-single__content .wp-block-embed iframe {
  width: 100%;
  max-width: 100%;
}

.page-news-single__content .wp-block-video {
  margin: 2em 0;
  padding: 0 35px;
  box-sizing: border-box;
}

.page-news-single__content .wp-block-video video {
  display: block;
  width: 100%;
  height: auto;
}

/* CMS: ボタン */
.page-news-single__content .wp-block-buttons {
  margin: 1.5em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.page-news-single__content .wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  max-width: 100%;
  height: 54px;
  padding: 0 20px 0 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #004098;
  background: #fff;
  border: 1px solid #004098;
  border-radius: 0 !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-news-single__content .wp-block-button .wp-block-button__link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(1px);
  flex-shrink: 0;
}

.page-news-single__content .wp-block-button .wp-block-button__link:hover {
  color: #fff;
  background: #004098;
  text-decoration: none;
}

.page-news-single__content .wp-block-button.is-style-fill .wp-block-button__link {
  color: #fff;
  background: #004098;
  border: 1px solid #004098;
}

.page-news-single__content .wp-block-button.is-style-fill .wp-block-button__link:hover {
  color: #004098;
  background: #fff;
}

/* CMS: 関連ページカード（ACF block） */
.page-news-single__content .news-related-cards {
  margin: 1.5em 0;
  padding: 0;
  list-style: none;
}

.page-news-single__content .news-related-cards__item {
  margin: 0;
  padding-left: 0;
}

.page-news-single__content .news-related-cards > li::before,
.page-news-single__content .news-related-cards__item::before {
  content: none;
}

.page-news-single__content a.news-related-cards__link {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #dddddd;
  text-decoration: none;
  color: var(--color-main);
  background: #fff;
  transition: opacity 0.3s ease;
}

.page-news-single__content .news-related-cards__thumb {
  width: 245px;
  height: 140px;
  flex-shrink: 0;
}

.page-news-single__content .news-related-cards__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news-single__content .news-related-cards__link:hover {
  opacity: 0.7;
}

.page-news-single__content .news-related-cards__body {
  flex: 1;
  min-width: 0;
  padding: 0 50px 0 40px;
  align-self: center;
}

.page-news-single__content .news-related-cards__title {
  display: block;
  margin: 0 0 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-news-single__content .news-related-cards__text {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #6c6c6c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .page-news-single__content a.news-related-cards__link {
    align-items: flex-start;
  }
  .page-news-single__content .news-related-cards__body {
    padding: 12px 20px 12px 16px;
  }
}
/* 仕様外: お問い合わせ等（カスタムHTML・グループで class 指定時） */
.page-news-single__content .news-single-contact {
  margin: 2.25em 0 0;
}

.page-news-single__content .news-single-contact__title {
  margin: 0 0 1em;
  text-align: center;
  font-weight: 700;
}

.page-news-single__content .news-single-contact__body {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.page-news-single__content .news-single-contact__body p {
  margin: 0 0 0.75em;
  font-size: 15px;
  line-height: 1.9;
}

.page-news-single__content .news-single-contact__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-news-single__content .wp-block-image,
  .page-news-single__content .wp-block-embed,
  .page-news-single__content .wp-block-video {
    padding-left: 0;
    padding-right: 0;
  }
  /* CMS: 引用（SP） */
  .page-news-single__content blockquote,
  .page-news-single__content .wp-block-quote {
    padding: 40px 25px;
    font-size: 16px;
    line-height: 1.8;
  }
  .page-news-single__content blockquote::before,
  .page-news-single__content .wp-block-quote::before {
    left: 18px;
  }
  .page-news-single__content blockquote::after,
  .page-news-single__content .wp-block-quote::after {
    right: 18px;
  }
  .page-news-single__content table,
  .page-news-single__content .wp-block-table table {
    min-width: 680px;
  }
  .page-news-single__content tbody th,
  .page-news-single__content tr > :first-child {
    width: 180px;
  }
  .page-news-single .page-news-archive__sidebar {
    display: none;
  }
  .page-news-single .page-content {
    padding: 60px 0;
  }
  .page-news-single__date {
    font-size: 14px;
    min-width: 82px;
  }
  .page-news-single__tag {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    padding: 5px 0;
    min-width: 120px;
  }
  .page-news-single__footer {
    margin-top: 50px;
  }
  .page-news-single__content a.news-related-cards__link {
    display: flex;
    flex-direction: column;
  }
  .page-news-single__content .news-related-cards__thumb {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    aspect-ratio: 245/140;
  }
  .page-news-single__content .news-related-cards__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-news-single__content .news-related-cards__body {
    flex: unset;
    min-width: 0;
    width: 100%;
    padding: 30px;
    align-self: center;
  }
}
/*----------------------------------------
   company / 会社情報（ハブ）
----------------------------------------*/
.page-company-hub .page-content {
  padding: 100px 0 0;
}

/* 企業理念・行動指針（ハブ先頭） */
.page-company-hub__intro {
  margin: 0 0 100px;
  padding: 0;
  text-align: center;
}

.page-company-hub__intro-block + .page-company-hub__intro-block {
  margin-top: 80px;
}

.page-company-hub__intro-en {
  font-family: var(--font-en);
  font-size: clamp(36px, 2.2857142857vw + 27.0857142857px, 60px);
  font-weight: 300;
  color: var(--color-accent);
  margin: 0 0 10px;
  line-height: 1;
}

.page-company-hub__intro-ja {
  margin: 0 0 20px;
  font-size: clamp(16px, 0.1905vw + 15.2571px, 18px);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  line-height: 2;
}

.page-company-hub__intro-body {
  margin: 0 auto;
}

.page-company-hub__intro-body p {
  margin: 0;
  font-size: clamp(16px, 0.380952381vw + 14.5142857143px, 20px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #333333;
  font-weight: 500;
}

/* comjoの取り組み CTA（画像＋パネル） */
.page-company-hub__initiatives-cta {
  margin: 0 0 80px;
}

.page-company-hub__initiatives-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 316px;
  gap: 120px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  height: 250px;
}

.page-company-hub__initiatives-figure {
  margin: 0;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.page-company-hub__initiatives-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.page-company-hub__initiatives-link:hover .page-company-hub__initiatives-figure img {
  transform: scale(1.03);
}

.page-company-hub__initiatives-panel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.page-company-hub__initiatives-label {
  font-size: clamp(18px, 0.381vw + 16.5143px, 22px);
  font-weight: 500;
  color: #333333;
  transition: color 0.3s ease;
}

.page-company-hub__initiatives-link:hover .page-company-hub__initiatives-label {
  color: var(--color-accent);
}

.page-company-hub__initiatives-arrow {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

.page-company-hub__initiatives-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(1px);
  box-sizing: border-box;
}

.page-company-hub__initiatives-link:focus {
  outline: none;
}

.page-company-hub__initiatives-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.page-company-hub__grid {
  list-style: none;
  margin: 0 0 120px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 386px), 1fr));
  gap: 50px 50px;
}

.page-company-hub__item {
  margin: 0;
}

.page-company-hub__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-company-hub__figure {
  margin: 0;
  aspect-ratio: 386/210;
  overflow: hidden;
}

.page-company-hub__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

.page-company-hub__card:hover .page-company-hub__img {
  transform: scale(1.04);
}

.page-company-hub__foot {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #dddddd;
}

.page-company-hub__label {
  font-weight: 500;
  font-size: clamp(18px, 0.381vw + 16.5143px, 22px);
  line-height: 1.5454545455;
  transition: all 0.3s ease;
  padding: 25px 0;
}

.page-company-hub__card:hover .page-company-hub__label {
  color: var(--color-accent);
}

.page-company-hub__arrow {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

.page-company-hub__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(1px);
  box-sizing: border-box;
}

.page-company-hub__card:focus {
  outline: none;
}

.page-company-hub__card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .page-company-hub .page-content {
    padding: 60px 0 0;
  }
  .page-company-hub__intro {
    margin: 0 0 60px;
  }
  .page-company-hub__intro-ja {
    margin: 0 0 15px;
  }
  .page-company-hub__intro-body p {
    line-height: 2;
  }
  .page-company-hub__intro-body-text + .page-company-hub__intro-body-text {
    margin-top: 20px;
  }
  .page-company-hub__intro-block + .page-company-hub__intro-block {
    margin-top: 60px;
  }
  .page-company-hub__initiatives-cta {
    margin: 0 0 60px;
  }
  /* comjoの取り組み: SP はグリッドのカード行（トップメッセージ等）と同じ見え方 */
  .page-company-hub__initiatives-link {
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    box-shadow: none;
    background-color: transparent;
  }
  /* 画像比率はグリッドの __figure（386/210）と同じ */
  .page-company-hub__initiatives-figure {
    aspect-ratio: 386/210;
    max-height: none;
  }
  .page-company-hub__initiatives-panel {
    position: static;
    transform: none;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    padding: 0;
    border-bottom: 1px solid #dddddd;
    gap: 15px;
  }
  .page-company-hub__initiatives-label {
    padding: 15px 0;
    line-height: 1.5454545455;
  }
  .page-company-hub__grid {
    margin: 0 0 60px;
  }
  .page-company-hub__label {
    padding: 15px 0;
  }
}
/*----------------------------------------
   company/initiatives
----------------------------------------*/
.page-company-initiatives__title-box {
  text-align: center;
}

.page-company-initiatives__title-box-en {
  font-size: clamp(48px, 3.4286vw + 34.6286px, 84px);
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #edf2f7;
  font-family: var(--font-en);
  font-weight: 300;
}

.page-company-initiatives__title-box-en.color-white {
  color: #fff;
}

.page-company-initiatives__title-box-ja {
  font-size: clamp(24px, 0.7619vw + 21.0286px, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: -15px 0 0;
}

.page-company-initiatives .page-content {
  padding: 100px 0 0;
}

@media (max-width: 768px) {
  .page-company-initiatives__title-box-ja {
    margin: -12px 0 0;
  }
  .page-company-initiatives .page-content {
    padding: 60px 0 0;
  }
}
/* page-company-initiatives__split */
.page-company-initiatives__split {
  display: grid;
  grid-template-columns: minmax(0, 750px) minmax(0, 1fr);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  gap: 80px;
}

.page-company-initiatives__figure {
  max-width: 750px;
  aspect-ratio: 750/440;
}

.page-company-initiatives__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-company-initiatives__split-body {
  position: relative;
  padding: 0 20px 0 0;
  overflow: hidden;
  max-width: 540px;
}

.page-company-initiatives__lead {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  font-size: clamp(20px, 0.380952381vw + 18.5142857143px, 24px);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.page-company-initiatives__text {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media (max-width: 1380px) {
  .page-company-initiatives__split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-company-initiatives__figure {
    margin: 0 auto;
  }
  .page-company-initiatives__split-body {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .page-company-initiatives__split {
    gap: 40px;
  }
  .page-company-initiatives__lead {
    letter-spacing: 0.03em;
    line-height: 1.6;
  }
  .page-company-initiatives__split-body {
    padding: 0 20px;
  }
}
/* page-company-initiatives__strengths */
.page-company-initiatives__strengths {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.page-company-initiatives__intro {
  margin: 45px 0 0;
  text-align: center;
}

.page-company-initiatives__strengths-sub {
  margin: 0 0 20px;
  font-size: clamp(18px, 0.381vw + 16.5143px, 22px);
  font-weight: 700;
  color: var(--color-accent);
}

.page-company-initiatives__strengths-lead {
  margin: 0 0 120px;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .page-company-initiatives__strengths {
    padding: 60px 0;
  }
  .page-company-initiatives__intro {
    margin: 30px 0 0;
  }
  .page-company-initiatives__strengths-lead {
    margin: 0 0 60px;
  }
}
/* page-company-initiatives__one-comjo */
.page-company-initiatives__one-comjo {
  margin: 0 0 120px;
  padding: 60px 60px;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-company-initiatives__one-comjo-heading {
  margin: 0 0 30px;
}

.page-company-initiatives__one-comjo-title-img {
  display: block;
  max-width: clamp(280px, 27.0833333333vw, 390px);
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.page-company-initiatives__one-comjo-desc {
  margin: 0 0 36px;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
}

.page-company-initiatives__one-comjo-diagram {
  max-width: 1032px;
  margin: 0 auto;
}

.page-company-initiatives__one-comjo-diagram-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-company-initiatives__one-comjo {
    margin: 0 0 60px;
    padding: 40px 20px;
  }
}
/* page-company-initiatives__services */
.page-company-initiatives__services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(393.33px, 100%), 1fr));
  gap: 40px;
  list-style: none;
  margin: 60px 0 60px;
  padding: 0;
}

.page-company-initiatives__services-figure {
  margin: 0 0 25px;
  overflow: hidden;
  aspect-ratio: 393.33/210;
  width: 100%;
}

.page-company-initiatives__services-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-company-initiatives__services-label {
  margin: 0;
  font-size: clamp(18px, 0.381vw + 16.5143px, 22px);
  font-weight: 500;
  text-align: center;
}

.page-company-initiatives__services-cta,
.page-company-initiatives__technology-cta {
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .page-company-initiatives__services-grid {
    gap: 40px 20px;
    margin: 50px 0 50px;
  }
  .page-company-initiatives__services-figure {
    margin: 0 0 15px;
  }
}
/* page-company-initiatives__technology */
.page-company-initiatives__technology {
  position: relative;
  padding: 120px 0 100px;
  background-color: #edf2f7;
  overflow: hidden;
}

.page-company-initiatives__technology-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.page-company-initiatives__technology .page-company-initiatives__title-box-ja {
  color: var(--color-main);
}

.page-company-initiatives__tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 100%;
  margin: 60px 0 0;
}

.page-company-initiatives__tech-card {
  position: relative;
  aspect-ratio: 360/400;
  overflow: hidden;
  z-index: 1;
}

.page-company-initiatives__tech-figure {
  margin: 0;
  height: 100%;
  position: relative;
  z-index: -1;
}

.page-company-initiatives__tech-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-blend-mode: multiply;
  z-index: 2;
}

.page-company-initiatives__tech-figure--drone::before {
  background: linear-gradient(180deg, rgba(23, 101, 123, 0.2) 0%, #17657b 100%);
}

.page-company-initiatives__tech-figure--heat::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.page-company-initiatives__tech-figure--robot::before {
  background: linear-gradient(180deg, rgba(21, 19, 78, 0.3) 0%, rgba(21, 19, 78, 0.5) 100%);
}

.page-company-initiatives__tech-figure--bear::before {
  background: linear-gradient(180deg, rgba(125, 203, 255, 0.6) 0%, rgba(75, 122, 153, 0) 40%), linear-gradient(180deg, rgba(102, 102, 102, 0.15) 0%, rgba(19, 32, 12, 0.75) 100%);
}

.page-company-initiatives__tech-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.page-company-initiatives__tech-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  z-index: 3;
}

.page-company-initiatives__tech-overlay-line {
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.page-company-initiatives__tech-overlay-cross {
  font-size: 34px;
  line-height: 36px;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  font-weight: 100;
}

.page-company-initiatives__technology-cta {
  margin-top: 60px;
}

@media (max-width: 1080px) {
  .page-company-initiatives__tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-company-initiatives__tech-card {
    aspect-ratio: 360/200;
  }
}
@media (max-width: 768px) {
  .page-company-initiatives__technology {
    padding: 80px 0 60px;
  }
  .page-company-initiatives__tech-grid {
    grid-template-columns: 1fr;
    margin: 50px 0 0;
  }
  .page-company-initiatives__tech-card {
    aspect-ratio: 360/160;
  }
  .page-company-initiatives__technology-cta {
    margin-top: 50px;
  }
}
/* page-company-initiatives__training */
.page-company-initiatives__training {
  position: relative;
  padding: 120px 0;
  background-color: #fff;
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
}

.page-company-initiatives__training-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 760px);
  gap: 80px;
  align-items: center;
  margin: 60px 0 0;
}

.page-company-initiatives__training-text {
  padding: 0 0 0 80px;
}

.page-company-initiatives__training-lead {
  font-size: clamp(20px, 0.4762vw + 18.1429px, 25px);
  font-weight: 500;
  margin: 0 0 40px;
}

.page-company-initiatives__training-body {
  margin: 0 0 50px;
  font-size: 14px;
}

.page-company-initiatives__training-cta {
  margin: 0;
}

.page-company-initiatives__training-figure {
  max-width: 760px;
  aspect-ratio: 760/360;
  overflow: hidden;
}

.page-company-initiatives__training-figure img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1380px) {
  .page-company-initiatives__training-split {
    grid-template-columns: 1fr;
  }
  .page-company-initiatives__training-text {
    order: 2;
    width: fit-content;
    margin: 0 auto;
    padding: 0 20px;
  }
  .page-company-initiatives__training-figure {
    order: 1;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .page-company-initiatives__training {
    padding: 60px 0;
  }
  .page-company-initiatives__training-split {
    gap: 40px;
    margin: 50px 0 0;
  }
  .page-company-initiatives__training-lead {
    margin: 0 0 20px;
  }
  .page-company-initiatives__training-body {
    margin: 0 0 30px;
  }
  .page-company-initiatives__training-cta {
    text-align: center;
  }
}
@media (max-width: 440px) {
  .sp_440 {
    display: none;
  }
}
/* page-company-initiatives__numbers */
.page-company-initiatives__numbers {
  position: relative;
  padding: 120px 0 100px;
  background-color: #edf2f7;
  overflow: hidden;
}

.page-company-initiatives__numbers-lead {
  margin: 45px 0 40px;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}

.page-company-initiatives__numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(413px, 100%), 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.page-company-initiatives__numbers-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 45px 15px 45px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px 0 rgba(52, 126, 213, 0.12);
  text-align: center;
  line-height: 1;
}

/* タイトルが1行でも2行分の高さを確保し、その箱の中央に寄せる → 各行で数値の縦位置が揃いやすい */
.page-company-initiatives__numbers-card-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 15px;
  font-size: clamp(20px, 0.5714vw + 17.7714px, 26px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  min-height: 57px;
}

.page-company-initiatives__numbers-card-label-foot {
  display: block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 10px 0 0;
}

.page-company-initiatives__numbers-card-value {
  margin: 0 0 20px;
}

.page-company-initiatives__numbers-num {
  font-size: clamp(70px, 1.9048vw + 62.5714px, 90px);
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  color: var(--color-accent);
  line-height: 1;
}

.page-company-initiatives__numbers-unit {
  margin: 0 0 0 10px;
  font-size: clamp(20px, 0.7619vw + 17.0286px, 28px);
  letter-spacing: 0.05em;
}

.page-company-initiatives__numbers-unit.numbers-unit--left {
  margin: 0 10px 0 0;
}

.page-company-initiatives__numbers-colon {
  font-size: clamp(50px, 1.9048vw + 42.5714px, 70px);
  margin: 0 5px;
}

.page-company-initiatives__numbers-card-foot {
  margin: 0;
  font-size: clamp(18px, 0.1905vw + 17.2571px, 20px);
  letter-spacing: 0.05em;
  min-height: 39px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.page-company-initiatives__numbers-card-foot.numbers-card-foot--small {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  max-width: 320px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 768px) {
  .page-company-initiatives__numbers {
    padding: 80px 0 60px;
  }
  .page-company-initiatives__numbers-lead {
    margin: 30px 0 40px;
  }
}
.company-links_company-initiatives {
  margin: 100px 0;
}

@media (max-width: 768px) {
  .company-links_company-initiatives {
    margin: 60px 0;
  }
}
/* company/philosophy page styles */
/* company/message page styles */
.page-company-message .page-content {
  padding: 20px 0 120px;
}

.page-company-message__body {
  margin: 0 auto;
}

.page-company-message__fv {
  position: relative;
  display: flex;
  margin: 0 auto 100px;
  overflow: hidden;
  max-width: 1260px;
}

.page-company-message__fv-wrap {
  padding: 0 20px;
}

.page-company-message__fv-copy {
  position: relative;
  z-index: 2;
  height: fit-content;
  margin: 0 -360px 0 0;
  padding: 100px 60px 70px;
  background: linear-gradient(162.38deg, #004098 0%, #007f98 60%, #8eb0c3 100%);
  color: #ffffff;
  min-width: 620px;
}

.page-company-message__fv-lead {
  margin: 0 0 70px;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-company-message__fv-role {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-company-message__fv-name-image {
  margin: 0;
  width: 120px;
}

.page-company-message__fv-name-row {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}

.page-company-message__fv-name-image img {
  display: block;
  width: 100%;
  height: auto;
}

.page-company-message__fv-name-en {
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  font-family: var(--font-en);
}

.page-company-message__fv-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 1000px;
  min-width: 1000px;
  aspect-ratio: 1000/550;
  margin: 40px 0 0 0;
}

.page-company-message__fv-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 本文セクション（画像なし・テキストのみ） */
.page-company-message__section {
  margin: 0 0 60px;
}

.page-company-message__section:last-child {
  margin-bottom: 0;
}

.page-company-message__section-body {
  padding: 0 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-company-message__section-title {
  padding: 0 0 23px;
  margin: 0 0 36px;
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
}
.page-company-message__section-title::before {
  content: "";
  display: block;
  width: 39px;
  height: 1px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 0;
}

.page-company-message__section-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-main);
  max-width: none;
}

.page-company-message__section-text + .page-company-message__section-text {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .page-company-message .page-content {
    padding: 0 0 80px;
  }
  .page-company-message__fv-wrap {
    padding: 0;
  }
  .page-company-message__fv {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 80px;
    overflow: visible;
    max-width: 800px;
  }
  .page-company-message__fv-copy {
    width: fit-content;
    min-width: 0;
    margin: -50px 0 0;
    padding: 50px 70px 40px 40px;
    order: 2;
  }
  .page-company-message__fv-lead {
    margin-bottom: 40px;
    font-size: 22px;
  }
  .page-company-message__fv-role {
    font-size: 12px;
  }
  .page-company-message__fv-name-row {
    gap: 20px;
  }
  .page-company-message__fv-name-image {
    width: 100px;
  }
  .page-company-message__fv-name-en {
    font-size: 12px;
    margin-bottom: 0;
  }
  .page-company-message__fv-figure {
    width: auto;
    min-width: 0;
    transform: none;
    aspect-ratio: 390/400;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .page-company-message__section {
    margin: 0 0 60px;
  }
  .page-company-message__section-body {
    max-width: none;
    padding: 0 20px;
  }
  .page-company-message__section-title {
    font-size: 20px;
  }
  .page-company-message__section-text {
    font-size: 16px;
  }
}
/* company / 会社概要 — 募集要項と同じテーブル用クラスを流用。左列は中央揃えにしない */
.page-recruit-job--company-overview .page-recruit-job__head {
  text-align: left;
}

/*----------------------------------------
   company / 役員紹介・組織図（page-templates/company-organization.php）
----------------------------------------*/
.page-company-organization .page-content {
  padding: 60px 0 100px;
}

.page-company-organization__exec {
  padding: 0 0 120px;
}

.page-company-organization__chart-block {
  padding: 0 0 120px;
}

.page-company-organization__section-title {
  font-weight: 700;
  font-size: clamp(26px, 0.5714vw + 23.7714px, 32px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 40px;
}

.page-company-organization__section-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin: 8px auto 0;
  background-color: var(--color-accent);
}

.page-company-organization__exec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 10px 120px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid #dddddd;
}

.page-company-organization__exec-role {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #000;
}

.page-company-organization__exec-names {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #2b2b2b;
}

.page-company-organization__chart {
  max-width: 800px;
  margin: 0 auto;
}

.page-company-organization__chart picture {
  display: block;
}

.page-company-organization__chart img {
  display: block;
  width: 100%;
  height: auto;
}

.page-company-organization__chart-note {
  margin: 0 40px 0 0;
  font-weight: 500;
  font-size: 14px;
  text-align: right;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .page-company-organization .page-content {
    padding: 60px 0 60px;
  }
  .page-company-organization__exec {
    padding: 0 0 60px;
  }
  .page-company-organization__chart-block {
    padding: 0 0 60px;
  }
  .page-company-organization__exec-row {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .page-company-organization__exec-role {
    font-size: 14px;
  }
  .page-company-organization__exec-names {
    font-size: 14px;
  }
  .page-company-organization__chart-note {
    font-size: 12px;
  }
  .page-company-organization__chart {
    max-width: 400px;
  }
}
/*----------------------------------------
   company/locations
----------------------------------------*/
.page-company-locations__list {
  padding: 0 0 100px;
}

.page-company-locations__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 30px 60px;
  padding: 60px 0;
  border-bottom: 1px solid #e8e8e8;
}

.page-company-locations__info > :last-child {
  margin-bottom: 0;
}

.page-company-locations__name {
  margin: 0 0 10px;
  font-size: clamp(20px, 0.5714vw + 17.7714px, 26px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.page-company-locations__label {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.page-company-locations__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

/* 番号付きアクセス行：折り返し時は本文の左端を揃える（番号は左列に固定） */
.page-company-locations__access-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.page-company-locations__access-line {
  display: flex;
  align-items: flex-start;
  margin: 0;
  gap: 8px;
}

.page-company-locations__access-line + .page-company-locations__access-line {
  margin-top: 0.35em;
}

.page-company-locations__access-num {
  flex-shrink: 0;
}

.page-company-locations__access-txt {
  flex: 1;
  min-width: 0;
}

.page-company-locations__map {
  width: 100%;
  aspect-ratio: 480/270;
  border-radius: 12px;
  overflow: hidden;
}

.page-company-locations__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .page-company-locations__item {
    grid-template-columns: 1fr;
  }
  .page-company-locations__info {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }
  .page-company-locations__map {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .page-company-locations__list {
    padding: 0 0 60px;
  }
  .page-company-locations__item {
    padding: 40px 0;
  }
  .page-company-locations__item:first-of-type {
    padding: 0 0 40px;
  }
}
/*----------------------------------------
   company / 沿革
----------------------------------------*/
.page-company-history__timeline {
  list-style: none;
  margin: 0 0 100px;
  padding: 0;
}

.page-company-history__entry {
  position: relative;
  margin: 0;
}

/* 枠と枠のあいだ＝コネクタの高さ */
.page-company-history__entry:not(:last-child) {
  margin-bottom: 20px;
}

.page-company-history__entry:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 92px;
  width: 3px;
  height: 24px;
  transform: translateX(-50%);
  background-color: rgba(230, 0, 18, 0.4);
}

.page-company-history__card {
  display: flex;
  gap: 20px 60px;
  align-items: center;
  margin: 0;
  padding: 21px 60px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1215686275);
}

/* 数字のみ大きく、接尾辞（年 等）は小さく */
.page-company-history__year {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 2px;
  color: var(--color-accent);
  min-width: 67px;
}

.page-company-history__year-num {
  font-weight: 700;
  font-size: clamp(20px, 0.381vw + 18.5143px, 24px);
  line-height: 1.6;
  color: var(--color-accent);
}

.page-company-history__year-suffix {
  font-weight: 700;
  font-size: 10px;
}

.page-company-history__text {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #000000;
}

@media (max-width: 768px) {
  .page-company-history__timeline {
    margin: 0 0 60px;
  }
  .page-company-history__entry:not(:last-child)::after {
    left: 46px;
  }
  .page-company-history__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 20px;
  }
}
/*----------------------------------------
   company/group
----------------------------------------*/
.page-company-group__content {
  padding: 0 0 100px;
}

.page-company-group__item {
  display: grid;
  grid-template-columns: minmax(220px, 368px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #e8e8e8;
}

.page-company-group__logo-wrap {
  width: 100%;
  aspect-ratio: 368/207;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-company-group__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-company-group__info > :last-child {
  margin-bottom: 0;
}

.page-company-group__name {
  margin: 0 0 20px;
  font-size: clamp(20px, 0.1905vw + 19.2571px, 22px);
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 10px 0 0;
}

.page-company-group__name-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.page-company-group__name-link:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.page-company-group__name-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: 8px;
  object-fit: contain;
}

.page-company-group__info-item {
  margin: 0 0 12px;
}

.page-company-group__label {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.page-company-group__text {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.page-company-group__text-wrap {
  margin: 12px 0 0;
}

@media (max-width: 1080px) {
  .page-company-group__item {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .page-company-group__logo-wrap {
    max-width: 368px;
    margin: 0 auto;
  }
  .page-company-group__name {
    padding: 0;
  }
  .page-company-group__info {
    max-width: 592px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .page-company-group__item {
    padding: 28px 0;
  }
  .page-company-group__name-link {
    display: block;
  }
  .page-company-group__name-icon {
    margin-left: 0;
    transform: translateY(2px);
  }
}
/*----------------------------------------
   company / sustainability
----------------------------------------*/
.page-company-sustainability .page-content {
  padding: 60px 0 120px;
}

@media (max-width: 768px) {
  .page-company-sustainability .page-content {
    padding: 60px 0 80px;
  }
}
.page-company-sustainability__intro {
  display: grid;
  grid-template-columns: minmax(0, 750px) minmax(0, 1fr);
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.page-company-sustainability__intro-figure {
  margin: 0;
  aspect-ratio: 750/440;
  max-width: 750px;
}

.page-company-sustainability__intro-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-company-sustainability__intro-body {
  padding: 45px 20px 0 0;
  max-width: 540px;
}

.page-company-sustainability__intro-title {
  margin: 0 0 30px;
  font-size: clamp(20px, 0.4761904762vw + 18.1428571429px, 25px);
  line-height: 1.92;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: var(--color-accent);
}

.page-company-sustainability__intro-text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 1380px) {
  .page-company-sustainability__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-company-sustainability__intro-figure {
    margin: 0 auto;
  }
  .page-company-sustainability__intro-body {
    margin: 0 auto;
    padding: 0 20px;
  }
}
.page-company-sustainability__title-box {
  text-align: center;
}

.page-company-sustainability__title-box-en {
  font-size: clamp(40px, 4.1904761905vw + 23.6571428571px, 84px);
  line-height: 1;
  text-transform: uppercase;
  color: #edf2f7;
  text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
  font-family: var(--font-en);
  font-weight: 300;
}

.page-company-sustainability__title-box-ja {
  font-size: clamp(19px, 1.2380952381vw + 14.1714285714px, 32px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: clamp(-23px, -1.5972222222vw, -13px) 0 0;
}

.page-company-sustainability__message {
  padding: 120px 0 120px;
}

.page-company-sustainability__message-lead {
  margin: 35px 0 0;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}

.page-company-sustainability__message-grid {
  margin-top: 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 550px);
  gap: 80px;
}

.page-company-sustainability__block-title {
  padding: 0 0 23px;
  margin: 0 0 40px;
  font-size: clamp(19px, 0.2857142857vw + 17.8857142857px, 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
}

.page-company-sustainability__block-title::after {
  content: "";
  display: block;
  width: 39px;
  height: 1px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 0;
}

.page-company-sustainability__message-text {
  margin: 0 0 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-company-sustainability__message-text + .page-company-sustainability__message-text {
  margin-top: 20px;
}

.page-company-sustainability__declaration-list {
  margin: 30px 0 0;
  padding: 30px;
  list-style: disc;
  border: 1px solid #dddddd;
}

.page-company-sustainability__declaration-list li {
  margin: 0 0 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  list-style: disc;
  margin: 0 0 0 1em;
}

.page-company-sustainability__declaration-list li:last-child {
  margin-bottom: 0;
}

.page-company-sustainability__message-figure {
  margin: 0;
  max-width: 550px;
}

.page-company-sustainability__message-figure > img {
  width: 100%;
  aspect-ratio: 550/420;
  object-fit: cover;
}

.page-company-sustainability__message-figure figcaption {
  margin-top: 50px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-company-sustainability__message-company {
  display: inline-block;
}

.page-company-sustainability__message-company-box {
  width: fit-content;
  margin: 0 0 0 auto;
}

.page-company-sustainability__message-ceo-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 15px;
}

.page-company-sustainability__message-ceo-title {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-company-sustainability__message-ceo-sign {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
  line-height: 1;
}

.page-company-sustainability__message-ceo-sign img {
  display: block;
  width: 120px;
  height: auto;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 1280px) {
  .page-company-sustainability__message-grid {
    grid-template-columns: 1fr;
  }
  .page-company-sustainability__message-body {
    margin: 0 auto;
    max-width: 550px;
  }
  .page-company-sustainability__message-text {
    margin: 0 0 0;
    font-size: 14px;
    line-height: 2;
  }
  .page-company-sustainability__message-text + .page-company-sustainability__message-text {
    margin-top: 20px;
  }
  .page-company-sustainability__declaration-list {
    margin: 30px 0 0;
    padding: 30px;
    list-style: disc;
    border: 1px solid #dddddd;
  }
  .page-company-sustainability__declaration-list li {
    margin: 0 0 0;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
    list-style: disc;
    margin: 0 0 0 1em;
  }
  .page-company-sustainability__declaration-list li:last-child {
    margin-bottom: 0;
  }
  .page-company-sustainability__message-figure {
    margin: 0 auto;
  }
  .page-company-sustainability__message-figure > img {
    width: 100%;
    aspect-ratio: 550/420;
    object-fit: cover;
  }
  .page-company-sustainability__message-figure figcaption {
    margin-top: 50px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .page-company-sustainability__message-company {
    display: inline-block;
  }
  .page-company-sustainability__message-company-box {
    width: fit-content;
    margin: 0 0 0 auto;
  }
  .page-company-sustainability__message-ceo-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
  }
  .page-company-sustainability__message-ceo-title {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .page-company-sustainability__message-ceo-sign {
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
    line-height: 1;
  }
  .page-company-sustainability__message-ceo-sign img {
    display: block;
    width: 120px;
    height: auto;
    max-width: none;
    aspect-ratio: auto;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .page-company-sustainability__message {
    padding: 60px 0 60px;
  }
  .page-company-sustainability__message-grid {
    margin-top: 60px;
    gap: 40px;
  }
}
.page-company-sustainability__initiatives {
  background-color: #edf2f7;
  padding: 120px 0 100px;
}

.page-company-sustainability__initiatives-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-company-sustainability__initiatives .page-company-sustainability__title-box-en {
  color: #fff;
  text-shadow: none;
}

.page-company-sustainability__initiatives-list {
  margin-top: 60px;
}

.page-company-sustainability__initiatives-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 760px);
  gap: 80px;
  align-items: stretch;
}

.page-company-sustainability__initiatives-item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-company-sustainability__initiatives-title {
  margin: 0 0 35px;
  font-size: clamp(20px, 0.4761904762vw + 18.1428571429px, 25px);
  font-weight: 500;
  line-height: 1.44;
}

.page-company-sustainability__initiatives-item-text p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-company-sustainability__initiatives-item-figure {
  margin: 0;
  max-width: 760px;
}

.page-company-sustainability__initiatives-item-figure img {
  width: 100%;
  aspect-ratio: 760/360;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .page-company-sustainability__initiatives-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
  }
  .page-company-sustainability__initiatives-item + .page-company-sustainability__initiatives-item {
    margin-top: 60px;
  }
  .page-company-sustainability__initiatives-item-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2;
    margin: 0 auto;
    max-width: 760px;
  }
  .page-company-sustainability__initiatives-title {
    margin: 0 0 20px;
    font-size: clamp(20px, 0.4761904762vw + 18.1428571429px, 25px);
    font-weight: 500;
    line-height: 1.44;
  }
  .page-company-sustainability__initiatives-item-text p {
    margin: 0;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .page-company-sustainability__initiatives-item-figure {
    margin: 0 auto;
  }
  .page-company-sustainability__initiatives-item-figure img {
    width: 100%;
    aspect-ratio: 760/360;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .page-company-sustainability__initiatives {
    padding: 80px 0 60px;
  }
}
.page-company-sustainability__policy {
  padding: 120px 0 0;
}

.page-company-sustainability__policy-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-company-sustainability__policy-lead {
  margin: 35px 0 60px;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}

.page-company-sustainability__policy-subtitle {
  margin: 0 0 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dce3ea;
  font-size: clamp(22px, 1.1428571429vw + 17.5428571429px, 34px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.page-company-sustainability__policy-chart {
  margin: 0 auto 80px;
  max-width: 600px;
}

.page-company-sustainability__policy-chart img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-company-sustainability__policy-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.page-company-sustainability__policy-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #dddddd;
  padding: 0 30px;
  height: 84px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  background: #fff;
  transition: all 0.3s ease;
}

.page-company-sustainability__policy-link span {
  flex: 1;
}

.page-company-sustainability__policy-link img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.page-company-sustainability__policy-link:hover {
  color: #fff;
  border-color: var(--color-accent);
  background: var(--color-accent);
}

@media (max-width: 900px) {
  .page-company-sustainability__policy-links {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin: 0 auto;
  }
  .page-company-sustainability__policy-link {
    gap: 16px;
    padding: 20px 20px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .page-company-sustainability__policy {
    padding: 80px 0 0;
  }
  .page-company-sustainability__policy-chart {
    margin: 0 auto 40px;
  }
}
.sp_450 {
  display: none;
}

@media (max-width: 450px) {
  .sp_450 {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*----------------------------------------
   事業紹介トップ（page-templates/service.php）
----------------------------------------*/
.page-service-hub .page-content {
  padding: 0;
}

/* ---- 多分野セクション（テキスト＋画像） ---- */
.page-service-domains {
  position: relative;
  padding: 80px 0;
  overflow: clip;
}

.page-service-domains__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 60px 140px;
  align-items: center;
  margin: 0 44px 0 0;
}

.page-service-domains__title {
  font-weight: 500;
  font-size: clamp(20px, 0.7619047619vw + 17.0285714286px, 28px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--color-accent);
  margin: 0 0 30px;
}

.page-service-domains__lead {
  max-width: 576px;
  font-weight: 500;
  font-size: clamp(16px, 0.380952381vw + 14.5142857143px, 20px);
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-service-domains__viz {
  max-width: 500px;
  width: 100%;
  aspect-ratio: 1/1;
}

.page-service-domains__viz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1280px) {
  .page-service-domains {
    padding: 60px 0 80px;
  }
  .page-service-domains__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin: 0;
  }
  .page-service-domains__title {
    margin: 0 0 25px;
  }
  .page-service-domains__text {
    order: 2;
    margin: 0 auto;
  }
  .page-service-domains__viz {
    margin: 0 auto;
    order: 1;
  }
}
/* ---- 濃青帯：画像＋テキスト＋詳細ボタン（4行） ---- */
.page-service-rows {
  background: linear-gradient(126.67deg, #00265b -0.01%, #003680 81.6%);
  color: #fff;
  padding: 120px 0;
}

.page-service-rows__inner {
  max-width: 960px;
  margin: 0 auto;
}

.page-service-rows__title {
  margin: 0 0 60px;
  font-weight: 700;
  font-size: clamp(24px, 0.7619047619vw + 21.0285714286px, 32px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

.page-service-rows__list {
  display: grid;
  gap: 40px;
}

.page-service-rows__row {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px 60px;
  align-items: center;
}

.page-service-rows__media {
  aspect-ratio: 400/210;
  overflow: hidden;
}

.page-service-rows__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.page-service-rows__body {
  min-width: 0;
}

.page-service-rows__name {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: clamp(20px, 0.1905vw + 19.2571px, 22px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
}

.page-service-rows__text {
  margin: 0 0 35px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.btn.page-service-rows__btn {
  border: 1px solid #fff;
}

@media (max-width: 900px) {
  .page-service-rows {
    padding: 60px 0 80px;
  }
  .page-service-rows__title {
    margin: 0 0 40px;
  }
  .page-service-rows__list {
    gap: 60px;
  }
  .page-service-rows__row {
    grid-template-columns: 1fr;
  }
  .page-service-rows__media {
    aspect-ratio: 350/183.75;
  }
  .page-service-rows__name {
    text-align: center;
  }
  .page-service-rows__text {
    margin: 0 0 25px;
  }
  .page-service-rows__btn-wrap {
    text-align: center;
  }
}
/* ---- 活用事例（2×2カード） ---- */
.page-service-usecases {
  padding: 80px 0;
  background-color: #fff;
}

.page-service-usecases__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-service-usecases__title {
  margin: 0 0 60px;
  font-weight: 700;
  font-size: clamp(24px, 0.7619047619vw + 21.0285714286px, 32px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

.page-service-usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-service-usecases__card {
  margin: 0;
  height: 100%;
}

.page-service-usecases__figure {
  max-width: 610px;
  width: 100%;
  margin: 0 0 20px;
  aspect-ratio: 610/290;
  overflow: hidden;
}

.page-service-usecases__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.page-service-usecases__name {
  margin: 0 0 25px;
  font-weight: 700;
  font-size: clamp(20px, 0.5714vw + 17.7714px, 26px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 0 12px;
  border-bottom: 1px solid #e8e8e8;
}

.page-service-usecases__text {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .page-service-usecases {
    padding: 60px 0 80px;
  }
  .page-service-usecases__inner {
    max-width: 610px;
    padding: 0;
  }
  .page-service-usecases__title {
    margin: 0 0 40px;
  }
  .page-service-usecases__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .page-service-usecases__figure {
    max-width: 100%;
    aspect-ratio: 390/185.41;
  }
  .page-service-usecases__name {
    padding: 0 0 15px;
    margin: 0 20px 25px;
  }
  .page-service-usecases__text {
    padding: 0 20px;
  }
}
/*----------------------------------------
   事業紹介：インフラ構築・運用（page-templates/service-infrastructure.php）
----------------------------------------*/
.page-service-public-telecom .icon-card-row__list.icon-card-row__list--infrastructure {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .page-service-public-telecom .icon-card-row__list.icon-card-row__list--infrastructure {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .page-service-public-telecom .icon-card-row__list.icon-card-row__list--infrastructure {
    grid-template-columns: 1fr;
  }
}
/*----------------------------------------
   事業紹介：公共・通信システム開発
   page-templates/service-public-telecom.php
   コンテンツ順（先頭 content-block のみ template-parts）
----------------------------------------*/
/* --- ページ --- */
.page-service-public-telecom .page-content {
  padding: 60px 0 0;
}

/* --- 1. content-block（template-parts/content-block-public-telecom.php）→ template-parts/_content-block.scss --- */
/* --- 2. 解決する社会課題 --- */
.page-service-public-telecom .section-title-lg {
  margin: 0 0 60px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-main);
}

.page-service-public-telecom .icon-card-row {
  margin: 91px 0 100px;
}

.page-service-public-telecom .icon-card-row__inner {
  max-width: 1020px;
  margin: 0 auto;
}

.page-service-public-telecom .icon-card-row__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-service-public-telecom .icon-card-row__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  box-sizing: border-box;
  padding: 35px 30px 30px 30px;
  text-align: center;
  background: #f6f6f6;
  border: 1px solid #e8e8e8;
}

.page-service-public-telecom .icon-card-row__icon {
  flex-shrink: 0;
  display: block;
  width: 40px;
  height: 40px;
  margin: 0;
}

.page-service-public-telecom .icon-card-row__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-service-public-telecom .icon-card-row__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

@media (max-width: 1024px) {
  .page-service-public-telecom .icon-card-row__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .page-service-public-telecom .section-title-lg {
    font-size: 26px;
  }
  .page-service-public-telecom .icon-card-row__list {
    grid-template-columns: 1fr;
  }
}
/* --- 3. 提供サービス --- */
.page-service-public-telecom .service-card-grid {
  padding: 120px 0;
  background: #edf2f7;
}

.page-service-public-telecom .service-card-grid__inner {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-service-public-telecom .service-card-grid__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-service-public-telecom .service-card-grid__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #e8e8e8;
  background: #fff;
  padding: 40px;
  text-align: center;
}

.page-service-public-telecom .service-card-grid__num {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  margin: 0;
  font-family: var(--font-en);
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #0ca6ff 0%, #0565ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@supports not (background-clip: text) {
  .page-service-public-telecom .service-card-grid__num {
    color: #0565ff;
    background: none;
  }
}
.page-service-public-telecom .service-card-grid__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  gap: 20px;
}

.page-service-public-telecom .service-card-grid__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

.page-service-public-telecom .service-card-grid__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
  text-align: left;
}

@media (max-width: 768px) {
  .page-service-public-telecom .service-card-grid {
    padding: 72px 0;
  }
  .page-service-public-telecom .service-card-grid__list {
    grid-template-columns: 1fr;
  }
}
/* --- 4. 活用技術セクション直前のフル幅画像 --- */
.page-service-public-telecom .page-pt-solutions-bg {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1440/360;
}

.page-service-public-telecom .page-pt-solutions-bg img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- 5. 活用技術・ソリューション --- */
.page-pt-solutions {
  padding: 100px 0 100px;
}

.page-pt-solutions__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-pt-solutions__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  min-height: 100%;
  padding: 40px 40px 30px;
  background: #f6f6f6;
  border: 1px solid #e8e8e8;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-pt-solutions__item:hover {
  border: 1px solid var(--color-accent);
}

.page-pt-solutions__item-title {
  margin: 0 0 0.5em;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

.page-pt-solutions__item-text {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
  flex: 1;
}

.page-pt-solutions__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  margin-top: auto;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--color-main);
  pointer-events: none;
}

.page-pt-solutions__link-text {
  color: inherit;
}

/* カード全体ホバー: テキストのみアクセント＋下線（クリックは li 全体） */
.page-pt-solutions__item:hover .page-pt-solutions__link-text {
  color: var(--color-accent);
  text-decoration: underline;
}

/* 15×1px の線で構成した「+」（アクセントカラー） */
.page-pt-solutions__link-plus {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 15px;
  height: 15px;
}

.page-pt-solutions__link-plus::before,
.page-pt-solutions__link-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-accent);
}

.page-pt-solutions__link-plus::before {
  width: 15px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.page-pt-solutions__link-plus::after {
  width: 1px;
  height: 15px;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .page-pt-solutions {
    padding: 48px 0 56px;
  }
  .page-pt-solutions__list {
    grid-template-columns: 1fr;
  }
}
/* --- 6. 活用技術: モーダル --- */
.page-pt-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}

.page-pt-modal[hidden] {
  display: none;
}

body.is-pt-modal-open {
  overflow: hidden;
}

.page-pt-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.page-pt-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(92vw, 800px);
  max-height: min(85vh, 900px);
  overflow: auto;
  background: #fff;
  box-sizing: border-box;
}

/* 閉じる: SVG 16×16 相当の×を CSS（色は #004098 = --color-accent） */
.page-pt-modal__close {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 2;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.page-pt-modal__close::before,
.page-pt-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-pt-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.page-pt-modal__body {
  padding: 80px 60px 60px;
  box-sizing: border-box;
}

.page-pt-modal__panel {
  display: none;
}

.page-pt-modal__panel.is-active {
  display: block;
}

.page-pt-modal__p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000000;
  text-align: left;
}

.page-pt-modal__p:last-child {
  margin-bottom: 0;
}

/* --- 7. 活用事例 --- */
.page-pt-cases {
  padding: 120px 0 120px;
  background: linear-gradient(126.67deg, #00265b -0.01%, #003680 81.6%);
  box-sizing: border-box;
}

.page-pt-cases__inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-pt-cases .section-title-lg {
  color: #fff;
}

.page-pt-cases__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-pt-cases__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 60px;
}

.page-pt-cases__media {
  flex: 0 0 auto;
  width: 400px;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 400/210;
}

.page-pt-cases__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-pt-cases__text {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 20px;
}

.page-pt-cases__item-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
}

.page-pt-cases__item-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
}

@media (max-width: 900px) {
  .page-pt-cases__item {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .page-pt-cases__media {
    width: 100%;
  }
  .page-pt-cases__media img {
    height: auto;
    aspect-ratio: 400/210;
  }
}
@media (max-width: 768px) {
  .page-pt-cases {
    padding: 56px 0 64px;
  }
  .page-pt-cases__title {
    font-size: 26px;
    margin-bottom: 32px;
  }
}
/* --- 8. 関連情報（page-home-news 等は pages/top） --- */
.page-service-public-telecom .page-home-news__item:first-child .page-news-archive-card {
  border-top: 1px solid #e8e8e8;
}

/*----------------------------------------
   事業紹介：エンタープライズシステム開発（page-templates/service-enterprise.php）
----------------------------------------*/
/*----------------------------------------
   recruit / 採用情報（ハブ）
----------------------------------------*/
.page-recruit-hub .page-content {
  padding: 100px 0 0;
  overflow-x: visible;
}

.page-recruit-hub__grid {
  list-style: none;
  margin: 0 0 120px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.page-recruit-hub__item {
  margin: 0;
}

.page-recruit-hub__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-recruit-hub__figure {
  margin: 0;
  aspect-ratio: 393.33/290;
  overflow: hidden;
}

.page-recruit-hub__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-recruit-hub__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-recruit-hub__title {
  padding: 30px 0 15px;
  margin: 0 0 25px;
  font-size: clamp(22px, 0.380952381vw + 20.5142857143px, 26px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
}

.page-recruit-hub__lead {
  padding: 0 0 0 45px;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  position: relative;
}

.page-recruit-hub__lead::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #333333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.page-recruit-hub__text {
  margin: 0 0 30px;
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-recruit-hub__cta {
  width: 100%;
  min-width: 0;
  margin-top: auto;
}

@media (max-width: 900px) {
  .page-recruit-hub .page-content {
    padding: 60px 0 0;
  }
  .page-recruit-hub__grid {
    margin: 0 auto 80px;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 780px;
  }
  .page-recruit-hub__figure {
    aspect-ratio: 350/258;
  }
  .page-recruit-hub__title {
    padding: 25px 0 15px;
    margin: 0 0 25px;
  }
  .page-recruit-hub__text {
    margin: 0 0 25px;
  }
  .page-recruit-hub__cta {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}
/* ABOUT US（採用ハブ） */
.page-recruit-about {
  margin: 0 0 80px;
}

.page-recruit-message {
  margin: 0 0 120px;
}

.page-recruit-about__inner,
.page-recruit-message__inner {
  display: grid;
  grid-template-columns: 590px 1fr;
  gap: 0;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  min-height: 450px;
}

.page-recruit-about__label,
.page-recruit-message__label {
  margin: 0 0 20px;
  font-family: var(--font-en);
  font-size: clamp(16px, 0.380952381vw + 14.5142857143px, 20px);
  font-weight: 500;
  line-height: 1;
  color: var(--color-accent);
}

.page-recruit-about__title,
.page-recruit-message__title {
  margin: 0 0 40px;
  font-size: clamp(26px, 0.5714285714vw + 23.7714285714px, 32px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page-recruit-about__desc,
.page-recruit-message__desc {
  margin: 0 0 50px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-recruit-about__cta,
.page-recruit-message__cta {
  min-width: 300px;
}

.page-recruit-about__figure,
.page-recruit-message__figure {
  margin: 0;
  height: 100%;
}

.page-recruit-about__img,
.page-recruit-message__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-recruit-about__text,
.page-recruit-message__text {
  padding: 0 60px 0 70px;
}

@media (max-width: 1300px) {
  .page-recruit-about {
    margin: 0 0 80px;
  }
  .page-recruit-message {
    margin: 0 0 80px;
  }
  .page-recruit-about__inner,
  .page-recruit-message__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    max-width: 780px;
    margin: 0 auto;
  }
  .page-recruit-about__label,
  .page-recruit-message__label {
    margin: 40px 0 10px;
    line-height: 1.2;
  }
  .page-recruit-about__title,
  .page-recruit-message__title {
    margin: 0 0 20px;
    line-height: 1.6;
  }
  .page-recruit-about__desc,
  .page-recruit-message__desc {
    font-size: 16px;
  }
  .page-recruit-about__actions,
  .page-recruit-message__actions {
    text-align: center;
  }
  .page-recruit-about__cta,
  .page-recruit-message__cta {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    min-width: 0;
  }
  .page-recruit-about__figure,
  .page-recruit-message__figure {
    margin: 0;
    height: 100%;
  }
  .page-recruit-about__img,
  .page-recruit-message__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-recruit-about__text,
  .page-recruit-message__text {
    padding: 0 20px 30px 20px;
  }
}
/* comjoで働く・働く環境（採用ハブ・2カラム共通） */
.page-recruit-work,
.page-recruit-env {
  margin: 0 0 120px;
}

.page-recruit-work__inner,
.page-recruit-env__inner {
  display: grid;
  grid-template-columns: 1fr 760px;
  gap: 40px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.page-recruit-work__text,
.page-recruit-env__text {
  max-width: 600px;
  padding: 0 0 0 90px;
}

.page-recruit-work__title,
.page-recruit-env__title {
  margin: 0 0 30px;
  font-size: clamp(26px, 0.5714285714vw + 23.7714285714px, 32px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page-recruit-work__lead,
.page-recruit-env__lead {
  margin: 0 0 40px;
  font-size: clamp(22px, 0.380952381vw + 20.5142857143px, 26px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.page-recruit-work__desc,
.page-recruit-env__desc {
  margin: 0 0 50px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-recruit-work__actions,
.page-recruit-env__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.page-recruit-work__btn,
.page-recruit-env__btn {
  height: 59px;
}

.page-recruit-work__figure,
.page-recruit-env__figure {
  margin: 0;
  aspect-ratio: 760/360;
  overflow: hidden;
}

.page-recruit-work__img,
.page-recruit-env__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1300px) {
  .page-recruit-work,
  .page-recruit-env {
    margin: 0 0 80px;
    padding: 0 20px;
  }
  .page-recruit-work {
    padding: 0 20px;
  }
  .page-recruit-work__inner,
  .page-recruit-env__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 780px;
    margin: 0 auto;
  }
  .page-recruit-work__inner {
    padding: 0 0 60px;
    border-bottom: 1px solid #dddddd;
  }
  .page-recruit-work__text,
  .page-recruit-env__text {
    padding: 0;
    order: 2;
    max-width: 100%;
  }
  .page-recruit-work__title,
  .page-recruit-env__title {
    line-height: 1.6;
  }
  .page-recruit-work__lead,
  .page-recruit-env__lead {
    margin: 0 0 35px;
  }
  .page-recruit-work__desc,
  .page-recruit-env__desc {
    font-size: 16px;
  }
  .page-recruit-work__actions,
  .page-recruit-env__actions {
    grid-template-columns: 1fr;
  }
  .page-recruit-work__btn,
  .page-recruit-env__btn {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .page-recruit-work__figure,
  .page-recruit-env__figure {
    aspect-ratio: 350/165.79;
  }
}
/* 3列ビジュアル＋募集要項（画像は隙間なし） */
.page-recruit-triptych {
  margin: 120px 0 100px;
}

.page-recruit-triptych__images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.page-recruit-triptych__figure {
  margin: 0;
  aspect-ratio: 480/380;
  overflow: hidden;
}

.page-recruit-triptych__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-recruit-triptych__actions {
  margin-top: 120px;
}

.page-recruit-triptych__actions-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  justify-items: center;
}

.page-recruit-triptych__btn {
  min-width: 0;
  width: 100%;
}

@media (max-width: 900px) {
  .page-recruit-triptych {
    margin: 80px 0 80px;
  }
  .page-recruit-triptych__images {
    grid-template-columns: 1fr;
  }
  .page-recruit-triptych__figure {
    aspect-ratio: 390/200;
  }
  .page-recruit-triptych__actions {
    margin-top: 80px;
  }
  .page-recruit-triptych__actions-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }
  .page-recruit-triptych__btn {
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
  }
}
/*----------------------------------------
   recruit/job common
----------------------------------------*/
.page-recruit-job .page-content {
  padding: 100px 0 120px;
}

.page-recruit-job--company-overview .page-content {
  padding: 100px 0;
}

.page-recruit-job__section {
  margin-bottom: 100px;
}

.page-recruit-job__section-title {
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000000;
}

.page-recruit-job__card {
  background: #ffffff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px;
}

.page-recruit-job--company-overview .page-recruit-job__card {
  box-shadow: none;
  background-color: transparent;
  padding: 60px 0;
}

.page-recruit-job__table {
  width: 100%;
}

.page-recruit-job__row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 80px;
  padding: 30px 0;
  border-bottom: 1px solid #e8e8e8;
  align-items: center;
}

.page-recruit-job--company-overview .page-recruit-job__row {
  gap: 120px;
}

.page-recruit-job--company-overview .page-recruit-job__row {
  align-items: flex-start;
}

.page-recruit-job__head {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0 0 0 50px;
}

.page-recruit-job--company-overview .page-recruit-job__head {
  padding: 0;
}

.page-recruit-job__body {
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 0 50px 0 0;
}

.page-recruit-job__body a {
  color: var(--color-main);
  text-decoration: underline;
}

/* _common の list-style: none を上書き（CMSの番号付き・箇条書きを表示） */
.page-recruit-job__body ul,
.page-recruit-job__body .wp-block-list:is(ul) {
  margin: 0 0 1em;
  padding-left: 1.5em;
  list-style-type: disc;
  list-style-position: outside;
}

.page-recruit-job__body ol,
.page-recruit-job__body .wp-block-list:is(ol) {
  margin: 0 0 1em;
  padding-left: 1.5em;
  list-style-type: decimal;
  list-style-position: outside;
}

.page-recruit-job__body .wp-block-list {
  box-sizing: border-box;
}

.page-recruit-job__body li {
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* 会社概要のみ左列・本文とも 16px（募集要項は左列14px・本文14pxのまま） */
.page-recruit-job--company-overview .page-recruit-job__head {
  font-size: 16px;
}

/* 会社概要のみ本文 16px（募集要項は上記 14px のまま） */
.page-recruit-job--company-overview .page-recruit-job__body {
  font-size: 16px;
}

.page-recruit-job--company-overview .page-recruit-job__body li {
  font-size: 16px;
}

.page-recruit-job__body p {
  margin: 0 0 1.25em;
}

.page-recruit-job__body > :last-child {
  margin-bottom: 0;
}

.page-recruit-job__body p:last-child {
  margin-bottom: 0;
}

/* 段落とリストの境目の余白（ニュース詳細と同様の考え方） */
.page-recruit-job__body p:has(+ ul),
.page-recruit-job__body p:has(+ ol),
.page-recruit-job__body p:has(+ .wp-block-list:is(ul)),
.page-recruit-job__body p:has(+ .wp-block-list:is(ol)) {
  margin-bottom: 0;
}

.page-recruit-job__body ul:has(+ p),
.page-recruit-job__body ol:has(+ p),
.page-recruit-job__body .wp-block-list:is(ul):has(+ p),
.page-recruit-job__body .wp-block-list:is(ol):has(+ p) {
  margin-bottom: 0;
}

/* 段落の直後がピルボタンだけ、上方向の空き（= 直前 p の下マージン）を本文段落間よりやや詰める */
.page-recruit-job__body p:has(+ a.page-recruit-job__rich-btn),
.page-recruit-job__body p:has(+ p a.page-recruit-job__rich-btn) {
  margin-bottom: 0.5em;
}

/* リッチエディタ内リンクをピル型ボタンにする（例: Access map）— <a class="page-recruit-job__rich-btn" href="..."> */
/* 直上の空きは上記 p の margin-bottom。ボタン自体は margin 0 */
.page-recruit-job__body a.page-recruit-job__rich-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 4px 20px 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
}

.page-recruit-job__body a.page-recruit-job__rich-btn:hover {
  background-color: #ffffff;
  color: var(--color-accent);
}

.page-recruit-job--company-overview .page-recruit-job__body a.page-recruit-job__rich-btn {
  font-size: 16px;
}

.page-recruit-job__cta {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.page-recruit-job__cta--bottom {
  margin-top: 100px;
}

.page-recruit-job__results-heading {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
}

.page-recruit-job__results {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 14px;
}

.page-recruit-job__results-col-label {
  width: 27.2727272727%;
}

.page-recruit-job__results th,
.page-recruit-job__results td {
  border: 1px solid #d7d7d7;
  padding: 24px 0;
  vertical-align: middle;
}

.page-recruit-job__results thead th {
  background: #f7f7f7;
  font-weight: 500;
  text-align: center;
  padding: 13px 0;
}

.page-recruit-job__results thead .page-recruit-job__results-th-spacer {
  background: #f7f7f7;
}

.page-recruit-job__results tbody th {
  font-weight: 500;
  background: #ffffff;
}

.page-recruit-job__results tbody td {
  text-align: center;
  background: #ffffff;
}

.page-recruit-job__results-note {
  margin: 10px 0 0;
  text-align: right;
  font-size: 12px;
  font-weight: 500;
}

.page-recruit-job__results-note p {
  margin: 0;
}

.page-recruit-job__results-note p + p {
  margin-top: 0.5em;
}

@media (max-width: 900px) {
  .page-recruit-job__card {
    padding: 40px 20px;
  }
  .page-recruit-job--company-overview .page-recruit-job__card {
    padding: 40px 0;
  }
  .page-recruit-job__head {
    padding: 0 0 0 20px;
  }
  .page-recruit-job__row {
    gap: 20px;
  }
  .page-recruit-job--company-overview .page-recruit-job__row {
    gap: 20px;
  }
  .page-recruit-job__body {
    padding: 0 20px 0 0;
  }
  /* 中途採用実績テーブル：狭い幅では横スクロールで列の対応関係を保つ */
  .page-recruit-job__results-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .page-recruit-job__results-scroll .page-recruit-job__results {
    min-width: 480px;
    width: 100%;
  }
  .page-recruit-job__results-scroll .page-recruit-job__results th,
  .page-recruit-job__results-scroll .page-recruit-job__results td {
    padding: 10px 8px;
  }
}
@media (max-width: 768px) {
  .page-recruit-job .page-content {
    padding: 60px 0 60px;
  }
  .page-recruit-job--company-overview .page-content {
    padding: 60px 0;
  }
  .page-recruit-job__section {
    margin-bottom: 60px;
  }
  .page-recruit-job__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .page-recruit-job__body {
    padding: 0 20px;
  }
  .page-recruit-job__cta {
    flex-direction: column;
    gap: 20px;
  }
  .page-recruit-job__cta--bottom {
    margin-top: 50px;
  }
}
/* recruit/new-graduate page styles */
/* recruit/career page styles */
/* recruit/diversity page styles */
/* recruit/about page styles */
/*----------------------------------------
   recruit / 研修・教育制度
----------------------------------------*/
.page-recruit-training__intro {
  text-align: center;
  margin: 0 0 80px;
}

.page-recruit-training__intro-title {
  margin: 0 0 30px;
  font-size: clamp(20px, 0.7619047619vw + 17.0285714286px, 28px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--color-accent);
}

.page-recruit-training__intro-lead {
  margin: 0;
  font-size: clamp(16px, 0.380952381vw + 14.5142857143px, 20px);
  line-height: 1.9;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.page-recruit-training__card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 60px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-recruit-training__card {
  position: relative;
}

.page-recruit-training__card-bubble {
  margin: 0 0 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #c6ecff;
  font-size: clamp(18px, 0.380952381vw + 16.5142857143px, 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000000;
  height: 108px;
  width: 100%;
  position: relative;
  text-align: center;
}

.page-recruit-training__card-bubble::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 16px;
  background: #c6ecff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.page-recruit-training__card-body {
  z-index: 1;
}

@media (min-width: 901px) {
  @supports (grid-template-rows: subgrid) {
    .page-recruit-training__card-list {
      grid-template-rows: auto auto auto;
    }
    .page-recruit-training__card {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 3;
      align-content: start;
    }
    .page-recruit-training__card-bubble {
      margin-bottom: 0;
    }
    .page-recruit-training__card-body {
      margin-top: 35px;
    }
  }
}
.page-recruit-training__card-title {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #000000;
}

.page-recruit-training__card-text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-recruit-training__card-note {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.page-recruit-training__card-figure {
  aspect-ratio: 360/320;
}

.page-recruit-training__card-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-recruit-training__pmp {
  margin: 120px auto 0;
}

.page-recruit-training__pmp-inner {
  max-width: 1064px;
  margin: 0 auto;
}

.page-recruit-training__pmp-header {
  text-align: center;
  margin: 0 0 50px;
}

.page-recruit-training__pmp-title {
  margin: 0;
  font-size: clamp(26px, 0.5714285714vw + 23.7714285714px, 32px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-recruit-training__pmp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 84px;
  align-items: center;
  margin: 0 0 60px;
}

.page-recruit-training__pmp-subtitle {
  margin: 0 0 20px;
  font-size: clamp(18px, 0.380952381vw + 16.5142857143px, 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-recruit-training__pmp-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #000000;
}

.page-recruit-training__pmp-figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 440/284;
}

.page-recruit-training__pmp-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-recruit-training__pmp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-recruit-training__pmp-card {
  background: #f6f6f6;
  border: 1px solid #e8e8e8;
  padding: 30px;
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 10px;
  row-gap: 15px;
  align-items: center;
}

.page-recruit-training__pmp-icon {
  margin: 0;
  width: 26px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-recruit-training__pmp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-recruit-training__pmp-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-recruit-training__pmp-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  grid-column: 1/-1;
}

.page-recruit-training__system {
  margin-top: 120px;
}

.page-recruit-training__system-inner {
  height: 100%;
  margin: 0 auto;
  position: relative;
  padding: 207.5px 20px 206.5px;
}

.page-recruit-training__system-bg {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
  z-index: -1;
}

.page-recruit-training__system-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-recruit-training__system-content {
  text-align: center;
}

.page-recruit-training__system-title {
  margin: 0 0 40px;
  font-size: clamp(26px, 0.5714285714vw + 23.7714285714px, 32px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-recruit-training__system-lead {
  margin: 0;
  font-size: clamp(20px, 0.1904761905vw + 19.2571428571px, 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #6c6c6c;
}

.page-recruit-training__young {
  margin-top: 120px;
}

.page-recruit-training__young-header {
  text-align: center;
  margin: 0 0 60px;
}

.page-recruit-training__young-title {
  margin: 0 0 30px;
  font-size: clamp(26px, 0.5714285714vw + 23.7714285714px, 32px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-recruit-training__young-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.page-recruit-training__young-graph {
  max-width: 1104px;
  margin: 0 auto;
  aspect-ratio: 1104/659;
}

.page-recruit-training__young-graph img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-recruit-training__system-image-wrapper {
  max-width: 900px;
  margin: 60px auto 0;
}

.page-recruit-training__system-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 900/631;
}

.page-recruit-training__system-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .page-recruit-training__card-list {
    grid-template-columns: 1fr;
  }
  .page-recruit-training__card-body {
    max-width: 350px;
    margin: 0 auto;
  }
  .page-recruit-training__card-figure {
    width: min(390px, 100% + 40px);
    height: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 5px;
    aspect-ratio: unset;
    box-sizing: border-box;
  }
  .page-recruit-training__card-figure img {
    aspect-ratio: 380/317;
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
  }
  .page-recruit-training__pmp-header {
    margin: 0 0 40px;
  }
  .page-recruit-training__pmp-hero {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .page-recruit-training__pmp-subtitle {
    letter-spacing: normal;
    text-align: center;
  }
  .page-recruit-training__pmp-desc {
    font-size: 16px;
    line-height: 2;
  }
  .page-recruit-training__pmp-grid {
    grid-template-columns: 1fr;
  }
  .page-recruit-training__pmp-text {
    order: 2;
  }
  .page-recruit-training__pmp-figure {
    order: 1;
    aspect-ratio: 350/226;
    max-width: 350px;
    margin: 0 auto;
  }
  .page-recruit-training__system-title {
    margin: 0 0 30px;
  }
}
@media (max-width: 768px) {
  .page-recruit-training__intro {
    text-align: center;
    margin: 0 0 40px;
  }
  .page-recruit-training__intro-title {
    letter-spacing: 0.03em;
    margin: 0 0 18px;
  }
  .page-recruit-training__intro-lead {
    letter-spacing: 0.03em;
    line-height: 2;
  }
  .page-recruit-training__card-list {
    gap: 50px;
  }
  .page-recruit-training__card-bubble {
    height: 84px;
  }
  .page-recruit-training__pmp {
    margin: 80px auto 0;
  }
  .page-recruit-training__system {
    margin-top: 80px;
  }
  .page-recruit-training__system-inner {
    padding: 346.5px 20px 317.5px;
  }
  .page-recruit-training__system-lead {
    line-height: 1.8;
  }
  .page-recruit-training__young {
    margin-top: 80px;
  }
  .page-recruit-training__young-header {
    margin: 0 0 50px;
  }
  .page-recruit-training__young-lead {
    line-height: 2;
  }
  .page-recruit-training__young-graph {
    max-width: 1104px;
    margin: 0 auto;
    aspect-ratio: 350/1807;
  }
  .page-recruit-training__young-graph img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .page-recruit-training__mobile-courses {
    margin-top: 15px;
  }
  .page-recruit-training__mobile-group + .page-recruit-training__mobile-group {
    margin-top: 160px;
  }
  .page-recruit-training__mobile-group-title {
    margin: 0 0 30px;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    color: var(--color-accent);
    font-size: clamp(24px, 1.5238095238vw + 18.0571428571px, 40px);
  }
  .page-recruit-training__mobile-group-title .page-recruit-training__mobile-group-title-required {
    font-size: clamp(18px, 0.5714285714vw + 15.7714285714px, 24px);
    font-weight: 700;
    line-height: 1.7;
  }
  .page-recruit-training__mobile-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 40px;
  }
  .page-recruit-training__mobile-item {
    border-radius: 10px;
    overflow: hidden;
  }
  .page-recruit-training__mobile-card {
    margin: 0;
    color: #ffffff;
  }
  .page-recruit-training__mobile-group--layered .page-recruit-training__mobile-card {
    background: linear-gradient(162.38deg, #004098 0%, #007f98 60%, #8eb0c3 100%);
  }
  .page-recruit-training__mobile-group--functional .page-recruit-training__mobile-card {
    background: linear-gradient(141.95deg, #001d5e 7.06%, #004098 57.61%, #8eb0c3 91.31%);
  }
  .page-recruit-training__mobile-card-body {
    padding: 20px 24px;
    text-align: center;
  }
  .page-recruit-training__mobile-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
  .page-recruit-training__mobile-card-text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
  .page-recruit-training__mobile-card-image {
    margin: 0;
    aspect-ratio: 350/336;
  }
  .page-recruit-training__mobile-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-recruit-training__system-image-wrapper {
    margin: 40px auto 0;
    max-width: 100%;
  }
  .page-recruit-training__system-image {
    width: 100%;
    aspect-ratio: 350/1019.15;
  }
}
/* recruit/certifications page styles */
/* recruit/career-path page styles */
/*----------------------------------------
   recruit / 福利厚生
----------------------------------------*/
.page-recruit-benefits__hero {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 1440/400;
  overflow: hidden;
  margin: 100px 0 0;
}

.page-recruit-benefits__hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-recruit-benefits__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-recruit-benefits .page-content {
  padding: 100px 0 0;
}

.page-recruit-benefits__intro {
  margin: 0 0 100px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.03em;
}

.page-recruit-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 10px;
  margin: 0 0 120px;
}

.page-recruit-benefits__card {
  background-color: #f6f6f6;
  padding: 30px;
  border: 1px solid #e8e8e8;
  min-height: 199px;
}

.page-recruit-benefits__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
}

.page-recruit-benefits__icon {
  flex-shrink: 0;
  display: block;
  width: 26px;
  height: auto;
  object-fit: contain;
}

.page-recruit-benefits__card-title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-recruit-benefits__card-lead {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-recruit-benefits__card-detail {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .page-recruit-benefits .page-content {
    padding: 60px 0 0;
  }
  .page-recruit-benefits__hero {
    aspect-ratio: 390/180;
    margin: 60px 0 0;
  }
  .page-recruit-benefits__intro {
    margin: 0 0 60px;
    letter-spacing: 0.05em;
    line-height: 2;
  }
  .page-recruit-benefits__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0 0 60px;
  }
  .page-recruit-benefits__card {
    padding: 30px;
    min-height: auto;
  }
}
/*----------------------------------------
   recruit/technology
----------------------------------------*/
.page-recruit-technology .page-content {
  padding: 60px 0 120px;
}

.page-recruit-technology .page-company-initiatives__text + .page-company-initiatives__text {
  margin-top: 28px;
}

.page-recruit-technology__section-header {
  margin: 0 0 60px;
  text-align: center;
}

.page-recruit-technology__section-title {
  margin: 0 0 25px;
  font-size: clamp(38px, 2.0952380952vw + 29.8285714286px, 60px);
  font-weight: 300;
  line-height: 1;
  color: var(--color-accent);
  font-family: var(--font-en);
}

.page-recruit-technology__section-lead {
  margin: 0;
  font-size: clamp(20px, 0.5714285714vw + 17.7714285714px, 26px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-recruit-technology__section-body {
  max-width: 950px;
  margin: 0 auto;
}

.page-recruit-technology__section-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-recruit-technology__section-text + .page-recruit-technology__section-text {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .page-recruit-technology .page-content {
    padding: 30px 0 60px;
  }
  .page-recruit-technology__section-header {
    margin: 0 0 40px;
  }
  .page-recruit-technology__section-title {
    margin-bottom: 20px;
  }
}
/* page-recruit-technology__split */
.page-recruit-technology__split {
  display: grid;
  grid-template-columns: minmax(0, 750px) minmax(0, 1fr);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  gap: 80px;
}

.page-recruit-technology__figure {
  max-width: 750px;
  aspect-ratio: 750/440;
}

.page-recruit-technology__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-recruit-technology__split-body {
  position: relative;
  padding: 0 20px 0 0;
  overflow: hidden;
  max-width: 540px;
}

.page-recruit-technology__lead {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  font-size: clamp(20px, 0.380952381vw + 18.5142857143px, 24px);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.page-recruit-technology__text {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media (max-width: 1380px) {
  .page-recruit-technology__split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-recruit-technology__figure {
    margin: 0 auto;
  }
  .page-recruit-technology__split-body {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .page-recruit-technology__split {
    gap: 30px;
  }
  .page-recruit-technology__split-body {
    padding: 0 20px;
  }
  .page-recruit-technology__lead {
    letter-spacing: 0.03em;
    line-height: 1.6;
  }
}
/* AI */
.page-recruit-technology__ai {
  margin-top: 120px;
}

.page-recruit-technology__ai-card {
  max-width: 950px;
  margin: 0 auto 40px;
  padding: 50px 0;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.page-recruit-technology__ai-card-title {
  margin: 0 0 10px;
  font-size: clamp(18px, 0.1904761905vw + 17.2571428571px, 20px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

.page-recruit-technology__ai-card-figure {
  margin: 0;
  aspect-ratio: 950/280;
}

.page-recruit-technology__ai-card-figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .page-recruit-technology__ai {
    margin-top: 80px;
  }
  .page-recruit-technology__ai-card {
    margin-bottom: 40px;
    padding: 50px 0;
  }
  .page-recruit-technology__ai-card-title {
    margin: 0 0 20px;
  }
  .page-recruit-technology__ai-card-figure {
    margin: 0 auto;
    aspect-ratio: 200/1215.39;
    max-width: 57.1428571429%;
  }
}
/* OPEN STACK */
.page-recruit-technology__openstack {
  margin-top: 120px;
}

.page-recruit-technology__openstack-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 230px);
  gap: 120px;
  align-items: center;
  max-width: 950px;
  margin: 0 auto 40px;
  padding: 20px 130px 20px 120px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.page-recruit-technology__openstack-card-title {
  margin: 0 0 20px;
  font-size: clamp(20px, 0.1904761905vw + 19.2571428571px, 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.page-recruit-technology__openstack-card-desc {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.page-recruit-technology__openstack-card-figure {
  margin: 0;
}

.page-recruit-technology__openstack-card-figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .page-recruit-technology__openstack {
    margin-top: 80px;
  }
  .page-recruit-technology__openstack-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 35px;
  }
  .page-recruit-technology__openstack-card-text {
    order: 2;
  }
  .page-recruit-technology__openstack-card-title {
    margin: 0 0 15px;
  }
  .page-recruit-technology__openstack-card-figure {
    margin: 0 auto;
    aspect-ratio: 200/281.81;
    max-width: 71.4285714286%;
    order: 1;
  }
}
/* HADOOP */
.page-recruit-technology__hadoop {
  margin-top: 120px;
}

.page-recruit-technology__hadoop-card {
  max-width: 950px;
  margin: 0 auto 40px;
  padding: 40px 0;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.page-recruit-technology__hadoop-cases {
  max-width: 950px;
  margin: 0 auto 40px;
  padding: 50px 0;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.page-recruit-technology__section-body + .page-recruit-technology__hadoop-cases {
  margin-top: 60px;
}

.page-recruit-technology__hadoop-card-figure,
.page-recruit-technology__hadoop-cases-figure {
  margin: 0;
}

.page-recruit-technology__hadoop-card-figure img,
.page-recruit-technology__hadoop-cases-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-recruit-technology__hadoop-cases-title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 768px) {
  .page-recruit-technology__hadoop {
    margin-top: 80px;
  }
  .page-recruit-technology__hadoop-card {
    padding: 40px 0;
  }
  .page-recruit-technology__hadoop-cases {
    padding: 50px 0;
  }
  .page-recruit-technology__hadoop-card-figure {
    margin: 0 auto;
    aspect-ratio: 273/567.51;
    max-width: 78%;
  }
  .page-recruit-technology__hadoop-cases-figure {
    margin: 0 auto;
    aspect-ratio: 354.61/732.58;
  }
  .page-recruit-technology__hadoop-cases-figure img {
    width: 100%;
    height: auto;
  }
}
/* INTRA-MART */
.page-recruit-technology__intramart {
  margin-top: 120px;
}

.page-recruit-technology__intramart-card {
  max-width: 950px;
  margin: 0 auto 40px;
  padding: 50px 0;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.page-recruit-technology__intramart-card-lead {
  margin: 0 0 10px;
  font-size: clamp(14px, 0.1904761905vw + 13.2571428571px, 16px);
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-align: center;
}

.page-recruit-technology__intramart-card-figure {
  margin: 0;
}

.page-recruit-technology__intramart-card-figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .page-recruit-technology__intramart {
    margin-top: 80px;
  }
  .page-recruit-technology__intramart-card {
    padding: 50px 0;
  }
  .page-recruit-technology__intramart-card-lead {
    margin: 0 0 40px;
  }
  .page-recruit-technology__intramart-card-figure {
    margin: 0 auto;
    aspect-ratio: 282.21/586.68;
    max-width: 80.6314285714%;
  }
}
/*----------------------------------------
   recruit / interview archive（一覧）
----------------------------------------*/
.page-interview-archive .page-content {
  padding: 100px 0 120px;
}

.page-interview-archive__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  /* 1列あたり 388.67px 未満にならないよう列数が自動で落ちる（3→2→1） */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 60px 50px;
}

.page-interview-archive__item {
  margin: 0;
}

.page-interview-archive__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.page-interview-archive__figure {
  margin: 0;
  aspect-ratio: 386.67/283.08;
  overflow: hidden;
}

.page-interview-archive__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.page-interview-archive__link:hover .page-interview-archive__img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .page-interview-archive__img {
    transition: none;
  }
  .page-interview-archive__link:hover .page-interview-archive__img {
    transform: scale(1);
  }
}
.page-interview-archive__figure--empty {
  background-color: #f0f4f8;
}

.page-interview-archive__body {
  padding: 25px 0 0;
}

/* 番号横の／ … 1px×幅56/22 em を -45°。1440 で 56px線・左から14.5 は em 換算。回転後の見た目の起点＝線の左端に合わせ transform-origin:left center */
.page-interview-archive__number {
  position: relative;
  margin: 0 0 20px;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
}
.page-interview-archive__number::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 1px;
  background: var(--color-accent);
  left: 14.5px;
  top: 39px;
  transform-origin: left center;
  transform: rotate(-45deg);
}

.page-interview-archive__catch {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

.page-interview-archive__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

/* 一覧のみ: 事業部／〇〇年入社（全角スラッシュ）。詳細の入社行＋学部とは別体裁 */
.page-interview-archive__meta-line {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

.page-interview-archive__empty {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

.page-interview-archive__more {
  margin-top: 60px;
  text-align: center;
}

.page-interview-archive__more.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .page-interview-archive .page-content {
    padding: 60px 0 80px;
  }
}
/*----------------------------------------
   recruit / interview single
----------------------------------------*/
/* SP: インタビュー詳細のみ page-fv 非表示（パンくず・padding 共通指定も含め残さない） */
@media (max-width: 768px) {
  body.single-interview .page-fv {
    display: none;
  }
}
.page-interview .page-content {
  padding: 0 0 120px;
  overflow-x: visible;
}

@media (max-width: 768px) {
  .page-interview .page-content {
    padding: 0 0 60px;
  }
}
.page-interview__fv {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  max-width: 1260px;
  margin: 0 auto 80px;
}

.page-interview__fv-wrap {
  padding: 0 20px;
}

.page-interview__fv-copy {
  position: relative;
  z-index: 2;
  margin-right: -220px;
  padding: 120px 50px 50px 60px;
  color: #ffffff;
  background: linear-gradient(162.38deg, #004098 0%, #007f98 60%, #8eb0c3 100%);
}

.page-interview__fv-number {
  position: absolute;
  top: 31px;
  left: 31px;
  margin: 0;
  font-size: 45px;
  line-height: 1;
}
.page-interview__fv-number::after {
  content: "";
  width: 134px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  left: -12px;
  top: 45px;
  transform: rotate(-45deg);
}

.page-interview__fv-copy-inner {
  width: 370px;
  max-width: 100%;
}

.page-interview__fv-catch {
  margin: 0 0 70px;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.page-interview__fv-person {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-interview__fv-name,
.page-interview__fv-department,
.page-interview__fv-joined {
  margin: 0;
}

.page-interview__fv-joined {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.page-interview__fv-name {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 30px;
}

.page-interview__fv-name-ja {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.page-interview__fv-name-en {
  display: inline-flex;
  gap: 0.3em;
  font-size: 14px;
  line-height: 1.2;
  font-family: var(--font-en);
  letter-spacing: 0;
}

.page-interview__fv-figure {
  margin: 40px 0 0 0;
  width: 1000px;
  min-width: 1000px;
}

.page-interview__fv-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 1200px 以下は FV をアイキャッチ（--sp）、それより広いときは fv_image_pc（--pc）。シングルソースはクラス無し img。 */
.page-interview__fv-figure--dual-sp img.page-interview__fv-img--sp {
  display: none;
}

.page-interview__fv-figure > img.page-interview__fv-img--sp:only-child {
  display: block;
}

@media (max-width: 1200px) {
  .page-interview__fv-figure--dual-sp img.page-interview__fv-img--pc {
    display: none;
  }
  .page-interview__fv-figure--dual-sp img.page-interview__fv-img--sp {
    display: block;
  }
}
@media (max-width: 1200px) {
  .page-interview__fv {
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  .page-interview__fv-wrap {
    padding: 0;
  }
  .page-interview__fv-copy {
    position: relative;
    z-index: 2;
    margin-right: 0;
    margin-top: -50px;
    padding: 90px 40px 40px;
  }
  .page-interview__fv-number {
    position: absolute;
    top: 40px;
    left: 40px;
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-family: var(--font-en);
    font-weight: 300;
  }
  .page-interview__fv-number::after {
    content: "";
    width: 56px;
    height: 1px;
    background: #ffffff;
    position: absolute;
    left: 6px;
    top: 24px;
    transform: rotate(-45deg);
  }
  .page-interview__fv-copy-inner {
    width: 260px;
    max-width: 100%;
  }
  .page-interview__fv-catch {
    margin: 0 0 30px;
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
  .page-interview__fv-person {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .page-interview__fv-name,
  .page-interview__fv-department,
  .page-interview__fv-joined {
    margin: 0;
  }
  .page-interview__fv-joined {
    display: inline-flex;
    align-items: center;
    gap: 0;
  }
  .page-interview__fv-name {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 20px;
  }
  .page-interview__fv-name-ja {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3em;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
  .page-interview__fv-name-en {
    display: inline-flex;
    gap: 0.3em;
    font-size: 12px;
    line-height: 1.2;
    font-family: var(--font-en);
    letter-spacing: 0;
  }
  .page-interview__fv-figure {
    margin: 0;
    width: 100%;
    min-width: 0;
    aspect-ratio: 390/400;
  }
  .page-interview__fv-figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.page-interview__heading {
  padding: 0 0 24px;
  margin: 0 0 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
}

.page-interview__profile,
.page-interview__career-path {
  margin: 0 0 100px;
}

.page-interview__offday {
  margin: 0 0 120px;
}

.page-interview__schedule {
  margin: 60px 0 100px;
}

@media (max-width: 768px) {
  .page-interview__profile,
  .page-interview__schedule {
    margin: 0 0 60px;
  }
  .page-interview__career-path,
  .page-interview__offday {
    margin: 0 0 80px;
  }
  .page-interview__schedule {
    margin: 80px 0 80px;
  }
}
.page-interview__offday-figure,
.page-interview__block-figure {
  margin: 0;
}

.page-interview__offday-figure img,
.page-interview__block-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-interview__profile-text,
.page-interview__block-text,
.page-interview__offday-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 1040px) {
  .page-interview__profile-text {
    font-size: 14px;
  }
}
.page-interview__profile-text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.page-interview__profile-box--align-center .page-interview__profile-text {
  text-align: center;
}

.page-interview__profile-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 80px 40px;
  background: #edf2f7;
  position: relative;
}

.page-interview__heading--profile {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-accent);
  font-size: 45px;
  font-weight: 200;
  font-family: var(--font-en);
  line-height: 1;
}

@media (max-width: 1040px) {
  .page-interview__profile-box {
    padding: 40px 30px 30px;
  }
  .page-interview__heading--profile {
    top: -16px;
    font-size: 36px;
  }
}
.page-interview__career-path-inner {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #cbd5e0;
  padding: 50px 60px 80px;
  background: #fff;
}

.page-interview__heading--career {
  margin: 0 0 40px;
  text-align: center;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.page-interview__career-list {
  position: relative;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-interview__career-item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding-top: 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.page-interview__career-item::before {
  content: "";
  position: absolute;
  top: 58px;
  left: -20px;
  right: -20px;
  height: 1px;
  background: var(--color-accent);
}
.page-interview__career-item:first-child::before {
  left: 50%;
}
.page-interview__career-item:last-child::before {
  right: 0;
}

.page-interview__career-item--center {
  text-align: center;
}

.page-interview__career-item--center .page-interview__career-year {
  left: auto;
  transform: none;
}

.page-interview__career-year {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  margin-bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  font-weight: 500;
}
.page-interview__career-year::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateX(-50%);
}

.page-interview__career-text {
  display: block;
  margin: 0;
}

@media (max-width: 1040px) {
  .page-interview__career-path-inner {
    padding: 50px 20px 50px;
    max-width: 800px;
    margin: 0 auto;
  }
  .page-interview__heading--career {
    margin: 0 0 30px;
    font-size: 18px;
  }
  /*
     縦タイムライン（SP）
     線・ドットは PC と同じく item::before（線）／year::after（丸）のみ使う。
  */
  .page-interview__career-list {
    position: relative;
    display: block;
    margin: 0;
    padding: 0 0 0 60px;
    list-style: none;
    max-width: 480px;
    margin: 0 auto;
  }
  .page-interview__career-item {
    position: relative;
    flex: unset;
    min-width: 0;
    margin: 0;
    padding: 4px 0 20px;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: var(--color-main);
    /* PC と同じ擬似要素：ここでは縦棒（薄色） */
  }
  .page-interview__career-item::before {
    content: "";
    position: absolute;
    left: -36px;
    width: 1px;
    margin: 0;
    z-index: 0;
  }
  .page-interview__career-item:first-child::before {
    top: 18px;
    bottom: 0;
    left: -36px;
    right: auto;
    height: auto;
  }
  .page-interview__career-item:not(:first-child):not(:last-child)::before {
    top: 0;
    bottom: 0;
    left: -36px;
    right: auto;
    height: auto;
  }
  .page-interview__career-item:last-child:not(:first-child)::before {
    top: 0;
    bottom: auto;
    left: -36px;
    right: auto;
    height: 100%;
  }
  .page-interview__career-item:only-child::before {
    display: none;
  }
  .page-interview__career-item:last-child {
    padding-bottom: 0;
  }
  .page-interview__career-item--center,
  .page-interview__career-item--center .page-interview__career-year {
    text-align: left;
  }
  .page-interview__career-item--center .page-interview__career-year {
    left: auto;
    transform: none;
  }
  .page-interview__career-year {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.1em;
    margin: 0 0 10px;
    left: auto;
    transform: none;
    font-size: 16px;
    /* PC と同じ year::after：縦並びレイアウトでは左の縦線上に重ねる */
  }
  .page-interview__career-year::after {
    content: "";
    position: absolute;
    bottom: auto;
    left: -35px;
    top: 12px;
    width: 12px;
    height: 12px;
    margin: 0;
    border-radius: 50%;
    background: var(--color-accent);
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .page-interview__career-text {
    font-weight: 400;
  }
}
.page-interview__schedule-box {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 80px 40px 0;
  background: #edf2f7;
}

.page-interview__heading--schedule {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  align-self: center;
}

.page-interview__schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-interview__schedule-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.page-interview__schedule-time {
  font-size: 18px;
  font-weight: 500;
}

.page-interview__schedule-item + .page-interview__schedule-item {
  margin-top: 10px;
}

@media (max-width: 1040px) {
  .page-interview__schedule-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 30px;
    background: #edf2f7;
  }
  .page-interview__heading--schedule {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: center;
    align-self: center;
  }
  .page-interview__schedule-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .page-interview__schedule-item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
    max-width: 480px;
    margin: 0 auto;
  }
  .page-interview__schedule-time {
    font-size: 16px;
    font-weight: 500;
  }
  .page-interview__schedule-item + .page-interview__schedule-item {
    margin-top: 10px;
  }
}
.page-interview__block {
  margin-bottom: 60px;
}

.page-interview__block-grid {
  display: flex;
  align-items: flex-start;
}

.page-interview__block--reverse .page-interview__block-grid {
  justify-content: flex-end;
}

.page-interview__block--reverse .page-interview__block-grid .page-interview__block-figure {
  order: 2;
}

.page-interview__block--reverse .page-interview__block-grid .page-interview__block-body {
  order: 1;
}

.page-interview__block-figure {
  width: 806px;
  min-width: 806px;
  aspect-ratio: 806/570;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-interview__block-figure img {
  height: 100%;
  object-fit: cover;
}

.page-interview__block-body {
  position: relative;
  z-index: 2;
  padding: 55px 50px;
  background: #ffffff;
  margin: 100px 0 0 -100px;
}

.page-interview__block--reverse .page-interview__block-body {
  margin: 100px -100px 0 0;
}

.page-interview__heading {
  margin: 0 0 36px;
  padding: 0 0 23px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
  max-width: 405px;
}
.page-interview__heading::before {
  content: "";
  width: 39px;
  height: 1px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 0;
}

.page-interview__block-text {
  max-width: 405px;
  font-weight: 400;
}

.page-interview__image-block {
  max-width: 1040px;
  aspect-ratio: 1040/460;
  margin: 60px auto 140px;
}

@media (max-width: 1220px) {
  .page-interview__block-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
  }
  .page-interview__block--reverse .page-interview__block-grid {
    justify-content: flex-start;
    max-width: 800px;
    margin: 0 auto;
  }
  .page-interview__block--reverse .page-interview__block-grid .page-interview__block-figure {
    order: 1;
  }
  .page-interview__block--reverse .page-interview__block-grid .page-interview__block-body {
    order: 2;
  }
  .page-interview__block-figure {
    width: 100%;
    min-width: 0;
    aspect-ratio: 350/247.52;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .page-interview__block-figure img {
    height: 100%;
    object-fit: cover;
  }
  .page-interview__block-body {
    position: relative;
    z-index: 2;
    padding: 40px 20px 0;
    background: #ffffff;
    margin: 0;
  }
  .page-interview__block--reverse .page-interview__block-body {
    margin: 0;
  }
  .page-interview__heading {
    margin: 0 0 36px;
    padding: 0 0 23px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    position: relative;
    max-width: 100%;
  }
  .page-interview__heading::before {
    content: "";
    width: 39px;
    height: 1px;
    background-color: var(--color-accent);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .page-interview__block-text {
    max-width: 100%;
    font-weight: 400;
  }
  .page-interview__image-block {
    aspect-ratio: 390/172.5;
    margin: 80px auto 80px;
  }
}
.page-interview__offday-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.page-interview__offday-text {
  max-width: 520px;
  line-height: 2;
  font-weight: 400;
}

.page-interview__offday-figure {
  width: 420px;
  min-width: 420px;
  aspect-ratio: 420/386;
  overflow: hidden;
  order: 1;
}

.page-interview__offday-body {
  order: 2;
  padding: 0;
  margin: 0;
}

@media (max-width: 1040px) {
  .page-interview__offday-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .page-interview__offday-text {
    max-width: 100%;
    line-height: 2;
    font-weight: 400;
  }
  .page-interview__offday-figure {
    width: calc(100% - 70px);
    min-width: calc(100% - 70px);
    aspect-ratio: 240/220.33;
    overflow: hidden;
    order: 2;
    margin: 0 auto;
  }
  .page-interview__offday-body {
    order: 1;
    padding: 0;
    margin: 0;
  }
}
/*----------------------------------------
   contact/input
----------------------------------------*/
/* ========================================
   ページ枠
======================================== */
.page-contact .page-content {
  padding: 100px 0 120px;
}

.page-contact__content {
  margin: 0 0 100px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px;
  background: #ffffff;
}

/* ========================================
   静的フォーム（.contact-form-static）
======================================== */
.contact-form-static {
  margin: 0 auto;
}

.contact-form-static__lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  padding: 0 0 60px;
}

.contact-form-static__required-note {
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 0 0 30px;
  color: #e60012;
}

.contact-form-static__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 0 20px;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  padding-right: 0.7em;
}

.contact-form-static__required-note span,
.contact-form-static__label span {
  color: #e60012;
}

.contact-form-static__label > span {
  position: absolute;
  top: 0.1em;
  right: 0;
  font-size: 0.72em;
  line-height: 1;
  margin: 0;
}

.contact-form-static__group {
  margin-bottom: 0;
  padding: 20px 0 30px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.contact-form-static__field {
  margin-bottom: 0;
  padding: 27px 0 30px;
  border-top: none;
}

.contact-form-static__radios {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 30px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.contact-form-static__quick-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.contact-form-static__quick-links a {
  color: var(--color-accent);
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.contact-form-static__quick-links a:hover {
  opacity: 0.7;
}

.contact-form-static__quick-links a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 5px;
}

.contact-form-static__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
}

.contact-form-static__radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin: 0;
  border: 1px solid #767676;
  border-radius: 50%;
  background: #ffffff;
  transition: border-color 0.15s ease;
}

.contact-form-static__radio input[type=radio]:checked {
  border-color: var(--color-accent);
  background: radial-gradient(circle, var(--color-accent) 0, var(--color-accent) 3.9px, #ffffff 4px, #ffffff 100%);
}

.contact-form-static__radio input[type=radio]:focus-visible {
  outline: 1px solid var(--color-accent);
  outline-offset: 1px;
}

.contact-form-static__name-block {
  border-top: none;
}

.contact-form-static__name-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 200px));
  gap: 0 20px;
  justify-content: start;
}

.contact-form-static__name-row + .contact-form-static__name-row {
  border-top: none;
}

.contact-form-static__name-block .contact-form-static__field {
  border-top: none;
}

.contact-form-static input:not([type=radio]),
.contact-form-static textarea {
  display: block;
  width: 420px;
  max-width: 100%;
  border: 0;
  background: #f6f6f6;
  color: #333333;
  padding: 8px 16px;
  font-size: 14px;
  letter-spacing: 0.05em;
  box-sizing: border-box;
  border-radius: 4px;
  min-height: 40px;
  margin-top: 4px;
}

.contact-form-static input:not([type=radio])::placeholder,
.contact-form-static textarea::placeholder {
  color: #c3c3c3;
  opacity: 1;
}

.contact-form-static__error-text {
  display: block;
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #e60012;
}

.page-contact__content .wpcf7-form input.is-error:not([type=radio]),
.page-contact__content .wpcf7-form textarea.is-error {
  border: 1px solid #e60012;
}

.page-contact__content .wpcf7-form .contact-form-static__group.is-error .wpcf7-list-item input[type=radio] {
  border-color: #e60012;
}
.page-contact__content .wpcf7-form .contact-form-static__group.is-error .wpcf7-list-item-label {
  color: #e60012;
}

.contact-form-static__name-block input:not([type=radio]) {
  width: 200px;
  max-width: 100%;
}

.contact-form-static input[type=tel] {
  width: 200px;
  max-width: 100%;
}

.contact-form-static textarea {
  width: 100%;
  max-width: none;
  resize: vertical;
  min-height: 120px;
}

.contact-form-static__subnote {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-weight: 700;
}

.contact-form-static__notice {
  background: #f6f6f6;
  padding: 24px;
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.9;
  border-radius: 0;
}

.contact-form-static__notice-title {
  margin: 0 0 8px !important;
  font-weight: 500;
}

.contact-form-static__notice p + p {
  margin-top: 4px !important;
}

.contact-form-static__notice p {
  padding-left: 1em;
  text-indent: -1em;
}

.contact-form-static__notice a {
  color: #333333;
  text-decoration: underline;
}

.contact-form-static__submit {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .page-contact__content {
    padding: 24px 15px 56px;
  }
  .contact-form-static__name-row {
    grid-template-columns: repeat(2, minmax(0, 200px));
    gap: 0 20px;
    justify-content: start;
  }
  .contact-form-static__quick-links {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .contact-form-static__label {
    padding: 0 0.7em 10px 0;
  }
  /* 入力ステップ「お問い合わせの内容」の必須マークを左へ */
  .contact-cf7-input .contact-form-static__label.title-contactform7.for-message > span {
    transform: translateX(-2.2em);
  }
  /* 確認ステップも「お問い合わせの内容」行だけ入力と同じ位置に寄せる */
  .contact-cf7-confirm .contact-form-static__field:has(> .contact-cf7-confirm__value[data-cf7-confirm=message]) .contact-form-static__label > span {
    transform: translateX(-2.2em);
  }
  .contact-form-static__field {
    padding: 27px 0 10px;
  }
  .contact-form-static__notice {
    font-size: 14px;
  }
}
/* ========================================
   Contact Form 7（.wpcf7-form）
======================================== */
.page-contact__content .wpcf7-form {
  /* CF7は <p> でフィールドを包むことが多いので、余白をデザイン側に寄せる */
  font-size: 14px;
  letter-spacing: 0.05em;
}

.page-contact__content .wpcf7-form p {
  margin: 0;
}

.page-contact__content .wpcf7-form label {
  display: block;
}

.page-contact__content .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}

/* 独自エラー文言を使うため、CF7標準のフィールド文言は非表示 */
.page-contact__content .wpcf7-form .wpcf7-not-valid-tip {
  display: none !important;
}

.page-contact__content .wpcf7-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.7;
}

/* CF7フォーム本文で使っているブロック（静的と同じクラス）— 静的の余白に合わせる */
.page-contact__content .wpcf7-form .contact-form-static__group {
  margin-bottom: 0;
}

.page-contact__content .wpcf7-form .contact-form-static__field {
  margin-bottom: 0;
}

.page-contact__content .wpcf7-form .contact-form-static__notice {
  margin: 30px 0 0;
}

.page-contact__content .wpcf7-form .contact-form-static__submit {
  margin-top: 40px;
  text-align: center;
}

.page-contact__content .wpcf7-form .js-contact-cf7-to-confirm:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.page-contact__content .wpcf7-form .js-contact-cf7-to-confirm:disabled:hover {
  color: #fff;
  background-color: var(--color-accent);
}

.page-contact__content .wpcf7-form .js-contact-cf7-to-confirm:not(:disabled):hover {
  color: var(--color-accent);
  background-color: #fff;
  border: 1px solid var(--color-accent);
}

.page-contact__content .wpcf7-form input.wpcf7-submit[value=入力内容の確認に進む]:not(:disabled):hover,
.page-contact__content .wpcf7-form button.wpcf7-submit[value=入力内容の確認に進む]:not(:disabled):hover {
  color: var(--color-accent) !important;
  background-color: #fff !important;
  border: 1px solid var(--color-accent) !important;
}

.page-contact__content .wpcf7-form .contact-cf7-input input.wpcf7-submit:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.page-contact__content .wpcf7-form .contact-cf7-input input.wpcf7-submit:disabled:hover {
  color: #fff;
  background-color: var(--color-accent);
}

.page-contact__content .wpcf7-form .contact-cf7-input input.wpcf7-submit:not(:disabled):hover {
  color: var(--color-accent);
  background-color: #fff;
  border: 1px solid var(--color-accent);
}

.page-contact__content .wpcf7-form input.wpcf7-submit[value=入力内容の確認に進む]:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.page-contact__content .wpcf7-form input.wpcf7-submit[value=入力内容の確認に進む]:disabled:hover {
  color: #fff;
  background-color: var(--color-accent);
}

.page-contact__content .wpcf7-form input.wpcf7-submit[value=入力内容の確認に進む]:not(:disabled):hover {
  color: var(--color-accent);
  background-color: #fff;
  border: 1px solid var(--color-accent);
}

.page-contact__content .wpcf7-form .wpcf7-radio,
.page-contact__content .wpcf7-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 30px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.page-contact__content .wpcf7-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
}

.page-contact__content .wpcf7-form .wpcf7-list-item input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin: 0;
  border: 1px solid #767676;
  border-radius: 50%;
  background: #ffffff;
  transition: border-color 0.15s ease;
}

.page-contact__content .wpcf7-form .wpcf7-list-item-label {
  display: inline-block;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 0;
}

.page-contact__content .wpcf7-form .wpcf7-list-item input[type=radio]:checked {
  border-color: var(--color-accent);
  background: radial-gradient(circle, var(--color-accent) 0, var(--color-accent) 3.9px, #ffffff 4px, #ffffff 100%);
}

.page-contact__content .wpcf7-form .wpcf7-list-item input[type=radio]:focus-visible {
  outline: 1px solid var(--color-accent);
  outline-offset: 1px;
}

/* 1行 420px。姓・名・電話番号など短い列は各ショートコードに class:contact-w200 を付ける */
.page-contact__content .wpcf7-form .wpcf7-form-control-wrap input.wpcf7-form-control:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=hidden]):not([type=submit]):not([type=button]) {
  display: block;
  width: 420px;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  border: 0;
  background: #f6f6f6;
  color: #333333;
  padding: 8px 16px;
  font-size: 14px;
  letter-spacing: 0.05em;
  min-height: 40px;
  margin-top: 4px;
}

.page-contact__content .wpcf7-form .wpcf7-form-control-wrap input.wpcf7-form-control:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=hidden]):not([type=submit]):not([type=button]):not(:placeholder-shown),
.page-contact__content .wpcf7-form textarea.wpcf7-textarea:not(:placeholder-shown) {
  background: #dfe8f7;
}

.page-contact__content .wpcf7-form .wpcf7-form-control-wrap input.wpcf7-form-control:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=hidden]):not([type=submit]):not([type=button])::placeholder {
  color: #c3c3c3;
  opacity: 1;
}

/*
 * 200px 行: contact-w200 / [tel*]（type=tel）/ [text* tel]（type=text だが name=tel）
 * CF7 既定CSSや max-width:100% 親との兼ね合いで !important を使用
 */
.page-contact__content .wpcf7-form .wpcf7-form-control-wrap input.wpcf7-form-control.contact-w200,
.page-contact__content .wpcf7-form .wpcf7-form-control-wrap input.wpcf7-form-control[type=tel],
.page-contact__content .wpcf7-form .wpcf7-form-control-wrap input.wpcf7-form-control[name=tel],
.page-contact__content .wpcf7-form input.wpcf7-form-control[name=tel]:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]) {
  width: 200px !important;
  max-width: min(100%, 200px) !important;
  box-sizing: border-box;
}

.page-contact__content .wpcf7-form textarea.wpcf7-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  border: 0;
  background: #f6f6f6;
  color: #333333;
  padding: 8px 16px;
  font-size: 14px;
  letter-spacing: 0.05em;
  min-height: 120px;
  margin-top: 4px;
  resize: vertical;
}

.page-contact__content .wpcf7-form textarea.wpcf7-textarea::placeholder {
  color: #c3c3c3;
  opacity: 1;
}

.page-contact__content .wpcf7-form input.wpcf7-form-control:not(.is-error):not(.wpcf7-not-valid):focus-visible,
.page-contact__content .wpcf7-form textarea.wpcf7-textarea:not(.is-error):not(.wpcf7-not-valid):focus-visible {
  outline: 1px solid var(--color-accent);
  outline-offset: 1px;
}

/* 独自バリデーション（.is-error）時は通常枠線指定より優先して赤枠を維持 */
.page-contact__content .wpcf7-form .contact-form-static__field.is-error input.wpcf7-form-control:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=hidden]):not([type=submit]):not([type=button]),
.page-contact__content .wpcf7-form .contact-form-static__field.is-error textarea.wpcf7-textarea,
.page-contact__content .wpcf7-form input.wpcf7-form-control.is-error:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=hidden]):not([type=submit]):not([type=button]),
.page-contact__content .wpcf7-form textarea.wpcf7-textarea.is-error {
  border: 1px solid #e60012 !important;
}

.page-contact__content .wpcf7-form .contact-form-static__field.is-error input.wpcf7-form-control:focus-visible,
.page-contact__content .wpcf7-form .contact-form-static__field.is-error textarea.wpcf7-textarea:focus-visible,
.page-contact__content .wpcf7-form input.wpcf7-form-control.is-error:focus-visible,
.page-contact__content .wpcf7-form textarea.wpcf7-textarea.is-error:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* 入力ステップの見た目は独自バリデーション（.is-error）側で制御する */
.page-contact__content .wpcf7-form .wpcf7-checkbox .wpcf7-list-item,
.page-contact__content .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.page-contact__content .wpcf7-form .wpcf7-checkbox .wpcf7-list-item label,
.page-contact__content .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.page-contact__content .wpcf7-form .wpcf7-checkbox input[type=checkbox],
.page-contact__content .wpcf7-form .wpcf7-acceptance input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #767676;
  border-radius: 3px;
  background: #ffffff;
  flex-shrink: 0;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 9px;
}

.page-contact__content .wpcf7-form .wpcf7-checkbox input[type=checkbox]:checked,
.page-contact__content .wpcf7-form .wpcf7-acceptance input[type=checkbox]:checked {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9'%3E%3Cpath d='M1 4.5L4.25 7.75L11 1' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-contact__content .wpcf7-form .wpcf7-checkbox input[type=checkbox]:focus-visible,
.page-contact__content .wpcf7-form .wpcf7-acceptance input[type=checkbox]:focus-visible {
  outline: 1px solid var(--color-accent);
  outline-offset: 1px;
}

/*
 * CF7 送信ボタン（参照デザイン: 紺・白文字・角なし・右矢印）
 * input は子要素・::after 不可のため矢印は background-image。親が違っても効くよう .wpcf7-form 直下に統一。
 * プラグイン既定より強くするため !important を使用。
 */
.page-contact__content .wpcf7-form input[type=submit] {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-block !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: min(100%, 300px) !important;
  min-height: 59px !important;
  height: auto !important;
  padding: 16px 52px 16px 36px !important;
  margin: 0 !important;
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.45 !important;
  text-align: center !important;
  vertical-align: middle !important;
  color: #ffffff !important;
  background-color: var(--color-accent) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='14' viewBox='0 0 10 14'%3E%3Cpath d='M1 1l7 6-7 6' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 22px center !important;
  background-size: 10px 14px !important;
  border: none !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
}

.page-contact__content .wpcf7-form input[type=submit]:hover {
  background-color: #0056b3 !important;
  color: #ffffff !important;
}

.page-contact__content .wpcf7-form input[type=submit]:focus-visible {
  outline: 2px solid var(--color-accent) !important;
  outline-offset: 2px !important;
}

@media (max-width: 768px) {
  .page-contact__content .wpcf7-form input[type=submit] {
    min-width: min(100%, 260px) !important;
    padding-left: 28px !important;
    padding-right: 48px !important;
    font-size: 16px !important;
  }
}
/*----------------------------------------
   Contact Form 7 + Confirm Plus（確認オーバーレイ）
   - プラグインが #wpcf7cpcnf 内に table + ボタンを生成
----------------------------------------*/
.page-contact__content {
  position: relative;
}

.page-contact__content div.wpcf7 {
  position: relative;
}

/* 確認中はフォーム本体を隠すが、注意書きブロックだけは見せる（visibility は子で上書き可） */
.page-contact__content form.wpcf7-form.wpcf7cp-form-hide .contact-form-static__notice {
  visibility: visible !important;
  position: relative;
  z-index: 1002;
}

/* 確認パネル */
.page-contact__content #wpcf7cpcnf {
  position: relative;
  z-index: 1001;
  left: auto;
  top: auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.page-contact__content #wpcf7cpcnf table {
  width: 100%;
  max-width: 740px;
  margin: 0 auto 40px;
  border-collapse: collapse;
  border-spacing: 0;
}

/* デザインは「ラベル行 → 値行」の縦並び */
.page-contact__content #wpcf7cpcnf tr {
  display: block;
  margin-bottom: 28px;
}

.page-contact__content #wpcf7cpcnf th,
.page-contact__content #wpcf7cpcnf td {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
}

.page-contact__content #wpcf7cpcnf th p,
.page-contact__content #wpcf7cpcnf td p {
  margin: 0;
}

.page-contact__content #wpcf7cpcnf th {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 4px;
}

.page-contact__content #wpcf7cpcnf th span {
  color: #e60012;
}

.page-contact__content #wpcf7cpcnf td {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #333333;
  word-break: break-word;
}

.page-contact__content #wpcf7cpcnf .wpcf7cp-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.page-contact__content #wpcf7cpcnf .wpcf7cp-cfm-edit-btn,
.page-contact__content #wpcf7cpcnf .wpcf7cp-cfm-submit-btn {
  box-sizing: border-box;
  width: 275px;
  min-width: 275px;
  height: 61px;
  min-height: 61px;
  padding: 0 52px 0 36px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.page-contact__content #wpcf7cpcnf .wpcf7cp-cfm-edit-btn {
  color: var(--color-accent);
  background: #ffffff;
  border: 1px solid var(--color-accent);
}

.page-contact__content #wpcf7cpcnf .wpcf7cp-cfm-edit-btn:hover {
  color: #ffffff;
  background: var(--color-accent);
}

.page-contact__content #wpcf7cpcnf .wpcf7cp-cfm-submit-btn {
  color: #ffffff;
  background-color: var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='14' viewBox='0 0 10 14'%3E%3Cpath d='M1 1l7 6-7 6' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 10px 14px;
  border: none;
}

.page-contact__content #wpcf7cpcnf .wpcf7cp-cfm-submit-btn:hover {
  color: #ffffff;
  background-color: #0056b3;
}

/*----------------------------------------
   Contact Form 7 — 独自確認（JS・プラグイン不使用）
   .contact-cf7-input / .contact-cf7-confirm はフォーム本文（CF7 管理画面）に記述
----------------------------------------*/
.page-contact__content .contact-cf7-confirm {
  display: none;
}

.page-contact__content.is-contact-cf7-confirm .contact-cf7-input {
  display: none;
}

.page-contact__content.is-contact-cf7-confirm .contact-cf7-confirm {
  display: block;
}

/* 確認画面ではリード文を出さない */
.page-contact__content .contact-cf7-confirm .contact-form-static__lead {
  display: none;
}

/* 確認：入力と同じラベル（＊は .contact-form-static__label span の共通スタイルを使用） */
.page-contact__content .contact-cf7-confirm .contact-form-static__label {
  margin: 0 0 0;
}

.page-contact__content .contact-cf7-confirm .contact-cf7-confirm__value {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333333;
  word-break: break-word;
}

.page-contact__content .contact-cf7-confirm .contact-cf7-confirm__value[data-cf7-confirm=contact_type] {
  font-size: 16px;
}

.page-contact__content .contact-cf7-confirm .contact-form-static__field {
  margin-bottom: 0;
  padding: 30px 0 23px;
  border-top: 1px solid #e8e8e8;
}

.page-contact__content .contact-cf7-confirm .contact-form-static__group {
  margin-bottom: 0;
  padding: 0 0 38px;
  border-top: 1px solid #e8e8e8;
  border-bottom: none;
}

.page-contact__content .contact-cf7-confirm > .contact-form-static__group:first-of-type {
  border-top: none;
}

.page-contact__content .contact-cf7-confirm .contact-form-static__name-block {
  margin-bottom: 0;
  border-top: 1px solid #e8e8e8;
}

.page-contact__content .contact-cf7-confirm .contact-form-static__name-block .contact-form-static__field {
  padding: 30px 0 23px;
  border-top: none;
}

.page-contact__content .contact-cf7-confirm .contact-form-static__name-row .contact-form-static__field {
  margin-bottom: 0;
}

.page-contact__content .contact-cf7-confirm .contact-form-static__name-row + .contact-form-static__name-row {
  border-top: 1px solid #e8e8e8;
}

/* 確認フッター：戻る（左）・送信（右）、幅 275px・中央・gap 10px */
.contact-cf7-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  margin-top: 40px;
  position: relative;
}

.page-contact__content .contact-cf7-confirm .contact-cf7-confirm__actions .btn {
  box-sizing: border-box;
  width: 275px;
  height: 61px;
  max-width: 100%;
  min-width: unset;
  min-height: 61px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}

.page-contact__content .contact-cf7-confirm .contact-cf7-confirm__actions .btn::after {
  display: none;
}

/* 送信する：単色塗り（矢印グラフィックなし） */
.page-contact__content .contact-cf7-confirm .contact-cf7-confirm__actions input[type=submit] {
  box-sizing: border-box !important;
  width: 275px !important;
  max-width: 100% !important;
  min-width: unset !important;
  height: 61px !important;
  min-height: 61px !important;
  padding: 0 28px !important;
  line-height: 1 !important;
  color: #ffffff !important;
  background-color: var(--color-accent) !important;
  background-image: none !important;
  border: 1px solid var(--color-accent) !important;
  border-radius: 0 !important;
}

.page-contact__content .contact-cf7-confirm .contact-cf7-confirm__actions input[type=submit]:hover {
  color: var(--color-accent) !important;
  background-color: #ffffff !important;
  border: 1px solid var(--color-accent) !important;
}

.page-contact__content .contact-cf7-confirm .contact-cf7-confirm__actions input[type=submit]:focus-visible {
  outline: 2px solid var(--color-accent) !important;
  outline-offset: 2px !important;
}

/* CF7スピナーはフレックス配置から外して、ボタン中央揃えを崩さない */
.page-contact__content .contact-cf7-confirm .contact-cf7-confirm__actions .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: -28px;
  margin: 0;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .page-contact__content #wpcf7cpcnf .wpcf7cp-btns,
  .contact-cf7-confirm__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .page-contact__content #wpcf7cpcnf .wpcf7cp-cfm-edit-btn,
  .page-contact__content #wpcf7cpcnf .wpcf7cp-cfm-submit-btn,
  .page-contact__content .contact-cf7-confirm .contact-cf7-confirm__actions .btn,
  .page-contact__content .contact-cf7-confirm .contact-cf7-confirm__actions input[type=submit] {
    width: 100% !important;
    max-width: 275px !important;
  }
  .page-contact__content .contact-cf7-confirm .contact-cf7-confirm__actions .wpcf7-spinner {
    right: -20px;
  }
}
/*----------------------------------------
   contact/complete
----------------------------------------*/
.page-contact-complete .page-content {
  padding: 60px 0 120px;
}

.page-contact-complete__content {
  margin: 0 auto 100px;
  padding: 60px;
  background: #ffffff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-contact-complete__title {
  margin: 0 0 36px;
  font-size: clamp(24px, 0.7619047619vw + 21.0285714286px, 32px);
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-accent);
}

.page-contact-complete__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

.page-contact-complete__actions {
  margin-top: 40px;
}

@media (max-width: 900px) {
  .page-contact-complete__content {
    margin-bottom: 56px;
    padding: 34px 18px 42px;
  }
  .page-contact-complete__title {
    margin-bottom: 16px;
  }
  .page-contact-complete__text {
    font-size: 14px;
  }
  .page-contact-complete .btn {
    min-width: 240px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .page-contact-complete .page-content {
    padding: 40px 0 60px;
  }
}
.sp_410 {
  display: none;
}

@media (max-width: 410px) {
  .sp_410 {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*----------------------------------------
   legal / プライバシーポリシー
----------------------------------------*/
.page-privacy-policy__inner {
  margin: 0 auto;
  max-width: 1200px;
}

.page-privacy-policy__section {
  margin: 0 0 60px;
}

.page-privacy-policy__section:last-of-type {
  margin-bottom: 0;
}

.page-privacy-policy__section-title {
  margin: 0 0 30px;
  font-weight: 500;
  font-size: clamp(20px, 0.7619vw + 17.0286px, 28px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #2b2b2b;
}

.page-privacy-policy__section > .page-privacy-policy__text:first-of-type {
  margin-bottom: 30px;
}

.page-privacy-policy__heading {
  margin: 0 0 12px;
  font-size: clamp(16px, 0.1905vw + 15.2571px, 18px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #292929;
}

.page-privacy-policy__section-content {
  margin: 0 0 30px;
}

.page-privacy-policy__section-content:last-child {
  margin-bottom: 0;
}

.page-privacy-policy__section-block {
  margin: 0 0 12px;
}

.page-privacy-policy__text {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #292929;
}

.page-privacy-policy__text:last-child {
  margin-bottom: 0;
}

.page-privacy-policy__list {
  padding: 0;
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-privacy-policy__list:last-child {
  margin-bottom: 0;
}

.page-privacy-policy__list--decimal {
  list-style: decimal;
  padding-left: 1.5em;
}

.page-privacy-policy__list--decimal > li {
  margin-bottom: 12px;
}

.page-privacy-policy__list--decimal > li:last-child {
  margin-bottom: 0;
}

.page-privacy-policy__list--decimal .page-privacy-policy__list--circled {
  margin: 8px 0 0;
}

.page-privacy-policy__list--policy-items > li {
  margin-bottom: 24px;
}

.page-privacy-policy__list--policy-items .page-privacy-policy__heading {
  margin-bottom: 8px;
}

.page-privacy-policy__list--policy-items .page-privacy-policy__contact-box {
  margin-top: 16px;
}

.page-privacy-policy__list--scope > li {
  margin-bottom: 4px;
}

.page-privacy-policy__section > .page-privacy-policy__text:first-of-type.page-privacy-policy__text--note {
  margin: 0;
}

.page-privacy-policy__contact-box--simple {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 40px;
  box-sizing: border-box;
}

.page-privacy-policy__contact-box--simple .page-privacy-policy__text {
  margin: 0;
}

.page-privacy-policy__list--circled {
  list-style: none;
  padding-left: 0;
}

.page-privacy-policy__list--circled li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 28px;
}

.page-privacy-policy__list--circled li:last-child {
  margin-bottom: 0;
}

.page-privacy-policy__list--circled li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-privacy-policy__list--circled li:nth-child(1)::before {
  content: "①";
}

.page-privacy-policy__list--circled li:nth-child(2)::before {
  content: "②";
}

.page-privacy-policy__list--circled li:nth-child(3)::before {
  content: "③";
}

.page-privacy-policy__list--circled li:nth-child(4)::before {
  content: "④";
}

.page-privacy-policy__list--circled li:nth-child(5)::before {
  content: "⑤";
}

.page-privacy-policy__list--circled li:nth-child(6)::before {
  content: "⑥";
}

.page-privacy-policy__list--circled li:nth-child(7)::before {
  content: "⑦";
}

.page-privacy-policy__list--circled li:nth-child(8)::before {
  content: "⑧";
}

.page-privacy-policy__list--circled li:nth-child(9)::before {
  content: "⑨";
}

.page-privacy-policy__list--circled li:nth-child(10)::before {
  content: "⑩";
}

.page-privacy-policy__list--disc {
  list-style: none;
}

.page-privacy-policy__list--disc li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 20px;
}

.page-privacy-policy__list--disc li:last-child {
  margin-bottom: 0;
}

.page-privacy-policy__list--disc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.page-privacy-policy__enacted {
  margin: 20px 0 30px;
  text-align: right;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #292929;
}

.page-privacy-policy__contact-box {
  display: flex;
  width: fit-content;
  padding: 40px;
  gap: 0;
  align-items: center;
  border: 1px solid var(--color-accent);
  background-color: #fff;
  margin: 26px 0 0;
}

.page-privacy-policy__contact-col--label {
  padding: 0 40px;
}

.page-privacy-policy__contact-col--body {
  flex: 1;
  padding: 0 40px;
  border-left: 1px solid var(--color-accent);
}

.page-privacy-policy__contact-label {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #2b2b2b;
}

@media (max-width: 768px) {
  .page-privacy-policy__list--circled li {
    margin-bottom: 10px;
  }
  .page-privacy-policy__contact-box--simple {
    padding: 20px 15px;
  }
  .page-privacy-policy__contact-box {
    flex-direction: column;
    padding: 20px;
    margin: 26px auto 0;
  }
  .page-privacy-policy__contact-col--label {
    padding: 20px 0;
  }
  .page-privacy-policy__contact-col--body {
    flex: 1;
    padding: 20px 0;
    border-left: none;
    border-top: 1px solid var(--color-accent);
  }
}
/*----------------------------------------
   legal / サイトポリシー
----------------------------------------*/
.page-site-policy__inner {
  margin: 0 auto;
  max-width: 1200px;
}

.page-site-policy__section {
  margin: 0 0 60px;
}

.page-site-policy__section:last-of-type {
  margin-bottom: 0;
}

.page-site-policy__section-title {
  margin: 0 0 30px;
  font-weight: 500;
  font-size: clamp(20px, 0.7619vw + 17.0286px, 28px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #2b2b2b;
}

.page-site-policy__text {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #292929;
}

.page-site-policy__text:last-child {
  margin-bottom: 0;
}

.page-site-policy__list {
  padding: 0;
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-site-policy__list:last-child {
  margin-bottom: 0;
}

.page-site-policy__list--decimal {
  list-style: decimal;
  padding-left: 1.5em;
}

.page-site-policy__list--decimal > li {
  margin-bottom: 12px;
  padding-left: 0.75em;
}

.page-site-policy__list--decimal > li:last-child {
  margin-bottom: 0;
}

.page-site-policy__list--decimal .page-site-policy__list--circled {
  margin: 8px 0 0;
}

.page-site-policy__list--circled {
  list-style: none;
  padding-left: 0;
}

.page-site-policy__list--circled li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 28px;
}

.page-site-policy__list--circled li:last-child {
  margin-bottom: 0;
}

.page-site-policy__list--circled li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.page-site-policy__list--circled li:nth-child(1)::before {
  content: "①";
}

.page-site-policy__list--circled li:nth-child(2)::before {
  content: "②";
}

@media (max-width: 768px) {
  .page-site-policy__list--circled li {
    margin-bottom: 10px;
  }
}
/*----------------------------------------
   legal / サイトマップ
----------------------------------------*/
.page-legal-sitemap__section {
  padding: 40px 0;
  border-bottom: 1px solid #e8e8e8;
}

.page-legal-sitemap__section:first-child {
  padding-top: 0;
}

.page-legal-sitemap__section:last-child {
  border-bottom: none;
}

.page-legal-sitemap__arrow {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  align-self: center;
  color: var(--color-accent);
}

.page-legal-sitemap__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(1px);
  box-sizing: border-box;
}

.page-legal-sitemap__section-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: clamp(20px, 0.380952381vw + 18.5142857143px, 24px);
  letter-spacing: 0.05em;
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: all 0.3s ease;
  margin: 0 0 32px;
}

.page-legal-sitemap__section-head--label {
  margin: 0 0 32px;
}

.page-legal-sitemap__section-head--news,
.page-legal-sitemap__section-head--contact {
  margin: 0;
}

.page-legal-sitemap__section-head:hover,
.page-legal-sitemap__section-head:focus-visible {
  color: var(--color-main);
  text-decoration-color: var(--color-accent);
}

.page-legal-sitemap__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-legal-sitemap__cols--recruit {
  align-items: start;
}

.page-legal-sitemap__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-legal-sitemap__list li + li {
  margin-top: 20px;
}

.page-legal-sitemap__list--recruit li + li {
  margin-top: 12px;
}

.page-legal-sitemap__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  font-size: clamp(16px, 0.1905vw + 15.2571px, 18px);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: all 0.3s ease;
  color: #292929;
  font-weight: 500;
}

.page-legal-sitemap__link-text--small {
  font-size: clamp(15px, 0.0952vw + 14.6286px, 16px);
}

.page-legal-sitemap__link:hover,
.page-legal-sitemap__link:focus-visible {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.page-legal-sitemap__link.page-legal-sitemap__link--external {
  display: inline;
}

.page-legal-sitemap__icon-external {
  display: inline-block;
  width: 18px;
  height: auto;
  vertical-align: baseline;
  transform: translateY(2px);
}

.page-legal-sitemap__link-text--external {
  display: inline;
}

.page-legal-sitemap__subhead {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 4px 6px;
  margin-left: -6px;
  font-size: clamp(16px, 0.1905vw + 15.2571px, 18px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-main);
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-legal-sitemap__subhead:hover,
.page-legal-sitemap__subhead:focus-visible {
  color: var(--color-accent);
}

.page-legal-sitemap__subhead:hover .page-legal-sitemap__subhead-text,
.page-legal-sitemap__subhead:focus-visible .page-legal-sitemap__subhead-text {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 0.2em;
}

.page-legal-sitemap__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-legal-sitemap__sublist li + li {
  margin-top: 10px;
}

.page-legal-sitemap__link--dash {
  padding-left: 22px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
}

.page-legal-sitemap__link--dash::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  margin-top: -1px;
  background-color: var(--color-accent);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .page-legal-sitemap__cols {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-legal-sitemap__section {
    padding: 28px 0;
  }
  .page-legal-sitemap__list li + li {
    margin-top: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-legal-sitemap__section-head,
  .page-legal-sitemap__link,
  .page-legal-sitemap__subhead {
    transition: none;
  }
}
/*----------------------------------------
   legal / 決算公告・電子公告
----------------------------------------*/
.page-legal-disclosure__inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-legal-disclosure__section {
  margin: 0 0 120px;
}

.page-legal-disclosure__section:last-child {
  margin-bottom: 0;
}

.page-legal-disclosure__section-title {
  font-weight: 700;
  font-size: clamp(26px, 0.5714vw + 23.7714px, 32px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 40px;
}

.page-legal-disclosure__section-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin: 8px auto 0;
  background-color: var(--color-accent);
}

.page-legal-disclosure__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-legal-disclosure__item {
  border-bottom: 1px solid #e8e8e8;
}

.page-legal-disclosure__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 15px;
  color: var(--color-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-legal-disclosure__text {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.page-legal-disclosure__meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.page-legal-disclosure__meta span {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.page-legal-disclosure__meta img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.page-legal-disclosure__action {
  margin-top: 50px;
  text-align: center;
}

.page-legal-disclosure__toggle {
  position: relative;
}

.page-legal-disclosure__toggle::after {
  content: none;
}

.page-legal-disclosure__toggle-sign {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
}

.page-legal-disclosure__toggle-sign::before,
.page-legal-disclosure__toggle-sign::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: currentColor;
}

.page-legal-disclosure__toggle-sign::before {
  width: 15px;
  height: 1px;
}

.page-legal-disclosure__toggle-sign::after {
  width: 1px;
  height: 15px;
  transition: opacity 0.2s ease;
}

.page-legal-disclosure__toggle.is-open .page-legal-disclosure__toggle-sign::after {
  opacity: 0;
}

.page-legal-disclosure__link:hover,
.page-legal-disclosure__link:hover .page-legal-disclosure__text,
.page-legal-disclosure__link:hover .page-legal-disclosure__meta {
  color: var(--color-accent);
}

.page-legal-disclosure__link:hover .page-legal-disclosure__text,
.page-legal-disclosure__link:hover .page-legal-disclosure__meta span {
  text-decoration-color: currentColor;
}

.page-legal-disclosure__item--extra {
  transition: max-height 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  max-height: 120px;
  opacity: 1;
  overflow: hidden;
}

.page-legal-disclosure__item--extra.is-collapsed {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.page-legal-disclosure__empty {
  margin: 0;
  padding: 20px 15px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .page-legal-disclosure__section {
    margin-bottom: 60px;
  }
  .page-legal-disclosure__section-title {
    margin-bottom: 30px;
  }
  .page-legal-disclosure__link {
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 0;
  }
  .page-legal-disclosure__text {
    font-size: 16px;
  }
  .page-legal-disclosure__meta {
    font-size: 11px;
  }
  .page-legal-disclosure__action {
    margin-top: 30px;
  }
  .page-legal-disclosure__empty {
    font-size: 15px;
    line-height: 1.8;
  }
}
/* 404 用 page-fv: 装飾背景なし・見出し中央 30px / 700 / 1.4（タイトルのみアクセント色） */
body.error404 .page-fv::before {
  display: none;
}

body.error404 .page-fv {
  background-color: #fff;
}

body.error404 .page-fv__breadcrumb {
  color: #333;
}

body.error404 .page-fv__breadcrumb a {
  color: #333;
}

body.error404 .page-fv__breadcrumb .bcn-separator::before {
  border-top-color: #333;
  border-right-color: #333;
}

body.error404 .page-fv__content {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

body.error404 .page-fv__heading {
  width: 100%;
  min-height: 0;
  margin: 0 auto;
}

body.error404 .page-fv__title {
  font-size: clamp(21px, 0.8571428571vw + 17.6571428571px, 30px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-accent);
  text-align: center;
}

/* 404 — 背景 #fff、本文 #333。CTA は共通 .btn（primary / secondary） */
body.error404 {
  background-color: #fff;
}

body.error404 .site-main {
  background-color: #fff;
}

.page-error-404 {
  background-color: #fff;
}

.page-error-404 .page-content {
  padding-top: 60px;
  padding-bottom: 100px;
}

.page-error-404__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-error-404__lead {
  margin: 0 0 20px;
  font-size: clamp(16px, 0.7619047619vw + 13.0285714286px, 24px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
  text-align: center;
}

.page-error-404__sub {
  margin: 0 0 50px;
  font-size: clamp(14px, 0.1904761905vw + 13.2571428571px, 16px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
  text-align: center;
}

.page-error-404__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 620px;
  margin: 0 auto;
}

.page-error-404__btn.btn {
  position: relative;
  flex: 0 0 300px;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  padding-left: 24px;
  padding-right: 48px;
  text-decoration: none;
  box-sizing: border-box;
}

.page-error-404__btn.btn::after {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 768px) {
  .page-error-404 .page-content {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .page-error-404__lead {
    font-size: clamp(18px, 0.5714285714vw + 15.7714285714px, 24px);
  }
  .page-error-404__sub {
    margin-bottom: 40px;
  }
  .page-error-404__actions {
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    gap: 15px;
  }
  .page-error-404__btn.btn {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    max-width: 300px;
  }
}

/*# sourceMappingURL=main.css.map */
