@charset "UTF-8";

/* ==================================================
   0. variables
================================================== */

.dn-scope {
  /* ----------------------------------
     spacing
  ---------------------------------- */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;

  /* ----------------------------------
     header
  ---------------------------------- */
  --header-height-sp: 66px;

  /* ----------------------------------
     photo size
  ---------------------------------- */
  /* single photo width */
  --photo-w-l: 460px;
  --photo-w-m: 360px;
  --photo-w-s: 260px;

  /* grid */
  --photo-wrap-w: 1000px;
  --photo-grid-w: 220px;

  /* float */
  --img-float-s: 120px;
  --img-float-m: 280px;

  /* ----------------------------------
     layout width
  ---------------------------------- */
  --page-inner-w: 880px;
  --interview-content-w: 768px;
  --photo-wrap-w: 1000px;
  --interview__photo-w: 240px;
  --hero-max-w: 1000px;

  /* ----------------------------------
     radius
  ---------------------------------- */
  --radius-s: 4px;
  --radius-m: 6px;
  --radius-pill: 22px;
}

/* ==================================================
   1. base / scope
================================================== */

.dn-scope {
  font-size: 1rem;
  line-height: 1.8;
  color: inherit;
  margin-top: 60px;
  border: none;
}

/* ==================================================
   2. anchor offset
================================================== */

.dn-scope__body h1,
.dn-scope__body h2,
.dn-scope__body h3,
.dn-scope__body h4,
.dn-scope__body h5,
.dn-scope__body h6 {
  scroll-margin-top: var(--header-height-sp);
}

@media (min-width: 1024px) {
  .dn-scope__body h1,
  .dn-scope__body h2,
  .dn-scope__body h3,
  .dn-scope__body h4,
  .dn-scope__body h5,
  .dn-scope__body h6 {
    scroll-margin-top: 0;
  }
}

/* ==================================================
   3. text
================================================== */

/* ----------------------------------
   paragraph
---------------------------------- */

.dn-scope p {
  margin: 1em 0;
}

/* ----------------------------------
   link
---------------------------------- */

/* ボタン以外のリンク */
.dn-scope
  a:not(.dn-buttonBlueOutline):not(.dn-buttonBlueSmall):not(
    .c-buttonBlueRounded
  ) {
  color: var(--blue-primary);
  text-decoration: underline;
  transition: opacity 0.35s ease;
}

.dn-scope
  a:not(.dn-buttonBlueOutline):not(.dn-buttonBlueSmall):not(
    .c-buttonBlueRounded
  ):hover {
  opacity: 0.5;
}

/* ダウンロード一覧内リンク */
.dn-scope .dn-downloadList > li > a {
  color: #1f69b7;
  text-decoration: underline;
}

.dn-scope .dn-downloadList > li > a:hover {
  opacity: 0.6;
}

/* ----------------------------------
   blockquote
---------------------------------- */

.dn-scope blockquote {
  margin: 1.6em 0;
  padding: 1em 1.2em;
  border-left: 5px solid #c4c5d7;
  background: #f7f7f9;
  line-height: 1.7;
  border-radius: var(--radius-s);
}

/* ==================================================
   4. heading
================================================== */

/* ----------------------------------
   h2
---------------------------------- */

.dn-scope h2 {
  line-height: 1.7;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 10px 10px 14px 16px;
  /* u-container の padding(15px)内で軽くはみ出させる */
  margin: 1.5em 0 1em -8px;
  border-radius: 5px;
  color: #1b1464;
  background-color: #e9f1fa;
  text-wrap: balance;
}

.dn-scope h2.is-plain {
  background: none;
  padding: 0;
  margin: 1.5em 0 1em;
}

/* ----------------------------------
   h3
---------------------------------- */

.dn-scope h3 {
  position: relative;
  display: block;
  overflow: visible;
  line-height: 1.7;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--blue-primary);
  padding: 0 0 6px;
  margin: 1.2em 0 0.8em;
  text-wrap: balance;
}

.dn-scope h3::after {
  content: "";
  position: absolute;
  /* u-container の padding(15px)内で軽くはみ出させる */
  left: -6px;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--blue-primary);
}

/* overflow安全版 */
.dn-scope h3.is-safe::after {
  left: 0;
}

/* 線なし */
.dn-scope h3.is-plain::after {
  content: none;
}

/* ----------------------------------
   h4
---------------------------------- */

.dn-scope h4 {
  position: relative;
  line-height: 1.7;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-left: 10px;
  margin: 1.2em 0 0.8em;
  color: var(--blue-primary);
  text-wrap: balance;
}

.dn-scope h4::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  /* u-container の padding(15px)内で軽くはみ出させる */
  left: -6px;
  width: 3px;
  background-color: var(--blue-primary);
}

/* overflow安全版 */
.dn-scope h4.is-safe::before {
  left: 0;
}

/* 線なし */
.dn-scope h4.is-plain::before {
  content: none;
}

/* ----------------------------------
   h5
---------------------------------- */

.dn-scope h5 {
  line-height: 1.6;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 5px 2px 5px 0;
  margin: 0.5em 0;
  color: var(--blue-primary);
}

.dn-scope h5 .h5-sub {
  display: block;
  font-size: 0.8em;
  line-height: 1.3;
  margin-bottom: 2px;
}

/* ----------------------------------
   h6
---------------------------------- */

.dn-scope h6 {
  position: relative;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-left: 1.2em;
  margin: 0.5em 0;
  color: var(--black);
}

.dn-scope h6::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0.2em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--black);
}

/* ----------------------------------
   heading pc
---------------------------------- */

@media (min-width: 1024px) {
  .dn-scope h2 {
    font-size: 28px;
  }

  .dn-scope h3 {
    font-size: 26px;
  }

  .dn-scope h4 {
    font-size: 24px;
  }

  .dn-scope h5 {
    font-size: 22px;
  }
}

/* ==================================================
   5. button
================================================== */

/* ----------------------------------
   base button
---------------------------------- */

.dn-scope .dn-buttonBlueOutline,
.dn-scope .dn-buttonBlueSmall {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: 6px;
  cursor: pointer;
  transition: 0.2s;
}

/* ----------------------------------
   outline / filled
---------------------------------- */

/* 白抜き */
.dn-scope .dn-buttonBlueOutline {
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
  padding: 5px 22px;
  border-radius: var(--radius-pill);
  background: #fff;
}

.dn-scope .dn-buttonBlueOutline:hover {
  color: var(--orange-primary);
  border-color: var(--orange-primary);
}

/* 青ボタン */
.dn-scope .dn-buttonBlueSmall {
  color: #fff;
  background: var(--blue-primary);
  padding: 7px 22px;
  border-radius: var(--radius-pill);
}

.dn-scope .dn-buttonBlueSmall:hover {
  background: var(--orange-primary);
}

/* 連続ボタンの間隔 */
/*.dn-scope a[class*="dn-button"] + a[class*="dn-button"] {
  margin-left: 7px;
}*/
/*単純な連続ボタン*/

/* ----------------------------------
   mail / copy
---------------------------------- */

.dn-scope .mail-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/*.dn-scope .mail-label {
  margin-right: 0.4em;
}*/

.dn-scope .mail-address {
  /*font-family: monospace;*/
  user-select: all;
}

.dn-scope .dn-buttonCopy {
  display: inline-block;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid #999;
  background: #f5f5f5;
  color: #333;
  cursor: pointer;
}

.dn-scope .dn-buttonCopy:hover {
  background: #e9e9e9;
}

.dn-scope .dn-buttonCopy.is-copied {
  background: #e0f2e0;
  border-color: #6aa86a;
}

/* ----------------------------------
   button layout
---------------------------------- */

.dn-scope .dn-btn-wrap {
  display: inline-block;
}

.dn-scope .dn-btn-wrap .c-buttonBlueRounded {
  /* 既存の.c-buttonBlueRoundedにwidth:100%があるため、dn-btn-wrap内では文字幅に戻す */
  width: auto;
}

.dn-scope .dn-btn-center {
  text-align: center;
}

.dn-scope .dn-btn-row {
  display: flex;
  flex-wrap: wrap;
  /* 画面が狭い時は折り返す */
  justify-content: center;
  gap: 12px;
}

.dn-scope .dn-btn-fixed {
  width: 220px;
}

@media (max-width: 767px) {
  .dn-scope .dn-btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .dn-scope .dn-btn-fixed .c-buttonBlueRounded {
    width: 100%;
  }
}

/* ==================================================
   6. list
================================================== */

/* ----------------------------------
   info list
---------------------------------- */

.dn-scope .info-list {
  margin: 1.5em 0 1em 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1.4em;
  row-gap: 0.5em;
  font-size: 16px;
}

.dn-scope .info-list dt {
  font-weight: 500;
  color: #555;
  line-height: 1.6;
  white-space: nowrap;
}

.dn-scope .info-list dd {
  margin: 0;
  line-height: 1.6;
}

/* ----------------------------------
   normal list
---------------------------------- */

.dn-scope .dn-listDisc,
.dn-scope .dn-listCircle,
.dn-scope .dn-listNumber {
  padding: 0.5em 0;
}

.dn-scope .dn-listDisc > li,
.dn-scope .dn-listCircle > li,
.dn-scope .dn-listNumber > li {
  position: relative;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding-left: 1.8em;
  padding-bottom: 0.4em;
}

/* 黒丸 */
.dn-scope .dn-listDisc > li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.95em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--black);
}

/* 白丸 */
.dn-scope ul.dn-listCircle li::before {
  content: "";
  position: absolute;
  left: 0.7em;
  top: 0.84em;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 2px solid #333;
  border-radius: 50%;
  background-color: transparent;
}

/* 番号 */
.dn-scope .dn-listNumber {
  counter-reset: list-num;
}

.dn-scope .dn-listNumber > li {
  counter-increment: list-num;
}

.dn-scope .dn-listNumber > li::before {
  content: counter(list-num);
  position: absolute;
  top: 0.3em;
  left: 0.3em;
  width: 1em;
  text-align: right;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--black);
}

/* ----------------------------------
   download list
---------------------------------- */

.dn-scope .dn-downloadList {
  padding: 0.5em 0;
}

.dn-scope .dn-downloadList > li {
  position: relative;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding-left: 5em;
  padding-bottom: 0.6em;
  list-style: none;
}

/* ファイル種別バッジ（統一幅） */
.dn-scope .dn-downloadList > li::before {
  content: attr(data-ext);
  position: absolute;
  top: 0.28em;
  left: 0.6em;
  display: inline-block;
  width: 56px;
  text-align: center;
  padding: 4px 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  border-radius: 4px;
  color: #fff;
  background-color: #777;
}

.dn-scope .dn-downloadList > li.pdf::before {
  background-color: #d16c67;
}

.dn-scope .dn-downloadList > li.word::before {
  background-color: #5877b3;
}

.dn-scope .dn-downloadList > li.excel::before {
  background-color: #5f9f78;
}

.dn-scope .dn-downloadList > li.ppt::before {
  background-color: #cc8444;
}

.dn-scope .dn-downloadList > li.zip::before {
  background-color: #777777;
}

/* ----------------------------------
   download heading
---------------------------------- */

.dn-scope .heading-download {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  background: #f3f3f7;
  border-left: 4px solid #c4c5d7;
  border-radius: 4px;
  padding: 8px 12px;
  margin: 1.2em 0 0.8em;
}

/* ==================================================
   7. table
================================================== */

/* ----------------------------------
   base table
---------------------------------- */

.dn-scope .dn-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 16px;
  line-height: 1.3;
}

.dn-scope .dn-table th,
.dn-scope .dn-table td {
  border: 1px solid #7fa1c4;
  padding: 0.6em 0.8em;
  vertical-align: middle;
}

.dn-scope .dn-table thead th {
  background-color: #ebf2fa;
  text-align: center;
  font-weight: 600;
  line-height: 1.25;
}

.dn-scope .dn-table tbody th {
  background-color: #f6f9fd;
  text-align: left;
  font-weight: 500;
  white-space: normal;
  word-break: break-word;
}

/* 合計行（ある場合） */
.dn-scope .dn-table tfoot th,
.dn-scope .dn-table tfoot td {
  background-color: #eff4fb;
  font-weight: 600;
  border-top: 3px double #7fa1c4;
}

.dn-scope .dn-table tfoot th {
  text-align: center;
}

/* ----------------------------------
   caption
---------------------------------- */

.dn-scope .dn-table caption {
  caption-side: top;
  text-align: right;
  font-size: 14px;
  color: #555;
  margin-bottom: 0.4em;
}

/* ----------------------------------
   num / text
---------------------------------- */

.dn-scope .dn-table--num td {
  text-align: right;
  white-space: normal;
  padding-right: 1em;
}

.dn-scope .dn-table--text td {
  text-align: left;
  white-space: normal;
  word-break: break-word;
}

/* ----------------------------------
   align utility 文字用（例外対応）
---------------------------------- */

.dn-scope .dn-table .is-right {
  text-align: right;
}

.dn-scope .dn-table .is-left {
  text-align: left;
}

.dn-scope .dn-table .is-center {
  text-align: center;
}

/* ----------------------------------
   table list
---------------------------------- */

.dn-scope .dn-table-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dn-scope .dn-table-list > li {
  position: relative;
  margin: 0;
  padding-left: 1.4em;
  line-height: 1.4;
  font-size: 16px;
  letter-spacing: normal;
}

/* 表内リスト・黒丸 */
.dn-scope .dn-table-listDisc > li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--black);
}

/* 表内・白丸 */
.dn-scope .dn-table-listCircle > li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0.4em;
  width: 9px;
  height: 9px;
  border: 1.5px solid #333;
  border-radius: 50%;
  background: transparent;
}

/* 表内・数字リスト */
.dn-scope .dn-table-listNumber {
  counter-reset: table-list-num;
}

.dn-scope .dn-table-listNumber > li {
  counter-increment: table-list-num;
}

.dn-scope .dn-table-listNumber > li::before {
  content: counter(table-list-num);
  position: absolute;
  top: 0.3em;
  left: 0.2em;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

/* ----------------------------------
   table width wrapper 表幅調整用ラッパー
---------------------------------- */

.dn-scope .dn-table-wrap {
  width: 100%;
  display: block;
}

@media (min-width: 768px) {
  .dn-scope .dn-table-wrap--full {
    max-width: 100%;
  }

  .dn-scope .dn-table-wrap--80 {
    max-width: 80%;
  }

  .dn-scope .dn-table-wrap--70 {
    max-width: 70%;
  }

  .dn-scope .dn-table-wrap--60 {
    max-width: 60%;
  }
}

/* ==================================================
   8. image
================================================== */

/* ----------------------------------
   1. basic image
---------------------------------- */

/* ----------------------------------
   1. basic image
---------------------------------- */

.dn-scope img {
  max-width: 100%;
  height: auto;
}

/* 直置き画像：基本は中央配置 */
.dn-scope p img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0.75em 0;
}

.dn-scope p[style*="text-align: center"] img {
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------
   2. simple row
   キャプションなしの簡易横並び
---------------------------------- */

.dn-scope p.img-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.dn-scope p.img-row img {
  display: block;
  margin: 0;
  max-width: 100%;
}

/* スマホでは縦並び */
@media (max-width: 768px) {
  .dn-scope p.img-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ----------------------------------
   3. photo row
   キャプション付きの複数写真
---------------------------------- */

.dn-scope .photo-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin: 2em 0;
}

.dn-scope .photo-row figure {
  margin: 0;
  text-align: center;
}

.dn-scope .photo-row img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 190px;
  object-fit: contain;
}

.dn-scope .photo-row figcaption {
  margin-top: 0.5em;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

/* スマホ */
@media (max-width: 768px) {
  .dn-scope .photo-row {
    gap: 16px;
    margin: 1.5em 0;
  }

  .dn-scope .photo-row img {
    height: 150px;
  }
}

/* ----------------------------------
   4. single photo
---------------------------------- */

.dn-scope figure.photo {
  --photo-size: var(--photo-w-l);
  width: min(100%, var(--photo-size));
  margin: 0 auto;
}

.dn-scope figure.photo.photo--l {
  --photo-size: var(--photo-w-l);
}

.dn-scope figure.photo.photo--m {
  --photo-size: var(--photo-w-m);
}

.dn-scope figure.photo.photo--s {
  --photo-size: var(--photo-w-s);
}

.dn-scope figure.photo > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-s);
}

.dn-scope figure.photo figcaption {
  font-size: 0.85rem;
  color: #444;
  margin-top: 0.6em;
  text-align: center;
}

/*.dn-scope figure.photo.photo-w460 {
  --photo-size: var(--photo-w460);
}

.dn-scope figure.photo.photo-w360 {
  --photo-size: var(--photo-w360);
}

.dn-scope figure.photo.photo-w260 {
  --photo-size: var(--photo-w260);
}

.dn-scope figure.photo {
  --photo-size: var(--photo-w460);
  width: min(100%, var(--photo-size));
  margin: 0 auto;
}

.dn-scope figure.photo > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-s);
}*/

/* ----------------------------------
   5. photo grid
---------------------------------- */

.dn-scope .photo-f {
  max-width: var(--photo-wrap-w);
  margin: 0 auto;
}

.dn-scope .photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, var(--photo-grid-w));
  justify-content: center;
  gap: 32px;
}

.dn-scope .photo-grid figure {
  width: var(--photo-grid-w);
  margin: 0;
}

.dn-scope .photo-grid figure > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-s);
}

.dn-scope .photo-grid figcaption {
  font-size: 0.85rem;
  color: #444;
  margin-top: 0.6em;
  text-align: center;
}

.dn-scope .photo-f + .photo-f {
  margin-top: var(--space-5);
}

@media (max-width: 768px) {
  .dn-scope .photo-f + .photo-f {
    margin-top: var(--space-4);
  }

  .dn-scope .photo-grid {
    grid-template-columns: 1fr;
    row-gap: var(--space-4);
  }

  .dn-scope .photo-grid figure {
    width: min(100%, 240px);
    margin: 0 auto;
  }
}

/*.dn-scope .photo-f {
  max-width: var(--photo-wrap-w);
  margin: 0 auto;
}

.dn-scope .photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, var(--photo-grid-w));
  justify-content: center;
  gap: 32px;
}

.dn-scope .photo-grid figure {
  width: var(--photo-grid-w);
  margin: 0;
}

.dn-scope .photo-grid figure > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-s);
}

.dn-scope .photo-f + .photo-f {
  margin-top: var(--space-5);
}

@media (max-width: 768px) {
  .dn-scope .photo-f + .photo-f {
    margin-top: var(--space-4);
  }

  .dn-scope .photo-grid {
    grid-template-columns: 1fr;
    row-gap: var(--space-4);
  }

  .dn-scope .photo-grid figure {
    width: min(100%, 240px);
    margin: 0 auto;
  }
}*/

/* ----------------------------------
   6. caption
---------------------------------- */

/*.dn-scope figure.photo figcaption,
.dn-scope .photo-grid figcaption {
  font-size: 0.85rem;
  color: #444;
  margin-top: 0.6em;
  text-align: center;
}*/

/* ----------------------------------
   6. small float
---------------------------------- */

.dn-scope img.note-float-left-S,
.dn-scope img.note-float-right-S {
  width: min(42%, var(--img-float-s));
  height: auto;
}

.dn-scope img.note-float-left-S {
  float: left;
  margin: 0.2em 0.8em 0.6em 0;
}

.dn-scope img.note-float-right-S {
  float: right;
  margin: 0.2em 0 0.6em 0.8em;
}
/* ------------ clear ------------ */
.dn-scope .clear {
  clear: both;
}

/* ----------------------------------
   6-2. large center image
   システムのフロート解除状態
---------------------------------- */

.dn-scope img.note-img-Center {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1em;
  float: none !important;
}

/* ----------------------------------
   7. medium float
---------------------------------- */

/*.dn-scope img.note-float-left,
.dn-scope img.note-float-right {
  width: min(100%, var(--img-float-m));
  height: auto;
  display: block;
  float: none !important;
  margin: 0 auto 1em;
}

@media (min-width: 768px) {
  .dn-scope img.note-float-left {
    width: min(42%, var(--img-float-m));
    float: left !important;
    margin: 0.4em 1.2em 0.7em 0;
  }

  .dn-scope img.note-float-right {
    width: min(42%, var(--img-float-m));
    float: right !important;
    margin: 0.4em 0 0.7em 1.2em;
  }
}*/

/* ==================================================
   8-x. leaflet / flyer
   既存の画像CSSに追加
================================================== */

/* ----------------------------------
   leaflet base
---------------------------------- */

.dn-scope figure.leaflet {
  margin: 2em auto;
  text-align: center;
}

.dn-scope figure.leaflet.leaflet--single {
  width: min(100%, 580px);
}

.dn-scope figure.leaflet.leaflet--spread {
  width: min(100%, 800px);
}

.dn-scope figure.leaflet > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.dn-scope figure.leaflet > a > img,
.dn-scope figure.leaflet > img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-s);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* キャプション */
.dn-scope figure.leaflet figcaption {
  margin-top: 0.8em;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}

/* ----------------------------------
   拡大UI
---------------------------------- */

/* 画像をリンク化したときの見た目 */
.dn-scope figure.leaflet.leaflet--zoom > a {
  position: relative;
}

/* 右下の拡大ラベル */
.dn-scope figure.leaflet.leaflet--zoom > a::after {
  content: "拡大";
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  padding: 0.35em 0.7em;
  font-size: 0.78rem;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 999px;
  pointer-events: none;
}

/* hover */
@media (hover: hover) {
  .dn-scope figure.leaflet.leaflet--zoom > a:hover img {
    transform: scale(1.015);
  }
}

.dn-scope figure.leaflet.leaflet--zoom img {
  transition: transform 0.2s ease;
}

/* 補助テキスト */
.dn-scope .leaflet__note {
  margin-top: 0.45em;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #666;
  text-align: center;
}

/* ----------------------------------
   PDFボタン併用時
---------------------------------- */

.dn-scope .leaflet__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0.9em;
}

.dn-scope .leaflet__button {
  display: inline-block;
  min-width: 11em;
  padding: 0.7em 1em;
  border: 1px solid var(--blue-primary, #2375cd);
  border-radius: 999px;
  color: var(--blue-primary, #2375cd);
  background: #fff;
  text-decoration: none;
  line-height: 1.4;
  text-align: center;
}

@media (hover: hover) {
  .dn-scope .leaflet__button:hover {
    opacity: 0.85;
  }
}

/* ----------------------------------
   スマホ
---------------------------------- */

@media (max-width: 768px) {
  .dn-scope figure.leaflet {
    margin: 1.5em auto;
  }

  .dn-scope figure.leaflet.leaflet--single,
  .dn-scope figure.leaflet.leaflet--spread {
    width: min(100%, 100%);
  }

  .dn-scope figure.leaflet figcaption {
    font-size: 0.88rem;
  }

  .dn-scope figure.leaflet.leaflet--zoom > a::after {
    right: 8px;
    bottom: 8px;
    font-size: 0.74rem;
    padding: 0.32em 0.65em;
  }
}

/* ==================================================
   9. interview page 1
================================================== */

/* ==================================================
   interview common
================================================== */

/* 本文幅 */
.dn-scope .interview__content {
  max-width: 768px;
  margin: 0 auto;
}

/* ----------------------------------
   lead
---------------------------------- */

.dn-scope .interview__lead {
  margin: 0 auto 2.8em;
  line-height: 1.9;
  font-size: 1.05rem;
}

.dn-scope .interview__lead p {
  margin: 0 0 1em;
}

/* ----------------------------------
   block
---------------------------------- */

.dn-scope .interview__block {
  margin-bottom: var(--space-6);
}

/* 発言本文 */
.dn-scope .interview__text {
  line-height: 1.9;
}

.dn-scope .interview__text p {
  margin-bottom: var(--space-2);
}

.dn-scope .interview__text p:first-child {
  margin-top: 0;
}

.dn-scope .interview__text p:last-child {
  margin-bottom: 0;
}

/* ----------------------------------
   name
---------------------------------- */
/* 発言者名 */
.dn-scope .interview__name {
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 0.3em;
}

.dn-scope .interview__name--1 {
  color: #c45f40;
}

.dn-scope .interview__name--2 {
  color: #3f7fa3;
}

.dn-scope .interview__name--3 {
  color: #3c855a;
}

.dn-scope .interview__name--4 {
  color: #62437f;
}

.dn-scope .interview__name--5 {
  color: #c47a2f;
}

.dn-scope .interview__name--6 {
  color: #3a6f9a;
}

/* ----------------------------------
   question
---------------------------------- */

.dn-scope .interview__question {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.9;
  margin-left: 5px;
}

.dn-scope .interview__question::before {
  content: "──";
}

.dn-scope .interview__question--bar {
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.9;
  margin: 40px 0 12px;
  border-left: 5px solid #6b7682;
  padding-left: 12px;
}

/* ----------------------------------
   interview date
---------------------------------- */

.dn-scope .interview__date {
  text-align: right;
  margin-top: 2em;
  font-size: 0.9rem;
  color: #555;
}

/* ==================================================
   interview profile page
================================================== */

.interview--profile {
  /* インタビュー用枠 */
  border: none;
}

/* ----------------------------------
   intro
---------------------------------- */

.dn-scope .interview__intro {
  max-width: var(--page-inner-w);
  margin: 0 auto var(--space-6);
  padding: 0 var(--space-2);
}

/* ----------------------------------
   profile card
---------------------------------- */
/* プロフィールカード */
.dn-scope .interview__profile-card {
  border-bottom: 1px solid #c8c8c8;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
}

/* ----------------------------------
   photo
---------------------------------- */
/* 写真 */
.dn-scope .interview__photo {
  text-align: center;
  margin: 4px auto 28px;
  max-width: 240px;
}

.dn-scope .interview__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
}

/* ----------------------------------
   profile
---------------------------------- */

.dn-scope .interview__profile {
  text-align: center;
}

.dn-scope .interview__catch {
  font-size: 22px;
  font-weight: 500;
  color: #444;
  line-height: 1.6;
  margin: 0 0 18px;
}

.dn-scope .interview__belong {
  font-size: 14px;
  color: #444;
  margin: 0 0 4px;
}

.dn-scope .interview__person {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 18px;
}

.dn-scope .interview__profile-title {
  border-bottom: 1px solid #c8c8c8;
  padding-bottom: 10px;
  margin: 32px 0 16px;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #777;
}

.dn-scope .interview__origin {
  font-size: 15px;
  margin: 0 0 12px;
  color: #555;
}

/* ----------------------------------
   career list
---------------------------------- */

.dn-scope .interview__career-list {
  text-align: center;
  color: #4a5560;
  margin: 0 auto var(--space-3);
  font-size: 0.9rem;
}

.dn-scope .interview__career-list dt,
.dn-scope .interview__career-list dd {
  display: inline;
}

.dn-scope .interview__career-list dt {
  white-space: nowrap;
  margin-right: 0.6em;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #5a6570;
}

.dn-scope .interview__career-list dd {
  margin: 0;
  line-height: 1.5;
}

.dn-scope .interview__career-list dd::after {
  content: "\A";
  white-space: pre;
}

/* ==================================================
   interview profile PC
================================================== */

@media (min-width: 1024px) {
  .dn-scope .interview__profile-card {
    display: flex;
    flex-direction: row-reverse;
    gap: 48px;
    align-items: flex-start;
  }

  /* 左右反転 */
  .dn-scope .interview__profile-card--reverse {
    flex-direction: row;
  }

  .dn-scope .interview__photo {
    flex: 0 0 240px;
    text-align: left;
    margin: 0;
  }

  .dn-scope .interview__profile {
    flex: 1 1 auto;
    padding: 0 20px 0 8px;
    text-align: left;
  }

  .dn-scope .interview__profile-title {
    border-bottom: none;
    position: relative;
  }

  .dn-scope .interview__profile-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 2px;
    background: #d8d8d8;
  }

  /* 経歴 grid化 */
  .dn-scope .interview__career-list {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 1.2em;
    row-gap: 0.6em;
    text-align: left;
  }

  .dn-scope .interview__career-list dt,
  .dn-scope .interview__career-list dd {
    display: block;
  }

  .dn-scope .interview__career-list dt {
    margin-right: 0;
  }

  .dn-scope .interview__career-list dd::after {
    content: none;
  }
}

/* ==================================================
   interview profile print　経歴を印刷用
================================================== */

@media print {
  .dn-scope .interview__profile-card {
    display: flex !important;
    flex-direction: row-reverse !important;
    gap: 10mm;
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
    padding: 0 0 6mm;
    margin-bottom: 8mm;
  }

  .dn-scope .interview__profile-card--reverse {
    flex-direction: row !important;
  }

  .dn-scope .interview__photo {
    flex: 0 0 32mm;
    max-width: 32mm;
    margin: 0;
  }

  .dn-scope .interview__profile {
    flex: 1 1 auto;
    padding: 0;
    text-align: left;
  }
}

/* ==================================================
   10. interview page 2
================================================== */

.interview--article {
  /* ETTOページ用の枠 */
  border: none;
}

/* ----------------------------------
   1. hero
---------------------------------- */

.dn-scope .interview__hero {
  max-width: var(--hero-max-w);
  margin: 0 auto var(--space-6);
  padding: 0 15px;
}

.dn-scope .interview__hero img {
  width: 100%;
  height: auto;
  display: block;
  /*border-radius: var(--radius-m);*/
}

.dn-scope .interview__hero figcaption {
  text-align: right;
  font-size: 0.85rem;
  color: #6b7682;
  margin-top: 0.6em;
}

/* ----------------------------------
   2. article title
---------------------------------- */

.dn-scope .interview__title {
  max-width: 30em;
  margin: 0 auto var(--space-6);
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #25313d;
}

/* ----------------------------------
   3. extra question
---------------------------------- */

.dn-scope .interview__extra {
  max-width: 880px;
  margin: 0 auto;
}

.dn-scope .interview__extra h2,
.dn-scope .interview__extra h3 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
}

/* ----------------------------------
   4. extra schedule
---------------------------------- */

.dn-scope .interview__extra-schedule {
  max-width: var(--page-inner-w);
  margin: 40px auto 30px;
  padding: 0 15px;
}

.dn-scope .interview__extra-schedule img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------
   5. extra Q & A
---------------------------------- */
/* =========================================
   interview ui
   会話吹き出し / 質問 / 強調 / 補足 / 引用
   dn-scope 内専用
   ========================================= */

/* -----------------------------------------
   会話吹き出し 共通
----------------------------------------- */

.dn-scope .talk-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 1.8em 0;
  padding: 0 1.2em;
  box-sizing: border-box;

  --talk-border: #2375cd;
  --talk-bg: #ffffff;
  --talk-name-color: #333333;
}

.dn-scope .talk-box.left {
  flex-direction: row;
}

.dn-scope .talk-box.right {
  flex-direction: row-reverse;
}

/* アイコン */

.dn-scope .talk-box__icon {
  width: 110px;
  flex: 0 0 110px;
}

.dn-scope .talk-box__icon picture,
.dn-scope .talk-box__icon img {
  display: block;
  width: 100%;
}

.dn-scope .talk-box__icon img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.dn-scope .talk-box__icon-name {
  margin-top: 0.45em;
  font-size: 0.9em;
  line-height: 1.4;
  text-align: center;
  color: var(--talk-name-color);
  word-break: break-word;
}

/* 本文側 */

.dn-scope .talk-box__body {
  flex: 1;
  min-width: 0;
}

.dn-scope .talk-box__name {
  margin: 0 0 0.45em;
  font-size: 0.95em;
  font-weight: 700;
  line-height: 1.4;
  color: var(--talk-name-color);
}

.dn-scope .talk-box.right .talk-box__name {
  text-align: right;
}

/* 吹き出し */

.dn-scope .talk-box__bubble {
  display: block;
  width: 100%;
  max-width: 100%;
  background: var(--talk-bg);
  border: 3px solid var(--talk-border);
  border-radius: 18px;
  padding: 1.15em 1.1em;
  box-sizing: border-box;
  position: relative;
  line-height: 1.8;
  overflow-wrap: break-word;
}

.dn-scope .talk-box__bubble > *:first-child {
  margin-top: 0;
}

.dn-scope .talk-box__bubble > *:last-child {
  margin-bottom: 0;
}

/* 左三角 */

.dn-scope .talk-box.left .talk-box__bubble::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 14px solid var(--talk-border);
}

.dn-scope .talk-box.left .talk-box__bubble::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 26px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 12px solid var(--talk-bg);
}

/* 右三角 */

.dn-scope .talk-box.right .talk-box__bubble::before {
  content: "";
  position: absolute;
  right: -16px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 14px solid var(--talk-border);
}

.dn-scope .talk-box.right .talk-box__bubble::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 26px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 12px solid var(--talk-bg);
}

/* 見出し・質問直後 */

.dn-scope .interview__extra + .talk-box,
.dn-scope h2 + .talk-box,
.dn-scope h3 + .talk-box,
.dn-scope h4 + .talk-box {
  margin-top: 0.9em;
}

.dn-scope .interview-q + .talk-box {
  margin-top: 0.9em;
}

/* 発言間余白 */

.dn-scope .talk-box + .talk-box {
  margin-top: 1.45em;
}

/* -----------------------------------------
   質問ボックス
----------------------------------------- */

.dn-scope .interview-q {
  margin: 2.2em 1.2em 1.1em;
  padding: 0.95em 1.05em;
  background: #f5f8fd;
  border-left: 5px solid #2375cd;
  font-weight: 700;
  line-height: 1.7;
  box-sizing: border-box;
}

/* -----------------------------------------
   強調発言
----------------------------------------- */

.dn-scope .talk-highlight {
  margin: 2em 1.2em;
  padding: 1.15em 1.25em;
  background: #f0f6ff;
  border: 2px solid #c8dfff;
  border-radius: 12px;
  line-height: 1.85;
  box-sizing: border-box;
}

.dn-scope .talk-highlight > *:first-child {
  margin-top: 0;
}

.dn-scope .talk-highlight > *:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------
   補足メモ
----------------------------------------- */

.dn-scope .interview-note {
  margin: 1.6em 1.2em;
  padding: 0.9em 1em;
  background: #fafafa;
  border-left: 4px solid #d9d9d9;
  font-size: 0.92em;
  line-height: 1.75;
  box-sizing: border-box;
}

.dn-scope .interview-note > *:first-child {
  margin-top: 0;
}

.dn-scope .interview-note > *:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------
   大きな引用コメント
----------------------------------------- */

.dn-scope .interview-quote {
  margin: 2.4em 1.2em;
  padding: 1.6em 1.5em 1.45em;
  background: #ffffff;
  border-top: 3px solid #2375cd;
  border-bottom: 3px solid #2375cd;
  position: relative;
  box-sizing: border-box;
}

.dn-scope .interview-quote::before {
  content: "“";
  position: absolute;
  top: 0.05em;
  left: 0.28em;
  font-size: 3.2em;
  line-height: 1;
  color: #2375cd;
  opacity: 0.22;
  pointer-events: none;
}

.dn-scope .interview-quote__text {
  margin: 0;
  padding: 0 0 0 0.7em;
  font-size: 1.18em;
  font-weight: 700;
  line-height: 1.8;
}

.dn-scope .interview-quote__name {
  margin-top: 0.9em;
  text-align: right;
  font-size: 0.92em;
  line-height: 1.5;
  color: #555555;
}

/* -----------------------------------------
   小見出し風区切り
----------------------------------------- */

.dn-scope .interview-minihead {
  margin: 2.2em 1.2em 1em;
  font-size: 1.05em;
  font-weight: 700;
  line-height: 1.5;
  color: #222222;
}

/* -----------------------------------------
   パーツ同士のつながり
----------------------------------------- */

.dn-scope .talk-box + .talk-highlight,
.dn-scope .talk-box + .interview-note,
.dn-scope .talk-box + .interview-quote,
.dn-scope .talk-highlight + .talk-box,
.dn-scope .interview-note + .talk-box,
.dn-scope .interview-quote + .talk-box {
  margin-top: 1.8em;
}

/* 同一話者の場合は間隔詰める */
.dn-scope .talk-box.left + .talk-box.left,
.dn-scope .talk-box.right + .talk-box.right {
  margin-top: 0.6em;
}

/* =========================================
   同一話者の連続発言
   2つ目以降はアイコンを非表示
   ========================================= */

/* 左側 */

.dn-scope .talk-box.left + .talk-box.left .talk-box__icon {
  visibility: hidden;
}

/* 右側 */

.dn-scope .talk-box.right + .talk-box.right .talk-box__icon {
  visibility: hidden;
}

/* -----------------------------------------
   スマホ
----------------------------------------- */

@media (max-width: 768px) {
  .dn-scope .talk-box {
    gap: 12px;
    margin: 1.2em 0;
    padding: 0 0.6em;
  }

  .dn-scope .talk-box__icon {
    width: 64px;
    flex: 0 0 64px;
  }

  .dn-scope .talk-box__icon img {
    width: 64px;
    height: 64px;
  }

  .dn-scope .talk-box__icon-name {
    margin-top: 0.35em;
    font-size: 0.78em;
    line-height: 1.35;
  }

  .dn-scope .talk-box__name {
    margin-bottom: 0.35em;
    font-size: 0.86em;
    line-height: 1.35;
  }

  .dn-scope .talk-box__bubble {
    border-radius: 14px;
    padding: 0.95em 0.9em;
    line-height: 1.7;
  }

  .dn-scope .talk-box.left .talk-box__bubble::before {
    left: -12px;
    top: 18px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 11px solid var(--talk-border);
  }

  .dn-scope .talk-box.left .talk-box__bubble::after {
    left: -9px;
    top: 20px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 9px solid var(--talk-bg);
  }

  .dn-scope .talk-box.right .talk-box__bubble::before {
    right: -12px;
    top: 18px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 11px solid var(--talk-border);
  }

  .dn-scope .talk-box.right .talk-box__bubble::after {
    right: -9px;
    top: 20px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 9px solid var(--talk-bg);
  }

  .dn-scope .interview__extra + .talk-box,
  .dn-scope h2 + .talk-box,
  .dn-scope h3 + .talk-box,
  .dn-scope h4 + .talk-box {
    margin-top: 0.7em;
  }

  .dn-scope .interview-q {
    margin: 1.8em 0.6em 0.9em;
    padding: 0.85em 0.9em;
    line-height: 1.65;
  }

  .dn-scope .interview-q + .talk-box {
    margin-top: 0.75em;
  }

  .dn-scope .talk-box + .talk-box {
    margin-top: 1.05em;
  }

  .dn-scope .talk-highlight {
    margin: 1.6em 0.6em;
    padding: 1em 1em;
    line-height: 1.75;
  }

  .dn-scope .interview-note {
    margin: 1.3em 0.6em;
    padding: 0.85em 0.9em;
    font-size: 0.88em;
    line-height: 1.7;
  }

  .dn-scope .interview-quote {
    margin: 1.9em 0.6em;
    padding: 1.2em 1em 1.1em;
  }

  .dn-scope .interview-quote::before {
    top: 0.02em;
    left: 0.18em;
    font-size: 2.6em;
  }

  .dn-scope .interview-quote__text {
    padding-left: 0.6em;
    font-size: 1.04em;
    line-height: 1.75;
  }

  .dn-scope .interview-quote__name {
    margin-top: 0.75em;
    font-size: 0.84em;
  }

  .dn-scope .interview-minihead {
    margin: 1.8em 0.6em 0.8em;
    font-size: 1em;
  }

  .dn-scope .talk-box + .talk-highlight,
  .dn-scope .talk-box + .interview-note,
  .dn-scope .talk-box + .interview-quote,
  .dn-scope .talk-highlight + .talk-box,
  .dn-scope .interview-note + .talk-box,
  .dn-scope .interview-quote + .talk-box {
    margin-top: 1.35em;
  }
}

/* ==================================================
   青帯タイトル（デザイン再現バージョン）
================================================== */

.dn-scope .article-band-css {
  position: relative;
  margin: 64px auto 36px;
  padding: 26px 16px;
  /* ← ここを調整 */
  max-width: var(--page-inner-w);
  background: linear-gradient(90deg, #5ea8c9 0%, #2d6fb3 55%, #1c4e8c 100%);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* 1本目 */
.dn-scope .article-band-css::after {
  content: "";
  position: absolute;
  right: -55px;
  top: 0;
  width: 220px;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  transform: skewX(-45deg);
  pointer-events: none;
}

/* 2本目 */
.dn-scope .article-band-css::before {
  content: "";
  position: absolute;
  right: -85px;
  top: 0;
  width: 180px;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  transform: skewX(-45deg);
  pointer-events: none;
}

.dn-scope .article-band-css p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

/* スマホ */
@media (max-width: 768px) {
  .dn-scope .article-band-css {
    margin: 48px 0 24px;
    padding: 20px 16px;
  }

  .dn-scope .article-band-css p {
    font-size: 1.3rem;
  }
}

/* ==================================================
   11. utility
================================================== */

/* CSSコード */
pre {
  background-color: #cfc;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* デフォルトで効いているので不要・必要になったら復活用 */
/*html {
  scroll-behavior: smooth;
}*/

/* ==================================================
   13. print
================================================== */

@media print {
  @page {
    size: A4 portrait;
    margin: 12mm;
  }

  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
  }

  .dn-scope {
    color: #000;
    margin-top: 0;
  }

  .dn-scope .page-inner {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* ----------------------------------
     title area
  ---------------------------------- */

  .c-pageTitle {
    min-height: auto;
    padding: 10mm 0 6mm;
    align-items: center;
  }

  h1 {
    padding: 0;
    margin: 0.2em 0 0.5em;
    line-height: 1.5;
    transform: translateY(0);
  }

  /* ----------------------------------
     paragraph
  ---------------------------------- */

  .dn-scope p {
    margin: 0 0 0.7em;
  }

  /* ----------------------------------
     direct image margin
  ---------------------------------- */

  .dn-scope
    p
    > img:not(.note-float-left-S):not(.note-float-right-S):not(
      .note-float-left
    ):not(.note-float-right):not(.note-img-Center),
  .dn-scope
    > img:not(.note-float-left-S):not(.note-float-right-S):not(
      .note-float-left
    ):not(.note-float-right):not(.note-img-Center) {
    display: block;
    margin: 3mm auto;
  }

  /* ----------------------------------
     single photo
  ---------------------------------- */

  .dn-scope figure.photo {
    width: min(100%, 95mm);
    margin: 0 auto 4mm;
  }

  .dn-scope figure.photo > img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* ----------------------------------
     photo grid
  ---------------------------------- */

  .dn-scope .photo-f {
    display: table;
    max-width: 100%;
    margin: 0 auto;
  }

  .dn-scope .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4mm;
  }

  .dn-scope .photo-grid figure {
    width: auto;
    margin: 0;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .dn-scope .photo-grid figure > img {
    width: 100%;
    height: auto;
  }

  /* ----------------------------------
     float image
  ---------------------------------- */

  .dn-scope img.note-float-left-S,
  .dn-scope img.note-float-right-S,
  .dn-scope img.note-float-left,
  .dn-scope img.note-float-right {
    float: none !important;
    display: block;
    width: auto !important;
    max-width: 55mm !important;
    margin: 0 auto 4mm !important;
  }

  .dn-scope img.note-img-Center {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto 4mm !important;
    float: none !important;
  }

  /* ----------------------------------
     interview profile print
  ---------------------------------- */

  .dn-scope .interview__profile-card {
    display: flex !important;
    flex-direction: row-reverse !important;
    gap: 10mm;
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
    padding: 0 0 6mm;
    margin-bottom: 8mm;
  }

  .dn-scope .interview__profile-card--reverse {
    flex-direction: row !important;
  }

  .dn-scope .interview__photo {
    flex: 0 0 32mm;
    max-width: 32mm;
    margin: 0;
  }

  .dn-scope .interview__profile {
    flex: 1 1 auto;
    padding: 0;
    text-align: left;
  }

  .dn-scope .interview__career-list {
    display: grid !important;
    grid-template-columns: max-content 1fr;
    column-gap: 1.2em;
    row-gap: 0.4em;
    text-align: left !important;
    margin: 0 0 4mm;
    font-size: 0.8em;
  }

  .dn-scope .interview__career-list dt,
  .dn-scope .interview__career-list dd {
    display: block;
  }

  .dn-scope .interview__career-list dt {
    margin-right: 0;
  }

  .dn-scope .interview__career-list dd {
    margin: 0;
  }

  .dn-scope .interview__career-list dd::after {
    content: none;
  }

  .dn-scope .interview__content {
    max-width: none;
    margin: 0;
  }

  .dn-scope .interview__block {
    margin-bottom: 7mm;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* ----------------------------------
     table
  ---------------------------------- */

  .dn-scope .dn-table-wrap--80,
  .dn-scope .dn-table-wrap--70,
  .dn-scope .dn-table-wrap--60 {
    max-width: 100%;
    margin: 0;
  }

  .dn-scope .dn-table {
    line-height: 1.35;
  }

  /* ----------------------------------
     button
  ---------------------------------- */

  .dn-scope .dn-buttonBlueOutline,
  .dn-scope .dn-buttonBlueSmall,
  .dn-scope .dn-buttonCopy {
    color: #000 !important;
    background: #fff !important;
    border-color: #666 !important;
    box-shadow: none !important;
  }

  .dn-scope .dn-buttonBlueOutline:hover,
  .dn-scope .dn-buttonBlueSmall:hover,
  .dn-scope .dn-buttonCopy:hover {
    color: #000 !important;
    background: #fff !important;
    border-color: #666 !important;
  }

  /* ----------------------------------
     page break safety
  ---------------------------------- */

  .dn-scope h2,
  .dn-scope h3,
  .dn-scope h4,
  .dn-scope figure,
  .dn-scope table,
  .dn-scope blockquote {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* ==================================================
   article-detail-foot（partials/article-detail-foot）
   前の記事 / 一覧へ戻る / 次の記事 — .p-newsDetailFoot
================================================== */

/* 臨床研修病院詳細と同じ c-snsNav ブロック内に配置 */
.p-newsDetailFoot .c-snsNav__body {
  max-width: 880px;
}

/* 一覧を中央・前後を左右（3カラムグリッド）。横スクロールなし。 */
.p-newsDetailFoot__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(4px, 1.5vw, 20px);
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
  box-sizing: border-box;
  overflow-x: hidden;
}

.p-newsDetailFoot__cell--prev {
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}

.p-newsDetailFoot__cell--center {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.p-newsDetailFoot__cell--next {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

/* 一覧・前後記事ボタンは文字幅に合わせる（左右はセル幅に収まるよう max-width） */
.p-newsDetailFoot .p-newsDetailFoot__navBtn {
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* スマホ：矢印は absolute のため、ボタン左右に十分な padding を確保（下のデスクトップ用ルールで上書きされないよう、ラベルの余白は 768px 未満でリセット） */
@media screen and (max-width: 767px) {
  .p-newsDetailFoot .p-newsDetailFoot__navBtn.c-buttonBlueRounded {
    min-height: 42px;
  }

  /* 右矢印（一覧・次）：右側にアイコン分の余白 */
  .p-newsDetailFoot .p-newsDetailFoot__navBtn:not(.p-newsDetailFoot__navBtn--prev).c-buttonBlueRounded {
    padding: 0.4em 2.1em 0.4em 0.65em;
  }

  /* 左矢印（前） */
  .p-newsDetailFoot .p-newsDetailFoot__navBtn--prev.c-buttonBlueRounded {
    padding: 0.4em 0.65em 0.4em 2.1em;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn .c-buttonBlueRounded__label {
    font-size: 13px;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    line-height: 1.3;
    padding-left: 0;
    padding-right: 0;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn:not(.p-newsDetailFoot__navBtn--prev) .c-buttonBlueRounded__icon {
    right: 12px;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn--prev .c-buttonBlueRounded__icon {
    right: auto;
    left: 12px;
  }
}

@media screen and (max-width: 374px) {
  .p-newsDetailFoot__actions {
    column-gap: 2px;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn .c-buttonBlueRounded__label {
    font-size: 12px;
    letter-spacing: 0.03em;
    text-indent: 0.03em;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn.c-buttonBlueRounded {
    min-height: 40px;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn:not(.p-newsDetailFoot__navBtn--prev).c-buttonBlueRounded {
    padding: 0.35em 1.85em 0.35em 0.5em;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn--prev.c-buttonBlueRounded {
    padding: 0.35em 0.5em 0.35em 1.85em;
  }
}

/* タブレット以上：矢印と文字の間隔（768px 未満のスタイルをここで上書きしないようメディアクエリ内に限定） */
@media screen and (min-width: 768px) {
  .p-newsDetailFoot .p-newsDetailFoot__navBtn:not(.p-newsDetailFoot__navBtn--prev) .c-buttonBlueRounded__label {
    padding-right: 14px;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn:not(.p-newsDetailFoot__navBtn--prev) .c-buttonBlueRounded__icon {
    right: 18px;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn--prev .c-buttonBlueRounded__label {
    padding-left: 14px;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn--prev .c-buttonBlueRounded__icon {
    right: auto;
    left: 18px;
  }
}

@media screen and (min-width: 1024px) {
  .p-newsDetailFoot .p-newsDetailFoot__navBtn:not(.p-newsDetailFoot__navBtn--prev) .c-buttonBlueRounded__icon {
    right: 24px;
  }

  .p-newsDetailFoot .p-newsDetailFoot__navBtn--prev .c-buttonBlueRounded__icon {
    left: 24px;
  }
}

.p-newsDetailFoot .p-newsDetailFoot__navBtn--prev .c-buttonBlueRounded__icon svg {
  transform: scaleX(-1);
}

/* 相談詳細：中央ボタンが長文のとき折り返し */
.p-newsDetailFoot__cell--center .c-buttonBlueRounded__label {
  white-space: normal;
  text-align: center;
}

/* =================================
   Rounded Button Motion
   対象:
   - .c-buttonBlueRounded
   - .c-buttonOrangeRounded
   - .c-buttonGreenRounded

   方針:
   - 動きは控えめ
   - box-shadow は使わない
   - will-change は使わない
   - reduced motion に対応
================================= */

.c-buttonBlueRounded,
.c-buttonOrangeRounded,
.c-buttonGreenRounded {
  cursor: pointer;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.12s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* hover: 少しだけ浮く */
.c-buttonBlueRounded:hover,
.c-buttonOrangeRounded:hover,
.c-buttonGreenRounded:hover {
  transform: translateY(-1px);
}

/* active: 押した時は元に戻す */
.c-buttonBlueRounded:active,
.c-buttonOrangeRounded:active,
.c-buttonGreenRounded:active {
  transform: translateY(0);
}

/* アイコン */
.c-buttonBlueRounded__icon svg,
.c-buttonOrangeRounded__icon svg,
.c-buttonGreenRounded__icon svg {
  transition: transform 0.18s ease;
}

/* hover時に矢印を少しだけ動かす */
.c-buttonBlueRounded:hover .c-buttonBlueRounded__icon svg,
.c-buttonOrangeRounded:hover .c-buttonOrangeRounded__icon svg,
.c-buttonGreenRounded:hover .c-buttonGreenRounded__icon svg {
  transform: translateX(2px);
}

/* 動きを減らしたい環境向け */
@media (prefers-reduced-motion: reduce) {
  .c-buttonBlueRounded,
  .c-buttonOrangeRounded,
  .c-buttonGreenRounded,
  .c-buttonBlueRounded__icon svg,
  .c-buttonOrangeRounded__icon svg,
  .c-buttonGreenRounded__icon svg {
    transition: none;
  }

  .c-buttonBlueRounded:hover,
  .c-buttonOrangeRounded:hover,
  .c-buttonGreenRounded:hover,
  .c-buttonBlueRounded:active,
  .c-buttonOrangeRounded:active,
  .c-buttonGreenRounded:active,
  .c-buttonBlueRounded:hover .c-buttonBlueRounded__icon svg,
  .c-buttonOrangeRounded:hover .c-buttonOrangeRounded__icon svg,
  .c-buttonGreenRounded:hover .c-buttonGreenRounded__icon svg {
    transform: none;
  }
}
