/* =========================
  アコーディオン共通
========================= */
.accordion-006 {
  border: 1px solid #d7ddd2;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.accordion-006 + .accordion-006 {
  margin-top: 16px;
}

/* summaryの標準マーカーを消す */
.accordion-006 .ttl {
  list-style: none;
}

.accordion-006 .ttl::-webkit-details-marker {
  display: none;
}

/* 開閉見出し */
.accordion-006 .ttl {
  position: relative;
  display: block;
  margin: 0;
  padding: 18px 56px 18px 18px;
  cursor: pointer;
  background: #f5f8f1;
  line-height: 1.7;
  transition: background 0.3s ease;
}

.accordion-006 .ttl:hover {
  background: #edf3e7;
}

/* + / - アイコン */
.accordion-006 .ttl::before,
.accordion-006 .ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 16px;
  height: 2px;
  background: #4b5c45;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.accordion-006 .ttl::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion-006[open] .ttl::after {
  transform: translateY(-50%) rotate(0deg);
}

/* 中身 */
.accordion-006 .accordion-content {
  padding: 20px 18px 24px;
  background: #fff;
  line-height: 1.9;
}

.accordion-006 .accordion-content p:first-child,
.accordion-006 .accordion-content > *:first-child {
  margin-top: 0;
}

.accordion-006 .accordion-content > *:last-child {
  margin-bottom: 0;
}

/* =========================
  代表メッセージ周り
========================= */
.recruit-heading span {
  display: block;
  margin-top: 8px;
}

.recruit-message-layout {
  gap: 32px;
  align-items: flex-start;
}

.recruit-accordion {
  margin-top: 0;
}

.message-body h4 {
  margin: 0 0 20px;
  color: #dd7e6b;
  font-size: 1.4rem;
  line-height: 1.7;
}

.message-body h5 {
  margin: 28px 0 12px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.message-body p {
  margin: 0 0 14px;
}

.message-list,
.feature-list {
  margin: 12px 0 18px;
  padding-left: 1.2em;
}

.message-list li,
.feature-list li {
  margin-top: 8px;
  line-height: 1.8;
}

.feature-list li span {
  color: #666;
  font-size: 0.95em;
}

/* =========================
  STAFF INTERVIEW周り
========================= */
.interview-heading img {
  display: block;
  margin-bottom: 10px;
  max-width: 100%;
  height: auto;
}

.interview-subtitle {
  margin: 0 0 24px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.interview-accordion-wrap {
  display: grid;
  gap: 16px;
}

.interview-accordion {
  margin-top: 0;
}

/* =========================
  スマホ調整
========================= */
@media screen and (max-width: 767px) {
  .accordion-006 .ttl {
    padding: 16px 46px 16px 14px;
  }

  .accordion-006 .accordion-content {
    padding: 16px 14px 20px;
  }

  .recruit-message-layout {
    gap: 20px;
  }

  .message-body h4 {
    font-size: 1.2rem;
  }

  .interview-subtitle {
    font-size: 1.05rem;
  }
}
