/* ==========================================================================
   single-interview.css — 社員インタビュー詳細
   Figmaノード: 70:907
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Hero
   Figma: 1920×1020px, 左タイトル + 右写真
   -------------------------------------------------------------------------- */
.si-hero {
  position: relative;
  z-index: 0;
  padding-top: 123px;
  padding-bottom: clamp(80px, 14.2vw, 273px);
  background-color: var(--color-bg);
}

/* --- 背景画像（写真素材） --- */
.si-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  mix-blend-mode: multiply;
  overflow: hidden;
}

.si-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* --- 下部の波形装飾（position:absoluteで浮かせ、少し下にずらす） --- */
.si-hero__wave {
  position: absolute;
  bottom: -10px;
  left: -10%;
  width: 120%;
  height: clamp(60px, 14.2vw, 273px);
  z-index: 1;
  pointer-events: none;
}

.si-hero__wave-layer {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: clamp(30px, 5.5vw, 105px);
}

.si-hero__wave-layer--1 {
  bottom: clamp(15px, 2vw, 38px);
  transform: rotate(0.41deg);
}

.si-hero__wave-layer--2 {
  bottom: 0;
}

/* --- メインコンテンツ（2列グリッド: 左タイトル+パンくず / 右写真） --- */
.si-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 38% 1fr;
  grid-template-rows: 1fr auto;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(40px, 7.8vw, 150px);
}

/* --- 左上: タイトル --- */
.si-hero__left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.si-hero__title {
  text-align: center;
  margin: auto 0;
}

/* --- 左下: パンくず --- */
.si-hero__breadcrumb {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  padding-bottom: clamp(38px, 4.1vw, 78px);
  text-align: left;
}

.si-hero__label {
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 70px);
  line-height: 1.1;
  color: var(--color-base);
}

.si-hero__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(44px, 6.25vw, 120px);
  line-height: 1.25;
}

/* 名前が長め（8〜11文字）— PC */
.si-hero__name--sm {
  font-size: clamp(36px, 5vw, 96px);
}

/* 名前がかなり長め（12文字〜）— PC */
.si-hero__name--xs {
  font-size: clamp(30px, 4vw, 76px);
}

.si-hero__meta {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1.25vw, 24px);
  line-height: 2.5;
  letter-spacing: 1.2px;
  font-feature-settings: "palt";
}

/* --- 右: 写真エリア（2行ぶち抜き） --- */
.si-hero__photo {
  position: relative;
  grid-column: 2;
  grid-row: 1 / -1;
  padding-top: 56px;
  padding-left: clamp(40px, 7vw, 135px);
}

.si-hero__photo-img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* 装飾PNG（写真角に合わせる） */
.si-hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.si-hero__deco--bl {
  bottom: clamp(-28px, -2.9vw, -55px);
  left: clamp(3px, 0.3vw, 6px);
  width: clamp(100px, 10.8vw, 208px);
  height: auto;
}

.si-hero__deco--tr {
  top: clamp(3px, 0.3vw, 6px);
  right: clamp(-26px, -2.7vw, -51px);
  width: clamp(76px, 7.9vw, 152px);
  height: auto;
}


/* --------------------------------------------------------------------------
   2. Article Body
   -------------------------------------------------------------------------- */
.si-article {
  position: relative;
  z-index: 1;
  background-color: var(--color-bg);
  margin-top: clamp(-40px, -2.1vw, -24px);
  padding: 100px 0 clamp(140px, 13vw, 212px); /* 120+60 ~ 120+92 */
}

.si-article__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--site-padding);
}

/* --- Title with decorative quotes --- */
.si-article__title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  padding: 0 80px;
}

.si-article__quote {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 130px;
  line-height: 1;
  background-image: var(--gradient-orange-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.si-article__quote--open {
  text-align: left;
  margin-bottom: -30px;
}

.si-article__quote--close {
  text-align: right;
  margin-top: -30px;
}

.si-article__title-text {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 60px;
  letter-spacing: 1.5px;
  color: var(--color-base);
  text-align: center;
}

/* --- Article body: editor-content--interview で管理 --- */

/* --------------------------------------------------------------------------
   3. Q&A Section
   Figma: bg 2322×734px（上下波形+白帯）、inner 1208×550px
   -------------------------------------------------------------------------- */
.si-qa {
  position: relative;
  background-color: var(--color-white);
  padding-left: var(--site-padding);
  padding-right: var(--site-padding);
}

/* --- 波形（上下にはみ出す） --- */
.si-qa__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(60px, 5vw, 92px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.si-qa__wave--top {
  bottom: 100%;
}

.si-qa__wave--bottom {
  top: 100%;
}

.si-qa__wave-svg {
  position: absolute;
  display: block;
  width: 120%;
  max-width: none;
  left: -10%;
  height: auto;
}

/* 上波形: 上端揃え（ベージュ背景の上にSVGが乗り白に遷移） */
.si-qa__wave--top .si-qa__wave-svg--1 {
  top: 0;
  transform: rotate(0.41deg);
}

.si-qa__wave--top .si-qa__wave-svg--2 {
  top: clamp(10px, 2vw, 38px);
}

/* 下波形: 下端揃え */
.si-qa__wave--bottom .si-qa__wave-svg--1 {
  bottom: 0;
  transform: rotate(0.41deg);
}

.si-qa__wave--bottom .si-qa__wave-svg--2 {
  bottom: clamp(10px, 2vw, 38px);
}

/* --- コンテンツ --- */
.si-qa__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7%;
  max-width: 1208px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 92px) 0 clamp(40px, 4vw, 79px);
}

/* 左: テキスト（598 / 1208 ≈ 49.5%） */
.si-qa__content {
  flex: 0 1 49.5%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.si-qa__question-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  white-space: nowrap;
  width: fit-content;
  margin: 0 auto;
}

.si-qa__q {
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-size: clamp(40px, 6.25vw, 120px);
  line-height: 0.65;
  color: var(--color-navy);
  flex-shrink: 0;
}

.si-qa__question {
  font-family: "vdl-penletter", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 3.1vw, 60px);
  line-height: 1.2;
  letter-spacing: 3px;
  font-feature-settings: "palt";
  color: var(--color-base);
  position: relative;
  top: -0.15em;
}

.si-qa__answer {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.1vw, 40px);
  line-height: 60px;
  letter-spacing: 2px;
  font-feature-settings: "palt";
  color: var(--color-navy);
  width: fit-content;
  margin: 0 auto;
}

.si-qa__bracket {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 3.1vw, 60px);
  line-height: 1;
  color: var(--color-navy);
}

.si-qa__summary {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.8px;
  font-feature-settings: "palt";
  color: var(--color-base);
  text-align: left;
}

/* 右: 装飾画像（526 / 1208 ≈ 43.5%） */
.si-qa__deco {
  flex: 0 0 43.5%;
  align-self: center;
}

.si-qa__deco img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   4. Daily Schedule
   Figma: 1027×560px, 2列4行, ドット+縦線SVG
   -------------------------------------------------------------------------- */
.si-schedule {
  padding: clamp(120px, 11vw, 212px) 0 140px; /* 120+60 ~ 120+92 上に波形分上乗せ */
}

.si-schedule__inner {
  max-width: 1027px;
  margin: 0 auto;
  padding: 0 var(--site-padding);
}

/* 見出し */
.si-schedule__heading {
  text-align: center;
  margin-bottom: 76px;
}

.si-schedule__heading-en {
  display: block;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 36px;
  line-height: 60px;
  color: var(--color-orange);
}

.si-schedule__heading-ja {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 2.5px;
  font-feature-settings: "palt";
  color: var(--color-base);
}

/* 2列グリッド */
.si-schedule__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* 各列 */
.si-schedule__col {
  position: relative;
}

/* 各項目 */
.si-schedule__item {
  display: flex;
  align-items: center;
  height: 90px;
  padding-left: 18px;
}

/* マーカー（ドット + 縦棒をCSS擬似要素で一体描画） */
.si-schedule__marker {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  z-index: 1;
}

/* ドット（丸） */
.si-schedule__marker::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6b204 0%, #ea8b0f 100%);
}

/* 棒（ドットの下に伸びる縦線） */
.si-schedule__marker::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 66px; /* 90px(行高) - 24px(ドット) = 66px */
  background: linear-gradient(to bottom, #f6b204, #ea8b0f);
  border-radius: 2px;
}

/* 最後の項目は棒なし */
.si-schedule__item--last .si-schedule__marker::after {
  display: none;
}

/* 時間 */
.si-schedule__time {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 1.5px;
  color: var(--color-orange);
  font-feature-settings: "palt";
  flex-shrink: 0;
  margin-left: 24px;
  width: 100px;
}

/* 内容 */
.si-schedule__activity {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 1.3px;
  font-feature-settings: "palt";
  color: var(--color-base);
  margin-left: 16px;
}

/* --------------------------------------------------------------------------
   5. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .si-hero {
    padding-top: 80px;
  }

  .si-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--site-padding);
  }

  .si-hero__left {
    width: 100%;
    min-width: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    order: 1;
  }

  /* 1024px以下: 名前サイズをデフォルトに戻す（480pxまで見切れない） */
  .si-hero__name--sm,
  .si-hero__name--xs {
    font-size: clamp(44px, 6.25vw, 120px);
  }


  .si-hero__photo {
    order: 2;
    padding-top: 0;
    padding-left: 0;
    max-width: 600px;
    width: 100%;
  }

  .si-hero__photo-img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    margin: 0 auto;
  }

  .si-hero__deco--bl {
    bottom: clamp(-18px, -3.1vw, -32px);
    left: clamp(-37px, -6.2vw, -64px);
    width: clamp(80px, 10.8vw, 110px);
  }

  .si-hero__deco--tr {
    top: clamp(-14px, -2.3vw, -24px);
    right: clamp(-14px, -2.3vw, -24px);
    width: clamp(60px, 7.9vw, 80px);
  }

  .si-hero__breadcrumb {
    position: static;
    order: 3;
    width: 100%;
    margin-top: 48px;
  }

  .si-article__quote {
    font-size: 90px;
  }

  .si-article__title {
    padding: 0 40px;
  }

  .si-qa__inner {
    flex-direction: column;
    gap: 40px;
  }

  .si-qa__content {
    flex: none;
    width: 100%;
    gap: 32px;
  }

  .si-qa__q {
    font-size: 72px;
  }

  .si-qa__question {
    font-size: 36px;
  }

  .si-qa__answer {
    font-size: 28px;
  }

  .si-qa__bracket {
    font-size: 40px;
  }

  .si-qa__deco {
    flex: none;
    width: 260px;
    margin: 0 auto;
  }

  .si-schedule__heading-en {
    font-size: 30px;
  }

  .si-schedule__heading-ja {
    font-size: 40px;
  }

  .si-schedule__time {
    font-size: 24px;
  }

  .si-schedule__activity {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .si-hero__left {
    padding-top: 16px;
  }


  .si-hero__breadcrumb {
    margin-top: 48px;
  }


  .si-hero__photo {
    max-width: 100%;
  }

  .si-hero__photo-img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }



  /* Article */
  .si-article {
    padding: 60px 0 140px; /* 80+60 波形分上乗せ */
  }

  .si-article__title {
    padding: 0;
    margin-bottom: 48px;
  }

  .si-article__quote {
    font-size: 60px;
  }

  .si-article__quote--open {
    margin-bottom: -16px;
  }

  .si-article__quote--close {
    margin-top: -16px;
  }

  .si-article__title-text {
    font-size: 22px;
    line-height: 44px;
    letter-spacing: 1px;
  }


  /* Q&A */
  .si-qa__deco {
    width: 200px;
  }

  .si-qa__summary {
    line-height: 32px;
    font-size: 14px;
  }

  /* Schedule */
  .si-schedule {
    padding: 120px 0 80px; /* 60+60 波形分上乗せ */
  }

  .si-schedule__heading-en {
    font-size: 28px;
  }

  .si-schedule__heading-ja {
    font-size: 32px;
  }

  .si-schedule__heading {
    margin-bottom: 48px;
  }

  .si-schedule__grid {
    grid-template-columns: 1fr;
  }

  .si-schedule__grid {
    grid-template-columns: 1fr;
    position: relative;
  }

  /* 全体を貫くグラデーション線 */
  .si-schedule__grid::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 36px; /* 1行目の中心 (72px / 2) */
    bottom: 36px;
    width: 3px;
    background: linear-gradient(to bottom, #f6b204, #ea8b0f);
    border-radius: 2px;
    z-index: 0;
  }

  /* 個別の棒は非表示 */
  .si-schedule__marker::after {
    display: none;
  }

  .si-schedule__item {
    height: 72px;
  }

  .si-schedule__marker {
    width: 18px;
    height: 18px;
  }

  .si-schedule__time {
    font-size: 22px;
    margin-left: 16px;
    width: 80px;
  }

  .si-schedule__activity {
    font-size: 18px;
    margin-left: 12px;
  }
}

@media (max-width: 480px) {
  /* 名前が長め（8〜11文字）: 480px=44px → 320px=34px */
  .si-hero__name--sm {
    font-size: clamp(34px, calc(14px + 6.25vw), 44px);
  }

  /* 名前がかなり長め（12文字〜）: 480px=44px → 320px=26px */
  .si-hero__name--xs {
    font-size: clamp(26px, calc(-10px + 11.25vw), 44px);
  }

  .si-qa__q {
    font-size: clamp(40px, 15vw, 72px);
  }

  .si-qa__question {
    font-size: clamp(20px, 6.25vw, 36px);
  }

  .si-qa__answer {
    font-size: clamp(20px, 5.6vw, 28px);
  }

  .si-qa__bracket {
    font-size: clamp(28px, 8vw, 40px);
  }

  .si-qa__content {
    gap: 24px;
  }
}


/* ==========================================================================
   editor-content.css — ブロックエディタ本文の共通スタイル
   使用: .editor-content（デフォルト）/ .editor-content--interview（インタビュー）
   ========================================================================== */

/* --- ベース --- */
.editor-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--color-base);
}

/* --- 見出し: 共通ベース --- */
.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-base);
}

.editor-content h1:first-child,
.editor-content h2:first-child,
.editor-content h3:first-child,
.editor-content h4:first-child,
.editor-content h5:first-child,
.editor-content h6:first-child {
  margin-top: 0;
}

/* --- 見出し: デフォルトサイズ --- */
.editor-content h1 {
  font-size: 32px;
  margin: 56px 0 28px;
}

.editor-content h2 {
  display: inline-block;
  font-size: 26px;
  margin: 48px 0 24px;
  padding-bottom: 0.4em;
  border-bottom: 3px solid var(--color-orange);
}

.editor-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  margin: 40px 0 20px;
}

.editor-content h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: var(--color-orange);
  flex-shrink: 0;
}

.editor-content h4 {
  font-size: 18px;
  margin: 32px 0 16px;
}

.editor-content h5 {
  font-size: 16px;
  margin: 24px 0 12px;
}

.editor-content h6 {
  font-size: 16px;
  margin: 24px 0 12px;
}

/* --- 見出し: インタビュー（中央揃え・大きめ・下線なし） --- */
.editor-content--interview h2,
.editor-content--interview h3 {
  display: block;
  font-size: 26px;
  line-height: 48px;
  letter-spacing: 1.3px;
  margin-top: 80px;
  margin-bottom: 32px;
  padding-bottom: 0;
  padding-left: 0;
  border-bottom: none;
  text-align: center;
  justify-content: center;
}

.editor-content--interview h3::before {
  display: none;
}

/* --- 段落 --- */
.editor-content p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 24px;
}

.editor-content--interview p {
  margin-bottom: 40px;
}

.editor-content p:last-child {
  margin-bottom: 0;
}

/* --- 画像 --- */
.editor-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.editor-content--interview img {
  display: block;
  max-width: 900px;
  margin: 60px auto;
  border-radius: var(--radius-small);
}

/* --- リンク --- */
.editor-content a {
  color: var(--color-orange);
  text-decoration: underline;
}

.editor-content a:hover {
  opacity: 0.7;
}

/* --- リスト --- */
.editor-content ul,
.editor-content ol {
  margin: 0 0 24px;
  padding-left: 1.5em;
  list-style: disc;
}

.editor-content ol {
  list-style: decimal;
}

.editor-content li {
  margin-bottom: 8px;
}

/* --- テーブル --- */
.editor-content table {
  width: 100%;
  margin: 0 0 24px;
  border-collapse: collapse;
}

.editor-content th,
.editor-content td {
  border: 1px solid #888;
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  background-color: #fff;
  font-size: 15px;
}

.editor-content th {
  font-weight: 700;
}

.editor-content .wp-block-table {
  margin: 0 0 24px;
  overflow-x: auto;
}

.editor-content .wp-block-table table {
  margin: 0;
}

.editor-content .wp-block-table thead {
  border-bottom: 2px solid #888;
}

.editor-content .wp-block-table tfoot {
  border-top: 2px solid #888;
}

/* --- 引用 --- */
.editor-content blockquote {
  border-left: 4px solid var(--color-orange);
  background: rgba(254, 246, 236, 0.5);
  border-radius: 8px;
  padding: 24px 24px 24px 32px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.editor-content blockquote p {
  margin-bottom: 0;
}

/* --- コード --- */
.editor-content pre {
  background-color: #1e293b;
  color: #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  margin: 0 0 24px;
  overflow-x: auto;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13px;
  line-height: 1.6;
}

.editor-content code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875em;
  background-color: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
}

.editor-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  color: inherit;
}

/* --- 画像・キャプション --- */
.editor-content figure {
  margin: 0 0 24px;
}

.editor-content figcaption {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 8px;
}

/* --- 区切り線 --- */
.editor-content hr {
  border: none;
  border-top: 1px solid #888;
  margin: 32px 0;
}

/* --- 埋め込み --- */
.editor-content iframe,
.editor-content video {
  max-width: 100%;
}

.editor-content .wp-block-embed {
  margin: 0 0 24px;
}

.editor-content .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.editor-content .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   インタビュー本文専用（.editor-content--interview）
   ========================================================================== */

/* p: Figma準拠 */
.editor-content--interview p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-style: normal;
  line-height: 40px;
  letter-spacing: 0.8px;
  font-feature-settings: "palt";
  color: var(--color-base);
}

/* h2: Figma準拠、中央揃え、前後に"装飾SVG */
.editor-content--interview h2 {
  display: flex;
  align-items: stretch;
  gap: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  font-style: normal;
  line-height: 60px;
  letter-spacing: 1.5px;
  font-feature-settings: "palt";
  color: var(--color-base);
  padding-bottom: 0;
  border-bottom: none;
  text-align: left;
}

.editor-content--interview h2::before,
.editor-content--interview h2::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: clamp(24px, 2.1vw, 41px);
  min-height: clamp(19px, 1.7vw, 33px);
  aspect-ratio: 41 / 33;
  background-size: contain;
  background-repeat: no-repeat;
}

.editor-content--interview h2::before {
  background-image: url('../images/interview/h2-deco-start.svg');
  background-position: left top;
  align-self: flex-start;
  margin-top: 0.2em;
}

.editor-content--interview h2::after {
  background-image: url('../images/interview/h2-deco-end.svg');
  background-position: right bottom;
  align-self: flex-end;
  margin-bottom: 0.2em;
}

.editor-content--interview h3 {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  font-style: normal;
  line-height: 60px;
  letter-spacing: 1.5px;
  font-feature-settings: "palt";
  color: var(--color-base);
  padding-left: 0;
  border-left: none;
  text-align: center;
}

.editor-content--interview h3::before {
  display: none;
}

/* img: 角丸なし、両脇をsite-paddingで凹ませる */
.editor-content--interview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  margin: 60px 0;
  padding: 0 var(--site-padding);
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 768px) {
  .editor-content {
    font-size: 14px;
    line-height: 1.8;
  }

  .editor-content h1 {
    font-size: 24px;
    margin: 40px 0 20px;
  }

  .editor-content h2 {
    font-size: 20px;
    margin: 36px 0 16px;
  }

  .editor-content h3 {
    font-size: 18px;
    margin: 28px 0 14px;
  }

  .editor-content h4 {
    font-size: 16px;
    margin: 24px 0 12px;
  }

  .editor-content h5 {
    font-size: 15px;
    margin: 20px 0 10px;
  }

  .editor-content h6 {
    font-size: 14px;
    margin: 20px 0 10px;
  }

  .editor-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .editor-content--interview h2,
  .editor-content--interview h3 {
    font-size: 20px;
    line-height: 36px;
    margin-top: 48px;
    margin-bottom: 24px;
  }

  .editor-content--interview p {
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 0.6px;
  }

  .editor-content--interview h2,
  .editor-content--interview h3 {
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 1px;
  }

  .editor-content--interview img {
    margin: 40px 0;
  }

  .editor-content blockquote {
    padding: 16px 16px 16px 24px;
  }

  .editor-content th,
  .editor-content td {
    padding: 10px 14px;
    font-size: 13px;
  }
}
