/* ========================================
   style.css - 追記する場合は各セクション末尾に
   ======================================== */

/* ========================================
   Base / Reset
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #ffffff;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

body {
  padding-top: 72px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  min-height: 72px;
  gap: 24px;
}

/* ----- ロゴ ----- */
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* ----- ナビゲーション ----- */
.header__nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.header__nav-overlay {
  display: none;
}

.header__nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.header__nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4A4A4A;
  transition: transform 0.3s, opacity 0.3s;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  margin: 0;
}

.header__nav-link {
  display: block;
  padding: 8px 4px;
  color: #4A4A4A;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
  white-space: nowrap;
}

.header__nav-link:hover {
  color: #C19727;
}

/* ----- CTAボタン ----- */
.header__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 72px;
  padding: 12px 20px;
  background-color: #C19727;
  color: #ffffff;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.header__cta:hover {
  background-color: #a87e20;
  color: #ffffff;
}

.header__cta-line--top {
  font-size: 12px;
}

.header__cta-line--bottom {
  font-size: 15px;
  font-weight: 700;
}

/* ========================================
   Header - Responsive (Tablet)
   ======================================== */
@media (max-width: 1024px) {
  .header__nav-list {
    gap: 8px 16px;
  }

  .header__nav-link {
    font-size: 13px;
  }

  .header__cta {
    min-width: 100px;
    padding: 10px 16px;
  }
}

/* ========================================
   Header - Responsive (Mobile: 390px)
   ======================================== */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .header__inner {
    padding: 0 16px;
    min-height: 60px;
  }

  .header__nav {
    position: relative;
    justify-content: flex-end;
  }

  .header__nav-toggle {
    display: flex;
  }

  .header__nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 24px 24px;
    background-color: #ffffff;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }

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

  .header__nav-item {
    border-bottom: 1px solid #eee;
  }

  .header__nav-link {
    padding: 14px 0;
    font-size: 15px;
  }

  .header__nav-toggle.is-open .header__nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__nav-toggle.is-open .header__nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .header__nav-toggle.is-open .header__nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    z-index: 98;
    transition: opacity 0.3s;
  }

  .header__nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .header__logo-img {
    height: 28px;
  }

  .header__cta {
    min-width: 90px;
    min-height: 60px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .header__cta-line--top {
    font-size: 11px;
  }

  .header__cta-line--bottom {
    font-size: 13px;
  }
}

/* ========================================
   Hero (First View / ファーストビュー)
   ======================================== */
.hero {
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
}

.hero__inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.hero__slider {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  min-height: 70vh;
}

.hero__slide-area {
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.hero__list {
  grid-area: 1 / 1;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
  min-height: 70vh;
}

.hero__arrows {
  grid-area: 1 / 1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.hero__arrows .hero__arrow {
  pointer-events: auto;
}

.hero__slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 70vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.hero__slide--current {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero__slide-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  height: 100%;
  min-height: 70vh;
  position: relative;
}

/* 背景写真の上に黒の半透明オーバーレイ（テキスト視認性向上） */
.hero__slide-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.hero__image-wrap {
  grid-area: 1 / 1;
  min-height: 70vh;
  height: 100%;
  background-color: #333;
}

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

.hero__content {
  grid-area: 1 / 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero__subtitle {
  margin: 0 0 14px;
  font-family: sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.hero__title {
  margin: 0 0 20px;
  font-family: sans-serif;
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  margin: 0 0 32px;
  max-width: 520px;
}

.hero__lead-line {
  margin: 0 0 0.4em;
  font-family: sans-serif;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 0 16px rgba(0, 0, 0, 0.3);
}

.hero__lead-line:last-child {
  margin-bottom: 0;
}

/* CTA: 押しやすさ・存在感（パディング多め・タップしやすい高さ） */
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 16px 36px;
  background-color: #C19727;
  color: #fff;
  font-family: sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  transition: background-color 0.2s, transform 0.15s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero__cta:hover {
  background-color: #a87e20;
  transform: translateY(1px);
}

.hero__cta::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
}

.hero__dots-wrap {
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 24px 28px;
  background-color: #fff;
}

.hero__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #333;
  font-size: 20px;
  transition: background 0.2s;
}

.hero__arrow:hover {
  background: #fff;
}

.hero__arrow-icon {
  line-height: 1;
}

.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s;
}

.hero__dot--current,
.hero__dot:hover {
  background: #333;
}

/* Hero - SP: 左寄せ・エリア説明にライン・メインコピー大・CTA小さめ */
@media (max-width: 768px) {
  .hero,
  .hero__slide-inner,
  .hero__image-wrap {
    min-height: 60vh;
  }

  .hero__slider {
    min-height: 60vh;
  }

  .hero__slide {
    min-height: 60vh;
  }

  /* コンテンツ: 左寄せ・縦並び（エリア説明→メインコピー→説明文→CTA） */
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 28px 20px 40px;
    text-align: left;
  }

  /* エリア説明: 左に背景ライン（アクセント線） */
  .hero__subtitle {
    font-size: 13px;
    margin-bottom: 14px;
    padding-left: 12px;
    border-left: 3px solid #C19727;
    line-height: 1.5;
  }

  /* メインコピー: スマホでも読みやすいサイズ・行間・余白 */
  .hero__title {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
  }

  .hero__title-br {
    display: block;
  }

  /* 説明文: 左寄せ・余白・行間 */
  .hero__lead {
    margin-bottom: 28px;
  }

  .hero__lead-line {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }

  /* CTA: タップしやすい高さ・パディングで存在感 */
  .hero__cta {
    min-height: 48px;
    padding: 16px 28px;
    font-size: 16px;
    border-radius: 6px;
  }

  /* SP: 矢印は非表示 */
  .hero__arrows {
    display: none;
  }

  .hero__dots-wrap {
    padding: 14px 20px 20px;
  }

  .hero__dot {
    width: 8px;
    height: 8px;
  }
}

/* ========================================
   News Section（お知らせ）
   ======================================== */
.news-section {
  background: #fff;
}

.news-section__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 24px 20px;
}

.news-section__heading {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #222;
  letter-spacing: 0.03em;
}

.news-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5e7eb;
}

.news-section__item {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.news-section__date {
  min-width: 96px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.news-section__link {
  color: #111827;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.news-section__link:hover {
  color: #C19727;
  text-decoration: underline;
}

.news-section__empty {
  margin: 0;
  padding: 14px 0;
  color: #6b7280;
}

.news-section__more-wrap {
  margin: 18px 0 0;
  text-align: right;
}

.news-section__more {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.news-section__more:hover {
  border-color: #C19727;
  color: #C19727;
  background-color: #fdfbf5;
}

@media (max-width: 768px) {
  .news-section__inner {
    padding: 28px 16px 14px;
  }

  .news-section__heading {
    margin-bottom: 10px;
  }

  .news-section__item {
    display: block;
    padding: 12px 0;
  }

  .news-section__date {
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
  }

  .news-section__link {
    font-size: 15px;
  }

  .news-section__more-wrap {
    margin-top: 14px;
    text-align: center;
  }
}

/* ========================================
   FV Section（お悩み + CTA）
   ======================================== */
.fv-section {
  background-color: #fff;
}

.fv-section__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 24px 48px;
}

.fv-section__heading {
  text-align: center;
  font-family: sans-serif;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 40px;
  letter-spacing: 0.02em;
}

.fv-section__heading-text {
  color: #333;
}

.fv-section__heading-accent {
  color: #C19727;
  font-size: 1.15em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  padding-bottom: 4px;
  border-bottom: 2px solid #C19727;
  display: inline-block;
}

.fv-section__heading-dots {
  display: block;
  font-weight: 700;
  font-size: 0.5em;
  letter-spacing: 0.2em;
  margin-bottom: 2px;
  line-height: 1;
}

.fv-section__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fv-section__item {
  margin: 0;
}

.fv-section__item-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.fv-section__num {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.fv-section__num-img {
  width: 64px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  vertical-align: middle;
}

.fv-section__item-body {
  flex: 1;
  min-width: 0;
}

.fv-section__item-title {
  font-family: sans-serif;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.4;
}

.fv-section__item-desc {
  font-family: sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* CTAブロック（ゴールド・V字トップ） */
.fv-cta {
  background-color: #C19727;
  padding: 48px 24px 56px;
  position: relative;
  clip-path: polygon(0 0, 50% 24px, 100% 0, 100% 100%, 0 100%);
  margin-top: 8px;
}

.fv-cta__inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.fv-cta__title {
  font-family: sans-serif;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.fv-cta__text {
  font-family: sans-serif;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #fff;
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* FV Section - Responsive (SP) */
@media (max-width: 768px) {
  .fv-section__inner {
    padding: 32px 20px 36px;
  }

  /* 見出し: 中央配置・「お悩み」強調 */
  .fv-section__heading {
    text-align: center;
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1.45;
  }

  .fv-section__heading-text {
    display: block;
  }

  .fv-section__heading-text:first-child {
    margin-bottom: 4px;
  }

  .fv-section__heading-accent {
    display: inline-block;
    padding-bottom: 0;
    border-bottom: none;
    vertical-align: baseline;
  }

  .fv-section__heading-dots {
    display: none;
  }

  .fv-section__heading-accent-word {
    display: inline;
    color: #C19727;
    font-size: 1.35em;
    font-weight: 700;
  }

  .fv-section__list {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 -4px;
  }

  .fv-section__item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }

  .fv-section__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* 番号左・タイトル右・説明文はその下（2カラム感を弱める） */
  .fv-section__item-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px 12px;
  }

  .fv-section__num {
    flex-shrink: 0;
  }

  .fv-section__num-img {
    width: 48px;
    height: auto;
    max-height: 56px;
  }

  .fv-section__item-body {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .fv-section__item-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.45;
  }

  .fv-section__item-desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    max-width: none;
  }

  .fv-cta {
    padding: 40px 20px 48px;
    clip-path: polygon(0 0, 50% 16px, 100% 0, 100% 100%, 0 100%);
  }
}

/* ========================================
   About Section（アシストキャリアとは）
   ======================================== */
.about-section {
  position: relative;
  background-color: #fff;
  padding: 56px 24px 64px;
  overflow: hidden;
}

.about-section__bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  max-width: 480px;
  height: 100%;
  background-image: url("../images/section2/section-assist.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20% auto;
  opacity: 1;
  pointer-events: none;
}

.about-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.about-section__heading {
  font-family: sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #C19727;
  text-align: center;
  margin: 0 0 40px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C19727;
}

.about-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: start;
  margin-bottom: 48px;
}

.about-section__body {
  min-width: 0;
}

.about-section__text {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin: 0 0 1.2em;
}

.about-section__text:last-child {
  margin-bottom: 0;
}

.about-section__visual {
  min-width: 0;
}

.about-section__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.about-section__service {
  border: 2px dotted #C19727;
  border-radius: 10px;
  padding: 28px 32px 32px;
  background-color: #fff;
}

.about-section__service-head {
  text-align: center;
  margin-bottom: 24px;
}

.about-section__service-label {
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
  margin: 0 0 6px;
}

.about-section__service-title {
  font-family: sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #C19727;
  margin: 0;
}

.about-section__service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-section__service-item {
  margin: 0;
  padding: 20px 16px;
  background-color: #FFF8E1;
  color: #333;
  font-family: sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  border: 2px solid transparent;
}

/* About Section - Responsive (SP) */
@media (max-width: 768px) {
  .about-section__bg {
    display: none;
  }

  .about-section {
    padding: 40px 16px 48px;
  }

  .about-section__content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }

  .about-section__visual {
    order: -1;
  }

  .about-section__service {
    padding: 20px 20px 24px;
  }

  .about-section__service-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Strength Section（アシストキャリアの強み）
   ======================================== */
.strength-section {
  background-color: #fff;
  padding: 56px 24px 64px;
}

.strength-section__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.strength-section__heading {
  text-align: center;
  font-family: sans-serif;
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 700;
  margin: 0 0 48px;
}

.strength-section__heading-text {
  color: #333;
}

.strength-section__heading-accent-wrap {
  display: inline-block;
  text-align: center;
}

.strength-section__heading-dots {
  display: block;
  font-size: 12px;
  color: #C19727;
  letter-spacing: 0.4em;
  margin-bottom: 6px;
  line-height: 1;
}

.strength-section__heading-accent {
  display: block;
  color: #C19727;
}

.strength-section__list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.strength-section__item {
  margin: 0;
}

.strength-section__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 20px;
  align-items: start;
  background-color: #fff;
  border-radius: 10px;
  padding: 28px 32px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.strength-section__card-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.strength-section__point-img-wrap {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.strength-section__point-img {
  width: auto;
  height: 48px;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
  vertical-align: middle;
}

.strength-section__card-title {
  flex: 1;
  min-width: 0;
  font-family: sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.strength-section__card-desc {
  grid-column: 2;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  margin: 0;
}

.strength-section__consult {
  margin-top: 0;
}

.strength-section__consult-heading {
  font-family: sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #C19727;
  text-align: center;
  margin: 0 0 20px;
  padding-bottom: 12px;
}

.strength-section__consult-box {
  border: 2px dotted #C19727;
  border-radius: 8px;
  padding: 28px 32px;
  background-color: #fff;
}

.strength-section__consult-text {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  margin: 0;
}

/* Strength Section - Responsive (SP) */
@media (max-width: 768px) {
  .strength-section {
    padding: 40px 16px 48px;
  }

  .strength-section__heading {
    margin-bottom: 36px;
  }

  .strength-section__list {
    gap: 20px;
    margin-bottom: 36px;
  }

  .strength-section__card {
    padding: 20px 20px 24px;
  }

  .strength-section__card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .strength-section__card-header {
    flex-direction: column;
    gap: 12px;
  }

  .strength-section__point-img {
    height: 40px;
  }

  .strength-section__card-desc {
    grid-column: 1;
  }

  .strength-section__consult-box {
    padding: 20px 20px 24px;
  }
}

/* ========================================
   Advisor Section（キャリアプランナー）
   ======================================== */
.advisor-section {
  position: relative;
  background-color: #a4a3a3;
  padding: 56px 24px 64px;
  overflow: hidden;
}

.advisor-section__bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  max-width: 480px;
  height: 100%;
  background-image: url("../images/section3/section3-adviser.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20% auto;
  opacity: 1;
  pointer-events: none;
}

.advisor-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.advisor-section__heading {
  font-family: sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 16px;
}

.advisor-section__lead {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #ffffff;
  text-align: center;
  margin: 0 0 48px;
  max-width: 645px;
  margin-left: auto;
  margin-right: auto;
}

.advisor-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.advisor-section__item {
  margin: 0;
}

.advisor-section__card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  background-color: #fff;
  border-radius: 8px;
  padding: 32px 40px 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.advisor-section__card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.advisor-section__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 240px;
}

.advisor-section__img-wrap {
  position: relative;
  width: 100%;
  max-width: 240px;
  overflow: hidden;
  border-radius: 4px;
}

.advisor-section__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* 名前は写真の右下（代表挨拶・大砂彰と同様に写真の下で右寄せ） */
.advisor-section__name {
  margin: 8px 0 0;
  padding: 0;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-align: right;
  line-height: 1.4;
}

.advisor-section__card-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.advisor-section__quote {
  font-family: sans-serif;
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.advisor-section__text {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  margin: 0;
}

.advisor-section__role {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #333;
  font-family: sans-serif;
  font-size: 13px;
  color: #333;
  margin: 0;
  align-self: flex-start;
}

/* Advisor Section - Responsive (SP) */
@media (max-width: 768px) {
  .advisor-section__bg {
    display: none;
  }

  .advisor-section {
    padding: 40px 16px 48px;
  }

  .advisor-section__lead {
    margin-bottom: 36px;
  }

  .advisor-section__card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px 28px;
  }

  .advisor-section__card-left {
    order: 1;
  }

  .advisor-section__card-right {
    order: 2;
  }

}

/* ========================================
   Jobs Section（求人例）
   ======================================== */
.jobs-section {
  position: relative;
  background-color: #fff;
  padding: 56px 24px 64px;
  overflow: hidden;
}

.jobs-section__bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  max-width: 480px;
  height: 100%;
  background-color: #fff;
  background-image: url("../images/section4/section4-recrutmen.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20% auto;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.jobs-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.jobs-section__heading {
  font-family: sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C19727;
}

.jobs-section__lead {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  text-align: center;
  margin: 0 0 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.jobs-section__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.jobs-section__item {
  margin: 0;
}

.jobs-section__card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px 20px;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.jobs-section__card-title {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.jobs-section__card-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 0 0 16px;
  flex: 1;
}

.jobs-section__card-term {
  font-family: sans-serif;
  font-size: 13px;
  color: #888;
  margin: 0;
}

.jobs-section__card-desc {
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
  margin: 0;
}

.jobs-section__card-income {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.jobs-section__card-income-label {
  display: block;
  font-family: sans-serif;
  font-size: 12px;
  color: #C19727;
  margin-bottom: 4px;
}

.jobs-section__card-income-value {
  display: block;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #C19727;
}

.jobs-section__note {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  text-align: center;
  margin: 0 0 24px;
}

.jobs-section__btn-wrap {
  text-align: center;
  margin: 0;
}

.jobs-section__btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #C19727;
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.jobs-section__btn:hover {
  background-color: #a87e20;
  color: #fff;
}

/* Jobs Section - Responsive (SP) */
@media (max-width: 768px) {
  .jobs-section__bg {
    display: none;
  }

  .jobs-section {
    padding: 40px 16px 48px;
  }

  .jobs-section__list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
}

/* ========================================
   Flow Section（転職支援の流れ）
   ======================================== */
.flow-section {
  background-color: #fff;
  padding: 56px 24px 64px;
}

.flow-section__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.flow-section__heading {
  font-family: sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 40px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C19727;
}

.flow-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: flow-step;
}

.flow-section__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px 32px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #C19727;
  margin: 0;
}

.flow-section__item:first-child {
  padding-top: 0;
}

.flow-section__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.flow-section__step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-section__step-num {
  display: block;
  line-height: 0;
}

.flow-section__step-img {
  width: 64px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  vertical-align: middle;
}

.flow-section__body {
  min-width: 0;
}

.flow-section__title {
  font-family: sans-serif;
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 700;
  color: #333;
  margin: 0 0 12px;
  line-height: 1.4;
}

.flow-section__desc {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  margin: 0;
}

.flow-section__box {
  margin-top: 20px;
  padding: 20px 24px;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.flow-section__box-title {
  font-family: sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px;
}

.flow-section__box-text {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* Flow Section - Responsive (SP) */
@media (max-width: 768px) {
  .flow-section {
    padding: 40px 16px 48px;
  }

  .flow-section__heading {
    margin-bottom: 32px;
  }

  .flow-section__item {
    grid-template-columns: 80px 1fr;
    gap: 16px 20px;
    padding: 24px 0;
  }

  .flow-section__step-img {
    width: 48px;
    max-height: 48px;
  }

  .flow-section__box {
    padding: 16px 20px;
    margin-top: 16px;
  }
}

/* ========================================
   FAQ Section（よくある質問）
   ======================================== */
.faq-section {
  position: relative;
  background-color: #f7f3ea;
  padding: 56px 24px 64px;
  overflow: hidden;
}

.faq-section__bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  max-width: 480px;
  height: 100%;
  background-image: url("../images/section5/section5-question.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20% auto;
  opacity: 1;
  pointer-events: none;
}

.faq-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-section__heading {
  font-family: sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C19727;
}

.faq-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-section__item {
  border-top: 1px solid #ddd0b6;
  margin: 0;
}

.faq-section__item:last-child {
  border-bottom: 1px solid #ddd0b6;
}

.faq-section__question {
  width: 100%;
  padding: 18px 12px 18px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px 16px;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-section__q-label {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.faq-section__q-text {
  font-family: sans-serif;
  font-size: 15px;
  color: #333;
  text-align: left;
}

.faq-section__icon {
  width: 16px;
  height: 16px;
  position: relative;
}

.faq-section__icon::before,
.faq-section__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #333;
  transition: transform 0.2s;
}

.faq-section__icon::before {
  width: 16px;
  height: 2px;
  top: 7px;
}

.faq-section__icon::after {
  width: 2px;
  height: 16px;
  top: 0;
}

.faq-section__item.is-open .faq-section__icon::after {
  transform: scaleY(0);
}

.faq-section__answer {
  padding: 0 0 18px 0;
}

.faq-section__answer-inner {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.faq-section__a-label {
  font-weight: 700;
}

.faq-section__a-text {
  text-align: left;
}

/* FAQ Section - Responsive (SP) */
@media (max-width: 768px) {
  .faq-section__bg {
    display: none;
  }

  .faq-section {
    padding: 32px 16px 40px;
  }

  .faq-section__heading {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 10px;
  }

  .faq-section__item {
    border-top: 1px solid #ddd0b6;
  }

  .faq-section__question {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px 12px;
    padding: 16px 0;
    min-height: 48px;
    text-align: left;
  }

  .faq-section__q-label {
    flex-shrink: 0;
    font-size: 16px;
    margin: 0;
    align-self: center;
  }

  .faq-section__q-text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .faq-section__icon {
    flex-shrink: 0;
    align-self: center;
  }

  .faq-section__answer {
    padding: 0 0 16px 0;
  }

  .faq-section__answer-inner {
    font-size: 13px;
    line-height: 1.75;
    padding-left: 0;
  }
}

/* ========================================
   Company Section（会社概要 / 代表挨拶）
   ======================================== */
.company-section {
  position: relative;
  background-color: #A4A3A3;
  padding: 56px 24px 64px;
  overflow: hidden;
}

.company-section__bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  max-width: 480px;
  height: 100%;
  background-image: url("../images/section7/section7-operation.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20% auto;
  opacity: 1;
  pointer-events: none;
}

.company-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.company-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px 40px;
  align-items: center;
  margin-bottom: 40px;
}

.company-section__company-name {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.company-section__lead {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  margin: 0 0 24px;
}

.company-section__heading {
  font-family: sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C19727;
}

.company-section__sub-heading {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.company-section__overview {
  margin-bottom: 48px;
}

.company-section__table {
  margin: 0;
  padding: 0;
}

.company-section__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 16px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.company-section__row:last-child {
  border-bottom: none;
}

.company-section__term {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.company-section__desc {
  font-family: sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0;
  line-height: 1.7;
}

.company-section__assist-visual {
  width: 100%;
}

.company-section__assist-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.company-section__greeting-heading {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.company-section__greeting-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px 32px;
  align-items: flex-start;
}

.company-section__greeting-photo {
  max-width: 260px;
  text-align: center;
  justify-self: end;
}

.company-section__greeting-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.company-section__greeting-body {
  font-family: sans-serif;
  font-size: 14px;
  color: #fff;
}

.company-section__greeting-lead {
  margin: 0 0 16px;
  font-weight: 700;
  color: #fff;
}

.company-section__greeting-text {
  margin: 0 0 14px;
  line-height: 1.8;
}

.company-section__greeting-name {
  margin: 8px 0 0;
  font-weight: 700;
  text-align: right;
  color: #fff;
}

/* Company Section - Responsive (SP) */
@media (max-width: 768px) {
  .company-section__bg {
    display: none;
  }

  .company-section {
    padding: 40px 16px 48px;
  }

  .company-section__intro {
    grid-template-columns: 1fr;
  }

  .company-section__greeting-grid {
    grid-template-columns: 1fr;
  }

  .company-section__greeting-photo {
    max-width: 220px;
    margin: 0 auto;
  }
}
/* ========================================
   Contact Section（お問い合わせ）
   ======================================== */
.contact-section {
  position: relative;
  background-color: #fff;
  padding: 56px 24px 64px;
  overflow: hidden;
}

.contact-section__bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  max-width: 480px;
  height: 100%;
  background-image: url("../images/section6/section6-contact.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20% auto;
  opacity: 1;
  pointer-events: none;
}

.contact-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.contact-section__block {
  margin-bottom: 48px;
}

.contact-section__block:last-child {
  margin-bottom: 0;
}

.contact-section__heading {
  font-family: sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C19727;
}

.contact-section__contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.contact-section__contact-text {
  text-align: center;
}

.contact-section__sub {
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
  margin: 0 0 8px;
}

.contact-section__tel,
a.contact-section__tel {
  font-family: sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #333;
  margin: 0 0 6px;
  text-decoration: none;
}

a.contact-section__tel:hover {
  color: #333;
  text-decoration: none;
}

.contact-section__time {
  font-family: sans-serif;
  font-size: 13px;
  color: #666;
  margin: 0;
}

.contact-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  min-width: 180px;
  background-color: #C19727;
  color: #fff;
  font-family: sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  line-height: 1.4;
  transition: background-color 0.2s;
}

.contact-section__cta:hover {
  background-color: #a87e20;
  color: #fff;
}

.contact-section__sub-heading {
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #C19727;
}

.contact-section__access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px 32px;
  align-items: flex-start;
}

.contact-section__access-text {
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
}

.contact-section__access-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin: 0 0 8px;
}

.contact-section__access-body {
  margin: 0 0 10px;
  line-height: 1.8;
}

.contact-section__access-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.contact-section__map-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
}

.contact-section__map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Section - Responsive (SP) */
@media (max-width: 768px) {
  .contact-section__bg {
    display: none;
  }

  .contact-section {
    padding: 40px 16px 56px;
  }

  .contact-section__contact-box {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .contact-section__access-grid {
    grid-template-columns: 1fr;
  }

  .contact-section__map-wrap {
    max-width: none;
  }
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background-color: #C19727;
  color: #fff;
  padding: 40px 24px 24px;
}

.site-footer__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 32px 48px;
}

.site-footer__brand {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer__logo img {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.site-footer__brand-copy {
  margin: 0 0 16px;
}

.site-footer__brand-info {
  margin: 0 0 16px;
}

.site-footer__menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
  font-family: sans-serif;
  font-size: 13px;
}

.site-footer__menu-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
}

.site-footer__menu-list,
.site-footer__sns-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu-list li {
  margin-bottom: 4px;
}

.site-footer__menu-list a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.site-footer__menu-list a:hover {
  text-decoration: underline;
}

.site-footer__info-list {
  margin: 0;
  padding: 0;
}

.site-footer__info-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px 0;
  margin-bottom: 12px;
}

.site-footer__info-row dt {
  font-weight: 700;
}

.site-footer__info-row dd {
  margin: 0;
}

.site-footer__info-row a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

.site-footer__info-row a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}

.site-footer__sns-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 8px;
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
  font-family: sans-serif;
  font-size: 12px;
}

/* Footer - Responsive (SP) */
@media (max-width: 768px) {
  .site-footer {
    padding: 32px 16px 20px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 16px;
  }

  .site-footer__menus {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__menus .site-footer__menu-block:last-child {
    grid-column: 1 / -1;
  }
}

/* ========================================
   Form Page（無料キャリア相談予約）
   ======================================== */
.form-page {
  background-color: #f7f3ea;
}

.form-page__inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.form-page__header {
  margin-bottom: 32px;
  text-align: center;
}

.form-page__title {
  font-family: sans-serif;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: #333;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C19727;
}

.form-page__lead {
  font-family: sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.form-page__guide {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-page__guide-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.9;
}

.form-page__guide-list li {
  padding-left: 1.2em;
  position: relative;
}

.form-page__guide-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #C19727;
}

.form-page__form {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 32px 48px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-page__list {
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 20px 0;
}

.form-page__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px 24px;
  align-items: start;
}

.form-page__row--full {
  grid-template-columns: 1fr;
}

.form-page__label {
  margin: 0;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding-top: 12px;
}

.form-page__label label {
  cursor: pointer;
}

.form-page__required {
  color: #c00;
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
}

.form-page__field {
  margin: 0;
  min-width: 0;
}

.form-page__input,
.form-page__select,
.form-page__textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  font-family: sans-serif;
  font-size: 15px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: border-color 0.2s;
}

.form-page__input:focus,
.form-page__select:focus,
.form-page__textarea:focus {
  outline: none;
  border-color: #C19727;
  box-shadow: 0 0 0 2px rgba(193, 151, 39, 0.2);
}

.form-page__input::placeholder,
.form-page__textarea::placeholder {
  color: #999;
}

.form-page__textarea {
  resize: vertical;
  min-height: 120px;
}

.form-page__checkbox-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.form-page__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: sans-serif;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.form-page__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #C19727;
}

.form-page__agree {
  padding: 12px 0;
}

.form-page__link {
  color: #C19727;
  text-decoration: underline;
}

.form-page__link:hover {
  color: #a87e20;
}

.form-page__submit-wrap {
  margin: 0;
  text-align: center;
}

.form-page__submit {
  display: inline-block;
  padding: 16px 48px;
  background-color: #C19727;
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-page__submit:hover {
  background-color: #a87e20;
}

/* Contact Form 7：相談予約ページ用デザイン合わせ */
.form-page__cf7 .wpcf7-form {
  margin: 0 0 32px;
  padding: 0;
}

.form-page__cf7 .wpcf7-form > p {
  margin: 0 0 20px;
}

.form-page__cf7 .wpcf7-form > p:last-of-type {
  margin-bottom: 0;
}

.form-page__cf7 .wpcf7-form > p.wpcf7-submit-wrap {
  margin-top: 24px;
  text-align: center;
}

.form-page__cf7 .wpcf7-form label {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: block;
  margin-bottom: 8px;
}

.form-page__cf7 .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
}

.form-page__cf7 .wpcf7-form input[type="text"],
.form-page__cf7 .wpcf7-form input[type="email"],
.form-page__cf7 .wpcf7-form input[type="tel"],
.form-page__cf7 .wpcf7-form input[type="number"],
.form-page__cf7 .wpcf7-form select,
.form-page__cf7 .wpcf7-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  font-family: sans-serif;
  font-size: 15px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-page__cf7 .wpcf7-form input:focus,
.form-page__cf7 .wpcf7-form select:focus,
.form-page__cf7 .wpcf7-form textarea:focus {
  outline: none;
  border-color: #C19727;
  box-shadow: 0 0 0 2px rgba(193, 151, 39, 0.2);
}

.form-page__cf7 .wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-page__cf7 .wpcf7-form input[type="submit"] {
  display: inline-block;
  padding: 16px 48px;
  background-color: #C19727;
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-page__cf7 .wpcf7-form input[type="submit"]:hover {
  background-color: #a87e20;
}

.form-page__cf7 .wpcf7-form .wpcf7-list-item {
  margin-left: 0;
}

.form-page__cf7 .wpcf7-form .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: sans-serif;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.form-page__cf7 .wpcf7-form .wpcf7-checkbox,
.form-page__cf7 .wpcf7-form .wpcf7-radio {
  accent-color: #C19727;
}

.form-page__cf7 .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #c00;
  margin-top: 4px;
}

.form-page__cf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .form-page__cf7 .wpcf7-form > p {
    grid-template-columns: 1fr;
    gap: 6px 0;
  }

  .form-page__cf7 .wpcf7-form label {
    padding-top: 0;
  }

  .form-page__cf7 .wpcf7-form input[type="submit"] {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
  }
}

/* Form Page - Responsive (SP) */
@media (max-width: 768px) {
  .form-page__inner {
    padding: 32px 16px 48px;
  }

  .form-page__header {
    margin-bottom: 24px;
  }

  .form-page__title {
    font-size: 20px;
  }

  .form-page__guide {
    padding: 16px 20px;
    margin-bottom: 28px;
  }

  .form-page__form {
    padding: 28px 20px 36px;
  }

  .form-page__row {
    grid-template-columns: 1fr;
    gap: 6px 0;
  }

  .form-page__label {
    padding-top: 0;
  }

  .form-page__submit {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
  }
}

/* ========================================
   Thanks Page（お問い合わせ完了）
   ======================================== */
.thanks-page {
  background-color: #f7f3ea;
}

.thanks-page__inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.thanks-page__box {
  background-color: #fff;
  border-radius: 8px;
  padding: 48px 40px 56px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.thanks-page__title {
  font-family: sans-serif;
  font-size: clamp(22px, 3.5vw, 26px);
  font-weight: 700;
  color: #333;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #C19727;
}

.thanks-page__lead {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin: 0 0 28px;
}

.thanks-page__note {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 36px;
  padding: 16px;
  background-color: #f7f3ea;
  border-radius: 4px;
}

.thanks-page__btn-wrap {
  margin: 0;
}

.thanks-page__btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #C19727;
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.thanks-page__btn:hover {
  background-color: #a87e20;
  color: #fff;
}

/* Thanks Page - Responsive (SP) */
@media (max-width: 768px) {
  .thanks-page__inner {
    padding: 40px 16px 64px;
  }

  .thanks-page__box {
    padding: 36px 24px 44px;
  }

  .thanks-page__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .thanks-page__lead {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .thanks-page__note {
    font-size: 13px;
    margin-bottom: 28px;
    padding: 14px;
  }

  .thanks-page__btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    text-align: center;
  }
}

/* ========================================
   Job List Page（求人一覧）
   ======================================== */
.job-list-page {
  background-color: #fff;
  padding-top: 24px;
  padding-bottom: 64px;
}

.job-list-page__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.job-list-page__breadcrumb {
  margin-bottom: 24px;
}

.job-list-page__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: sans-serif;
  font-size: 13px;
  color: #666;
}

.job-list-page__breadcrumb-list li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #999;
}

.job-list-page__breadcrumb-list a {
  color: #333;
  text-decoration: none;
}

.job-list-page__breadcrumb-list a:hover {
  text-decoration: underline;
  color: #C19727;
}

.job-list-page__header {
  margin-bottom: 40px;
}

.job-list-page__title {
  font-family: sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C19727;
}

.job-list-page__lead {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  text-align: center;
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* 絞り込み（エリア・職種＝将来WPタクソノミー／カテゴリーと対応） */
.job-list-page__filters {
  margin-bottom: 0;
}
.job-list-page__filter,
.job-filter {
  margin-bottom: 15px;
}

.job-filter__label {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px;
}

.job-filter__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-filter__btn {
  display: inline-block;
  padding: 10px 18px;
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.job-filter__btn:hover {
  border-color: #C19727;
  color: #C19727;
  background-color: #fdfbf5;
}

.job-filter__btn--current {
  border-color: #C19727;
  background-color: #C19727;
  color: #fff;
}

.job-filter__btn--current:hover {
  background-color: #a87e20;
  border-color: #a87e20;
  color: #fff;
}

/* エリア絞り込み：アコーディオン（開閉で一覧表示・エリア数増加に対応） */
.job-filter--accordion .job-filter__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.job-filter--accordion .job-filter__trigger:hover {
  border-color: #C19727;
  background-color: #fdfbf5;
}

.job-filter__trigger-icon {
  flex-shrink: 0;
  margin-left: 8px;
  font-size: 10px;
  transition: transform 0.2s ease;
}

.job-filter--accordion.is-open .job-filter__trigger-icon {
  transform: rotate(180deg);
}

/* 職種アコーディオン：青系ヘッダー（参考画像に合わせる） */
.job-filter__trigger--job-type {
  color: #fff;
  background: linear-gradient(180deg, #6ba3d8 0%, #5b9bd5 100%);
  border: 1px solid #4a8bc2;
}

.job-filter__trigger--job-type:hover {
  background: linear-gradient(180deg, #5b9bd5 0%, #4a8bc2 100%);
  border-color: #3d7ab0;
  color: #fff;
}

.job-filter__panel {
  margin-top: 10px;
  padding: 22px 24px;
  background: linear-gradient(180deg, #f8faf6 0%, #fdf9f3 100%);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  max-height: 320px;
  overflow-y: auto;
}

.job-filter--accordion .job-filter__list {
  flex-direction: column;
  align-items: stretch;
  gap: 6px 0;
}

/* エリア：4つずつ横並び（参考画像の余白感・中央揃え） */
.job-filter__list--grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 28px;
}

.job-filter__list--grid-4 .job-filter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 24px;
}

.job-filter--accordion .job-filter__item {
  margin: 10px;
}

.job-filter--accordion .job-filter__btn {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
}

.job-list-page__empty-msg {
  font-family: sans-serif;
  font-size: 15px;
  color: #666;
  text-align: center;
  margin: 0 0 32px;
  padding: 32px 24px;
  background-color: #f5f5f5;
  border-radius: 8px;
}

.job-list-page__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.job-list-page__item {
  margin: 0;
}

/* カード全体をクリック可能・写真上・情報下のレイアウト */
.job-list-page__card,
.job-card {
  display: block;
  height: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background-color: #fff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.job-list-page__card:hover,
.job-card:hover {
  border-color: #C19727;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* 写真：カード内で横幅いっぱい */
.job-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #e8e8e8;
}

.job-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* カード本文：タイトル・企業名・職種・勤務エリア・年収（ラベル列を統一） */
.job-card__body {
  padding: 20px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-card__title {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card__meta {
  display: grid;
  grid-template-columns: minmax(5.5em, 7.5em) minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 8px;
  align-items: baseline;
  font-family: sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.job-card__row {
  display: contents;
  margin: 0;
}

.job-card__label {
  color: #888;
  font-weight: 500;
  flex-shrink: 0;
}

.job-card__value {
  color: #333;
  word-break: break-word;
  min-width: 0;
}

.job-card__value--salary {
  font-weight: 700;
  color: #C19727;
  font-size: 14px;
  line-height: 1.45;
}

.job-list-page__note {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  text-align: center;
  margin: 0 0 32px;
}

.job-list-page__back-wrap {
  text-align: center;
  margin: 0;
}

.job-list-page__back {
  font-family: sans-serif;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  transition: border-color 0.2s, background-color 0.2s;
}

.job-list-page__back:hover {
  border-color: #C19727;
  color: #C19727;
  background-color: #fdfbf5;
}

/* 求人一覧：the_posts_pagination（.nav-links / .page-numbers） */
.job-list-page__pager {
  margin-top: 32px;
}

.job-list-page__pager .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  word-wrap: normal !important;
}

.job-list-page__pager .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.job-list-page__pager a.page-numbers,
.job-list-page__pager span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #333;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.job-list-page__pager a.page-numbers:hover,
.job-list-page__pager a.page-numbers:focus-visible {
  border-color: #C19727;
  color: #C19727;
  background-color: #fdfbf5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(193, 151, 39, 0.25);
}

.job-list-page__pager span.page-numbers.current {
  background-color: #C19727;
  border-color: #C19727;
  color: #fff;
  font-weight: 700;
  cursor: default;
}

.job-list-page__pager a.prev.page-numbers,
.job-list-page__pager a.next.page-numbers {
  min-width: 44px;
  font-size: 18px;
  font-weight: 600;
  color: #555;
}

.job-list-page__pager a.prev.page-numbers:hover,
.job-list-page__pager a.next.page-numbers:hover {
  color: #C19727;
}

.job-list-page__pager span.page-numbers.dots {
  min-width: auto;
  padding: 0 6px;
  border: none;
  background: transparent;
  color: #888;
  font-weight: 400;
}

@media (max-width: 768px) {
  .job-list-page {
    padding: 20px 0 48px;
  }

  .job-list-page__inner {
    padding: 0 16px;
  }

  .job-list-page__breadcrumb-list {
    font-size: 12px;
  }

  .job-list-page__header {
    margin-bottom: 28px;
  }

  .job-list-page__filter,
  .job-filter {
    margin-bottom: 24px;
  }

  .job-filter__label {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .job-filter__list {
    gap: 8px 6px;
  }

  .job-filter__btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .job-filter--accordion .job-filter__trigger {
    padding: 10px 14px;
    font-size: 13px;
  }

  .job-filter--accordion .job-filter__panel {
    max-height: 280px;
    padding: 18px 20px;
  }

  .job-filter__list--grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 22px;
  }

  .job-filter__list--grid-4 .job-filter__btn {
    padding: 14px 20px;
  }

  .job-list-page__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .job-card__body {
    padding: 18px 16px 22px;
  }

  .job-card__title {
    font-size: 15px;
    line-height: 1.5;
  }

  .job-card__meta {
    grid-template-columns: minmax(5em, 6.5em) minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 6px;
    font-size: 12px;
  }

  .job-card__value--salary {
    font-size: 13px;
  }

  .job-list-page__pager {
    margin-top: 28px;
  }

  .job-list-page__pager .nav-links {
    gap: 6px;
  }

  .job-list-page__pager a.page-numbers,
  .job-list-page__pager span.page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
    border-radius: 6px;
  }

  .job-list-page__pager a.prev.page-numbers,
  .job-list-page__pager a.next.page-numbers {
    min-width: 40px;
    font-size: 16px;
  }
}

/* タブレット：2カラム */
@media (min-width: 769px) and (max-width: 1024px) {
  .job-list-page__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
}

/* ========================================
   Job Detail Page（求人詳細）
   ======================================== */
.job-detail-page {
  background-color: #f9f9f9;
  padding-top: 24px;
  padding-bottom: 64px;
}

.job-detail-page__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.job-detail-page__breadcrumb {
  margin-bottom: 24px;
}

.job-detail-page__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: sans-serif;
  font-size: 13px;
  color: #666;
}

.job-detail-page__breadcrumb-list li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #999;
}

.job-detail-page__breadcrumb-list a {
  color: #333;
  text-decoration: none;
}

.job-detail-page__breadcrumb-list a:hover {
  text-decoration: underline;
  color: #C19727;
}

.job-detail-page__header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.job-detail-page__title {
  font-family: sans-serif;
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 700;
  color: #333;
  margin: 0 0 12px;
  line-height: 1.35;
}

.job-detail-page__catch {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.job-detail-page__section {
  margin-bottom: 48px;
  padding: 32px 28px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.job-detail-page__section-title {
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C19727;
}

/* 求人概要 */
.job-detail-overview__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-detail-overview__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px 24px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  align-items: start;
}

.job-detail-overview__row:first-child {
  padding-top: 0;
}

.job-detail-overview__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.job-detail-overview__term {
  font-family: sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  flex-shrink: 0;
}

.job-detail-overview__desc {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  margin: 0;
}

.job-detail-overview__workplace-change-group {
  margin-top: 12px;
}

.job-detail-overview__workplace-change-group:first-child {
  margin-top: 0;
}

.job-detail-overview__workplace-change-group .job-detail-overview__workplace-change + .job-detail-overview__workplace-change {
  margin-top: 12px;
}

.job-detail-overview__sub-label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}


/* 仕事内容 */
.job-detail-work__body {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #333;
}

.job-detail-work__body p {
  margin: 0 0 1em;
}

.job-detail-work__body p:last-child {
  margin-bottom: 0;
}

/* 働く環境・設備 */
.job-detail-environment__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-detail-environment__list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 12px;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.job-detail-environment__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #C19727;
  font-weight: 700;
}

.job-detail-environment__list li:last-child {
  margin-bottom: 0;
}

/* 写真ギャラリー（見出しなし・前へ／ドット／次へは1行） */
.job-detail-gallery .job-detail-page__section-title {
  display: none;
}

.job-detail-gallery__inner {
  position: relative;
  background-color: transparent;
}

.job-detail-gallery__viewport {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  background-color: #e8e8e8;
}

.job-detail-gallery__slider {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.6667%;
  background-color: #e8e8e8;
  flex-shrink: 0;
  touch-action: pan-y;
}

@supports (aspect-ratio: 3 / 2) {
  .job-detail-gallery__slider {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 3 / 2;
  }
}

.job-detail-gallery__list {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
}

.job-detail-gallery__item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.job-detail-gallery__item--current {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.job-detail-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.job-detail-gallery__controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  padding: 10px 12px 12px;
  flex-shrink: 0;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.job-detail-gallery__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.job-detail-gallery__arrow:hover {
  background: #fff;
}

.job-detail-gallery__arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateX(2px) rotate(45deg);
}

.job-detail-gallery__arrow--next::after {
  transform: translateX(-2px) rotate(-135deg);
}

.job-detail-gallery__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  margin: 0;
}

.job-detail-gallery__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #bdbdbd;
  cursor: pointer;
  transition: background 0.2s;
}

.job-detail-gallery__dot--current,
.job-detail-gallery__dot:hover {
  background: #C19727;
  border-color: #C19727;
}

/* 環境・雰囲気（案件ごとに data-atmosphere-value で段階表示・将来WPで管理） */
.job-detail-atmosphere__title {
  margin-bottom: 24px;
}

.job-detail-atmosphere__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-detail-atmosphere__row {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(280px, 520px) minmax(200px, 1fr);
  gap: 12px 16px;
  align-items: center;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.job-detail-atmosphere__label--left {
  text-align: right;
  color: #555;
}

.job-detail-atmosphere__label--right {
  text-align: left;
  color: #555;
}

.job-detail-atmosphere__track {
  position: relative;
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  z-index: 0;
}

.job-detail-atmosphere__track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  width: 100%;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
}

.job-detail-atmosphere__track::after {
  content: none;
}

.job-detail-atmosphere__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #C19727;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: left 0.2s ease;
}

.job-detail-atmosphere__marker--range {
  width: 12px;
  height: 12px;
}

.job-detail-atmosphere__track--range {
  height: 52px;
  align-items: flex-end;
  padding-top: 12px;
  padding-bottom: 4px;
}

.job-detail-atmosphere__track-labels {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #888;
  padding: 0;
  z-index: 0;
}

.job-detail-atmosphere__track-labels span {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .job-detail-atmosphere__track--range {
    height: 44px;
    padding-top: 0;
    padding-bottom: 16px;
    align-items: center;
  }
}

/* CTA */
.job-detail-page__cta-wrap {
  margin-top: 48px;
  padding: 40px 28px;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.job-detail-page__cta-lead {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  width: 100%;
}

.job-detail-page__cta {
  display: inline-block;
  padding: 16px 36px;
  background-color: #C19727;
  color: #fff;
  font-family: sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  margin: 0;
  transition: background-color 0.2s;
}

.job-detail-page__cta:hover {
  background-color: #a87e20;
  color: #fff;
}

.job-detail-page__back {
  display: inline-block;
  font-family: sans-serif;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  margin: 0;
}

.job-detail-page__back:hover {
  color: #C19727;
  text-decoration: underline;
}

/* 事業内容ブロック */
.job-detail-business__company {
  display: block;
  margin: 0 0 20px;
  padding: 0;
  font-family: sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #222;
  font-weight: 700;
  border: none;
  border-radius: 0;
  background: transparent;
}

.job-detail-business__company-name {
  font-weight: 700;
}

.job-detail-business__title {
  margin-bottom: 18px;
}

.job-detail-business__body {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: #333;
}

/* Job Detail - Responsive (SP) */
@media (max-width: 768px) {
  .job-detail-page {
    padding: 20px 0 48px;
  }

  .job-detail-page__inner {
    padding: 0 16px;
  }

  .job-detail-page__header {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }

  .job-detail-page__section {
    margin-bottom: 32px;
    padding: 24px 20px;
  }

  .job-detail-overview__row {
    grid-template-columns: 1fr;
    gap: 6px 0;
    padding: 14px 0;
  }

  .job-detail-overview__term {
    font-size: 13px;
    color: #888;
  }

  .job-detail-overview__desc {
    font-size: 14px;
  }

  .job-detail-page__section-title {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .job-detail-work__body,
  .job-detail-environment__list li {
    font-size: 14px;
  }

  .job-detail-page__cta-wrap {
    margin-top: 32px;
    padding: 28px 20px;
  }

  .job-detail-page__cta {
    width: 100%;
    max-width: 320px;
    padding: 16px 24px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
  }

  .job-detail-gallery__arrow {
    width: 36px;
    height: 36px;
  }

  .job-detail-atmosphere__row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    align-items: start;
  }

  .job-detail-atmosphere__label--left {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    font-size: 12px;
    line-height: 1.4;
    word-break: break-all;
  }

  .job-detail-atmosphere__label--right {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
    font-size: 12px;
    line-height: 1.4;
    word-break: break-all;
  }

  .job-detail-atmosphere__track {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    flex: none;
    margin: 0;
  }

  .job-detail-atmosphere__track--range {
    height: 48px;
    padding-top: 10px;
  }

  .job-detail-atmosphere__track-labels {
    font-size: 10px;
  }

  .job-detail-business__company {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.6;
    padding: 0;
  }

  .job-detail-business__body {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* ========================================
   Voice - List / Detail（転職者の声）
   ======================================== */
.voice-list-page__inner,
.voice-detail-page__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.voice-list-page__breadcrumb-list,
.voice-detail-page__breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  font-family: sans-serif;
  font-size: 13px;
  color: #666;
}

.voice-list-page__breadcrumb-list a,
.voice-detail-page__breadcrumb-list a {
  color: inherit;
  text-decoration: none;
}

.voice-list-page__breadcrumb-list a:hover,
.voice-detail-page__breadcrumb-list a:hover {
  color: #C19727;
  text-decoration: underline;
}

.voice-list-page__breadcrumb-list li + li::before,
.voice-detail-page__breadcrumb-list li + li::before {
  content: ">";
  margin-right: 8px;
  color: #aaa;
}

.voice-list-page__header,
.voice-detail-page__header {
  margin-top: 18px;
}

.voice-list-page__title {
  margin: 0 0 10px;
  font-family: sans-serif;
  font-size: 28px;
  color: #333;
}

.voice-list-page__lead {
  margin: 0;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.voice-cards {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.voice-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.voice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.voice-card__head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 16px 16px 10px;
  align-items: center;
}

.voice-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f2f2f2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.voice-card__avatar-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.voice-card__profile {
  margin: 0 0 6px;
  font-family: sans-serif;
  font-size: 12px;
  color: #777;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.voice-card__title {
  margin: 0;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.voice-card__body {
  padding: 0 16px 16px;
}

.voice-card__changes {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.voice-card__change {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: center;
}

.voice-card__term {
  font-family: sans-serif;
  font-size: 12px;
  color: #888;
}

.voice-card__desc {
  margin: 0;
  font-family: sans-serif;
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.voice-card__before {
  color: #666;
}

.voice-card__after {
  font-weight: 700;
  color: #333;
}

.voice-card__arrow {
  color: #C19727;
  font-weight: 700;
}

.voice-card__excerpt {
  margin: 12px 0 0;
  font-family: sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.voice-list-page__more-wrap {
  margin-top: 24px;
  text-align: center;
}

.voice-list-page__more-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #fff;
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.voice-list-page__more-btn:hover {
  border-color: #C19727;
  color: #C19727;
}

.voice-list-page__cta {
  margin-top: 34px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.voice-list-page__cta-lead {
  margin: 0 0 14px;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.voice-list-page__cta-btn,
.voice-detail-page__cta-btn {
  display: inline-block;
  padding: 16px 34px;
  background: #C19727;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.voice-list-page__cta-btn:hover,
.voice-detail-page__cta-btn:hover {
  background: #a87e20;
  color: #fff;
}

/* Detail head */
.voice-detail-head__top {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
}

.voice-detail-head__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f2f2f2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.voice-detail-head__avatar-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.voice-detail-head__profile {
  margin: 0 0 8px;
  font-family: sans-serif;
  font-size: 13px;
  color: #777;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.voice-detail-head__title {
  margin: 0;
  font-family: sans-serif;
  font-size: 26px;
  line-height: 1.45;
  color: #333;
}

.voice-detail-head__tags {
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-family: sans-serif;
  font-size: 13px;
}

.voice-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.voice-detail-tag__label {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  background: #333;
  color: #fff;
  font-size: 11px;
}

.voice-detail-tag__value {
  color: #333;
}

.voice-detail-page__card {
  margin-top: 18px;
  padding: 24px 28px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.voice-detail-head__change {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: start;
}

.voice-detail-head__term {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

.voice-detail-head__desc {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: sans-serif;
  font-size: 14px;
  color: #333;
}

.voice-detail-head__income {
  color: #666;
}

/* Q&A */
.voice-qa__list {
  margin-top: 28px;
}

.voice-qa-item {
  padding: 18px 0;
  border-top: 1px solid #f0f0f0;
}

.voice-qa-item__q {
  margin: 0 0 10px;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  position: relative;
  padding-left: 18px;
}

.voice-qa-item__q::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: #C19727;
}

.voice-qa-item__a {
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #444;
  margin: 0;
}

.voice-qa-item__a::before {
  content: none;
}

.voice-qa-item__a p {
  margin: 0;
}

.voice-detail-comment {
  margin-top: 28px;
  padding: 18px 18px;
  border-radius: 10px;
  background: #f7f7f7;
  font-family: sans-serif;
}

.voice-detail-comment__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  margin-bottom: 6px;
}

.voice-detail-comment__body {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.voice-detail-page__cta {
  margin-top: 34px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.voice-detail-page__cta-lead {
  margin: 0;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  width: 100%;
}

.voice-detail-page__back {
  display: inline-block;
  font-family: sans-serif;
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.voice-detail-page__back:hover {
  color: #C19727;
  text-decoration: underline;
}

.voice-detail-page__pager {
  margin-top: 4px;
  font-family: sans-serif;
  font-size: 13px;
  color: #666;
}

.voice-detail-page__pager a {
  color: inherit;
  text-decoration: none;
}

.voice-detail-page__pager a:hover {
  color: #C19727;
  text-decoration: underline;
}

.voice-detail-page__pager-item + .voice-detail-page__pager-item::before {
  content: "｜";
  margin: 0 8px;
  color: #ccc;
}

/* ========================================
   企業インタビュー（一覧・詳細＝将来WPカスタム投稿タイプ用）
   ======================================== */
.interview-list-page__inner,
.interview-detail-page__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.interview-list-page__breadcrumb-list,
.interview-detail-page__breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  font-family: sans-serif;
  font-size: 13px;
  color: #666;
}

.interview-list-page__breadcrumb-list a,
.interview-detail-page__breadcrumb-list a {
  color: inherit;
  text-decoration: none;
}

.interview-list-page__breadcrumb-list a:hover,
.interview-detail-page__breadcrumb-list a:hover {
  color: #C19727;
  text-decoration: underline;
}

.interview-list-page__breadcrumb-list li + li::before,
.interview-detail-page__breadcrumb-list li + li::before {
  content: ">";
  margin-right: 8px;
  color: #aaa;
}

.interview-list-page__header,
.interview-detail-page__header {
  margin-top: 18px;
}

.interview-list-page__title {
  margin: 0 0 10px;
  font-family: sans-serif;
  font-size: 28px;
  color: #333;
}

.interview-list-page__lead {
  margin: 0;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.interview-list-page__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.interview-list-page__item {
  margin: 0;
}

.interview-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.interview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.interview-card__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f0f0;
}

.interview-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interview-card__body {
  padding: 16px;
}

.interview-card__company-name {
  margin: 0 0 8px;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.interview-card__catch {
  margin: 0 0 8px;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.interview-card__excerpt {
  margin: 0;
  font-family: sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

.interview-list-page__empty-msg {
  grid-column: 1 / -1;
  margin: 24px 0;
  font-family: sans-serif;
  font-size: 15px;
  color: #666;
  text-align: center;
}

.interview-list-page__cta {
  margin-top: 34px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.interview-list-page__cta-lead {
  margin: 0 0 14px;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.interview-list-page__cta-btn {
  display: inline-block;
  padding: 16px 34px;
  background: #C19727;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.interview-list-page__cta-btn:hover {
  background: #a87e20;
  color: #fff;
}

/* 企業インタビュー詳細（参考：workport 企業インタビュー） */
.interview-detail-head__company-label {
  margin: 0 0 8px;
  font-family: sans-serif;
  font-size: 14px;
  color: #666;
}

.interview-detail-head__catch {
  margin: 0 0 24px;
  font-family: sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

.interview-detail-head__figure {
  margin: 0 0 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}

.interview-detail-head__figure--inline {
  margin-bottom: 16px;
}

.interview-detail-head__main-image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.interview-detail-head__figure-caption {
  margin: 0;
  padding: 8px 12px;
  font-family: sans-serif;
  font-size: 13px;
  color: #666;
  background: #fafafa;
}

.interview-detail__intro {
  margin: 0;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #444;
}

.interview-detail__intro p {
  margin: 0;
}

.interview-detail-page__section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

/* コンテンツを区切り（セクション境界）幅に合わせる */
.interview-detail__intro,
.interview-detail-profile__bio,
.interview-detail__body {
  font-family: sans-serif;
}

.interview-detail-body__heading {
  margin: 0 0 20px;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}

.interview-detail-page__section-title {
  margin: 0 0 16px;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.02em;
}

/* INTERVIEWEE PROFILE */
.interview-detail-profile__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555;
}

.interview-detail-profile__name {
  margin: 0 0 12px;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.interview-detail-profile__role {
  font-weight: 400;
  font-size: 16px;
  color: #555;
}

.interview-detail-profile__bio {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #444;
}

.interview-detail-profile__bio p {
  margin: 0;
}

/* インタビューQ&Aブロック（長文想定で余白・行間を広めに） */

.interview-detail__body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #444;
}

.interview-detail__body p {
  margin: 0 0 1.5em;
}

.interview-detail__body p:last-child {
  margin-bottom: 0;
}

/* 最後のメッセージブロック（見出し左アクセント・枠内に円形写真＋テキスト・大写真・キャプション） */
.interview-detail-body__heading--accent {
  padding-left: 16px;
  border-left: 4px solid #C19727;
  margin-bottom: 24px;
}

.interview-detail-message__box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  margin-bottom: 28px;
  background: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.interview-detail-message__figure {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.interview-detail-message__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interview-detail-message__text {
  flex: 1;
  min-width: 0;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.interview-detail-message__text p {
  margin: 0;
}

.interview-detail-message__main-figure {
  margin: 0 0 16px;
}

.interview-detail-message__caption {
  margin: 0;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* CTA ブロック（この企業の求人を見る / 紹介してもらう） */
.interview-detail-page__cta {
  margin-top: 40px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.interview-detail-page__cta--primary {
  margin-top: 32px;
  padding: 24px;
}

.interview-detail-page__cta--secondary {
  padding: 28px 24px;
  background: #f9f9f9;
}

.interview-detail-page__cta-lead {
  margin: 0;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.interview-detail-page__cta-btn {
  display: inline-block;
  padding: 16px 34px;
  background: #C19727;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.interview-detail-page__cta-btn:hover {
  background: #a87e20;
  color: #fff;
}

/* 他の企業インタビュー */
.interview-detail-others .interview-detail-page__empty-msg {
  margin: 0 0 16px;
  font-family: sans-serif;
  font-size: 14px;
  color: #666;
}

.interview-detail-page__back-wrap {
  margin: 0;
}

.interview-detail-page__back {
  display: inline-block;
  font-family: sans-serif;
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.interview-detail-page__back:hover {
  color: #C19727;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .voice-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .voice-list-page__inner,
  .voice-detail-page__inner,
  .interview-list-page__inner,
  .interview-detail-page__inner {
    padding: 0 16px;
  }

  .voice-cards {
    grid-template-columns: 1fr;
  }

  .interview-list-page__list {
    grid-template-columns: 1fr;
  }

  .interview-list-page__title {
    font-size: 22px;
  }

  .interview-detail-head__catch {
    font-size: 20px;
  }

  .interview-detail-body__heading {
    font-size: 16px;
  }

  /* SPのみ：メッセージブロックを横並び（画像左・文章右）、画像は円形のまま */
  .interview-detail-message__box {
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
  }

  .interview-detail-message__text {
    text-align: left;
  }

  .interview-detail-message__figure {
    width: 72px;
    height: 72px;
  }

  .voice-card__head {
    grid-template-columns: 56px 1fr;
  }

  .voice-card__avatar {
    width: 56px;
    height: 56px;
  }

  .voice-list-page__title {
    font-size: 22px;
  }

  .voice-detail-head__top {
    grid-template-columns: 64px 1fr;
  }

  .voice-detail-head__avatar {
    width: 64px;
    height: 64px;
  }

  .voice-detail-head__title {
    font-size: 20px;
  }

  .voice-detail-head__changes {
    grid-template-columns: 1fr;
  }

  .voice-list-page__cta-btn,
  .voice-detail-page__cta-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    box-sizing: border-box;
  }
}

/* ========================================
   News Section override（本番反映用の安定化）
   ======================================== */
.main .news-section {
  background: #fff;
}

.main .news-section .news-section__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 24px 20px;
}

.main .news-section .news-section__heading {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #222;
  letter-spacing: 0.03em;
}

.main .news-section .news-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5e7eb;
}

.main .news-section .news-section__item {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  margin: 0;
}

.main .news-section .news-section__date {
  display: block;
  min-width: 96px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.main .news-section .news-section__link {
  display: inline-block;
  color: #111827;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.main .news-section .news-section__link:hover {
  color: #c19727;
  text-decoration: underline;
}

.main .news-section .news-section__more-wrap {
  margin: 18px 0 0;
  text-align: right;
}

.main .news-section .news-section__more {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 768px) {
  .main .news-section .news-section__inner {
    padding: 28px 16px 14px;
  }
  .main .news-section .news-section__item {
    display: block;
    padding: 12px 0;
  }
  .main .news-section .news-section__date {
    margin-bottom: 2px;
    font-size: 13px;
  }
  .main .news-section .news-section__link {
    font-size: 15px;
  }
  .main .news-section .news-section__more-wrap {
    text-align: center;
    margin-top: 14px;
  }
}

/* ========================================
   News Archive Page（お知らせ一覧）
   ======================================== */
.news-archive-page {
  background: #fff;
  padding: 36px 0 40px;
}

.news-archive-page__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-archive-page__header {
  margin: 0 0 14px;
}

.news-archive-page__title {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #222;
  letter-spacing: 0.03em;
}

.news-archive-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5e7eb;
}

.news-archive-page__item {
  display: flex;
  gap: 20px;
  align-items: baseline;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.news-archive-page__date {
  min-width: 96px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.news-archive-page__link {
  color: #111827;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
}

.news-archive-page__link:hover {
  color: #c19727;
  text-decoration: underline;
}

.news-archive-page__empty {
  margin: 0;
  padding: 14px 0;
  color: #6b7280;
}

.news-archive-page .page-numbers {
  list-style: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 18px 0 0;
  padding: 0;
}

.news-archive-page .page-numbers li {
  margin: 0;
}

.news-archive-page .page-numbers a,
.news-archive-page .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
}

.news-archive-page .page-numbers .current {
  background: #c19727;
  border-color: #c19727;
  color: #fff;
}

@media (max-width: 768px) {
  .news-archive-page {
    padding: 28px 0 24px;
  }

  .news-archive-page__inner {
    padding: 0 16px;
  }

  .news-archive-page__item {
    display: block;
    padding: 12px 0;
  }

  .news-archive-page__date {
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
  }

  .news-archive-page__link {
    font-size: 15px;
  }
}

/* ========================================
   News Single Page（お知らせ詳細）
   ======================================== */
.news-single-page {
  background: #fff;
  padding: 48px 24px 72px;
}

.news-single-page__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.news-single-page__article {
  max-width: 760px;
  margin: 0 auto;
}

.news-single-page__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.news-single-page__date {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #888;
  letter-spacing: 0.04em;
}

.news-single-page__title {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.5;
  font-weight: 700;
  color: #222;
}

.news-single-page__content {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.news-single-page__content > *:first-child {
  margin-top: 0;
}

.news-single-page__content p {
  margin: 0 0 1.6em;
}

.news-single-page__content h2 {
  margin: 2.4em 0 1em;
  padding-bottom: 10px;
  font-size: 24px;
  line-height: 1.5;
  color: #333;
  border-bottom: 2px solid #C19727;
}

.news-single-page__content h3 {
  margin: 2em 0 0.9em;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
}

.news-single-page__content ul,
.news-single-page__content ol {
  margin: 0 0 1.6em 1.4em;
  padding: 0;
}

.news-single-page__content li {
  margin-bottom: 0.5em;
}

.news-single-page__content a {
  color: #C19727;
  text-decoration: underline;
  word-break: break-word;
}

.news-single-page__content a:hover {
  color: #a87e20;
}

.news-single-page__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2em auto;
  border-radius: 6px;
}

.news-single-page__content blockquote {
  margin: 2em 0;
  padding: 1.2em 1.4em;
  background: #f7f3ea;
  border-left: 4px solid #C19727;
}

.news-single-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}

.news-single-page__content th,
.news-single-page__content td {
  border: 1px solid #ddd;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

.news-single-page__content th {
  background: #f8f8f8;
  font-weight: 700;
}

.news-single-page__footer-nav {
  max-width: 760px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.news-single-page__back-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.news-single-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.news-single-page__back:hover {
  border-color: #C19727;
  color: #C19727;
  background: #fdfbf5;
}

.news-single-page__pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.news-single-page__pager-item a {
  display: block;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  line-height: 1.7;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.news-single-page__pager-item a:hover {
  border-color: #C19727;
  background: #fdfbf5;
  color: #C19727;
}

.news-single-page__pager-item--next {
  text-align: right;
}

@media (max-width: 768px) {
  .news-single-page {
    padding: 40px 16px 56px;
  }

  .news-single-page__header {
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .news-single-page__title {
    font-size: 26px;
    line-height: 1.45;
  }

  .news-single-page__content {
    font-size: 15px;
    line-height: 1.9;
  }

  .news-single-page__content h2 {
    font-size: 20px;
  }

  .news-single-page__content h3 {
    font-size: 18px;
  }

  .news-single-page__pager {
    grid-template-columns: 1fr;
  }

  .news-single-page__pager-item--next {
    text-align: left;
  }
}

/* ========================================
   Floating SNS（Instagram / LINE 追従）
   ======================================== */
.floating-social {
  position: fixed;
  right: 20px;
  left: auto;
  /* reCAPTCHAバッジ（右下・約70〜80px）と重ならないよう上に配置 */
  bottom: 100px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.floating-instagram,
.floating-line {
  display: inline-grid;
  place-items: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  color: #111827;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.floating-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  border-color: #C19727;
  color: #C19727;
}

.floating-line {
  color: #06c755;
}

.floating-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.25);
  border-color: #06c755;
  color: #05b34c;
}

.floating-instagram__icon,
.floating-line__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.floating-instagram__icon svg,
.floating-line__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .floating-social {
    right: 14px;
    left: auto;
    /* SPでもreCAPTCHAバッジ（右下）と被りにくくする */
    bottom: 88px;
  }

  .floating-instagram,
  .floating-line {
    width: 44px;
    height: 44px;
  }
}

/* ========================================
   reCAPTCHA Badge（ヘッダー等より手前・過大z-indexは他UIを隠すため抑える）
   ======================================== */
.grecaptcha-badge {
  z-index: 9999 !important;
}

.grecaptcha-badge iframe {
  z-index: 9999 !important;
}

