@charset "UTF-8";

header.site-header {
  display: none;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP Subset', sans-serif;
}
@media (max-width: 500px) {
  html.sidebar-open,
  body.sidebar-open {
    overflow: hidden;
    height: 100%;
    touch-action: none;
  }
}

/* 全要素に対して border-box を適用 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
a:hover {
  cursor: pointer !important;
}
.pc-only {
  display: block;
}
@media (max-width: 1023px) {
  .pc-only {
    display: none;
  }
}
.max-tablet {
  display: none;
}
@media (max-width: 1023px) {
  .max-tablet {
    display: block;
  }
}
.sp-only {
  display: none;
}
@media (max-width: 500px) {
  .sp-only {
    display: block;
  }
}

/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
}

/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
}

/* =============================================
共通
============================================= */
.disp-none {
  display: none !important;
}
.anchor-offset {
  display: block;
  height: 70px; /* ヘッダーの高さに合わせて調整 */
  margin-top: -70px;
  visibility: hidden;
}
.mb10 {
  margin-bottom: 10px;
}
.mb14 {
  margin-bottom: 14px !important;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.amazegreen {
  color: #00ad90;
}
.linkblue {
  color: #3c73a9;
}
.wid-70 {
  width: 70% !important;
}
.wid-80 {
  width: 80% !important;
}
.wid-90 {
  width: 90% !important;
}
.mg-center {
  margin: 0 auto;
}
.space-10 {
  height: 10px;
}
.space-15 {
  height: 15px;
}
.space-20 {
  height: 20px;
}
.space-30 {
  height: 30px;
}
.space-40 {
  height: 40px;
}
.space-50 {
  height: 50px;
}

/* =============================================
全体レイアウト
============================================= */
.recruit-wrapper {
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  background-color: #eeeeec;
  letter-spacing: 0.1em;
}
a,
p,
li,
span,
label,
div {
  color: #525454;
}
.recruit-content {
  flex: 1;
  min-width: 0;
  padding: 10px 10px 10px 0;
}
/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-content {
    padding: 0 10px 10px;
    margin-top: 70px;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-content {
    padding: 0 8px 5px;
    margin-top: 55px;
  }
}

/* =============================================
サイドバー
============================================= */
.sidebar-recruit {
  position: sticky;
  top: 0;
  width: 300px;
  flex-shrink: 0;
  color: #525454;
  padding: 35px 15px;
  background-color: #eeeeec;
  font-size: 14px;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-logo {
  text-align: center;
  margin-bottom: 20px;
  padding-left: 10px;
  display: flex;
  align-items: center;
}
.sidebar-logo a {
  width: 70%;
}
.sidebar-logo .recruit-label {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  margin-left: 10px;
  letter-spacing: 0.05em;
}
.sidebar-menu {
  padding: 10px 0 20px 0;
}
.sidebar-menu ul {
  list-style: none;
  padding-left: 0;
}
.sidebar-menu li {
  margin-bottom: 6px;
  padding: 10px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.sidebar-menu li.active {
  background-color: #bfeae3;
}
.sidebar-menu li:hover {
  background-color: #00ad90;
}
.sidebar-menu li a {
  transition: color 0.3s ease;
}
.sidebar-menu li:hover a {
  color: #fff;
}
.sidebar-menu a {
  text-decoration: none;
  display: block;
}
.sidebar-apply-box {
  margin-top: 30px;
}
.sidebar-apply-box .apply-label {
  font-size: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.btn-outline {
  display: block;
  padding: 8px;
  margin-bottom: 8px;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.2s ease;
  font-size: 13px;
  font-weight: 500;
}
.btn-outline:hover {
  background-color: #00000033;
}
.sidebar-recruit a.btn-dark {
  border: none;
  background-color: #525454;
  color: #fff;
  transition: background-color 0.2s ease;
}
.sidebar-recruit a.btn-dark:hover {
  background-color: #00ad90;
}

.external-links {
  margin-top: 17px;
  font-size: 11px;
}
.external-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 12px;
}
.external-links a:hover {
  text-decoration: underline;
}
.external-links i {
  font-size: 12px;
  color: #525454;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  top: 1px; /* 微調整で中央寄せ（必要に応じて） */
}

/* スクロールバー */
.sidebar-recruit::-webkit-scrollbar {
  width: 6px;
}
.sidebar-recruit::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar-recruit::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.sidebar-recruit::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* ▼ ハンバーガーメニューの基本非表示 */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 1%;
  right: 1.6%;
  z-index: 999;
  cursor: pointer;
  width: 50px;
  height: 50px;
  transition: background-color 0.3s ease;
}
.hamburger-menu span {
  display: block;
  width: 45px;
  height: 1px;
  background-color: #525454;
  transition: all 0.3s ease;
}
/* バツに変形（3本線→✕） */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(11px, 11px);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  .sidebar-recruit {
    width: 280px;
  }
  .sidebar-menu li.minimum-letter {
    letter-spacing: 0.05em;
  }
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .sidebar-recruit {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    max-width: 350px;
    z-index: 998;
    transition: right 0.3s ease;
    padding: 80px 44px 44px 44px;
  }
  .sidebar-recruit.active {
    right: 0;
  }
  .sidebar-logo {
    display: block;
    text-align: left;
    padding: 7px 10px;
    margin-bottom: 12px;
  }
  .sidebar-logo a {
    display: block;
    width: 75%;
    margin-bottom: 10px;
  }
  .sidebar-logo .recruit-label {
    margin: 0;
  }
  .sidebar-menu {
    padding: 0 0 20px 0;
  }
  .sidebar-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid #cbcccc;
    border-radius: 0;
  }
  .sidebar-menu li:active {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .sidebar-menu li:last-child {
    border: none;
  }
  .sidebar-apply-box {
    margin-top: 10px;
  }
  .sidebar-recruit a.btn-dark {
    background-color: #00ad90;
    border: none;
  }
  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .sidebar-recruit {
    width: 100%;
    max-width: 100%;
    height: 100dvh;
  }
  .hamburger-menu {
    top: 7px;
    right: 9px;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
    gap: 10px;
  }
  .hamburger-menu span {
    width: 35px;
    height: 1px;
  }
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* サイドバーオーバーレイ */
/* 初期状態：非表示 */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
}
/* サイドバーが開いたとき表示 */
.sidebar-overlay.active {
  display: block;
}

/* =============================================
ロゴヘッダー(SP タブレット時)
============================================= */
.recruit-logo-header {
  display: none;
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-logo-header {
    display: block;
    text-align: center;
    margin: 0;
    padding: 15px 10px 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 800;
    background-color: #eeeeec;
  }
  .recruit-logo-header a {
    display: block;
    width: 280px;
  }
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-logo-header {
    padding: 10px 8px 8px;
    height: 55px;
  }
  .recruit-logo-header a {
    width: 250px;
  }
}

/* =============================================
メインビジュアル
============================================= */
.recruit-hero {
  position: relative;
  z-index: 1;
}
.recruit-hero img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.recruit-hero h1 {
  margin: 0;
  position: absolute;
  bottom: 7%;
  left: 2%;
  font-size: clamp(36px, 3.5vw, 72px);
  font-weight: bold;
  color: #fff;
  line-height: 1;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 10;
}
/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-hero h1 {
    font-size: 40px;
    left: 3%;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-hero h1 {
    font-size: 32px;
    line-height: 1.3;
    bottom: 3%;
  }
}

/* =============================================
各セクション
============================================= */
.recruit-section {
  padding: 32px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}
.recruit-section.recruit-section-first {
  border-radius: 0 0 10px 10px;
  padding: 24px;
}
.recruit-section h2 {
  font-size: 19px;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-section {
    padding: 24px;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-section {
    padding: 16px;
    margin-bottom: 8px;
  }
  .recruit-section.recruit-section-first {
    padding: 20px;
  }
  .recruit-section h2 {
    font-size: 18px;
    margin-bottom: 14px;
  }
}

/* 紹介文 */
.recruit-intro-list {
  list-style: disc;
  padding-left: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.recruit-intro-list li {
  position: relative;
  padding-left: 0.9em;
  margin-bottom: 15px;
  list-style: none;
}
.recruit-intro-list li:last-child {
  margin-bottom: 0;
}
.recruit-intro-list li::before {
  content: '';
  position: absolute;
  top: 0.6em; /* テキスト縦位置に合わせる */
  left: 0;
  width: 0.4em;
  height: 0.4em;
  background-color: #00000033;
  border-radius: 50%;
  margin-top: -1px;
}
.highlight-green {
  font-weight: 700;
  background: linear-gradient(transparent 65%, #bfeae3 65%);
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-section.recruit-intro {
    letter-spacing: 0.08em;
  }
  .recruit-intro-list li {
    margin-bottom: 14px;
  }
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-intro-list {
    font-size: 14px;
  }
  .recruit-intro-list li {
    margin-bottom: 10px;
  }
  .recruit-intro-list li::before {
    margin-top: 0;
  }
  .highlight-green {
    padding: 0 3px 1px;
  }
}

/* 中途・新卒 */
.recruit-section h2.recruit-section-title {
  font-size: 26px;
  font-weight: 700;
  color: #00ad90;
  margin-bottom: 14px;
}
.job-count {
  font-size: 19px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}
.job-updated {
  position: absolute;
  right: 4.5%;
  top: 0;
  background-color: #efefed;
  color: #525454;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 0 0 4px 4px;
}
.job-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  line-height: 1.6;
  margin-bottom: 16px;
}
.job-table td:nth-child(1),
.job-table th:nth-child(1) {
  width: 220px;
}
.job-table td:nth-child(2),
.job-table th:nth-child(2) {
  width: 400px;
}
.job-table td:nth-child(3),
.job-table th:nth-child(3) {
}
.job-table th,
.job-table td {
  border-bottom: 1px solid #eeeeec;
  padding: 8px 2px;
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
}
.job-table th {
  font-size: 12px;
  font-weight: 500;
}
.job-table td.type {
  font-size: 15px;
  font-weight: 500;
}
.job-table td.outline {
  font-size: 13px;
}
.job-table td.link {
  text-align: left;
  font-size: 13px;
  color: #3c73a9;
}
.job-table td.link a {
  font-size: 13px;
  color: #3c73a9;
  text-decoration: none;
}
.job-table td.link a:not(:first-of-type) {
  margin-left: 15px;
}
.job-table td.link a:hover {
  text-decoration: underline;
}
.recruit-cta-box-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.recruit-cta-box {
  transition: all 0.3s ease;
  display: block;
  background-color: #00b89c;
  border-radius: 8px;
  padding: 32px 32px 32px 64px;
  flex: 1 1 0%;
  max-width: 100%;
}
.recruit-cta-box:hover {
  transform: translateY(-3px);
  box-shadow: 5px 6px 10px rgba(0, 0, 0, 0.2);
}
.recruit-cta-box:active {
  transform: translateY(0);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.15);
}
.recruit-cta-box.green {
  background-color: #00ad90;
}
.recruit-cta-box.dark {
  background-color: #525454;
}
.recruit-cta-box .cta-title {
  position: relative;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid #fff;
}
.recruit-cta-box .cta-title .has-icon {
  position: absolute;
  left: -1.55em;
  top: 15%;
  width: 1em;
}
.recruit-cta-box .cta-title .has-icon.icon-entry {
  left: -1.4em;
  top: 13.5%;
  width: 0.9em;
}
.recruit-cta-box .cta-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}
/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
}
/* ピンポイント */
@media (max-width: 1120px) {
  .job-table td:nth-child(2),
  .job-table th:nth-child(2) {
    display: none;
  }
}

/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .job-count {
    font-size: 16px;
  }
  .job-table td.type {
    font-size: 13px;
  }
  .recruit-cta-box {
    padding: 24px 24px 24px 64px;
  }
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-section h2.recruit-section-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .job-table {
    font-size: 14px;
  }
  .job-count {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
  }
  .job-table td:nth-child(1),
  .job-table th:nth-child(1) {
    width: 170px;
  }
  .recruit-cta-box {
    padding: 16px 16px 16px 48px;
  }
  .recruit-cta-box.green {
    margin-bottom: 8px;
  }
  .recruit-cta-box-flex {
    display: block;
  }
  .recruit-cta-box .cta-title {
    font-size: 16px;
    padding-bottom: 6px;
    margin-bottom: 8px;
  }
  .recruit-cta-box .cta-text {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
  .recruit-cta-box .cta-title .has-icon {
    left: -1.8em;
    top: 0;
    width: 1.3em;
  }
  .recruit-cta-box .cta-title .has-icon.icon-entry {
    left: -1.8em;
    top: 4%;
    width: 1.2em;
  }
}

/* カテゴリ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← 明示的に3列に固定 */
  gap: 8px;
}
.category-card {
  display: block;
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 10px 15px;
  text-decoration: none;
  border: 0.5px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
}
.category-card:hover {
  background-color: #00000033;
}
.category-card:active {
  background-color: #00000033;
}
.category-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.category-desc {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1;
}
/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .category-title {
    font-size: 13px;
    margin-bottom: 8px;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .category-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .category-card {
    padding: 8px 12px;
  }
}

/* 職種別のカジュアルトーク */
.talks-swiper .swiper-slide {
  display: flex;
  height: auto;
}
.talk-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #eeeeec;
  padding: 8px;
  border-radius: 8px;
  text-align: left;
  border: 0.5px solid rgba(0, 0, 0, 0.05);
}
.talk-card:hover {
  background-color: #00000033;
}
.talk-card:active {
  background-color: #00000033;
}
.talk-thumb {
  width: 100%;
  aspect-ratio: 16 / 11;
  background-color: #ddd;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}
.talk-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.talk-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.talk-job-type {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1;
}
.talk-title {
  font-size: 13px;
  line-height: 1.5;
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
}

/* オフィスギャラリー */
.office-group {
  margin-bottom: 20px;
}
.office-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* WP投稿リセット */
body .recruit-section .gallery-grid {
  margin: 0;
  flex: initial;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
body .recruit-section .gallery-grid:last-of-type {
  margin-bottom: 0;
}
body .recruit-section .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  width: initial;
}
.gallery-grid:last-of-type {
  margin-bottom: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  background-color: #ddd;
}
/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  body .recruit-section .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ▼ 最大834px（iPad） */
@media (max-width: 834px) {
  body .recruit-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ▼ 最大834px（iPad） */
@media (max-width: 834px) {
  body .recruit-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  body .recruit-section .gallery-grid {
    gap: 5px;
  }
  .recruit-section.recruit-gallery h2 {
    margin-bottom: 24px;
  }
}

/* =============================================
コピーライト
============================================= */
.copyright-in-main {
  text-align: center;
  font-size: 9px;
  color: #777;
  padding: 40px 10px 30px;
  letter-spacing: 0;
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .copyright-in-main {
    padding: 30px 10px;
  }
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .copyright-in-main {
    padding: 20px 10px;
  }
}

/* =============================================
LINEバナー
============================================= */
#line-float-banner {
  width: 150px;
  position: fixed;
  bottom: -100px; /* 初期は非表示 */
  right: 1.3%;
  z-index: 800;
  transition: bottom 1s ease;
  pointer-events: none;
  margin: 0 auto;
}
#line-float-banner.show {
  bottom: 0; /* 表示時の位置 */
  pointer-events: auto;
}
#line-float-banner:hover {
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease-in-out;
}
/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  #line-float-banner {
  }
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  #line-float-banner {
    width: 60px;
    right: 3.5%;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  #line-float-banner {
    right: 4%;
  }
}

/* =============================================
共通パーツ系
============================================= */
/* パンくずリスト */
.recruit-breadcrumb {
  padding: 17px 12px;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0;
}
.recruit-breadcrumb .current-page {
  color: #33bda6;
}
.recruit-breadcrumb .arrow {
  padding: 0 8px;
  color: #757676;
}
.recruit-breadcrumb a:hover {
  text-decoration: underline;
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-breadcrumb {
    padding: 0;
    margin-bottom: 40px;
  }
}

/* 管理画面入力テキストのスタイル */
.fw-normal {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-bold {
  font-weight: 700;
}
.fs-small {
  font-size: 12px;
}
.mt-0 {
  margin-top: 0;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.disp-ib {
  display: inline-block;
}
.adjust-space10 {
  display: block;
  height: 10px;
}

/* 積極募集中職種リストパーツ */
.block-item.block-reqruiting-jobs p {
  line-height: 1.9;
  font-weight: 400 !important;
}
.reqruiting-jobs-list-wrapper {
  padding: 24px;
  background-color: #f1f1f1;
  border-radius: 8px;
  letter-spacing: 0.1em;
}

.reqruiting-jobs-list-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  table-layout: fixed;
  font-size: 15px;
}
.reqruiting-jobs-list-table th,
.reqruiting-jobs-list-table td {
  text-align: left;
  padding: 12px 2px;
  border-bottom: 1px solid #00000033;
}
.reqruiting-jobs-list-table thead th {
  font-weight: 400;
  font-size: 12px;
  padding-top: 0;
}
.reqruiting-jobs-list-table td:nth-child(1),
.reqruiting-jobs-list-table th:nth-child(1) {
  font-weight: 500;
  width: 220px;
}
.reqruiting-jobs-list-table td:nth-child(2),
.reqruiting-jobs-list-table th:nth-child(2) {
}
.reqruiting-jobs-list-table a {
  color: #3c73a9;
  text-decoration: none;
}
.reqruiting-jobs-list-table td.link a:not(:first-of-type) {
  margin-left: 40px;
}
.reqruiting-jobs-list-table a:hover {
  text-decoration: underline;
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .reqruiting-jobs-list-wrapper {
    padding: 16px;
  }
  .reqruiting-jobs-list-table td:nth-child(1),
  .reqruiting-jobs-list-table th:nth-child(1) {
    width: 52%;
    min-width: 150px;
  }
  .reqruiting-jobs-list-table tr:last-child {
    margin-bottom: 0;
  }
  .reqruiting-jobs-list-table td {
    padding: 8px 1px;
    font-size: 13px;
  }
  .reqruiting-jobs-list-table td.link a:not(:first-of-type) {
    margin-left: 12px;
  }
}

/* 仕事ページの応募ボタン */
.btn-job-entry {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #525454;
  transition: background-color 0.2s ease;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  padding: 15px;
  border-radius: 4px;
}
.btn-job-entry:hover {
  background-color: #00ad90;
}

/* =============================================
一覧ページ (table ver)
============================================= */
.all-list-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: 90vh;
}
.all-list-image-area {
  width: 350px;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.all-list-image-area img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.recruit-section.all-list {
  padding: 32px;
  width: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-main.all-list .recruit-breadcrumb {
    margin-left: 16px;
    margin-bottom: 0;
    padding: 5px 0;
  }
  .all-list-wrapper {
    flex-direction: column;
  }
  .all-list-image-area {
    width: 100%;
    order: -1;
    margin-bottom: 0;
  }
  .all-list-image-area img {
    border-top-left-radius: 10px;
    border-bottom-right-radius: 0;
  }
  .recruit-section.all-list {
    flex: 1;
    border-top-left-radius: 0;
    border-bottom-right-radius: 10px;
  }
}

.recruit-section.all-list h1 {
  margin-bottom: 14px;
  letter-spacing: 0;
  font-size: 24px;
  font-weight: 700;
}
.recruit-section.all-list a:hover {
  text-decoration: underline;
}

.list-table {
  width: 100%;
  border-collapse: collapse;
}
.list-table a {
  display: block;
}
.list-table th,
.list-table td {
  border-bottom: 1px solid #00000033;
  padding: 18px 15px;
  text-align: left;
}
.list-table td {
  font-size: 15px;
}
.list-table th {
  font-size: 13px;
  font-weight: 400;
}
.list-table td:nth-child(1),
.list-table th:nth-child(1) {
  width: 12%;
  min-width: 80px;
}
.list-table td:nth-child(1) {
  padding-left: 20px;
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-section.all-list {
    padding: 24px;
  }
  .recruit-section.all-list h1 {
    font-size: 20px;
  }
  .list-table th,
  .list-table td {
    padding: 12px 6px;
    line-height: 1.5;
  }
  .list-table td {
    font-size: 13px;
  }
  .list-table th {
    font-size: 11px;
  }
  .list-table td:nth-child(1),
  .list-table th:nth-child(1) {
    width: 10%;
    min-width: 70px;
  }
  .list-table td:nth-child(1) {
    padding-left: 13px;
  }
  .list-table td:last-child {
    text-align: right;
    font-size: 10px;
    letter-spacing: 0.05em;
  }
}
/* 会社一覧 */
.list-table.company-list td:last-child {
  text-align: left;
  font-size: 15px;
}

/* 中途新卒職種一覧 */
.list-table.job-list .job-link {
  color: #00ad90;
}

/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  .list-table.job-list th:nth-child(3) {
    display: none;
  }
  .list-table.job-list td:nth-child(3) {
    display: none;
  }
}

/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
}

/* =============================================
一覧ページ（ulリストver）
============================================= */
.recruit-section.all-list li {
  margin-bottom: 0;
}
.list-table-style a.list-row:hover {
  text-decoration: none;
}
.list-table-style {
  list-style: none;
  padding: 0;
  margin: 0;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.list-table-style li {
  border-bottom: 1px solid #00000033;
  font-size: 15px;
}
.list-table-style li.list-header {
  font-size: 12px;
  display: flex;
  padding: 13px 2px;
}
/* .list-table-style li.list-header .cell {
  flex: 1;
} */
.list-table-style li.list-header.recruit-type {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 2px 13px;
  margin-top: 20px;
}
/* 各データ行 */
.list-row {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 20px 2px;
  transition: background-color 0.3s ease;
}
.list-row:hover {
  background-color: #f8f8f8;
}
/* 各セル */
.list-row .cell {
  flex: 1;
  font-weight: 500;
  padding-left: 5px;
}
.list-row .cell.type,
.list-header .cell.type {
  width: 120px;
  flex: 0 0 120px;
}
.list-row .cell.title,
.list-header .cell.title {
  min-width: 280px;
  flex: 0 0 280px;
}
.title-icon {
  width: 15px;
  height: auto;
  margin-right: 6px;
  vertical-align: bottom;
}
.list-row .staff {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.list-row .staff img,
.list-row .staff .noimg {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: #ccc;
}
@media (max-width: 1200px) {
  .list-row .cell.staff,
  .list-header .cell.staff {
    display: none;
  }
}
@media (max-width: 1023px) {
  .list-row .cell.staff,
  .list-header .cell.staff {
    display: flex;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .list-row {
    justify-content: flex-start;
    padding: 18px 2px;
  }
  .list-row .cell.type,
  .list-header .cell.type {
    width: 90px;
    flex: 0 0 90px;
  }
  .list-row .cell.title,
  .list-header .cell.title {
    width: calc(100% - 85px);
    flex: 0 0 calc(100% - 85px);
    min-width: unset;
  }
  .list-table-style.one-row .list-row .cell.title,
  .list-table-style.one-row .list-header .cell.title {
    width: 100%;
    flex: none;
    min-width: unset;
  }
  .list-row .cell.staff,
  .list-header .cell.staff {
    display: none;
  }
}

/* =============================================
詳細ページ
============================================= */
.recruit-section.detail {
  padding: 60px 20% 100px;
  letter-spacing: 0;
}
.recruit-section.detail .detail-container {
  width: 100%;
  margin: 0 auto;
}
.recruit-section.detail h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 26px;
  line-height: 1.3;
}
.recruit-section.detail h2 {
  font-size: 36px;
  font-weight: 700;
  color: #525454;
  margin-bottom: 20px;
  line-height: 1.3;
}
.recruit-section.detail h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.recruit-section.detail .sub-h2head {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 10px;
}
/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  .recruit-section.detail {
    padding: 60px 13% 100px;
  }
  .recruit-section.detail h1 {
    font-size: 36px;
  }
  .recruit-section.detail h2 {
    font-size: 28px;
  }
  .recruit-section.detail h3 {
    font-size: 22px;
  }
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-section.detail {
    padding: 28px;
  }
  .recruit-section.detail h1 {
    font-size: 34px;
    margin-bottom: 22px;
    line-height: 1.4;
  }
  .recruit-section.detail h2 {
    font-size: 26px;
    line-height: 1.4;
  }
  .recruit-section.detail h3 {
    font-size: 20px;
    line-height: 1.4;
  }
  .recruit-section.detail .sub-h2head {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-section.detail {
    padding: 16px;
  }
  .recruit-section.detail h2 {
    font-size: 22px;
  }
}
/* 代表者(担当者)エリア */
.recruit-section.detail .block-representative {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.recruit-section.detail .block-representative .avatar {
  width: 44px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.recruit-section.detail .block-representative .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recruit-section.detail .block-representative .rep-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recruit-section.detail .block-representative .rep-name {
  font-size: 13px;
  color: #000;
}
.recruit-section.detail .block-representative .rep-dept {
  font-size: 13px;
  margin-top: 4px;
  color: #757676;
}

/* ブロックコンテンツ */
.recruit-section.detail .block-item {
  margin-bottom: 60px;
}
.recruit-section.detail .block-item:last-of-type {
  margin-bottom: 0;
}
.recruit-section.detail .block-item-content {
  letter-spacing: 0.1em;
}
.recruit-section.detail .block-item-content p {
  line-height: 1.7;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
}
.recruit-section.detail .block-item-content p.indented {
  text-indent: -1em;
  padding-left: 1.12em;
}
/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  .recruit-section.detail .block-item {
    margin-bottom: 45px;
  }
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-section.detail .block-item {
    margin-bottom: 40px;
  }
  .recruit-section.detail .block-item-content p {
    font-size: 15px;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
}
/* 動画ブロック */
.recruit-section.detail .block-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9アスペクト比 */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
}
.recruit-section.detail .block-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* テーブル  */
.recruit-section.detail .detail-table {
  width: 100%;
  border-collapse: collapse;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.recruit-section.detail .detail-table th,
.recruit-section.detail .detail-table td {
  border: 1px solid #757676;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
}
.recruit-section.detail .detail-table th {
  background-color: #eeeeec;
  width: 14%;
  min-width: 100px;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
}
.recruit-section.detail .detail-table p {
  margin-bottom: 8px;
}
.recruit-section.detail .detail-table td p:last-of-type {
  margin-bottom: 0;
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-section.detail .detail-table {
    margin-bottom: 24px;
  }
  .recruit-section.detail .detail-table th,
  .recruit-section.detail .detail-table td {
    font-size: 12px;
  }
  .recruit-section.detail .detail-table th {
    width: 12%;
    min-width: 80px;
  }
  .recruit-section.detail .detail-table th,
  .recruit-section.detail .detail-table td {
    padding: 12px;
  }
}
/* 社員ページ */
.recruit-section.detail h2.interview-heading {
  font-size: 22px;
  margin-bottom: 20px;
}
/* 社員の声 */
.voice-container {
  background-color: #eeeeec;
  padding: 0 24px 24px 24px;
  border-radius: 20px;
}
.voice-container:not(:last-of-type) {
  /* ← 最後の .voice-container 以外すべてに適用 */
  margin-bottom: 24px;
}
.voice-flex > div {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
/* 偶数番目 */
.voice-container:nth-of-type(even) .voice-flex > div {
  flex-direction: row-reverse; /* ← 並びを反転 */
}
.voice-flex figure {
  width: 25%;
  max-width: 250px;
  min-width: 180px;
  margin: 0;
  flex-shrink: 0;
}
.voice-flex img {
  width: 100%;
  height: auto;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.voice-item {
  flex: 1;
}
.voice-name {
  width: 100%;
  background-color: #525454;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.voice-question {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 10px 0 10px;
  padding: 10px;
}
.voice-container > div > p.voice-question {
  margin: 20px 0 25px;
}
.voice-answer {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1em;
  padding: 16px 14px;
  background-color: #fff;
  border-radius: 8px;
  margin: 0;
  position: relative;
}

/* ▼ 吹き出し下の山型三角（上向き） */
.voice-answer::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 33%;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 25px solid #fff;
}
.voice-answer:not(:first-of-type)::before {
  left: 50%;
  transform: translateX(-50%);
}

/* 偶数番目の反転時 */
.voice-container:nth-of-type(even) .voice-answer::before {
  left: 7%;
  width: 0;
  height: 0;
}

/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  .voice-question {
    font-size: 24px;
  }
}

/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .voice-question {
    margin: 20px 0 10px;
  }
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .voice-container {
    padding: 0 14px 14px 14px;
  }
  .voice-flex > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .voice-container:nth-of-type(even) .voice-flex > div {
    display: flex;
    flex-direction: column;
  }
  /* テキスト全体を3番目に（名前＋質問） */
  .voice-item {
    display: contents;
  }
  /* 全てを同じ階層で扱う */
  .voice-name {
    order: 1;
    padding: 14px;
  }
  .voice-flex figure {
    order: 2;
    margin: 0 auto;
    width: 60%;
    max-width: 500px;
    min-width: 100px;
  }
  .voice-question {
    order: 3;
  }
  /* .voice-item 内を無効化 */
  .voice-item > .wp-block-group__inner-container {
    display: contents;
  }
  .voice-flex {
    padding-bottom: 15px;
  }
  .voice-flex img {
    border-radius: 8px;
  }
  .voice-question {
    padding: 0;
    margin: 0;
  }
  .voice-answer::before {
    left: 17%;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 20px solid #fff;
  }
  .voice-answer:not(:first-of-type)::before {
    left: 17%;
  }
  .voice-container:nth-of-type(even) .voice-answer::before {
    left: 17%;
  }
}

/* 1ページで分かるアメイズプラス */
.recruit-section.onepage h2 {
  margin-bottom: 20px;
}
.recruit-section.onepage .block-item-text-title {
  background-color: #bfeae3;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 12px;
}
.recruit-section.onepage .block-item-text-title p {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}
.recruit-section.onepage .block-item-img {
  display: inline-block;
  margin: 0 auto 24px;
  width: 100%;
}
.recruit-section.onepage .block-item-img img {
  width: 100%;
}
.recruit-section.onepage .block-item-img.graph-img {
  display: inline-block;
  text-align: center;
}
.recruit-section.onepage .block-item-img.graph-img img {
  width: 90%;
}
.recruit-section.onepage .block-item-img.flex-img {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.company-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid #00000033;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.company-info-table th,
.company-info-table td {
  border: none;
  box-shadow: inset 0 -1px 0 #00000033;
  padding: 12px;
  line-height: 1.5;
}
.company-info-table th {
  background-color: #eeeeec;
  text-align: center;
  font-weight: 500;
  width: 16%;
  min-width: 100px;
}
.company-info-table td {
  padding: 8px;
  text-align: left;
}
.recruit-section.onepage .block-item a:hover {
  text-decoration: underline;
}
.recruit-section.onepage .block-item-content {
  margin-bottom: 30px;
}
.recruit-section.onepage .block-item-content p {
  margin-bottom: 20px;
}
.recruit-section.onepage .block-item:last-of-type > .block-item-content:last-of-type {
  margin-bottom: 0;
}
.recruit-section.onepage .block-item > .block-item-content:last-of-type > p:last-of-type {
  margin-bottom: 0;
}
.recruit-section.onepage .block-item-content p.mb30 {
  margin-bottom: 30px;
}

/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-section.onepage .block-item-text-title p {
    font-size: 16px;
  }
  .recruit-section.onepage .block-item-img {
    display: inline-block;
    margin-bottom: 20px;
  }
  .company-info-table {
    font-size: 12px;
  }
  .company-info-table th {
    min-width: 80px;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-section.onepage .block-item-text-title {
    padding: 14px;
  }
  .company-info-table {
    margin-bottom: 14px;
  }
  .recruit-section.onepage .block-item-img.flex-img {
    display: block;
  }
}

/* 会社詳細 */
.recruit-section.onepage .block-item-text-title.align-left {
  text-align: left;
  padding: 24px;
  margin-bottom: 20px;
}
.recruit-section.onepage .image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.recruit-section.onepage .block-item-content.mb20 {
  margin-bottom: 20px;
}
.recruit-section.onepage .block-item-text-title p.item-title {
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.recruit-section.onepage .block-item-text-title p.item-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  line-height: 1.7;
}
.recruit-section.onepage .block-item-text-title p.item-text:last-of-type {
  margin-bottom: 0;
}
/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-section.onepage .block-item-text-title p.item-title {
    font-size: 20px;
  }
  .recruit-section.onepage .block-item-text-title p.item-text {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-section.onepage .image-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .recruit-section.onepage .block-item-content {
    margin-bottom: 20px;
  }
}

/* /会社詳細/事業内容 */
.recruit-section.detail .block-item-img a.ec-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.recruit-section.detail .block-item-img a.ec-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
  z-index: 1;
  border-radius: 38px;
}
.recruit-section.detail .block-item-img a.ec-link:hover::after {
  background-color: rgba(191, 234, 227, 0.3);
  /* background-color: rgba(0, 0, 0, 0.2); */
}

/* /会社詳細/SNSアカウント */
.sns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sns-item {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 8px;
  overflow: hidden;
}
.sns-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.sns-logo {
  width: 100%;
  padding-top: 105%;
  position: relative;
  /* background-color: #eeeeec; */
  border-radius: 8px;
  overflow: hidden;
}
.sns-logo.amazegreen {
  /* background-color: #bfeae3; */
}
.sns-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: auto;
  transform: translate(-50%, -50%);
}
.sns-name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #00000033;
}
.sns-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding: 5px 5px 0 5px;
  text-align: left;
}
.recruit-section.onepage .block-item .sns-grid a:hover {
  text-decoration: none;
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .sns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sns-name {
    font-size: 19px;
  }
  .sns-description {
    font-size: 15px;
  }
}

/* /会社詳細/組織体制 */
.capsule-label {
  text-align: left;
  margin-bottom: 10px;
}
.capsule-label p {
  display: inline-block;
  width: 120px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #00000033;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: center;
  padding: 5px;
  border-radius: 20px;
}
.department-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.department-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #eeeeec;
  border: 1px solid #cbcccc;
  padding: 28px;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  gap: 5px;
}
.department-button:hover {
  /* background-color: #00000033; */
}
.department-button .arrow {
  width: 40px;
  height: 40px;
}
.department-button.active .department-content {
  max-height: 200px;
  opacity: 1;
}
.department-content p {
  font-size: 18px;
  line-height: 1.7;
}
.department-content p.top-text {
  margin-top: 5px;
}
.department-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  width: 100%;
}
.department-content .top-text,
.department-content .text,
.department-content .border-text {
  letter-spacing: 0.1em;
}

/* アコーディオンの要素内 */
.accordion-contents {
  display: flex;
  gap: 20px;
  margin: 20px 0px;
}
.accordion-contents:last-of-type {
  margin-bottom: 0;
}
.accordion-contents div {
  text-align: center;
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
}
.accordion-contents div:last-of-type {
  margin-bottom: 0;
}
.accordion-contents img {
  width: 94px;
  height: 94px;
  margin: 10px 0px 25px 0px;
}
.department-content .department-content-item {
  margin-top: 14px;
}
.department-content .title {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 8px;
}
.accordion-contents .title {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px #525454 solid;
}
.accordion-contents .text {
  margin-top: 16px;
  text-align: left;
}
.department-content .border-text {
  padding-bottom: 15px;
  border-bottom: 1px #525454 solid;
}
.accordion-contents .accordion-contents-one {
  flex: 1;
}
.department-button .arrow img {
  padding-top: 10px;
}
/* アコーディオン矢印 */
.arrow-icon {
  vertical-align: middle;
}
.department-button.active .arrow-icon {
  transform: rotate(180deg);
}
.border-none {
  border-bottom: none !important;
}

@media (max-width: 1023px) {
  .capsule-label {
    margin-bottom: 8px;
  }
  .department-list {
    gap: 8px;
  }
  .department-button {
    font-size: 23px;
    padding: 20px;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .department-button {
    font-size: 19px;
    padding: 14px;
  }
  .department-content p {
    font-size: 16px;
  }
  .department-button .arrow {
    width: 33px;
    height: 33px;
  }
  .accordion-contents {
    display: block;
    margin: 14px 0px;
  }
  .accordion-contents div {
    padding: 20px;
    margin-bottom: 14px;
  }
  .accordion-contents .title {
    padding-bottom: 15px;
  }
}

/*** 職場 ***/
.recruit-section.workplace .block-item.subsidy h3 {
  margin-bottom: 14px;
}
.recruit-section.workplace h3 small {
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.recruit-section.workplace h3.place-text {
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.recruit-section.detail .block-item-img.lunch {
  padding-top: 10px;
}
.recruit-section.detail .block-item-img.caption-on {
  position: relative;
}
.recruit-section.detail .block-item-img.caption-on p {
  position: absolute;
  bottom: 2%;
  left: 1.5%;
  font-size: 14px;
  color: #fff;
  z-index: 2;
  letter-spacing: 0.05em;
}
.recruit-section.detail .block-item-img.block-item-img-flex {
  display: flex;
  gap: 14px;
}
.recruit-section.detail .block-item-img.caption p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.img-radius {
  border-radius: 8px;
}

/* 職場：働き方 */
.recruit-section.detail .sub-title {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 34px;
}
.recruit-section.detail .back-green-text {
  background-color: #00ad90;
  color: #fff;
  padding: 4px 15px;
  margin-right: 8px;
}
.recruit-section.detail .person-info {
  margin-bottom: 24px;
}
.recruit-section.detail .person-info .back-green-text {
  padding: 4px 8px;
}
.recruit-section.detail .person-info .person-name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.recruit-section.detail .person-info .person-info-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.recruit-section.detail .person-info .divider {
  height: 1px;
  width: 40px;
  background-color: #000;
  margin: 14px 0;
}
.recruit-section.detail .interview-content {
  margin-bottom: 40px;
}
.recruit-section.detail .interview-content .interviewer-comment {
  position: relative;
  padding-left: 3.6em;
  margin-bottom: 16px;
}
.recruit-section.detail .interview-content .interviewer-comment p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.recruit-section.detail .interview-content .interviewer-comment::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3em;
  height: 1px;
  background-color: #525454;
}

.recruit-section.detail .other-system {
  border-radius: 8px;
  padding: 24px;
  background-color: #f1f1f1;
}
.recruit-section.detail .other-system h2 {
  border-bottom: 1px solid #525454;
  padding-bottom: 10px;
}
.recruit-section.detail .other-system ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recruit-section.detail .other-system li {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.recruit-section.detail .other-system li:last-of-type {
  margin-bottom: 0;
}
.recruit-section.detail .other-system .highlight-text-green {
  color: #00ad90;
  font-weight: bold;
}
.recruit-section.detail .other-system .note {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.recruit-section.detail .qa-content {
  padding-bottom: 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid #cbcccc;
}
.recruit-section.detail .qa-content:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.recruit-section.detail .qa-content .q-text {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.recruit-section.detail .qa-content .char-q {
  margin-right: 18px;
}
.recruit-section.detail .qa-content p {
  margin-bottom: 0;
}
/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  .recruit-section.detail .sub-title {
    font-size: 28px;
  }
}

/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-section.detail .sub-title {
    font-size: 26px;
  }
  .recruit-section.detail .person-info .person-name {
    font-size: 26px;
  }
  .recruit-section.detail .interview-content .interviewer-comment p {
    font-size: 20px;
  }
  .recruit-section.detail .other-system li {
    font-size: 20px;
  }
  .recruit-section.detail .qa-content .q-text {
    font-size: 20px;
  }
  .recruit-section.detail .qa-content .char-q {
    margin-right: 14px;
  }
  .recruit-section.detail .qa-content {
    padding-bottom: 20px;
    margin-bottom: 18px;
  }
}
/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-section.detail .block-item-img.lunch {
    padding-top: 0;
  }
  .recruit-section.detail .block-item-img.caption p {
    font-size: 14px;
  }
  .recruit-section.detail .sub-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .recruit-section.detail .sub-title .back-green-text {
    display: inline-block;
    padding: 6px 15px;
    margin-bottom: 6px;
  }
  .recruit-section.detail .person-info .person-name {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .recruit-section.detail .interview-content .interviewer-comment p {
    font-size: 19px;
  }
  .recruit-section.detail .interview-content .interviewer-comment::before {
    width: 2.7em;
  }
  .recruit-section.detail .interview-content .interviewer-comment {
    margin-bottom: 10px;
  }
  .recruit-section.detail .other-system {
    padding: 14px;
  }
  .recruit-section.detail .other-system h2 {
    margin-bottom: 14px;
  }
  .recruit-section.detail .other-system .little-space.sp-only {
    margin-left: 0.7em;
    padding-top: 3px;
    display: inline-block;
  }
  .recruit-section.detail .other-system li {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .recruit-section.detail .qa-content .char-q {
    margin-right: 8px;
  }
  .recruit-section.detail .qa-content .q-text {
    font-size: 19px;
    margin-bottom: 6px;
  }
  .recruit-section.detail .qa-content {
    padding-bottom: 16px;
    margin-bottom: 14px;
  }
}

/* 選考詳細/採用基準 */
.recruit-section.detail .block-item.block-item-medium {
  margin-bottom: 40px;
}
.recruit-section.detail h2.h2big {
  font-size: 48px;
}
.representative-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}
.label-estimated-period {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.estimated-period {
  font-size: 33px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 26px;
}
.label-selection-flow {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin-bottom: 26px;
}

/* 選考フロー */
.selection-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  letter-spacing: 0.1em;
}
.step-box-item {
  position: relative;
  margin-bottom: 25px;
}
.step-box {
  background: #eeeeec;
  padding: 16px;
  margin-bottom: 10px;
  border-radius: 8px;
}
.step-header {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #a7a6a6;
  margin-bottom: 12px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  background-color: #00ad90;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  letter-spacing: 0;
  line-height: 1.4;
}
.step-number.red {
  background-color: #ff0000;
}
.step-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
  color: #00ad90;
  margin: 0;
}
.step-title.red {
  color: #ff0000;
}
.step-description {
  font-size: 16px;
  line-height: 1.7;
}
.arrow-box {
  position: relative;
}
.step-time {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
}
.step-arrow {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-right: 1px solid #a7a6a6;
  border-bottom: 1px solid #a7a6a6;
  transform: rotate(45deg);
}

/* 新卒ABパターンフロー */
.newgrad-pre-flow {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.1em;
  gap: 40px;
}
.newgrad-pre-flow .pattern-item {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.newgrad-pre-flow .step-number {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
}
.newgrad-pre-flow .pattern-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  height: 5em;
}
.newgrad-pre-flow .step-box-newgrad {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  border-radius: 8px;
  background-color: #eeeeec;
  padding: 12px;
  height: 65px;
}
.newgrad-pre-flow .pattern-item > .step-box-newgrad:last-of-type {
  height: 60px;
}
.newgrad-pre-flow .step-box-newgrad.arrow {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 8px;
}
.newgrad-pre-flow .step-arrow {
  position: static;
  display: block;
  margin: 0 auto;
}

/* 選考・面接の準備*/
.recruit-section.onepage .block-item.preparation .block-item-content {
  margin-bottom: 40px;
}
.recruit-section.onepage .block-item.preparation .block-item-content:last-of-type {
  margin-bottom: 0;
}
.recruit-section.onepage .block-item.preparation .block-item-content p:last-of-type {
  margin-bottom: 0;
}

/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  .recruit-section.detail h2.h2big {
    font-size: 36px;
  }
}

/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-section.detail h2.h2big {
    font-size: 34px;
  }
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .representative-flex {
    gap: 20px;
  }
  .label-estimated-period {
    font-size: 18px;
  }
  .estimated-period {
    font-size: 22px;
  }
  .label-selection-flow {
    font-size: 15px;
    margin-bottom: 18px;
  }
  .step-header {
    align-items: flex-start;
  }
  .step-time {
    font-size: 16px;
    text-align: center;
  }
  .arrow-box {
    text-align: center;
  }
  .step-arrow {
    position: static;
    display: block;
    margin: 0 auto;
  }
  .pattern-area {
    text-align: center;
  }
  .newgrad-pre-flow {
    display: flex;
    justify-content: space-between;
    letter-spacing: 0.1em;
    gap: 20px;
  }
  .newgrad-pre-flow .pattern-text {
    font-size: 16px;
    line-height: 1.5;
    height: 5.3em;
  }
  .newgrad-pre-flow .step-box-newgrad {
    font-size: 18px;
    line-height: 1.5;
    padding: 8px;
    height: 45px;
  }
}

/* =============================================
カジュアルトーク詳細
============================================= */
.recruit-section.talk-detail .detail-container > *:last-child {
  margin-bottom: 0;
}
.recruit-section.talk-detail h2 {
  margin-top: 50px;
}
.recruit-section.talk-detail h3 {
  margin-top: 50px;
}
.recruit-section.talk-detail h3.mt-0 {
  margin-top: 0;
}
.recruit-section.talk-detail figure {
  margin: 0;
}
.recruit-section.talk-detail figure img {
  width: 100% !important;
}
.recruit-section.talk-detail p {
  line-height: 1.7;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.recruit-section.talk-detail p.small-text {
  font-size: 0.88em;
}
.recruit-section.talk-detail p strong {
  font-size: 1.05em;
}
.recruit-section.talk-detail .wp-block-image {
  margin-bottom: 20px;
}
.recruit-section.talk-detail .wp-block-image :where(figcaption) {
  margin-top: 8px;
  margin-bottom: 0;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

/* 装飾見出し */
.recruit-section.talk-detail .green-back {
  background-color: #80d6c7;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
}
.recruit-section.talk-detail .line-title {
  text-align: center;
  border-top: #525454 1px solid;
  border-bottom: #525454 1px solid;
  padding: 14px;
}

/* 登場人物アバター */
.recruit-section.talk-detail .representative-flex-container > div {
  display: flex;
  align-items: center;
  gap: 20px 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.recruit-section.talk-detail .representative-flex > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.recruit-section.talk-detail .representative-flex > div figure {
  width: 44px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 0;
}
.recruit-section.talk-detail .representative-flex > div figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recruit-section.talk-detail .representative-flex > div .representative-flex-text-area > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recruit-section.talk-detail .representative-flex > div .representative-flex-text-area > div > p:first-of-type {
  font-size: 13px;
  color: #000;
  letter-spacing: 0;
  margin-bottom: 0;
}
.recruit-section.talk-detail .representative-flex > div .representative-flex-text-area > div > p:nth-of-type(2) {
  font-size: 13px;
  margin-top: 4px;
  color: #757676;
  letter-spacing: 0;
  margin-bottom: 0;
}
/* 4人以上 */
.recruit-section.talk-detail .representative-flex-container.multiple-4 > div {
  gap: 15px 10px;
}
.recruit-section.talk-detail .representative-flex-container.multiple-4 > div > .representative-flex {
  width: 35%;
}

/* 登場人物アバター(説明付き) */
.recruit-section.talk-detail .characters-flex > div {
  flex-wrap: nowrap;
}
.recruit-section.talk-detail .characters-flex {
  margin: 60px auto 35px;
}
/* 一人パターン */
.recruit-section.talk-detail .characters-flex.single {
  width: 80%;
}
.recruit-section.talk-detail .characters-flex .character-flex > div {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.recruit-section.talk-detail .characters-flex .character-flex > div > figure {
  width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 0;
}
.recruit-section.talk-detail .characters-flex .character-flex > div > figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.recruit-section.talk-detail .characters-flex .character-flex > div .character-text-area > div > p:first-of-type,
.recruit-section.talk-detail .characters-flex .character-flex > div .character-text-area > div > p:nth-of-type(2) {
  font-size: 22px;
  color: #525454;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 0;
}
.recruit-section.talk-detail .characters-flex .character-flex > div .character-text-area > div > p:nth-of-type(3) {
  font-size: 16px;
  color: #525454;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 15px;
}

/* 複数パターン */
.recruit-section.talk-detail .characters-flex.multiple {
  width: 95%;
}
.recruit-section.talk-detail .characters-flex.multiple > div {
  display: flex;
  gap: 40px;
  align-items: center;
  align-items: baseline;
}
.recruit-section.talk-detail .characters-flex.multiple .character-flex {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.recruit-section.talk-detail .characters-flex.multiple .character-flex > div {
  display: block;
  width: 100%;
}
.recruit-section.talk-detail .characters-flex.multiple .character-flex > div > figure {
  width: 90%;
  margin-bottom: 20px;
}

/* 4人以上パターン */
.recruit-section.talk-detail .characters-flex.multiple-4 > div {
  gap: 40px;
}
.recruit-section.talk-detail .characters-flex.multiple-4 > div {
  flex-wrap: wrap;
}
.recruit-section.talk-detail .characters-flex.multiple-4 .character-flex {
  width: 45%;
}
.recruit-section.talk-detail .characters-flex.multiple-4 .character-flex > div {
  display: flex;
  align-items: center;
  gap: 10px 24px;
  flex-wrap: wrap;
}
.recruit-section.talk-detail .characters-flex.multiple-4 .character-flex > div > figure {
  width: 40%;
  margin-bottom: 0;
}
.recruit-section.talk-detail .characters-flex.multiple-4 .character-flex > div .character-text-area {
  margin-top: 5px;
  width: 50%;
}
.recruit-section.talk-detail .characters-flex .character-flex .character-description {
  font-size: 16px;
  color: #525454;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 10px;
}

/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
  .recruit-section.talk-detail .characters-flex.multiple .character-flex > div .character-text-area > div > p:first-of-type,
  .recruit-section.talk-detail .characters-flex.multiple .character-flex > div .character-text-area > div > p:nth-of-type(2) {
    font-size: 19px;
  }
  .recruit-section.talk-detail .representative-flex-container > div {
    gap: 20px 30px;
  }
  .recruit-section.talk-detail .representative-flex-container.multiple-4 > div {
    gap: 15px 10px;
  }
  .recruit-section.talk-detail .characters-flex > div {
    gap: 40px;
  }
}

/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-section.talk-detail p {
    font-size: 15px;
  }
  .recruit-section.talk-detail .wp-block-image :where(figcaption) {
    margin-top: 3px;
    font-size: 12px;
  }
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-section.talk-detail h2 {
    margin-top: 30px;
  }
  .recruit-section.talk-detail h3 {
    margin-top: 30px;
  }
  .recruit-section.talk-detail .representative-flex-container > div {
    gap: 20px;
  }
  .recruit-section.talk-detail .representative-flex-container.multiple-4 > div > .representative-flex {
    width: 45%;
  }
  /* 登場人物アバター(説明付き) */
  .recruit-section.talk-detail .characters-flex {
    margin: 30px auto 10px;
  }
  .recruit-section.talk-detail .characters-flex > div {
    flex-wrap: wrap;
  }
  .recruit-section.talk-detail .characters-flex .character-flex > div {
    display: block;
  }
  .recruit-section.talk-detail .characters-flex .character-flex > div > figure {
    margin: 0 auto 15px;
  }
  .recruit-section.talk-detail .characters-flex .character-flex > div .character-text-area > div > p:nth-of-type(2) {
    margin-top: 0;
  }
  .recruit-section.talk-detail .characters-flex .character-flex > div .character-text-area > div > p:nth-of-type(3) {
    margin-top: 10px;
  }

  /* 2~3人 */
  .recruit-section.talk-detail .characters-flex.multiple > div {
    gap: 30px;
  }
  .recruit-section.talk-detail .characters-flex.multiple .character-flex {
    width: 80%;
  }
  .recruit-section.talk-detail .characters-flex.multiple .character-flex > div > figure {
    width: 60%;
    margin-bottom: 15px;
  }

  /* 4人以上 */
  .recruit-section.talk-detail .characters-flex.multiple-4 > div {
    gap: 30px;
  }
  .recruit-section.talk-detail .characters-flex.multiple-4 > div > .character-flex {
    width: 80%;
  }
  .recruit-section.talk-detail .characters-flex.multiple-4 .character-flex > div {
    gap: 15px 16px;
  }
  .recruit-section.talk-detail .characters-flex.multiple-4 .character-flex > div > figure {
    width: 40%;
    margin-bottom: 0;
  }
  .recruit-section.talk-detail .characters-flex.multiple .character-flex > div .character-text-area > div > p:first-of-type,
  .recruit-section.talk-detail .characters-flex.multiple .character-flex > div .character-text-area > div > p:nth-of-type(2) {
    font-size: 17px;
    line-height: 1.5;
  }
  .recruit-section.talk-detail .characters-flex .character-flex .character-description {
    font-size: 15px;
    margin-top: 0;
  }
}

/* インタビュアーコメント */
.recruit-section.talk-detail .interviewer-comment {
  position: relative;
  padding-left: 3em;
  border-radius: 10px;
  margin-bottom: 20px;
}
.recruit-section.talk-detail .interviewer-comment::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 1px;
  background-color: #525454;
}

/* 画像ギャラリー系 */
.recruit-section.talk-detail .wp-block-columns.is-layout-flex {
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: nowrap !important;
}
.recruit-section.talk-detail .wp-block-columns.is-layout-flex figure {
  margin-bottom: 0;
}
.recruit-section.talk-detail p.caption-left-upper {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 400;
}

/* スピーチバルーン */
.recruit-section.talk-detail .liquid-speech-balloon-text {
  width: auto;
}
.recruit-section.talk-detail .liquid-speech-balloon-text > p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.liquid-speech-balloon-wrap {
  margin-bottom: 3rem;
}
.liquid-speech-balloon-wrap.liquid-speech-balloon-right .liquid-speech-balloon-arrow {
  right: -17px;
}
.liquid-speech-balloon-avatar::after {
  top: 72px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* ▼ 最大1512px（ノートPC・タブレット横など） */
@media (max-width: 1512px) {
}

/* ▼ 最大1023px（タブレット以下） */
@media (max-width: 1023px) {
  .recruit-section.talk-detail p.caption-left-upper {
    font-size: 14px;
  }
}

/* ▼ 最大500px（スマホ） */
@media (max-width: 500px) {
  .recruit-section.talk-detail .liquid-speech-balloon-text {
    padding: 18px 20px;
  }
  .recruit-section.talk-detail .liquid-speech-balloon-text > p {
    font-size: 14px;
  }
  .liquid-speech-balloon-wrap.liquid-speech-balloon-right .liquid-speech-balloon-arrow {
    right: -18px;
  }
}
