/* ─────────────────────────────────────────
   LiNkage 建設 – Main Stylesheet
   ───────────────────────────────────────── */

/* ─── LOADING SCREEN ─── */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading__logo {
  width: 80px;
  height: 80px;
  animation: loading-spin 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

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

@keyframes loading-spin {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg) scale(1.05);
    opacity: .7;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}

/* ─── RESET / BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #3a3635;
  background: #fff;
  min-width: 320px;
}

/* WordPress 管理バー表示時のヘッダー位置調整 */
.admin-bar .site-header {
  top: 32px;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  background: #fff;
  box-shadow: 0 4px 8.5px 4px rgba(0, 0, 0, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
}

.site-header .logo img,
.site-header .logo .custom-logo {
  height: 57px;
  width: 190px;
  object-fit: contain;
  display: block;
}

/* グローバルナビゲーション（WordPress wp_nav_menu 出力対応）*/
.global-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
}

.global-nav .nav-list > li > a {
  font-size: 14px;
  font-weight: 700;
  color: #3a3635;
  text-decoration: none;
  white-space: nowrap;
}

.global-nav .nav-list > li > a:hover {
  color: #da1616;
}

/* ─── ドロップダウンメニュー（PC hover） ─── */
.nav-list > li.has-dropdown,
.nav-list > li.menu-item-has-children {
  position: relative;
}

/* 矢印インジケーター */
.nav-list > li.has-dropdown > a::after,
.nav-list > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  transition: transform 0.2s;
}

.nav-dropdown,
.nav-list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 180px;
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  z-index: 200;
}

/* 隙間をクリックで閉じないよう埋める */
.nav-dropdown::before,
.nav-list .sub-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-list > li.has-dropdown:hover > .nav-dropdown,
.nav-list > li.menu-item-has-children:hover > .sub-menu {
  display: block;
}

.nav-dropdown li a,
.nav-list .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #3a3635;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown li a:hover,
.nav-list .sub-menu li a:hover {
  color: #da1616;
  background: #f8fafc;
}

.site-header .header-contact {
  background: #da1616;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 40px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 60px;
  border-radius: 50px;
  transition: background .3s, color .3s;
}

.site-header .header-contact:hover {
  background: #fff;
  color: #da1616;
}

/* ヘッダー右グループ */
.site-header__right {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ハンバーガーボタン（モバイルのみ表示）*/
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
  flex-shrink: 0;
}

.hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  background: #3a3635;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* ハンバーガーオープン時アニメーション */
.site-header.is-open .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ─── HERO (FV Section) ─── */
.hero {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  background: #fff;
}

/* 赤背景ブロック（240px以下） */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 240px;
  bottom: 0;
  background: #da1616;
  z-index: 0;
}

/* 右側写真 */
.hero-bg {
  position: absolute;
  right: 0;
  top: 165px;
  width: 69.5%; /* 1000/1440 */
  height: 625px;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.7);
}

/* ロゴウォーターマーク（右上・白エリア） */
.hero-watermark {
  position: absolute;
  right: 10px;
  top: 115px;
  width: 442px;
  height: 100px;
  object-fit: contain;
  opacity: 0.15;
  z-index: 2;
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 200px;
  top: 350px;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 95px;
  font-weight: 900;
  color: #fff;
  line-height: 1.11;
  letter-spacing: -4.4px;
  opacity: 0;
  animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-sub {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-top: 54px;
  opacity: 0;
  animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

/* ─── FEATURE HOME（信頼と管理の徹底） ─── */
.feature-home {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  height: 860px;
  overflow: hidden;
}

.feature-home__red-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: #da1616;
}

.feature-home__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

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

.feature-home__content {
  position: absolute;
  right: 0;
  top: 110px;
  width: 620px;
  height: 600px;
  background: #da1616;
  z-index: 2;
  padding: 74px 0 0 100px;
}

.feature-home__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-home__label .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.feature-home__label span:last-child {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.feature-home__title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 40px;
}

.feature-home__body {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.94;
  width: 300px;
  margin-bottom: 40px;
}

/* ─── BUTTONS ─── */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.3px;
  height: 60px;
  width: 200px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s, color .3s;
}

.btn-white:hover {
  background: #000;
  color: #fff;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #da1616;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  height: 60px;
  width: 200px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s, color .3s;
}

.btn-red:hover {
  background: #fff;
  color: #da1616;
}

/* ─── MARQUEE ─── */
.marquee-section {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 3;
  padding: 0;
  pointer-events: none;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.marquee-text {
  font-family: 'Inter', sans-serif;
  font-size: 160px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  padding-right: 60px;
  user-select: none;
  line-height: 0.7;
  display: block;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION LABELS ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-red   { background: #da1616; }
.dot-white { background: #fff; }

.section-label span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.label-red   { color: #da1616; }
.label-white { color: #fff; }

.section-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.33;
}

.title-red   { color: #da1616; }
.title-white { color: #fff; }

.section-desc {
  font-size: 14px;
  font-weight: 500;
  color: #3a3635;
  line-height: 1.94;
  text-align: center;
  max-width: 936px;
  margin: 0 auto;
}

/* ─── SERVICE ─── */
.service-section {
  padding: 100px 0;
  background: #fff;
}

.service-section__head {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-title-main {
  font-size: 36px;
  font-weight: 900;
  color: #da1616;
  margin-top: 10px;
  letter-spacing: 0;
}

.service-inner {
  max-width: 1200px;
  height: 650px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 80px;
  align-items: stretch;
}

/* ── 左パネル ── */
.service-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-left__visual {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 300px;
  overflow: hidden;
}

.service-left__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-left__img.is-active {
  opacity: 1;
}

.service-left__num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 25px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* ── 右パネル ── */
.service-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-row {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-top: 1px solid #eef1f1;
  text-decoration: none;
  gap: 16px;
  transition: opacity 0.2s;
}

.service-row:last-child {
  border-bottom: 1px solid #eef1f1;
}

.service-row__body {
  flex: 1;
}

.service-row__title {
  font-size: 20px;
  font-weight: 900;
  color: #3a3635;
  margin-bottom: 14px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 10px;
  background: #eef1f1;
  color: #3a3635;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.service-row__arrow {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.service-row:hover .service-row__arrow {
  background: #da1616;
  border-color: #da1616;
}

.service-row:hover .service-row__arrow svg path {
  stroke: #fff;
}

/* ─── WORKS ─── */
.works-section {
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(155.34deg, rgb(233, 80, 46) 13.306%, rgb(195, 13, 35) 78.048%);
  padding: 80px 0 100px;
}

.works-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.works-sidebar {
  width: 40%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
}

.works-sidebar__desc {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  margin-top: 45px;
  margin-bottom: 80px;
  max-width: 320px;
}

.works-slider {
  width: 60%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.works-slider__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.works-slider__btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.works-slider__btn:disabled {
  opacity: .3;
  cursor: default;
}

.works-grid {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.works-grid::-webkit-scrollbar {
  display: none;
}

.works-card {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.works-card a {
  display: block;
  text-decoration: none;
}

.works-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  height: auto;
  object-fit: cover;
}

.works-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 12px 0 0;
}

/* ─── 3-COL DARK SECTION (会社概要・許可一覧・採用情報) ─── */
.dark-three-section {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.dark-three-grid {
  display: flex;
  height: 600px;
}

.dark-three-col {
  flex: 1;
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.dark-three-col:last-child {
  border-right: none;
}

.dark-three-col__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.dark-three-col:hover .dark-three-col__bg {
  transform: scale(1.05);
}

.dark-three-col__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  transition: background .4s ease;
}

.dark-three-col:hover .dark-three-col__overlay {
  background: rgba(0, 0, 0, .5);
}

.dark-three-col__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding: 80px 60px;
}

.dark-three-col__content .section-label {
  justify-content: flex-start;
}

.dark-three-icon {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 32px;
  bottom: 32px;
}

.dark-three-title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
}

/* ─── NEWS ─── */
.news-section {
  max-width: 100%;
  margin: 0 auto;
  background: #f8fafc;
  padding: 100px 0;
}

.news-inner {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: flex-start;
}

.news-side {
  flex-shrink: 0;
  width: 200px;
}

.news-list {
  flex: 1;
  list-style: none;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #eef1f1;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #da1616;
  width: 100px;
  flex-shrink: 0;
}

.news-tag {
  background: #eef1f1;
  color: #da1616;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 4px;
  flex-shrink: 0;
}

.news-title-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  line-height: 1.5;
}

.news-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact-section {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  height: 600px;
  overflow: clip;
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: .61;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(50, 40, 40, .75);
}

.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  gap: 40px;
  padding: 60px 20px;
  box-sizing: border-box;
}

.contact-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
}

.contact-cards {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.contact-card {
  width: 500px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 48px 40px;
  position: relative;
}

.contact-card + .contact-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #da1616;
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.contact-card-head img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.contact-phone {
  font-family: 'Lato', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #da1616;
}

.contact-hours {
  font-size: 12px;
  color: #58595d;
}

.contact-btn {
  background: #da1616;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.3px;
  height: 60px;
  width: 240px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .3s, color .3s;
}

.contact-btn:hover {
  background: #fff;
  color: #da1616;
}

/* ─── FOOTER ─── */
.site-footer {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 60px 160px 0;
}

.footer-top {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid #eef1f1;
}

.footer-logo img,
.footer-logo .custom-logo {
  height: 56px;
  width: 260px;
  object-fit: contain;
  display: block;
}

.footer-info {
  flex: 1;
}

.footer-info p {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #3a3635;
  line-height: 1.8;
}

/* フッターナビゲーション（WordPress wp_nav_menu 出力対応）*/
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.footer-nav .footer-nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-nav .footer-nav-list > li > a {
  font-size: 16px;
  font-weight: 700;
  color: #3a3635;
  text-decoration: none;
}

.footer-nav .footer-nav-list > li > a:hover {
  color: #da1616;
}

.footer-nav__sub {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav__sub li a {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
}

.footer-nav__sub li a:hover {
  color: #da1616;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.footer-privacy {
  font-size: 12px;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
}

.footer-bar {
  background: #3e3a39;
  max-width: 100%;
  margin: 0 auto;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

/* ═════════════════════════════════════════════════════════════
   SHARED PAGE HERO（page-service / page-company / page-feature 共通）
   ═════════════════════════════════════════════════════════════ */
.page-service,
.page-company,
.page-feature,
.page-recruit,
.page-contact,
.page-works,
.page-news,
.page-doboku,
.page-kojin,
.page-kenchiku,
.page-thanks {
  margin-top: 85px;
}

/* ─── THANKS ─── */
.thanks-section {
  padding: 80px 0 120px;
}

.thanks-section__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.thanks-section__text {
  font-size: 16px;
  line-height: 2;
  color: #3a3635;
  margin-bottom: 48px;
}

.page-hero {
  max-width: 100%;
  margin-inline: auto;
  position: relative;
  height: 300px;
  background-color: #da1616;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 655px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  opacity: 0.09;
}

/* ページ別ウォーターマーク画像 */
.page-service .page-hero__bg { background-image: url('../images/service/hero-watermark.png'); }
.page-company .page-hero__bg { background-image: url('../images/company/hero-watermark.png'); }
.page-feature .page-hero__bg { background-image: url('../images/feature/hero-watermark.png'); }

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 165px;
}


/* ─── パンくずリスト ─── */
.breadcrumb {
  position: absolute;
  bottom: 20px;
  left: 165px;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb__item a:hover {
  color: #fff;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '>';
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.breadcrumb__item:last-child {
  color: #fff;
}

/* ページ別ウォーターマーク – works */
.page-works .page-hero__bg { background-image: url('../images/service/hero-watermark.png'); }

.page-hero__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #eef1f1;
  margin: 0;
}

/* ═════════════════════════════════════════════════════════════
   PAGE-SERVICE（事業案内）
   ═════════════════════════════════════════════════════════════ */

/* 2. SERVICE WORKS */
.service-works {
  max-width: 100%;
  margin-inline: auto;
  padding-top: 80px;
  padding-bottom: 120px;
  background: #fff;
}

.service-works__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #111827;
  text-align: center;
  margin: 0 0 80px;
}

.service-works__relation-box {
  width: 750px;
  height: 150px;
  border: 1px solid #3a3635;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto 0;
  cursor: pointer;
  transition: border-color 0.2s;
}

.service-works__relation-box:hover {
  border-color: #c30d23;
}

.service-works__relation-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #c30d23;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* service-item 共通 */
.service-item {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.service-item--odd  { flex-direction: row; }
.service-item--even { flex-direction: row-reverse; }

.service-item__body {
  width: 500px;
  flex-shrink: 0;
}

.service-item__header {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 12px;
}

.service-item__num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #da1616;
  line-height: 1;
  min-width: 20px;
}

.service-item__cat {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.service-item__rule {
  width: 100%;
  height: 1px;
  background: #eef1f1;
  margin-bottom: 24px;
}

.service-item__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  line-height: 1.5;
  margin: 0 0 20px;
  padding-left: 70px;
}

.service-item__desc {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  line-height: 1.5;
  padding-left: 70px;
  margin: 0 0 24px;
}

.service-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 70px;
}

.service-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #da1616;
  color: #eef1f1;
  font-size: 14px;
  font-weight: 700;
  height: 50px;
  padding: 0 20px;
  letter-spacing: 0.05em;
}

.service-item__media {
  width: 440px;
  height: 345px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.service-item__media--clipped {
  clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
}

/* ─── NEEDS SECTION ─── */
.needs-section {
  max-width: 1200px;
  margin-inline: auto;
  background: #eef1f1;
  padding: 60px 0;
}

.needs-section__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.needs-section__title {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0 0 48px;
}

.needs-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.needs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.needs-item__icon {
  width: 60px;
  height: 60px;
}

.needs-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.needs-item__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* ─── SERVICE DETAIL（個別サービスページ: doboku / kojin / kenchiku） ─── */
.service-detail {
  padding: 80px 0 100px;
  background: #fff;
}

.service-detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.service-detail__body {
  flex: 1;
}

.service-detail__title {
  font-size: 28px;
  font-weight: 900;
  color: #3a3635;
  line-height: 1.6;
  margin: 24px 0 20px;
}

.service-detail__desc {
  font-size: 16px;
  font-weight: 500;
  color: #3a3635;
  line-height: 1.9;
  margin-bottom: 28px;
}

.service-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-detail__media {
  flex-shrink: 0;
  width: 460px;
  height: 360px;
  overflow: hidden;
}

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

@media (max-width: 1023px) {
  .service-detail__inner {
    gap: 48px;
  }

  .service-detail__media {
    width: 340px;
    height: 280px;
  }
}

@media (max-width: 767px) {
  .service-detail__inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }

  .service-detail__media {
    width: 100%;
    height: 240px;
  }

  .service-detail__title {
    font-size: 22px;
  }
}

/* 3. SERVICE CTA */
.service-cta {
  max-width: 100%;
  margin-inline: auto;
  position: relative;
  height: 483px;
  background-image: url('../images/service/service-cta-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.67);
}

.service-cta__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.service-cta__catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.service-cta__catch--red { color: #da1616; }

.service-cta__desc {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  margin: 0;
}

.btn-white--lg {
  width: 360px;
  height: 60px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

/* 4. SERVICE FLOW */
.service-flow {
  max-width: 100%;
  margin-inline: auto;
  background: #f8fafc;
  padding: 80px 0 100px;
}

.service-flow__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #111827;
  margin: 0 0 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
}

.service-flow__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
}

.service-flow__item {
  border-bottom: 1px solid #eef1f1;
}

.service-flow__item:last-child {
  border-bottom: none;
}

.service-flow__item-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 28px 0;
}

.service-flow__step-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 180px;
  flex-shrink: 0;
}

.service-flow__step-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #da1616;
  letter-spacing: 0.05em;
  line-height: 1;
}

.service-flow__step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
  line-height: 1.4;
}

.service-flow__step-desc {
  font-size: 16px;
  font-weight: 500;
  color: #58595d;
  line-height: 1.7;
  margin: 0;
  padding-top: 4px;
}

/* ═════════════════════════════════════════════════════════════
   PAGE-COMPANY（企業情報）
   ═════════════════════════════════════════════════════════════ */

/* 2. 代表メッセージ */
.company-message {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  padding: 115px 0 89px;
}

.company-message__card {
  width: 1000px;
  margin: 0 auto;
  background: linear-gradient(141.27deg, rgb(233, 80, 46) 13.306%, rgb(218, 22, 22) 78.048%);
  border-radius: 12px;
  padding: 60px 100px;
  position: relative;
}

.company-message__header {
  text-align: center;
  margin-bottom: 28px;
}

.company-message__en-title {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 2px;
  margin: 0 0 8px;
}

.company-message__en-sub {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}

.company-message__body {
  background: #f8fafc;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.company-message__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.company-message__text p {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  line-height: 1.8;
  margin: 0;
}

.company-message__signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-top: 24px;
}

.company-message__ceo-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.2;
}

.company-message__ceo-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

/* 3. 資格・許可一覧 */
.company-license {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  padding: 80px 0;
}

.company-license__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #111827;
  text-align: center;
  margin: 0 0 56px;
}

.license-cards {
  display: flex;
  justify-content: center;
  gap: 31px;
}

.license-card {
  width: 415px;
  min-height: 310px;
  background: #fff;
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.04);
  padding: 24px 37px 36px;
  position: relative;
}

.license-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #c30d23;
  text-align: center;
  margin: 0 0 20px;
}

.license-card__rule {
  width: 100%;
  height: 1px;
  background: #eef1f1;
  margin-bottom: 24px;
}

.license-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.license-card__list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 2;
}

/* 4. 会社概要 */
.company-overview {
  max-width: 100%;
  margin-inline: auto;
  background: #f8fafc;
  padding: 80px 0 60px;
}

.company-overview__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #111827;
  text-align: center;
  margin: 0 0 56px;
}

.info-table {
  width: 900px;
  margin: 0 auto;
}

.info-table__row {
  display: flex;
  align-items: stretch;
  border-top: 1px solid #eef1f1;
}

.info-table__row:last-child {
  border-bottom: 1px solid #eef1f1;
}

.info-table__label {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 24px 32px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #c30d23;
  line-height: 1.2;
  margin: 0;
}

.info-table__value {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 24px 32px;
  margin: 0;
}


.info-table__value p {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3a3635;
  line-height: 1.4;
  margin: 0;
}

/* 5. 会社写真 & Google マップ */
.company-map-row {
  background: #f8fafc;
  padding: 0 0 100px;
}

.company-map-row__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.company-map-row__photo {
  flex: 1;
  overflow: hidden;
  min-height: 360px;
}

.company-map-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.company-map-row__map {
  flex: 1;
  overflow: hidden;
  min-height: 360px;
}

.company-map-row__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* ═════════════════════════════════════════════════════════════
   PAGE-FEATURE（選ばれる理由）
   ═════════════════════════════════════════════════════════════ */

/* 2. FEATURE INTRO */
.feature-intro {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  padding: 142px 0 60px;
  text-align: center;
}

.feature-intro__catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #111827;
  line-height: normal;
  margin: 0 0 48px;
}

.feature-intro__catch--red { color: #da1616; }

.feature-intro__desc {
  max-width: 610px;
  margin: 0 auto;
  text-align: left;
}

.feature-intro__desc p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3a3635;
  line-height: 2.28;
  margin: 0;
}

.feature-intro__desc p + p {
  margin-top: 16px;
}

/* 3. FEATURE SECTION（赤グラデ + 白パネル） */
.feature-section {
  max-width: 100%;
  margin-inline: auto;
  position: relative;
}

.feature-section::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120.9deg, #e9502e 13.3%, #da1616 78%);
  z-index: 0;
}

.feature-section__hero {
  position: relative;
  z-index: 1;
  width: 920px;
  height: 312px;
  margin: 0 auto;
  overflow: hidden;
}

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

.feature-section__panel {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  background: #fff;
  padding: 111px 0 146px;
}

.feature-section__divider {
  display: block;
  width: 931px;
  margin: 69px auto;
  border: none;
  border-top: 1px solid #eef1f1;
}

/* 4. FEATURE ITEM */
.feature-item {
  display: flex;
  width: 931px;
  margin: 0 auto;
}

.feature-item__image {
  width: 480px;
  height: 320px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.feature-item__content {
  flex: 1;
  padding: 22px 0 0 40px;
  display: flex;
  flex-direction: column;
}

.feature-item__badge {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 900;
  font-style: normal;
  color: #e9502e;
  line-height: normal;
  margin-bottom: 12px;
}

.feature-item__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #111827;
  line-height: normal;
  margin: 0 0 12px;
}

.feature-item__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #58595d;
  line-height: 1.7;
  margin: 0;
  max-width: 405px;
  flex: 1;
}

.feature-item__highlight {
  background: #da1616;
  min-height: 78px;
  width: 410px;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  margin-top: 24px;
}

.feature-item__highlight p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

/* ═════════════════════════════════════════════════════════════
   PAGE-WORKS（工事実績 アーカイブ / 詳細）
   ═════════════════════════════════════════════════════════════ */

/* ─── hero inner: single-works ─── */
.works-detail__header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eef1f1;
}

.works-detail__cat {
  display: inline-block;
  background: #eef1f1;
  color: #da1616;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.works-detail__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  line-height: 1.5;
  margin: 0;
}

/* ─── FILTER ─── */
.works-filter {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  border-bottom: 1px solid #eef1f1;
}

.works-filter__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
  align-items: center;
}

.works-filter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #3a3635;
  background: #fff;
  border: 1px solid #b9b9b9;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.works-filter__btn:hover,
.works-filter__btn.is-active {
  background: #da1616;
  color: #fff;
  border-color: #da1616;
}

/* ─── ARCHIVE GRID ─── */
.works-archive {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  padding: 60px 0 100px;
}

.works-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.works-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
  margin-bottom: 60px;
}

.works-archive__empty {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #58595d;
  text-align: center;
  padding: 60px 0;
}

/* ─── ARCHIVE CARD ─── */
.works-archive-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.works-archive-card__link:hover .works-archive-card__img img {
  transform: scale(1.04);
}

.works-archive-card__link:hover .works-archive-card__title {
  color: #da1616;
}

.works-archive-card__img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #d9d9d9;
}

.works-archive-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.works-archive-card__cat {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #da1616;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  letter-spacing: 0.05em;
}

.works-archive-card__body {
  padding: 16px 0 0;
}

.works-archive-card__date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  display: block;
  margin-bottom: 8px;
}

.works-archive-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.5;
  margin: 0 0 10px;
  transition: color 0.2s;
}

.works-archive-card__excerpt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #58595d;
  line-height: 1.7;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.works-archive-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #da1616;
}

.works-archive-card__arrow {
  width: 16px;
  height: 16px;
}

/* ─── PAGINATION ─── */
.works-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.works-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #3a3635;
  background: #fff;
  border: 1px solid #eef1f1;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.works-pagination .page-numbers.current,
.works-pagination .page-numbers:hover {
  background: #da1616;
  color: #fff;
  border-color: #da1616;
}

/* ─── WORKS CTA（アーカイブ・詳細 共通） ─── */
.works-cta {
  max-width: 100%;
  margin-inline: auto;
  background: linear-gradient(141.27deg, rgb(233, 80, 46) 13.306%, rgb(218, 22, 22) 78.048%);
  padding: 80px 20px;
}

.works-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.works-cta__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.works-cta__text--accent {
  color: #111827;
}

/* ─── SINGLE WORKS: パンくず ─── */
.works-detail__breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 0;
  background: #fff;
}

.works-detail__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.works-detail__back-link:hover {
  color: #da1616;
}

.works-detail__back-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── SINGLE WORKS: メインビジュアル ─── */
.works-detail__thumbnail {
  margin-bottom: 40px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

/* ─── SINGLE WORKS: 詳細コンテンツ ─── */
.works-detail__content {
  max-width: 750px;
  margin-inline: auto;
  background: #fff;
  padding: 80px 0 100px;
}

.works-detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: flex-start;
}

/* メタサイドバー */
.works-detail__meta {
  width: 260px;
  flex-shrink: 0;
  background: #f8fafc;
  border-top: 3px solid #da1616;
  padding: 28px 24px 32px;
}

.works-detail__meta-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.works-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.works-meta-list__item {
  border-bottom: 1px solid #eef1f1;
  padding: 14px 0;
}

.works-meta-list__item:last-child {
  border-bottom: none;
}

.works-meta-list__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #da1616;
  display: block;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.works-meta-list__value {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 1.5;
  display: block;
}

.works-meta-cat-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #da1616;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
}

/* 記事本文 */
.works-detail__body {
  flex: 1;
  min-width: 0;
}

.works-detail__body .entry-content {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3a3635;
  line-height: 1.9;
}

.works-detail__body .entry-content p {
  margin: 20px 0 20px;
}

.works-detail__body .entry-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 48px 0 16px;
  padding-left: 12px;
  border-left: 3px solid #da1616;
}

.works-detail__body .entry-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #c30d23;
  line-height: 28px;
  margin: 32px 0 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #b9b9b9;
  position: relative;
}

.works-detail__body .entry-content h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background: #c30d23;
}

.works-detail__body .entry-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #3a3635;
  line-height: 28px;
  margin: 28px 0 12px;
  padding-left: 26px;
  position: relative;
}

.works-detail__body .entry-content h4::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0;
  color: #c30d23;
  font-size: 18px;
  line-height: 28px;
}

.works-detail__body .entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px 0;
}

.works-detail__body .entry-content ul,
.works-detail__body .entry-content ol {
  padding-left: 1.5em;
  margin: 0 0 20px;
  line-height: 2;
}

/* ─── RELATED WORKS ─── */
.related-works {
  max-width: 100%;
  margin-inline: auto;
  background: #f8fafc;
  padding: 80px 0 100px;
}

.related-works__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  text-align: center;
  margin: 0 0 48px;
}

.related-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.related-works-card {
  background: #fff;
  overflow: hidden;
}

.related-works-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.related-works-card a:hover .related-works-card__title {
  color: #da1616;
}

.related-works-card__img {
  height: 200px;
  overflow: hidden;
  background: #d9d9d9;
}

.related-works-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.related-works-card a:hover .related-works-card__img img {
  transform: scale(1.04);
}

.related-works-card__body {
  padding: 16px;
}

.related-works-card__cat {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #da1616;
  display: block;
  margin-bottom: 6px;
}

.related-works-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.5;
  margin: 0;
  transition: color 0.2s;
}

/* ═════════════════════════════════════════════════════════════
   PAGE-NEWS（お知らせ アーカイブ / 詳細）
   ═════════════════════════════════════════════════════════════ */

/* ページ別ウォーターマーク – news */
.page-news .page-hero__bg { background-image: url('../images/service/hero-watermark.png'); }

/* ─── FILTER ─── */
.news-filter {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  border-bottom: 1px solid #eef1f1;
}

.news-filter__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
  align-items: center;
}

.news-filter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #3a3635;
  background: #fff;
  border: 1px solid #b9b9b9;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.news-filter__btn:hover,
.news-filter__btn.is-active {
  background: #da1616;
  color: #fff;
  border-color: #da1616;
}

/* ─── NEWS SIDEBAR ─── */
.news-sidebar {
  width: 240px;
  flex-shrink: 0;
}

.news-sidebar__section {
  margin-bottom: 0;
}

.news-sidebar__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  background: #fff;
  padding: 19px 20px;
  border-top: 2px solid #3a3635;
  margin: 0;
}

.news-sidebar__cat-list {
  list-style: none;
  margin: 0;
  padding: 16px 15px 24px;
}

.news-sidebar__cat-list li {
  padding: 8px 0;
}

.news-sidebar__cat-list li a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}

.news-sidebar__cat-list li a::before {
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  background: #da1616;
  flex-shrink: 0;
}

.news-sidebar__cat-list li a:hover {
  color: #da1616;
}

.news-sidebar__archive-list {
  list-style: none;
  margin: 0;
  padding: 10px 15px 16px;
}

.news-sidebar__archive-list li {
  margin-bottom: 4px;
}

.news-sidebar__archive-list li a {
  display: block;
  background: #eef1f1;
  padding: 12px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.news-sidebar__archive-list li a:hover {
  background: #da1616;
  color: #fff;
}

.news-sidebar__empty {
  font-size: 13px;
  color: #888;
  padding: 16px 15px;
}

/* ─── ARCHIVE LIST ─── */
.news-archive {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  padding: 60px 0 100px;
}

.news-archive__inner {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: flex-start;
}

.news-archive__main {
  flex: 1;
  min-width: 0;
}

.news-archive__list {
  list-style: none;
  margin: 0 0 60px;
  padding: 0;
}

.news-archive__item {
  border-bottom: 1px solid #eef1f1;
}

.news-archive__item:first-child {
  border-top: 1px solid #eef1f1;
}

.news-archive__link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.news-archive__link:hover .news-archive__title {
  color: #da1616;
}

.news-archive__link:hover .news-archive__arrow {
  color: #da1616;
  transform: translateX(4px);
}

.news-archive__date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #da1616;
  width: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}

.news-archive__tag {
  background: #eef1f1;
  color: #da1616;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}

.news-archive__title {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  line-height: 1.5;
  transition: color 0.2s;
}

.news-archive__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #b9b9b9;
  transition: color 0.2s, transform 0.2s;
}

.news-archive__empty {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #58595d;
  text-align: center;
  padding: 60px 0;
}

/* ─── PAGINATION（archive-news 共通） ─── */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #3a3635;
  background: #fff;
  border: 1px solid #eef1f1;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
  background: #da1616;
  color: #fff;
  border-color: #da1616;
}

/* ─── SINGLE NEWS: サイドバー付きラッパー ─── */
.news-detail-wrap {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  padding: 60px 0 100px;
}

.news-detail-wrap__inner {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: flex-start;
}

.news-detail-wrap__main {
  flex: 1;
  min-width: 0;
}

/* ─── SINGLE NEWS: パンくず ─── */
.news-detail-wrap .news-detail__breadcrumb {
  max-width: none;
  padding: 0 0 28px;
  background: transparent;
}

.news-detail__breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 0;
  background: #fff;
}

.news-detail__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.news-detail__back-link:hover {
  color: #da1616;
}

.news-detail__back-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── SINGLE NEWS: 記事本体 ─── */
.news-detail {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  padding: 60px 0 100px;
}

.news-detail__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ラッパー内ではパディング・マージンをリセット */
.news-detail-wrap .news-detail {
  max-width: none;
  padding: 0;
}

.news-detail-wrap .news-detail__inner {
  max-width: none;
  padding: 0;
}

/* 記事ヘッダー */
.news-detail__header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eef1f1;
}

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

.news-detail__date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #da1616;
}

.news-detail__tag {
  background: #eef1f1;
  color: #da1616;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
}

.news-detail__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  line-height: 1.5;
  margin: 0;
}

/* アイキャッチ画像 */
.news-detail__thumbnail {
  margin-bottom: 40px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

/* 記事本文 */
.news-detail__body {
  margin-bottom: 60px;
}

.news-detail__body .entry-content {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3a3635;
  line-height: 1.9;
}

.news-detail__body .entry-content p {
  margin: 0 0 20px;
}

.news-detail__body .entry-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 40px 0 16px;
  padding-left: 12px;
  border-left: 3px solid #da1616;
}

.news-detail__body .entry-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #c30d23;
  line-height: 28px;
  margin: 32px 0 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #b9b9b9;
  position: relative;
}

.news-detail__body .entry-content h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background: #c30d23;
}

.news-detail__body .entry-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #3a3635;
  line-height: 28px;
  margin: 28px 0 12px;
  padding-left: 26px;
  position: relative;
}

.news-detail__body .entry-content h4::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0;
  color: #c30d23;
  font-size: 18px;
  line-height: 28px;
}

.news-detail__body .entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px 0;
}

.news-detail__body .entry-content ul,
.news-detail__body .entry-content ol {
  padding-left: 1.5em;
  margin: 0 0 20px;
  line-height: 2;
}

.news-detail__body .entry-content a {
  color: #da1616;
  text-decoration: underline;
}

/* 前後記事ナビゲーション */
.news-detail__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #eef1f1;
  padding-top: 32px;
}

.news-detail__nav-prev,
.news-detail__nav-next {
  flex: 1;
  min-width: 0;
}

.news-detail__nav-next {
  text-align: right;
}

.news-detail__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #3a3635;
  text-decoration: none;
  transition: color 0.2s;
  max-width: 100%;
}

.news-detail__nav-link:hover {
  color: #da1616;
}

.news-detail__nav-link span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-detail__nav-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.news-detail__nav-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 68px;
  height: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #3a3635;
  background: #f8fafc;
  border: 1px solid #eef1f1;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.news-detail__nav-list:hover {
  background: #da1616;
  color: #fff;
  border-color: #da1616;
}

/* ─── RECENT NEWS ─── */
.news-recent {
  max-width: 100%;
  margin-inline: auto;
  background: #f8fafc;
  padding: 80px 0 100px;
}

.news-recent__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-recent__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  margin: 0 0 40px;
}

.news-recent__list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}

.news-recent__item {
  border-bottom: 1px solid #eef1f1;
}

.news-recent__item:first-child {
  border-top: 1px solid #eef1f1;
}

.news-recent__link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
}

.news-recent__link:hover .news-recent__title {
  color: #da1616;
}

.news-recent__link:hover .news-recent__arrow {
  color: #da1616;
  transform: translateX(4px);
}

.news-recent__date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #da1616;
  width: 100px;
  flex-shrink: 0;
  white-space: nowrap;
}

.news-recent__tag {
  background: #eef1f1;
  color: #da1616;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}

.news-recent__title {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  line-height: 1.5;
  transition: color 0.2s;
}

.news-recent__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #b9b9b9;
  transition: color 0.2s, transform 0.2s;
}

.news-recent__footer {
  text-align: center;
}


/* ═════════════════════════════════════════════════════════════
   PAGE-PRIVACY（プライバシーポリシー）
   ═════════════════════════════════════════════════════════════ */

.privacy-section {
  padding: 80px 20px 120px;
}

.privacy-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-body {
  margin-bottom: 60px;
}

/* entry-content: news-detail と同一スタイル */
.privacy-body .entry-content {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3a3635;
  line-height: 1.9;
}

.privacy-body .entry-content p {
  margin: 0 0 20px;
}

.privacy-body .entry-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 40px 0 16px;
  padding-left: 12px;
  border-left: 3px solid #da1616;
}

.privacy-body .entry-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #c30d23;
  line-height: 28px;
  margin: 32px 0 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #b9b9b9;
  position: relative;
}

.privacy-body .entry-content h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background: #c30d23;
}

.privacy-body .entry-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #3a3635;
  line-height: 28px;
  margin: 28px 0 12px;
  padding-left: 26px;
  position: relative;
}

.privacy-body .entry-content h4::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0;
  color: #c30d23;
  font-size: 18px;
  line-height: 28px;
}

.privacy-body .entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px 0;
}

.privacy-body .entry-content ul,
.privacy-body .entry-content ol {
  padding-left: 1.5em;
  margin: 0 0 20px;
  line-height: 2;
}

.privacy-body .entry-content a {
  color: #da1616;
  text-decoration: underline;
}

/* ═════════════════════════════════════════════════════════════
   PAGE-RECRUIT（採用情報）
   ═════════════════════════════════════════════════════════════ */

/* ページ別ウォーターマーク */
.page-recruit .page-hero__bg { background-image: url('../images/recruit/hero-watermark.png'); }

/* ─── メインメッセージ ─── */
.recruit-message {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  padding: 100px 0 80px;
}

.recruit-message__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.recruit-message__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  line-height: 1.8;
  margin: 0 0 32px;
}

.recruit-message__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3a3635;
  line-height: 2;
  margin: 0;
}

/* ─── 休日・休暇 ─── */
.recruit-benefits {
  max-width: 100%;
  margin-inline: auto;
  background: #f8fafc;
  padding: 80px 0 100px;
}

.recruit-benefits__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit-benefits__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #111827;
  margin: 8px 0 16px;
}

.recruit-benefits__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3a3635;
  line-height: 2;
  margin: 0 0 48px;
}

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

.benefit-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.04);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.benefit-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
}

.benefit-card__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3a3635;
  line-height: 1.8;
  margin: 0;
}

/* ─── 福利厚生 ─── */
.recruit-features {
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  padding: 80px 0 100px;
}

.recruit-features__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit-features__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #111827;
  margin: 8px 0 48px;
}

.recruit-feat {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
}

.recruit-feat--reverse {
  flex-direction: row-reverse;
}

.recruit-feat:last-child {
  margin-bottom: 0;
}

.recruit-feat__image {
  width: 440px;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

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

.recruit-feat__body {
  flex: 1;
}

.recruit-feat__num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #da1616;
  display: block;
  margin-bottom: 8px;
}

.recruit-feat__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
}

.recruit-feat__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3a3635;
  line-height: 2;
  margin: 0;
}

/* ─── 募集要項 ─── */
.recruit-overview {
  max-width: 100%;
  margin-inline: auto;
  background: #f8fafc;
  padding: 80px 0 100px;
}

.recruit-overview__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit-overview__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #111827;
  margin: 8px 0 48px;
}

/* ─── 応募CTA ─── */
.recruit-cta {
  max-width: 1200px;
  margin-inline: auto;
  background: linear-gradient(141.27deg, rgb(233, 80, 46) 13.306%, rgb(218, 22, 22) 78.048%);
  padding: 100px 20px;
}

.recruit-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.recruit-cta__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 40px;
}

.recruit-cta__accent {
  color: #111827;
}

.recruit-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.recruit-cta__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.recruit-cta__tel-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.recruit-cta__tel-num {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

/* ─── SP用改行 ─── */
.sp-only { display: none; }


/* ═════════════════════════════════════════════════════════════
   PAGE-CONTACT（お問い合わせ）
   ═════════════════════════════════════════════════════════════ */

/* ページ別ウォーターマーク */
.page-contact .page-hero__bg { background-image: url('../images/contact/hero-watermark.png'); }

/* ─── リード文 ─── */
.contact-form-lead {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px 0;
  text-align: center;
}

.contact-form-lead p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3a3635;
  line-height: 30px;
  margin: 0;
}

/* ─── フォームカード ─── */
.contact-form-card {
  max-width: 801px;
  margin: 40px auto 100px;
  padding: 50px 92px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* ─── CF7 フォーム共通 ─── */
.contact-form-card .wpcf7-form label,
.contact-form-card .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-card .wpcf7-form p {
  margin: 0 0 24px;
}

.contact-form-card .wpcf7-form p label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3a3635;
  line-height: 20px;
}

/* 必須マーク */
.contact-form-card .wpcf7-form .required-mark {
  color: #da1616;
}

/* テキスト入力 */
.contact-form-card .wpcf7-form input[type="text"],
.contact-form-card .wpcf7-form input[type="email"],
.contact-form-card .wpcf7-form input[type="tel"] {
  display: block;
  width: 100%;
  height: 42px;
  margin-top: 12px;
  padding: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #101828;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form-card .wpcf7-form input[type="text"]:focus,
.contact-form-card .wpcf7-form input[type="email"]:focus,
.contact-form-card .wpcf7-form input[type="tel"]:focus {
  border-color: #da1616;
}

.contact-form-card .wpcf7-form input::placeholder {
  color: rgba(16, 24, 40, 0.5);
}

/* テキストエリア */
.contact-form-card .wpcf7-form textarea {
  display: block;
  width: 100%;
  height: 129px;
  margin-top: 12px;
  padding: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #101828;
  line-height: 20px;
  box-sizing: border-box;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
}

.contact-form-card .wpcf7-form textarea:focus {
  border-color: #da1616;
}

.contact-form-card .wpcf7-form textarea::placeholder {
  color: rgba(16, 24, 40, 0.5);
}

/* ラジオボタン */
.contact-form-card .wpcf7-form .wpcf7-radio {
  display: flex;
  gap: 48px;
  margin-top: 12px;
}

.contact-form-card .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact-form-card .wpcf7-form .wpcf7-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #d1d5dc;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.contact-form-card .wpcf7-form .wpcf7-radio input[type="radio"]:checked {
  border-color: #da1616;
}

.contact-form-card .wpcf7-form .wpcf7-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #da1616;
  border-radius: 50%;
}

.contact-form-card .wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4a5565;
}

.contact-form-card .wpcf7-form .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label {
  color: #da1616;
}

/* チェックボックス（同意） */
.contact-form-card .wpcf7-form .wpcf7-acceptance {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.contact-form-card .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact-form-card .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5dc;
  border-radius: 0;
  margin: 0;
  cursor: pointer;
  background: #fff;
  flex-shrink: 0;
}

.contact-form-card .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked {
  background: #da1616;
  border-color: #da1616;
}

.contact-form-card .wpcf7-form .wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: '✓';
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 16px;
}

/* 送信ボタン */
.contact-form-card .wpcf7-form input[type="submit"] {
  display: block;
  width: 240px;
  height: 56px;
  margin: 16px auto 0;
  background: #da1616;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
              0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, box-shadow 0.2s;
}

.contact-form-card .wpcf7-form input[type="submit"]:hover {
  background: #b81212;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* CF7 送信ボタンの矢印・スピナー装飾を非表示 */
.contact-form-card .wpcf7-form .wpcf7-submit::before,
.contact-form-card .wpcf7-form .wpcf7-submit::after {
  display: none !important;
  content: none !important;
}

.contact-form-card .wpcf7-form .wpcf7-spinner {
  display: none !important;
}

/* CF7 バリデーションメッセージ */
.contact-form-card .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #da1616;
  margin-top: 4px;
}

.contact-form-card .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}

/* CF7 スピナー非表示調整 */
.contact-form-card .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE – タブレット  (max-width: 1023px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* ─── HEADER ─── */
  .site-header {
    padding: 0 24px;
  }

  .global-nav .nav-list {
    gap: 24px;
  }

  /* ─── HERO (homepage) ─── */
  .hero {
    height: 700px;
  }

  .hero::before {
    top: 180px;
  }

  .hero-bg {
    top: 140px;
    width: 65%;
    height: 480px;
  }

  .hero-watermark {
    width: 300px;
    top: 95px;
  }

  .hero-content {
    left: 50px;
    top: 270px;
  }

  .hero-title {
    font-size: 72px;
    letter-spacing: -2.8px;
  }

  .hero-sub {
    font-size: 22px;
    margin-top: 36px;
  }

  /* ─── FEATURE HOME ─── */
  .feature-home {
    height: 600px;
  }

  .feature-home__red-bg {
    width: 380px;
  }

  .feature-home__image {
    width: 60%;
  }

  .feature-home__content {
    width: 480px;
    top: 80px;
    height: 480px;
    padding: 50px 0 0 60px;
  }

  .feature-home__title {
    font-size: 32px;
  }

  .feature-home__body {
    width: 260px;
  }

  /* ─── SERVICE（homepage） ─── */
  .service-inner {
    gap: 48px;
  }

  .service-left__visual {
    min-height: 400px;
  }

  .service-row__arrow {
    width: 56px;
    height: 56px;
  }

  /* ─── FEATURE SECTION（tablet） ─── */
  .feature-section__hero {
    width: 90%;
    height: 260px;
  }

  .feature-section__panel {
    padding: 80px 40px 100px;
  }

  .feature-item {
    width: 100%;
    gap: 0;
  }

  .feature-item__image {
    width: 420px;
    height: 280px;
  }

  .feature-section__divider {
    width: 100%;
  }

  /* ─── WORKS（homepage） ─── */
  .works-layout {
    flex-direction: column;
    gap: 32px;
  }

  .works-sidebar {
    width: 100%;
  }

  .works-slider {
    width: 100%;
  }

  .works-card img {
    aspect-ratio: 3 / 2;
  }

  /* ─── NEWS（homepage） ─── */
  .news-inner {
    padding: 0 40px;
    gap: 40px;
  }

  /* ─── FOOTER ─── */
  .site-footer {
    padding: 40px 40px 0;
  }

  .footer-top {
    gap: 32px;
  }

  .footer-nav .footer-nav-list {
    gap: 16px;
    flex-wrap: wrap;
  }

  /* ─── PAGE HERO ─── */
  .page-hero__inner {
    padding: 0 40px;
  }

  /* ─── PAGE-SERVICE: service-item ─── */
  .service-item {
    padding: 0 40px;
    gap: 40px;
  }

  /* ─── NEEDS SECTION（SP） ─── */
  .needs-grid {
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .needs-item__label {
    font-size: 15px;
  }

  /* ─── PAGE-WORKS ─── */
  .works-filter__inner {
    padding: 24px 40px;
  }

  .works-archive__inner {
    padding: 0 40px;
  }

  .works-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .works-detail__inner {
    padding: 0 40px;
    gap: 40px;
  }

  .works-cta__inner {
    padding: 60px 40px;
  }

  .related-works {
    padding: 60px 40px;
  }

  .related-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .works-detail__breadcrumb {
    padding: 28px 40px 0;
  }

  /* ─── PAGE-NEWS ─── */
  .news-filter__inner {
    padding: 24px 40px;
  }

  .news-archive__inner {
    padding: 0 40px;
  }

  .news-sidebar {
    width: 200px;
  }

  .news-detail-wrap__inner {
    padding: 0 40px;
  }

  .news-detail__inner {
    padding: 60px 40px 80px;
  }

  .news-recent__inner {
    padding: 60px 40px;
  }

  /* ─── PAGE-RECRUIT ─── */
  .recruit-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruit-feat {
    gap: 32px;
  }

  .recruit-feat__image {
    width: 320px;
    height: 220px;
  }

  /* ─── PAGE-CONTACT ─── */
  .contact-form-card {
    margin: 32px 20px 80px;
    padding: 40px 40px;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE – モバイル  (max-width: 767px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ─── HEADER ─── */
  .site-header {
    height: 60px;
  }

  .site-header__inner {
    padding: 0;
  }

  .site-header .logo img,
  .site-header .logo .custom-logo {
    height: 38px;
    width: auto;
  }

  /* デスクトップナビ非表示 */
  .global-nav,
  .site-header .header-contact {
    display: none;
  }

  /* ハンバーガー表示 */
  .hamburger {
    display: flex;
  }

  /* モバイルメニュー展開: 右から80%のパネル */
  .site-header.is-open .site-header__right {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 20%;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    z-index: 150;
    padding: 80px 40px 40px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .1);
  }

  /* メニュー背景のオーバーレイ */
  .site-header.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 140;
  }

  .site-header.is-open .global-nav {
    display: flex;
  }

  .site-header.is-open .global-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    font-size: 16px;
  }

  .site-header.is-open .header-contact {
    display: flex;
    margin-top: 40px;
    width: 200px;
    height: 48px;
    justify-content: center;
    margin-left: 0;
  }

  /* ハンバーガーボタン: open時は最前面 */
  .site-header.is-open .hamburger {
    position: fixed;
    top: 8px;
    right: 16px;
    z-index: 200;
  }

  .site-header.is-open .hamburger__line {
    background: #3a3635;
  }

  /* ─── SP ドロップダウン → アコーディオン ─── */
  .site-header.is-open .nav-list > li.has-dropdown > a::after,
  .site-header.is-open .nav-list > li.menu-item-has-children > a::after {
    transform: rotate(45deg);
    transition: transform 0.25s;
  }

  .site-header.is-open .nav-list > li.has-dropdown.is-open > a::after,
  .site-header.is-open .nav-list > li.menu-item-has-children.is-open > a::after {
    transform: rotate(225deg);
  }

  .site-header.is-open .nav-dropdown,
  .site-header.is-open .nav-list .sub-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    background: #f5f5f5;
    padding: 8px 0;
    margin-top: 8px;
    min-width: 0;
    width: 100%;
  }

  .site-header.is-open .has-dropdown.is-open > .nav-dropdown,
  .site-header.is-open .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }

  .site-header.is-open .nav-dropdown li a,
  .site-header.is-open .nav-list .sub-menu li a {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* margin-top 調整（ヘッダー高さ変化）*/
  .page-service,
  .page-company,
  .page-feature,
  .page-recruit,
  .page-contact,
  .page-works,
  .page-news {
    margin-top: 60px;
  }

  /* ─── HERO (homepage) ─── */
  .hero {
    height: 560px;
  }

  .hero::before {
    top: 110px;
  }

  .hero-bg {
    top: 80px;
    right: 0;
    width: 78%;
    height: 230px;
  }

  .hero-watermark {
    width: 180px;
    top: 82px;
    right: 8px;
    opacity: 0.12;
  }

  .hero-content {
    left: 20px;
    top: 320px;
  }

  .hero-title {
    font-size: 48px;
    letter-spacing: -1.5px;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 14px;
    margin-top: 20px;
  }


  /* ─── FEATURE HOME ─── */
  .feature-home {
    height: auto;
  }

  .feature-home__red-bg {
    display: none;
  }

  .feature-home__image {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .feature-home__content {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    padding: 40px 20px 100px;
  }

  .feature-home__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .feature-home__body {
    width: 100%;
    margin-bottom: 32px;
  }

  /* ─── MARQUEE ─── */
  .marquee-text {
    font-size: 90px;
  }

  /* ─── SERVICE（homepage） ─── */
  .service-section {
    padding: 60px 0 80px;
  }

  .service-inner {
    flex-direction: column;
    height: auto;
    gap: 40px;
    padding: 0 20px;
  }

  .service-left {
    width: 100%;
  }

  .service-left__visual {
    width: 100%;
    height: 260px;
  }

  .service-left__num {
    font-size: 12px;
  }

  .service-right {
    min-height: auto;
  }

  .service-row {
    padding: 20px 0;
  }

  .service-row__title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .service-row__arrow {
    width: 48px;
    height: 48px;
  }

  .service-row__arrow svg {
    width: 18px;
    height: 18px;
  }

  /* ─── WORKS（homepage） ─── */
  .works-slider__btn {
    display: none;
  }

  .works-card {
    flex: 0 0 100%;
  }

  /* ─── 3-COL DARK SECTION ─── */
  .dark-three-grid {
    flex-direction: column;
    height: auto;
  }

  .dark-three-col {
    height: 280px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .dark-three-col:last-child {
    border-bottom: none;
  }

  .dark-three-title {
    font-size: 24px;
  }

  .dark-three-col__content {
    padding: 50px 20px 120px 20px;
  }

  .dark-three-icon {
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
  }

  /* ─── NEWS（homepage） ─── */
  .news-section {
    padding: 48px 0 60px;
  }

  .news-inner {
    padding: 0 20px;
    flex-direction: column;
  }

  .news-side {
    width: 100%;
  }

  .news-item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .news-date {
    width: auto;
  }

  .news-title-text {
    grid-column: 1 / -1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .news-arrow {
    grid-column: 1 / -1;
    justify-self: end;
  }

  /* ─── CONTACT ─── */
  .contact-section {
    height: auto;
  }

  .contact-content {
    min-height: 0;
    padding: 60px 20px;
  }

  .contact-cards {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
  }

  .contact-card {
    width: 100%;
  }

  .contact-card + .contact-card::before {
    left: 20px;
    right: 20px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  /* ─── COMPANY MESSAGE ─── */
  .company-message {
    padding: 60px 20px;
  }

  .company-message__card {
    width: 100%;
    padding: 40px 24px;
  }

  .company-message__en-title {
    font-size: 40px;
  }

  .company-message__en-sub {
    font-size: 14px;
  }

  .company-message__body {
    padding: 28px 20px;
  }

  .company-message__text p {
    font-size: 14px;
  }

  /* ─── COMPANY LICENSE ─── */
  .company-license {
    padding: 60px 20px;
  }

  .license-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .license-card {
    width: 100%;
  }

  /* ─── COMPANY MAP ─── */
  .company-map-row {
    padding: 0 20px 60px;
  }

  .company-map-row__inner {
    flex-direction: column;
  }

  .company-map-row__photo,
  .company-map-row__map {
    min-height: 260px;
  }

  /* ─── FOOTER ─── */
  .site-footer {
    padding: 40px 20px 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-logo img,
  .footer-logo .custom-logo {
    height: 44px;
    width: auto;
  }

  .footer-nav {
    align-items: flex-start;
  }

  .footer-nav .footer-nav-list {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }

  .footer-bar {
    height: auto;
    padding: 16px 20px;
    text-align: center;
  }

  /* ─── PAGE HERO ─── */
  .page-hero {
    height: 180px;
  }

  .page-hero__inner,
  .page-service .page-hero__inner {
    padding: 0 20px;
  }

  .page-hero__title {
    font-size: 28px;
  }

  .breadcrumb {
    left: 20px;
  }

  /* ─── PAGE-SERVICE: service-item ─── */
  .service-works {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .service-works__heading {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .service-works__relation-box {
    width: 100%;
    margin: 40px 20px 0;
    box-sizing: border-box;
  }

  .service-item {
    flex-direction: column !important;
    padding: 0 20px;
    gap: 24px;
    margin-bottom: 48px;
  }

  .service-item__body {
    width: 100%;
  }

  .service-item__title {
    font-size: 22px;
    padding-left: 0;
  }

  .service-item__desc {
    padding-left: 0;
  }

  .feature-item__highlight {
    width: 100%;
  }

  /* ─── FEATURE SECTION（SP） ─── */
  .feature-section::before {
    top: 60px;
  }

  .feature-section__hero {
    width: 100%;
    height: 200px;
  }

  .feature-section__hero img {
    object-position: center 40%;
  }

  .feature-section__panel {
    padding: 48px 20px 80px;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-item__image {
    width: 100%;
    height: 220px;
  }

  .feature-item__content {
    padding: 24px 0 0;
  }

  .feature-item__title {
    font-size: 22px;
  }

  .feature-section__divider {
    margin: 48px auto;
  }

  /* ─── PAGE-WORKS ─── */
  .works-filter__inner {
    padding: 16px 20px;
  }

  .works-archive__inner {
    padding: 0 20px;
  }

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

  .works-archive__card-title {
    font-size: 15px;
  }

  .works-detail__inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 24px;
  }

  .works-detail__meta {
    width: 100%;
  }

  .works-cta__inner {
    padding: 40px 20px;
    text-align: center;
  }

  .works-cta__title {
    font-size: 22px;
  }

  .works-cta__text {
    font-size: 14px;
  }

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

  .related-works {
    padding: 40px 20px;
  }

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

  .works-detail__breadcrumb {
    padding: 28px 20px 0;
  }

  .news-detail__nav {
    flex-direction: column;
    gap: 16px;
  }

  /* ─── PAGE-NEWS ─── */
  .news-filter__inner {
    padding: 16px 20px;
  }

  .news-archive__inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .news-sidebar {
    width: 100%;
    order: 1;
  }

  .news-sidebar__section {
    margin-bottom: 24px;
  }

  .news-detail-wrap__inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .news-archive__link {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .news-archive__date {
    width: auto;
  }

  .news-archive__title {
    grid-column: 1 / -1;
  }

  .news-archive__arrow {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .news-detail__inner {
    padding: 32px 20px 60px;
  }

  .news-detail-wrap .news-detail__inner {
    padding: 0;
  }

  .news-detail-wrap .news-detail__breadcrumb {
    padding: 0 0 20px;
  }

  .news-detail__title {
    font-size: 20px;
  }

  .news-detail__nav {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .news-recent__inner {
    padding: 40px 20px;
  }

  .news-recent__link {
    gap: 8px;
    flex-wrap: wrap;
  }

  .news-recent__date {
    width: auto;
  }

  /* ─── PAGE-RECRUIT ─── */
  .recruit-message {
    padding: 60px 0 48px;
  }

  .recruit-message__title {
    font-size: 22px;
    line-height: 1.7;
  }

  .recruit-message__desc {
    font-size: 14px;
  }

  .sp-only { display: inline; }

  .recruit-benefits__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recruit-benefits__heading,
  .recruit-features__heading,
  .recruit-overview__heading {
    font-size: 28px;
  }

  .recruit-feat,
  .recruit-feat--reverse {
    flex-direction: column;
    gap: 20px;
  }

  .recruit-feat__image {
    width: 100%;
    height: 220px;
  }

  .recruit-cta__text {
    font-size: 22px;
  }

  .recruit-cta__actions {
    flex-direction: column;
    gap: 24px;
  }

  /* ─── PAGE-CONTACT ─── */
  .contact-form-lead {
    padding: 40px 20px 0;
  }

  .contact-form-lead p {
    font-size: 15px;
    line-height: 28px;
  }

  .contact-form-card {
    margin: 24px 16px 60px;
    padding: 32px 20px;
  }

  .contact-form-card .wpcf7-form .wpcf7-radio {
    flex-direction: column;
    gap: 12px;
  }

  .contact-form-card .wpcf7-form input[type="submit"] {
    width: 100%;
    max-width: 240px;
  }

  /* ─── PAGE-FEATURE ─── */
  .feature-intro__catch {
    padding: 0 15px;
  }

  .feature-intro__desc {
    padding: 0 15px;
  }

  /* ─── PAGE-SERVICE: 施工の流れ ─── */
  .service-flow__item-inner {
    flex-direction: column;
    gap: 12px;
    padding: 28px 15px;
  }

  .service-flow__step-left {
    width: 100%;
  }

  /* ─── INFO-TABLE（スマホ共通） ─── */
  .info-table {
    width: 100%;
  }

  .info-table__row {
    flex-direction: column;
  }

  .info-table__label {
    width: 100%;
    padding: 24px 20px 0;
  }

  .info-table__value {
    padding: 12px 20px 24px;
  }

  /* /company/ ではスマホでも横並び */
  .page-company .info-table__row {
    flex-direction: row;
  }

  .page-company .info-table__label {
    width: 120px;
    padding: 16px 12px;
  }

  .page-company .info-table__value {
    padding: 16px 12px;
  }
}
