@charset "UTF-8";

/* ==========================================================
 p-tel-interview-single
 電話インタビュー詳細ページ専用スタイル
========================================================== */

/* ----------------------------------------------------------
 プルクォート（メインビジュアル内）
---------------------------------------------------------- */
.tel-interview-pull-quote {
  margin: 24px 0 0;
  padding: 16px 20px;
  border-left: 4px solid #a8967b;
  background: #faf8f0;
  font-size: 15px;
  line-height: 1.8;
  color: #3c3c3c;
}

@media screen and (max-width: 767px) {
  .tel-interview-pull-quote {
    margin: 20px 0 0;
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* ----------------------------------------------------------
 取材クレジット・インタビュー概要
---------------------------------------------------------- */
.tel-interview-credit {
  padding: 28px 32px;
  background: #faf8f0;
  border: 1px solid #a8967b;
  border-radius: 4px;
  margin: 0 0 32px;
}

@media screen and (max-width: 767px) {
  .tel-interview-credit {
    padding: 20px 16px;
  }
}

/* 取材・執筆者名行 */
.tel-interview-credit__header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 8px;
  margin: 0 0 12px;
}

.tel-interview-credit__label {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: bold;
  color: #5a4a3a;
  background: #e8e4dc;
  padding: 2px 8px;
  border-radius: 2px;
  line-height: 1.6;
}

.tel-interview-credit__name {
  font-size: 16px;
  font-weight: bold;
  color: #3c3c3c;
  line-height: 1.6;
}

.tel-interview-credit__career {
  font-size: 13px;
  color: #5a4a3a;
  line-height: 1.6;
}

/* ライター紹介 */
.tel-interview-credit__profile {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.85;
  color: #3c3c3c;
}

/* 取材日 / 公開日 / note URL */
.tel-interview-credit__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 16px;
  margin: 0;
}

.tel-interview-credit__meta-item {
  font-size: 13px;
  color: #666;
}

.tel-interview-credit__note-link {
  font-size: 13px;
  color: #a8967b;
  text-decoration: underline;
}

.tel-interview-credit__note-link:hover {
  opacity: 0.75;
}

/* 免責文（枠外） */
.tel-interview-credit__disclaimer {
  margin: 24px 0 0;
  padding: 16px 20px;
  border-left: 4px solid #a8967b;
  font-size: 13px;
  line-height: 1.8;
  color: #3c3c3c;
}

@media screen and (max-width: 767px) {
  .tel-interview-credit__name {
    font-size: 15px;
  }

  .tel-interview-credit__profile {
    font-size: 13px;
  }

  .tel-interview-credit__disclaimer {
    font-size: 12px;
  }
}

/* ----------------------------------------------------------
 葬儀概要テーブル
---------------------------------------------------------- */
.tel-interview-overview {
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .tel-interview-overview {
    padding: 40px 0;
  }
}

.tel-interview-overview__title {
  position: relative;
  margin: 0 0 28px;
  padding: 0 0 16px;
  font-size: 22px;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
  border-bottom: solid 2px #a8967b;
}

@media screen and (max-width: 767px) {
  .tel-interview-overview__title {
    font-size: 18px;
    margin: 0 0 20px;
  }
}

.tel-interview-overview__table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.7;
  table-layout: fixed;
}

.tel-interview-overview__table tbody {
  display: table-row-group;
}

.tel-interview-overview__table tr {
  display: table-row;
}

.tel-interview-overview__table th,
.tel-interview-overview__table td {
  display: table-cell;
}

/* 4列：th(ラベル) - td(値) - th(ラベル) - td(値) */
.tel-interview-overview__table th {
  width: 120px;
  padding: 12px 14px;
  background: #faf8f0;
  border-top: solid 1px #e8e4dc;
  border-bottom: solid 1px #e8e4dc;
  border-right: solid 1px #e8e4dc;
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
  font-size: 13px;
  color: #5a4a3a;
  word-break: keep-all;
}

.tel-interview-overview__table td {
  padding: 12px 16px;
  border-top: solid 1px #e8e4dc;
  border-bottom: solid 1px #e8e4dc;
  border-right: solid 1px #e8e4dc;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}

/* 右端のtdはborder-rightなし */
.tel-interview-overview__table td:last-child {
  border-right: none;
}

.tel-interview-overview__table td a {
  color: #a8967b;
  text-decoration: underline;
}

.tel-interview-overview__table td a:hover {
  text-decoration: none;
}

/* SP：2列に切り替え（th + td を縦積み） */
@media screen and (max-width: 767px) {

  .tel-interview-overview__table,
  .tel-interview-overview__table tbody,
  .tel-interview-overview__table tr,
  .tel-interview-overview__table th,
  .tel-interview-overview__table td {
    display: block;
    width: 100%;
  }

  .tel-interview-overview__table tr {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
    margin-bottom: 0;
  }

  /* 1列目のth（左ラベル） */
  .tel-interview-overview__table th:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    border-bottom: none;
    border-right: solid 1px #e8e4dc;
  }

  /* 1列目のtd（左値） */
  .tel-interview-overview__table td:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    border-bottom: none;
    border-right: none;
  }

  /* 2列目のth（右ラベル） */
  .tel-interview-overview__table th:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    border-right: solid 1px #e8e4dc;
  }

  /* 2列目のtd（右値） */
  .tel-interview-overview__table td:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    border-right: none;
  }

  .tel-interview-overview__table th,
  .tel-interview-overview__table td {
    padding: 9px 10px;
    font-size: 13px;
  }
}

/* ----------------------------------------------------------
 FAQ セクション見出し
---------------------------------------------------------- */
.tel-interview-faq {
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .tel-interview-faq {
    padding: 40px 0;
  }
}

.tel-interview-faq__title {
  margin: 0 0 28px;
  padding: 0 0 16px;
  font-size: 22px;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
  border-bottom: solid 2px #a8967b;
}

@media screen and (max-width: 767px) {
  .tel-interview-faq__title {
    font-size: 18px;
    margin: 0 0 20px;
  }
}
.tel-interview-faq__more {
  margin: 32px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tel-interview-faq__more {
    margin: 24px auto 0;
  }
}

/* ----------------------------------------------------------
 この体験談のポイント
---------------------------------------------------------- */
.tel-interview-points {
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .tel-interview-points {
    padding: 40px 0;
  }
}

.tel-interview-points__title {
  margin: 0 0 28px;
  padding: 0 0 16px;
  font-size: 22px;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
  border-bottom: solid 2px #a8967b;
}

@media screen and (max-width: 767px) {
  .tel-interview-points__title {
    font-size: 18px;
    margin: 0 0 20px;
  }
}

.tel-interview-points__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: solid 1px #e8e4dc;
}

.tel-interview-points__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: solid 1px #e8e4dc;
}

@media screen and (max-width: 767px) {
  .tel-interview-points__item {
    grid-template-columns: 100%;
  }
}

.tel-interview-points__label {
  margin: 0;
  padding: 14px 16px;
  background: #faf8f0;
  font-size: 14px;
  font-weight: bold;
  color: #5a4a3a;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .tel-interview-points__label {
    padding: 10px 12px 4px;
    font-size: 13px;
    background: transparent;
    border-bottom: none;
  }
}

.tel-interview-points__text {
  margin: 0;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #3c3c3c;
}

@media screen and (max-width: 767px) {
  .tel-interview-points__text {
    padding: 4px 12px 12px;
    font-size: 14px;
  }
}

/* ----------------------------------------------------------
 あわせてご覧ください
---------------------------------------------------------- */
.tel-interview-links {
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .tel-interview-links {
    padding: 40px 0;
  }
}

.tel-interview-links__title {
  margin: 0 0 28px;
  padding: 0 0 16px;
  font-size: 22px;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
  border-bottom: solid 2px #a8967b;
}

@media screen and (max-width: 767px) {
  .tel-interview-links__title {
    font-size: 18px;
    margin: 0 0 20px;
  }
}

.tel-interview-links__list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.tel-interview-links__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tel-interview-links__num {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #a8967b;
  color: #a8967b;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.tel-interview-links__link {
  font-size: 15px;
  line-height: 1.6;
  color: #a8967b;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .tel-interview-links__link {
    font-size: 14px;
  }
}

.tel-interview-links__link:hover {
  text-decoration: none;
}

/* ----------------------------------------------------------
 FAQ 常時展開（このページのみ）
---------------------------------------------------------- */
#p-tel-interview-single .c-faq__answer {
  display: block !important;
}

#p-tel-interview-single .c-faq__question::after,
#p-tel-interview-single .c-faq__question.is-active::after {
  display: none !important;
}

/* ----------------------------------------------------------
 担当スタッフ（表形式）
---------------------------------------------------------- */
.tel-interview-staff {
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .tel-interview-staff {
    padding: 40px 0;
  }
}

.tel-interview-staff__title {
  margin: 0 0 28px;
  padding: 0 0 16px;
  font-size: 22px;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
  border-bottom: solid 2px #a8967b;
}

@media screen and (max-width: 767px) {
  .tel-interview-staff__title {
    font-size: 18px;
    margin: 0 0 20px;
  }
}

.tel-interview-staff__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.8;
  table-layout: fixed;
}

.tel-interview-staff__table th {
  width: 120px;
  padding: 12px 14px;
  background: #faf8f0;
  border-top: solid 1px #e8e4dc;
  border-bottom: solid 1px #e8e4dc;
  border-right: solid 1px #e8e4dc;
  font-weight: bold;
  font-size: 13px;
  color: #5a4a3a;
  text-align: left;
  vertical-align: middle;
  word-break: keep-all;
}

.tel-interview-staff__table td {
  padding: 12px 16px;
  border-top: solid 1px #e8e4dc;
  border-bottom: solid 1px #e8e4dc;
  border-right: solid 1px #e8e4dc;
  vertical-align: middle;
  font-size: 14px;
}

.tel-interview-staff__table td:last-child {
  border-right: none;
}

/* SP：2列に切り替え */
@media screen and (max-width: 767px) {

  .tel-interview-staff__table,
  .tel-interview-staff__table tbody,
  .tel-interview-staff__table tr,
  .tel-interview-staff__table th,
  .tel-interview-staff__table td {
    display: block;
    width: 100%;
  }

  .tel-interview-staff__table tr {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
  }

  .tel-interview-staff__table th:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    border-bottom: none;
    border-right: solid 1px #e8e4dc;
  }

  .tel-interview-staff__table td:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    border-bottom: none;
    border-right: none;
  }

  .tel-interview-staff__table th:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    border-right: solid 1px #e8e4dc;
  }

  .tel-interview-staff__table td:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    border-right: none;
  }

  .tel-interview-staff__table th,
  .tel-interview-staff__table td {
    padding: 9px 10px;
    font-size: 13px;
  }
}

.l-main-visual-single-voice:before {
  height: 481px;
}