/* ===== nyans ご利用ガイド（W2 guide.aspx 移植・自己完結） =====
     W2: prod/Page/guide.aspx + Css/common_static.css + Js/common_script.js
     rem→px 換算済み（W2は 1rem=10px）／全セレクタを .nyans-guide にスコープ化 */

  /* W2 の CSS 変数のうち、このページで使う分だけ定義 */
  .nyans-guide {
    /* 現行 nyans サイト実測に合わせテラコッタを primary に（W2 variable.css のピンクではなく実サイト準拠） */
    --color-primary: #C4653A;
    --color-emphasis: #D8525C;
    --color-black: #2E363A;
    --color-white: #fff;
    --color-gray-100: #f5f5f5;
    --color-gray-300: #dbdbdb;
    --color-gray-500: #7e7e7e;
    --color-border: #D8DBDD;
    --fw-medium: 500;
    --fw-bold: 700;
    --inner-width: 100%;
    /* .c-bg-area 用（W2 component.css の :root 定義を移植。未定義だと本文カードの枠・背景が消える） */
    --bg-padding-block: 30px;
    --bg-padding-inline: 35px;
    --bg-color: var(--color-gray-100);
    --bg-border-color: var(--color-gray-300);
    --title-transform: none;
    --title-direction: column;
  }
  /* ecforce のグローバル a スタイル（ピンク下線）を打ち消し、W2 CSS の指定に委ねる */
  .nyans-guide a { color: inherit; text-decoration: none; }
  /* フォント: theme_customize の見出しルール（メイリオ）に勝たせる */
  .nyans-guide, .nyans-guide h1, .nyans-guide h2, .nyans-guide h3, .nyans-guide h4, .nyans-guide h5, .nyans-guide h6,
  .nyans-guide p, .nyans-guide li, .nyans-guide a, .nyans-guide th, .nyans-guide td, .nyans-guide dt, .nyans-guide dd, .nyans-guide span {
    font-family: var(--nyans-font, 'Ubuntu', 'Noto Sans JP', sans-serif) !important;
  }
  .nyans-guide { color: var(--color-black); }
  /* 固定ヘッダーに隠れないようアンカー位置を調整 */
  .nyans-guide .static-section { scroll-margin-top: 140px; }
  .nyans-guide .c-navigation--sticky { position: sticky; top: 140px; }
  @media screen and (max-width: 767px) {
    .nyans-guide .static-section { scroll-margin-top: 100px; }
    .nyans-guide .c-navigation--sticky { position: static; }
  }
  /* ページ見出し（W2 .c-page-title） */
  .nyans-guide .c-page-title { display: block; text-align: center; margin: 0 0 48px; }
  .nyans-guide .c-page-title__item { display: block; }
  .nyans-guide .c-page-title--ja { font-size: 34px; font-weight: 700; letter-spacing: 0.08em; }
  .nyans-guide .c-page-title--en { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; margin-top: 8px; }
  @media screen and (max-width: 767px) { .nyans-guide .c-page-title--ja { font-size: 26px; } }


  /* ===== nyans: ガイドページの幅を W2 と同じに =====
     ecforce 標準の .p-page_content__inner { max-width: 720px } がコンテンツを圧迫し、
     目次が極端に狭くなる（720px × 21.06% ≒ 152px）。ガイドページに限りこれを解除する。
     :has() 対応ブラウザは CSS だけで、非対応でも guide.js が親に .nyans-guide-parent を付けて同じ結果にする */
  .p-page_content__inner:has(> .nyans-guide),
  .p-page_content__inner.nyans-guide-parent {
    max-width: none;
    width: 100%;
  }
  .p-page_content:has(.nyans-guide),
  .p-page_content.nyans-guide-parent-outer {
    padding-left: 0;
    padding-right: 0;
  }


  /* nyans: <details> のネイティブ三角マーカーを除去（Chrome は summary { display:list-item } のため
     ::-webkit-details-marker だけでは消えず ▼▶ が出てしまう） */
  .nyans-guide summary,
  .nyans-guide .static-section__accordion-title {
    list-style: none;
  }
  .nyans-guide summary::-webkit-details-marker,
  .nyans-guide .static-section__accordion-title::-webkit-details-marker {
    display: none;
  }
  .nyans-guide summary::marker,
  .nyans-guide .static-section__accordion-title::marker {
    content: "";
    font-size: 0;
  }

  /* nyans: パンくず（W2 にはあるが ecforce のページ管理では自動生成されないため自前。ログイン/会員登録と同一スタイル） */
  .nyans-guide-crumb {
    font-size: 13px;
    color: #8a8f92;
    margin: 0 0 28px;
    font-family: var(--nyans-font, 'Ubuntu', 'Noto Sans JP', sans-serif);
  }
  .nyans-guide-crumb a { color: #8a8f92; text-decoration: none; }
  .nyans-guide-crumb a:hover { text-decoration: underline; }
  .nyans-guide-crumb span { margin: 0 8px; }

  /* ===== 以下 W2 common_static.css（移植） ===== */
.nyans-guide .c-lead {
  margin-bottom: 77px;
}
@media screen and (max-width: 767px) {.nyans-guide .c-lead {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {.nyans-guide .c-navigation-list__item.active {
    background-color: var(--color-white);
  }
}.nyans-guide .static-heading {
  margin: 77px 0 25px;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {.nyans-guide .static-heading {
    margin: 40px 0 30px;
  }
}.nyans-guide .static__container--column-2 {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: 21.06% 74.56%;
  column-gap: 4.38%;
}.nyans-guide .static__container--column-2 .static-contents {
  max-width: 850px;
  width: 100%;
}
@media screen and (max-width: 767px) {.nyans-guide .static__container--column-2 {
    display: block;
  }.nyans-guide .static__container .static-contents {
    margin-top: 20px;
    width: 100%;
  }
}.nyans-guide .static-contents__block + .static-contents__block {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {.nyans-guide .static-contents__block + .static-contents__block {
    margin-top: 10px;
  }
}.nyans-guide .static-section {
  letter-spacing: 0.05em;
}.nyans-guide .static-section img {
  overflow: auto;
}.nyans-guide .static-section__heading--large {
  margin-bottom: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-gray-300);
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  font-weight: var(--fw-bold);
}.nyans-guide .static-section__heading--medium {
  margin: 45px 0 17px;
  padding-left: 16px;
  border-left: 4px solid var(--color-primary);
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.08em;
}.nyans-guide .static-section__heading--small {
  margin: 30px 0 16px;
  font-size: 14px;
  line-height: 1;
  font-weight: var(--fw-bold);
}.nyans-guide .static-section:nth-of-type(n + 2) .static-section__heading--large:not(.faq-section__heading) {
  margin-top: 40px;
}.nyans-guide .static-section__text {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.05em;
}.nyans-guide .static-section__text + .static-section__text {
  margin-top: 9px;
}.nyans-guide .static-section .c-siteinfo {
  margin-top: 20px;
  max-width: none;
  background-color: var(--color-white);
  text-align: left;
}.nyans-guide .static-section__list {
  margin-top: 20px;
}.nyans-guide .static-section__list li {
  font-size: 13px;
  line-height: 2;
}.nyans-guide .static-section__list li a {
  font-size: inherit;
}.nyans-guide .static-section__list + .static-section__text {
  margin-top: 25px;
}.nyans-guide .static-section__note {
  margin-top: 9px;
  font-size: 13px;
}.nyans-guide .static-section__info {
  margin-top: 20px;
  padding: 24px 30px;
  background-color: var(--color-white);
  border-radius: 4px;
  font-size: 13px;
  line-height: 2;
}.nyans-guide .static-section__info dt {
  font-weight: var(--fw-bold);
}.nyans-guide .static-section__info dt, .nyans-guide .static-section__info dd {
  font-size: 13px;
}.nyans-guide .static-section__img {
  display: inline-block;
  margin-top: 25px;
}.nyans-guide .static-section__img__wrap {
  display: flex;
  gap: 0 20px;
}.nyans-guide .static-section__table {
  width: 100%;
  table-layout: fixed;
  margin-top: 20px;
  font-size: 13px;
  line-height: 2;
  border-spacing: 0;
}.nyans-guide .static-section__table tr:not(:last-child) th, .nyans-guide .static-section__table tr:not(:last-child) td {
  border-bottom: 2px solid var(--color-white);
}.nyans-guide .static-section__table th {
  width: 25%;
  padding: 20px;
  background-color: var(--color-gray-300);
  vertical-align: top;
}.nyans-guide .static-section__table td {
  padding: 20px;
  background-color: var(--color-white);
}.nyans-guide .static-section__table--border-gray tr:not(:last-child) th, .nyans-guide .static-section__table--border-gray tr:not(:last-child) td {
  border-color: var(--color-gray-100);
}.nyans-guide .static-section__credit {
  margin: 40px 0;
  line-height: 1.85;
}.nyans-guide .static-section a {
  text-decoration: underline;
  color: var(--color-primary);
  font-size: inherit;
}.nyans-guide .static-section__accordion {
  padding: 0 1px;
}.nyans-guide .static-section__accordion-list {
  background: var(--color-white);
}.nyans-guide .static-section__accordion-list:not(:last-child) {
  margin-bottom: 10px;
}.nyans-guide .static-section__accordion-title, .nyans-guide .static-section__accordion-desc {
  border: 1px solid var(--color-gray-100);
}.nyans-guide .static-section__accordion-title {
  position: relative;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
}.nyans-guide .static-section__accordion-title__inner {
  display: inline-block;
  padding: 15px 47px;
  font-family: inherit;
  font-weight: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  font-size: inherit;
  text-indent: -30px;
  cursor: pointer;
}.nyans-guide .static-section__accordion-title--head {
  margin-right: 8px;
  color: var(--color-primary);
}.nyans-guide .static-section__accordion-title::before, .nyans-guide .static-section__accordion-title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  transform: translateY(-50%);
  margin: auto;
  width: 12px;
  height: 2px;
  background-color: var(--color-gray-500);
  transition: all 0.7s;
}.nyans-guide .static-section__accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
}.nyans-guide .static-section__accordion-title.open::after {
  transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}.nyans-guide .static-section__accordion-list[data-state-accordion=opened] .static-section__accordion-title::after {
  transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}.nyans-guide .static-section__accordion-desc {
  font-size: 13px;
  line-height: 1.7;
}.nyans-guide .static-section__accordion-desc--inner {
  display: block;
  padding: 15px 17px;
}
@media screen and (max-width: 767px) {.nyans-guide .static-section {
    width: var(--inner-width);
    margin-inline: auto;
  }.nyans-guide .static-section__heading--large {
    margin-bottom: 20px;
    padding-bottom: 13px;
    font-size: 18px;
  }.nyans-guide .static-section__heading--medium {
    margin: 30px 0 20px;
    line-height: 1.375;
  }.nyans-guide .static-section__heading--small {
    margin: 20px 0 15px;
  }.nyans-guide .static-section__text + .static-section__text {
    margin-top: 20px;
  }.nyans-guide .static-section .c-siteinfo {
    width: 100%;
  }.nyans-guide .static-section__list + .static-section__text {
    margin-top: 20px;
  }.nyans-guide .static-section__note {
    margin-top: 20px;
  }.nyans-guide .static-section__info {
    padding: 20px;
  }.nyans-guide .static-section__img__wrap {
    gap: 0 5px;
  }.nyans-guide .static-section__table {
    margin-top: 20px;
    font-size: 13px;
    line-height: 2;
  }.nyans-guide .static-section__table tr:not(:last-child) th, .nyans-guide .static-section__table tr:not(:last-child) td {
    border-bottom: 0;
  }.nyans-guide .static-section__table th, .nyans-guide .static-section__table td {
    display: block;
  }.nyans-guide .static-section__table th {
    width: auto;
    padding: 10px 20px;
    vertical-align: middle;
  }.nyans-guide .static-section__table td {
    padding: 10px 17px;
  }.nyans-guide .static-section__full {
    width: 100%;
  }.nyans-guide .static-section__accordion-list:not(:last-child) {
    margin-bottom: 12px;
  }.nyans-guide .static-section__accordion-title button {
    padding: 15px 47px;
    text-indent: -30px;
  }.nyans-guide .static-section__accordion-title--head {
    margin-right: 8px;
  }.nyans-guide .static-section__accordion-title::before, .nyans-guide .static-section__accordion-title::after {
    right: 20px;
  }.nyans-guide .static-section__accordion-desc--inner {
    padding: 20px 19px 16px;
  }
}.nyans-guide .static-list--disc li {
  list-style: disc inside;
  text-indent: -16px;
  padding-left: 16px;
}.nyans-guide .static-list--num li {
  list-style: decimal inside;
  text-indent: -16px;
  padding-left: 16px;
}.nyans-guide .static-list--num li::marker {
  font-weight: var(--fw-bold);
}.nyans-guide .static-list--num-2 li {
  list-style-type:none;
  counter-increment: num2;
  text-indent: -1.75em;
  padding-left: 1.75em;
}.nyans-guide .static-list--num-2 li::before {
  display: marker;
  content: "("counter(num2)") ";
}.nyans-guide .static-section__list .static-section__list {
  margin-top: 5px;
}.nyans-guide .static__container .static-contents.c-bg-area .static-section {
  width: 100%;
}.nyans-guide .heading--num {
  counter-reset: count_heading;
}.nyans-guide .heading--num .static-section__heading--large {
  display: flex;
  counter-increment: count_heading;
}.nyans-guide .heading--num .static-section__heading--large::before {
  content: counter(count_heading) ".";
}.nyans-guide .c-text--bold {
  font-weight: var(--fw-bold);
}.nyans-guide a[href*="tel:"] {
  text-decoration: underline;
}
@media screen and (min-width: 768px){.nyans-guide a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}


  /* ===== W2 component.css より（.c-navigation / .c-bg-area / .c-siteinfo）=====
     目次の番号・矢印・点線区切り、本文カードの枠、問い合わせ枠。これが無いと W2 と大きく乖離する */
.nyans-guide .c-bg-area .c-step-indicator {
  --padding-outside-horizontal: 0;
}
.nyans-guide .c-page-title {
  display: flex;
  flex-direction: var(--title-direction);
  align-items: center;
  gap: 8px 0;
  margin: 30px 0 40px;
  text-align: center;
  text-transform: var(--title-transform);
}
.nyans-guide .c-page-title--ja {
  font-family: var(--font-ja);
}
.nyans-guide .c-page-title--en {
  font-family: var(--font-en);
}
.nyans-guide .c-page-title__item {
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
}
.nyans-guide .c-page-title--ja {
  font-size: 30px;
  line-height: 2;
}
.nyans-guide .c-page-title--en {
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
}
.nyans-guide .c-page-title--sub {
  margin: 77px 0 25px;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}
.nyans-guide .c-page-title--banner {
  display:block; 
  width:50%;
  cursor: pointer;
}

@media screen and (max-width: 767px) {.nyans-guide .c-page-title {
    width: var(--inner-width);
    margin-inline: auto;
    font-size: 26px;
  }
.nyans-guide .c-page-title--sub {
    margin: 40px 0 30px;
  }
.nyans-guide .c-page-title--banner {
    width:70%;
  }

}
.nyans-guide .c-lead {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.05em;
  text-align: center;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {.nyans-guide .c-lead {
    width: var(--inner-width);
    text-align: left;
  }

}
.nyans-guide .c-lead--justify {
  text-align: justify;
}
.nyans-guide .c-lead--left {
  text-align: left;
}
.nyans-guide .c-lead--right {
  text-align: right;
}
.nyans-guide .c-lead--center {
  text-align: center;
}
.nyans-guide .form__section--content .c-lead {
  width: 100%;
}
.nyans-guide .c-bg-area {
  background-color: var(--bg-color);
  border: 1px solid var(--bg-border-color);
  padding: var(--bg-padding-block) var(--bg-padding-inline);
  border-radius: 4px;
}

@media screen and (max-width: 767px) {.nyans-guide .c-bg-area {
    border: 0;
    border-radius: 0;
    padding: 30px 15px;
  }

}
.nyans-guide .c-navigation {
  width: 100%;
  max-width: 240px;
}
.nyans-guide .c-navigation-list {
  counter-reset: count_menu;
}
.nyans-guide .c-navigation-list__heading {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6154;
  padding: 10px 15px;
}

@media screen and (min-width: 768px) {.nyans-guide .c-navigation-list__heading {
    border-radius: 4px 4px 0 0;
    font-size: 13px;
  }

}
.nyans-guide .c-navigation-list__item {
  counter-increment: count_menu;
  list-style: none;
}
.nyans-guide .c-navigation-list__item a {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 17px 33px 18px 17px;
  border-top: 1px dotted var(--color-gray-300);
  font-size: 13px;
  line-height: 1.6;
  color: inherit;
  text-decoration: none;
}
.nyans-guide .c-navigation-list__item a::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 11px;
  width: 9px;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.192%22%20height%3D%229.192%22%20viewBox%3D%220%200%209.192%209.192%22%3E%3Cpath%20d%3D%22M4745.777%2C629.715v6h6%22%20transform%3D%22translate(2914.738%203809.886)%20rotate(-135)%22%20fill%3D%22none%22%20stroke%3D%22%23707070%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E") no-repeat center/contain;
  flex-shrink: 0;
}
.nyans-guide .c-navigation-list__item.active {
  background-color: var(--color-secondary);
}
.nyans-guide .c-navigation-list__item:last-child a {
  border-bottom: 1px dotted var(--color-gray-300);
}
.nyans-guide .c-navigation-list--num a::before {
  content: counter(count_menu) ".";
}
.nyans-guide [data-page="guide"] .c-navigation-list--num a::before {
  content: none;
}
.nyans-guide [data-page="guide"] .c-navigation-list--num {
  counter-reset: count_menu;
}
.nyans-guide [data-page="guide"] .c-navigation-list--num .c-navigation-list__item {
  counter-increment: count_menu;
}
.nyans-guide [data-page="guide"] .c-navigation-list--num .c-navigation-list__item a p {
  display: flex;
}
.nyans-guide [data-page="guide"] .c-navigation-list--num .c-navigation-list__item a p::before {
  content: counter(count_menu) ".";
}
.nyans-guide .c-navigation-list__accordion {
  width: 100%;
}
.nyans-guide .c-navigation-list__accordion--heading {
  height: 35px;
  border-top: 1px dotted var(--color-gray-300);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  line-height: 1.3;
  list-style: none;
  padding-block: 5px;
  padding-inline-start: 10px;
  padding-inline-end: 35px;
  position: relative;
}

@media screen and (min-width: 768px) {.nyans-guide .c-navigation-list__accordion--heading {
    height: auto;
    line-height: 1.6;
    padding-block: 17.5px;
    padding-inline-start: 17px;
    padding-inline-end: 33px;
  }

}
.nyans-guide .c-navigation-list__accordion--heading::-webkit-details-marker {
  display: none;
}
.nyans-guide .c-navigation-list__accordion--heading::after {
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.021%22%20height%3D%2212.021%22%20viewBox%3D%220%200%2012.021%2012.021%22%3E%3Cpath%20d%3D%22M4745.777%2C629.715v8h8%22%20transform%3D%22translate(-3800.693%202916.153)%20rotate(-45)%22%20fill%3D%22none%22%20stroke%3D%22%232E363A%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: transform var(--transition-default);
}

@media screen and (min-width: 768px) {.nyans-guide .c-navigation-list__accordion--heading::after {
    width: 9px;
    height: 9px;
    right: 10px;
  }

}
.nyans-guide .c-navigation-list__accordion[open] .c-navigation-list__accordion--heading::after {
  transform: translateY(-50%) rotate(180deg);
}
.nyans-guide .c-navigation-list__accordion--item a {
  border: none;
}
.nyans-guide .c-navigation-list__accordion--item a::after {
  content: none;
}
.nyans-guide .c-navigation-list__accordion--item.active {
  background-color: var(--color-secondary);
}
.nyans-guide .c-navigation--sticky {
  position: sticky;
  top: calc(var(--height-header) + 1svh);
}

@media screen and (min-width: 768px) {.nyans-guide .c-navigation--sticky {
    max-height: 70vh;
    overflow: auto;
  }

}
.nyans-guide .c-navigation.js-index-highlight .--active {
  background-color: var(--color-secondary);
}

@media screen and (max-width: 767px) {.nyans-guide .c-navigation {
    max-width: none;
    width: var(--inner-width);
    margin: 0 auto;
  }
.nyans-guide .c-navigation-list__item a {
    display: flex;
    align-items: center;
    height: 46px;
    padding: 5px 35px 5px 10px;
    font-size: 13px;
    line-height: 1.3;
  }
.nyans-guide .c-navigation-list__item a::after {
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(-90deg);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.021%22%20height%3D%2212.021%22%20viewBox%3D%220%200%2012.021%2012.021%22%3E%3Cpath%20d%3D%22M4745.777%2C629.715v8h8%22%20transform%3D%22translate(-3800.693%202916.153)%20rotate(-45)%22%20fill%3D%22none%22%20stroke%3D%22%232E363A%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E");
  }
.nyans-guide .c-navigation--sticky {
    position: static;
  }

}
.nyans-guide .c-siteinfo {
  margin-inline: auto;
  background-color: var(--color-gray-100);
  border-radius: 4px;
  text-align: center;
  line-height: 1.8571;
}

@media screen and (min-width: 768px) {.nyans-guide .c-siteinfo {
    max-width: 700px;
    padding: 40px 30px;
  }

}

@media screen and (max-width: 767px) {.nyans-guide .c-siteinfo {
    width: 345px;
    padding: 30px 20px;
  }

}
.nyans-guide .c-siteinfo__bold {
  font-weight: var(--fw-bold);
}
.nyans-guide .c-siteinfo__bold + .c-siteinfo__text {
  margin-top: 15px;
}


  /* nyans: 本文見出しの連番をテラコッタに（W2 実サイト準拠） */
  .nyans-guide .heading--num .static-section__heading--large::before {
    color: var(--color-primary);
    margin-right: 6px;
  }
