* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #41566d;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
    line-height: 1.5;
    font-weight: 400;
    background:
    radial-gradient(circle at 8% 10%, rgba(185,229,255,.30) 0 66px, rgba(185,229,255,.16) 84px, transparent 114px),
    radial-gradient(circle at 30% 18%, rgba(255,221,232,.28) 0 58px, rgba(255,221,232,.15) 74px, transparent 106px),
    radial-gradient(circle at 58% 8%, rgba(207,244,223,.28) 0 62px, rgba(207,244,223,.15) 82px, transparent 110px),
    radial-gradient(circle at 82% 16%, rgba(255,243,191,.30) 0 58px, rgba(255,243,191,.16) 74px, transparent 106px),

    radial-gradient(circle at 18% 38%, rgba(255,243,191,.25) 0 54px, rgba(255,243,191,.13) 72px, transparent 98px),
    radial-gradient(circle at 45% 42%, rgba(185,229,255,.28) 0 66px, rgba(185,229,255,.15) 84px, transparent 114px),
    radial-gradient(circle at 72% 36%, rgba(255,221,232,.25) 0 58px, rgba(255,221,232,.13) 74px, transparent 103px),

    radial-gradient(circle at 10% 68%, rgba(207,244,223,.27) 0 62px, rgba(207,244,223,.14) 82px, transparent 108px),
    radial-gradient(circle at 35% 78%, rgba(185,229,255,.24) 0 54px, rgba(185,229,255,.12) 72px, transparent 98px),
    radial-gradient(circle at 62% 72%, rgba(255,243,191,.27) 0 58px, rgba(255,243,191,.14) 74px, transparent 106px),
    radial-gradient(circle at 88% 66%, rgba(207,244,223,.27) 0 58px, rgba(207,244,223,.14) 74px, transparent 106px),

    radial-gradient(circle at 22% 94%, rgba(255,221,232,.24) 0 54px, rgba(255,221,232,.12) 72px, transparent 98px),
    radial-gradient(circle at 78% 92%, rgba(185,229,255,.27) 0 62px, rgba(185,229,255,.14) 82px, transparent 108px),
    #ffffff;
}

a {
  color: inherit;
}

li {
  list-style: none;
}

.-gennari_color{
  color: #af6561;
}

.-girigiri_color{
  color: #aa7a22;
}

.-ikiiki_color{
  color: #165f88;
}

.-yuruyuru_color{
  color: #5a9f33;
}

.bold {
  font-weight: 600;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.w-100 {
  width: 100% !important;
}

.site-header {
  background: linear-gradient(90deg, #ffffff 0%, #f8fcff 100%);
  border-bottom: 1px solid #d7eaf6;
}

.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  margin: 0;
  color: #5A9AE8;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #8dd5ef 0%, #72a9ef 100%);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
  border-radius: 2px;
}

	/* PCではスマホメニューを非表示 */
.sp-menu {
  display: none;
}

@media (max-width: 900px) {

  .menu-button {
    display: flex;
    position: fixed;
    top: 12px;
    right: 14px;
    z-index: 9999;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0.75;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  }
	

 /* この下に、既存のスマホ用CSSが続きます */

.sp-menu {
  display: none;
  position: fixed;
  top: 60px;
  right: 12px;
  left: auto;
  z-index: 9998;
  width: 82%;
  max-width: 380px;
  max-height: calc(100vh - 75px);
  padding: 10px 14px 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.97);
  overflow-y: auto;
  border: 1px solid #d7eaf6;
  border-radius: 14px;
  box-shadow: -6px 4px 18px rgba(0, 0, 0, 0.18);
}

.sp-menu.is-open {
  display: block;
}

.sp-menu a {
  display: block;
  padding: 12px 0;
  color: #47627d;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #e4eef6;
}

} /* @media (max-width: 900px) の終了 */


.breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  color: #6e8094;
  font-size: 14px;
}

.breadcrumb a {
  color: #5A9AE8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb span {
  margin-left: 8px;
}

.page-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px 60px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.side-menu {
  position: sticky;
  top: 24px;
  padding: 22px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  border: 1px solid #d9edf8;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(90, 145, 190, 0.08);
}

.side-menu a {
  display: flex;
  flex-direction: column;
  padding: 10px 4px;
  color: #47627d;
  font-weight: 500;
  text-decoration: none;
  border-left: 4px solid transparent;
  padding-left: 14px;
  transition: all .2s ease;
}

.side-menu a + a {
  margin-top: 14px;
}

.side-menu a:hover {
  color: inherit;
}

.side-menu .menu-chapter-01 {
  border-left-color: #5A9AE8;
}

.side-menu .menu-chapter-01:hover {
  background: #EEF6FF;
}

.side-menu .menu-chapter-01 span,
.side-menu .menu-chapter-01:hover span {
  color: #5A9AE8;
}

.side-menu .menu-chapter-02 {
  border-left-color: #59C9B8;
}

.side-menu .menu-chapter-02:hover {
  background: #EFFBF8;
}

.side-menu .menu-chapter-02 span,
.side-menu .menu-chapter-02:hover span {
  color: #59C9B8;
}

.side-menu .menu-chapter-03 {
  border-left-color: #F29A74;
}

.side-menu .menu-chapter-03:hover {
  background: #FFF4EF;
}

.side-menu .menu-chapter-03 span,
.side-menu .menu-chapter-03:hover span {
  color: #F29A74;
}

.side-menu .side-menu-list{
  padding: 0;
}

@media (max-width: 768px) {
  .sub-menu{
    padding:0;
  }
}

.side-menu .side-menu-list .sub-menu a{
  padding: 5px 4px;
  line-height: 1.4;
}

/* PCのみ */

.menu_item {
  margin-bottom: 24px;
}

.menu_item:nth-last-child {
  margin-bottom: 0px;

}

.main-visual {
  margin-bottom: 36px;
  padding: 50px 48px;
  background: #ffffff;
  border: 1px solid #dceef8;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(100, 150, 190, 0.08);
  position: relative;
  overflow: hidden;
}

.main-visual::before,
.main-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
  pointer-events: none;
}

.main-visual::before {
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.9);
  right: -40px;
  top: -50px;
}

.main-visual::after {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.75);
  right: 120px;
  bottom: -30px;
}

.main-visual__label,
.main-visual__title,
.main-visual__text {
  position: relative;
  z-index: 1;
}

.main-visual__label {
  margin: 0 0 14px;
  color: #6ba9df;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.main-visual__title {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}

.main-visual__chapter-title {
  color: #47627d;
}

.section {
  margin-top: 36px;
}

.section-title {
  margin: 0 0 22px;
  padding: 0 0 12px 18px;
  color: #5A9AE8;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 4px solid #d7ecfa;
  border-left: 6px solid #8bc8f6;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: -6px;
  bottom: -4px;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #8bc8f6 0%, #b9e7f8 100%);
}

.content-box {
  padding: 30px 32px;
  background: #fff;
  border: 1px solid #dceef8;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(90, 145, 190, 0.08);
}

.content-box p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.guidebook-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 28px auto 0;
}

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.chapter-card {
  min-height: 340px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #5a99d9;
  background: linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
  border: 1px solid #dceef8;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(90, 145, 190, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chapter-no {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #73a9e8;
  margin-bottom: 10px;
}

.chapter-card h3 {
  margin: 0 0 18px;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #5A9AE8;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.chapter-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(90, 145, 190, 0.14);
}

.chapter-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 600;
  color: #5A9AE8;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.chapter-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #6f8092;
  word-break: normal;
  overflow-wrap: normal;
}

.chapter-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
}

.chapter-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chapter-card h3,
.chapter-card p {
  padding-right: 0;
}


/*==========================
  章ごとのカラー
==========================*/

.chapter-card-01 {
  border-color: #d6e9ff;
}

.chapter-card-01 .chapter-no,
.chapter-card-01 h3 {
  color: #5A9AE8;
}

.chapter-card-01:hover {
  box-shadow: 0 16px 32px rgba(90,154,232,.18);
}

.chapter-card-02 {
  border-color: #d5f3ee;
}

.chapter-card-02 .chapter-no,
.chapter-card-02 h3 {
  color: #59C9B8;
}

.chapter-card-02:hover {
  box-shadow: 0 16px 32px rgba(89,201,184,.18);
}

.chapter-card-03 {
  border-color: #f8e2d8;
}

.chapter-card-03 .chapter-no,
.chapter-card-03 h3 {
  color: #F29A74;
}

.chapter-card-03:hover {
  box-shadow: 0 16px 32px rgba(242,154,116,.18);
}

.print-area {
  margin-top: 38px;
  text-align: center;
}

.print-button {
  display: inline-block;
  padding: 14px 34px;
  color: #fff;
  background: linear-gradient(135deg, #8dd5ef 0%, #72a9ef 100%);
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(114, 169, 239, 0.25);
}

.site-footer {
  padding: 34px 20px;
  color: #6d7f91;
  background: linear-gradient(90deg, #ffffff 0%, #f8fcff 100%);
  border-top: 1px solid #d7eaf6;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

/* スマホ・タブレット表示 */
@media (max-width: 900px) {

  .page-layout {
    display: block;
  }

  .side-menu {
    display: none;
  }

  .main-visual {
    padding: 34px 26px;
  }

  .main-visual__title {
    font-size: 34px;
  }

  .main-visual__text {
    font-size: 16px;
  }

  .section-title {
    font-size: 25px;
  }

  .chapter-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header__inner,
  .breadcrumb,
  .page-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-visual__title {
    font-size: 39px;
  }
}

@media (max-width: 900px) {
  .site-logo {
    font-size: 22px;
  }
}


@media (max-width: 560px) {
  .site-header__inner,
  .breadcrumb,
  .page-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-visual {
    padding: 28px 20px;
  }

  .main-visual__title {
    font-size: 39px;
  }

  .content-box {
    padding: 24px 20px;
  }

  .content-box p {
    font-size: 20px;
  }
}

.side-menu a span {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.side-menu a small {
    margin-top: 6px;
    font-size: 20px;
    line-height: 1.5;
	font-weight: 600;
}


.side-menu .menu-chapter-00 {
  border-left: 4px solid #e3e3e3;
  padding-left: 12px;
}

.side-menu .menu-chapter-01 span {
  color: #5A9AE8;
}

.side-menu .menu-chapter-01 {
  border-left: 4px solid #5A9AE8;
  padding-left: 12px;
}

.side-menu .menu-chapter-01 span {
  color: #5A9AE8;
}

.side-menu .menu-chapter-02 {
  border-left: 4px solid #59C9B8;
  padding-left: 12px;
}

.side-menu .menu-chapter-02 span {
  color: #59C9B8;
}

.side-menu .menu-chapter-03 {
  border-left: 4px solid #F29A74;
  padding-left: 12px;
}

.side-menu .menu-chapter-03 span {
  color: #F29A74;
}

.side-menu a span,
.sp-menu a span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.side-menu a span img,
.sp-menu a span img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

ul {
  padding-left: 16px;
}

.sp-br {
  display: none;
}

dt {
  font-weight: 600;
  color: #5A9AE8;
  font-size: 1.25rem;
}

dd {
  margin-inline-start: 1rem;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

ol {
  list-style: none;
  counter-reset: number;
  padding-left: 0;
}
ol li {
  position: relative;
  padding-left: 1.5em;
}
ol li p.number_list_ttl {
  color: #5A9AE8;
  font-weight: 700;
}
ol li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 16px;
  color: #5A9AE8;
  border: 2px solid #5A9AE8;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 16px;
}

/*==========================
  flex
==========================*/
.flex{
  display: flex;
}

.flex_img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.flex_text{
  padding-left: 20px;
  width: 100%;
}

.content-box-header.flex{
  justify-content: space-between;
  flex-direction: row-reverse;
}

/*==========================
  要因
==========================*/

.work_stress_factor_list li{
  font-size: 1.25rem;
}

/*==========================
  content-box-header
==========================*/
.content-box-header {
  margin-bottom: 24px;
}

.content-box-header_img{
  width: 20%;
  flex-shrink: 0;
}

/*==========================
  保健師コメント
==========================*/

.-hokenshi_comment,
.-stress_type {
  margin-top: 36px;
}

.content-box_h3_measure {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
  color: #5A9AE8;
}

p.stress_cause_ttl {
  margin: 0 0 24px;
  font-size: 1.1rem;
  font-weight: 600;
}

.flex_text,
.content-box_text {
  position: relative;
  background: #f5f9fc;
  border: 1px solid #d8e7f0;
  border-radius: 12px;
  padding: 24px;
  margin-left: 20px;
}

.content-box_text {
  margin-left: 0px;
  margin-top: 24px;
}

.flex_text p{
  font-size: 1.25rem;
}

/* 吹き出しの三角 */
.flex_text::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 12px 0;
  border-color: transparent #d8e7f0 transparent transparent;
}

.flex_text::after {
  content: "";
  position: absolute;
  top: 25px;
  left: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 11px 0;
  border-color: transparent #f5f9fc transparent transparent;
}

p.hokenshi_comment_ttl {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #5A9AE8;
  font-weight: 600;
}

@media (max-width: 560px) {

  .content-box_h3_measure {
    font-size: 22px;
  }
  .content-box.-hokenshi_comment .flex,
  .-stress_type .flex{
    flex-wrap: wrap;
    justify-content: center;
  }
  .flex_text {
    margin-left: 0;
    margin-top: 16px;
    padding: 20px;
  }
  .flex_text::before {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 12px 12px 12px;
    border-color: transparent transparent #d8e7f0 transparent;
  }
  .flex_text::after {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 11px 11px 11px;
    border-color: transparent transparent #f5f9fc transparent;
  }
  p.hokenshi_comment_ttl {
    font-size: 20px;
  }

  p.stress_cause_ttl {
    margin: 0px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .work_stress_factor_list {
    padding-left: 16px;
  }
  .work_stress_factor_list li{
    font-size: 1.25rem;
  }

/*==========================
  content-box-header
==========================*/

  .content-box-header .content-box-header_ttl{
    margin-top: 24px;
    width: 100%;
  }
  .content-box-header .content-box-header_img{
    width: 45%;
  }
}

/*==========================
  職場状況
==========================*/

.syokubazyoukyou-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 24px 0 32px;
}

.syokubazyoukyou-list_item {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3eaf0;
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
    transition: all .3s ease;
}

/* タイトル帯 */
p.syokubazyoukyou-list_item_ttl {
    margin: 0;
    padding: 16px 24px;
    background: #f5fbfe;
    border-bottom: 1px solid #d9eef8;
    color: #5A9AE8;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
}

/* 説明文 */
p.syokubazyoukyou-list_item_txt {
    margin: 0;
    padding: 20px 24px 24px;
    color: #555;
    font-size: 1em;
    line-height: 1.8;
}

/* タブレット */
@media screen and (max-width: 1024px) {
  ol {
    padding-left: 0;
  }
    .syokubazyoukyou-list {
        gap: 20px;
    }

    p.syokubazyoukyou-list_item_ttl {
        padding: 14px 20px;
    }

    p.syokubazyoukyou-list_item_txt {
        padding: 18px 20px 20px;
    }

    .flex .flex_img {
      width: 28%;
      height: auto;
    }
}

/* スマホ */
@media screen and (max-width: 767px) {

  .-hokenshi_comment .flex{
    flex-wrap: wrap;
    justify-content: center;
  }

  #about-social-support-hint1 {
    margin-bottom: 1em;
  }

  .syokubazyoukyou-list {
      grid-template-columns: 1fr;
      gap: 16px;
  }

  p.syokubazyoukyou-list_item_ttl {
      font-size: 1.25rem;
      padding: 12px 16px;
  }

  p.syokubazyoukyou-list_item_txt {
      padding: 16px;
      font-size: 1.2rem;
      line-height: 1.7;
  }
}

/*==========================
  見出しデザイン
==========================*/

.heading-01 {
  padding: 0em .5em;
  border-left: 6px solid #5A9AE8;
  font-weight: 600;
  font-size: 1.7rem;
}

.heading-02 {
  position: relative;
  margin: 0 0 34px;
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1;
  color: #5A9AE8;
}

.heading-02::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 50px;
  height: 3px;
  background: #5A9AE8;
}

.heading-03 {
    position: relative;
    padding-left: 20px;
    font-weight: 600;
    line-height: 1.6;
}

.heading-03::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 10px;
    height: 10px;
    background: #5A9AE8;
    border-radius: 50%;
}

@media (max-width: 768px) {
  .heading-01 {
  padding: 0em .5em;
  border-left: 4px solid #5A9AE8;
  font-weight: 600;
  font-size: 1.5rem;
  }

  .heading-02 {
    position: relative;
    margin: 0 0 34px;
    font-size: 1.35rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1;
    color: #5A9AE8;
  }
}

@media (max-width: 560px) {
  .chapter-card p {
    font-size: 20px;
  }
}


@media (max-width: 768px) {
  .sp-br {
    display: block;
  }

  dt {
    font-size: 1.25em;
  }

  dd {
    font-size: 1.25em;
  }
}

@media (max-width: 560px) {
  .chapter-card p {
    font-size: 20px;
  }
}

/*==========================
  PCサイドメニュー・サブメニュー
==========================*/

.side-menu .side-menu-list .sub-menu {
  margin: 4px 0 0;
  padding: 0;
}

.side-menu .side-menu-list .sub-menu li {
  margin: 0;
  padding: 0;
}

.side-menu .side-menu-list .sub-menu li a {
  position: relative;
  display: block;
  padding: 5px 4px 5px 16px;
  line-height: 1.4;
  border-left: none;
}

/* ▶ マーク共通 */
.side-menu .side-menu-list .sub-menu li a::before {
  content: "▶";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 1;
}

/* はじめに */
.side-menu .side-menu-list > .menu_item:nth-child(1)
.sub-menu li a::before {
  color: #e3e3e3;
}

/* 第1章 */
.side-menu .side-menu-list > .menu_item:nth-child(2)
.sub-menu li a::before {
  color: #5A9AE8;
}

/* 第2章 */
.side-menu .side-menu-list > .menu_item:nth-child(3)
.sub-menu li a::before {
  color: #59C9B8;
}

/* 第3章 */
.side-menu .side-menu-list > .menu_item:nth-child(4)
.sub-menu li a::before {
  color: #F29A74;
}


/*================================
  スマホメニュー・階層を明確にする
================================*/
@media screen and (max-width: 900px) {

  /* 章ごとの色 */
  .sp-menu > ul > li:nth-child(1) {
    --chapter-color: #d9d9d9;
  }

  .sp-menu > ul > li:nth-child(2) {
    --chapter-color: #5a9ae8;
  }

  .sp-menu > ul > li:nth-child(3) {
    --chapter-color: #59c9b8;
  }

  .sp-menu > ul > li:nth-child(4) {
    --chapter-color: #f29a74;
  }

  /* 各章全体 */
  .sp-menu > ul > li {
    margin: 0 0 20px;
    padding: 0;
  }

  /* 章タイトル部分 */
  .sp-menu > ul > li > a {
    display: block;
    padding: 12px 14px;
    border-left: 5px solid var(--chapter-color);
    background-color: #f7faff;
    color: #47627d;
    font-size: 1.05rem;
    font-weight: bold;
    line-height: 1.5;
    text-decoration: none;
  }

  /* 「第1章」など */
  .sp-menu > ul > li > a > span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    color: var(--chapter-color);
    font-size: 0.9rem;
    font-weight: bold;
  }

  /* 章アイコン */
  .sp-menu > ul > li > a > span img {
    width: 24px;
    height: auto;
  }

  /* はじめにの文字色 */
  .sp-menu > ul > li:first-child > a > span {
    color: #47627d;
  }

  /* 章内メニュー全体 */
  .sp-menu .sub-menu {
    margin: 8px 0 0 18px;
    padding: 2px 0 2px 14px;
    border-left: 3px solid var(--chapter-color);
  }

  /* 章内メニュー各項目 */
  .sp-menu .sub-menu li {
    margin: 0;
    padding: 0;
  }

  .sp-menu .sub-menu li a {
    position: relative;
    display: block;
    padding: 8px 6px 8px 18px;
    color: #47627d;
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.5;
    text-decoration: none;
  }

  /* ▶マーク */
  .sp-menu .sub-menu li a::before {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--chapter-color);
    font-size: 8px;
    line-height: 1;
  }
}


/*==========================
  メインビジュアルの章タイトル
==========================*/

/* 「第2章」とアイコン */
.main-visual__chapter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1.2;
}

/* タイトル内のアイコン */
.main-visual__chapter img {
  width: 52px;
  height: auto;
  flex-shrink: 0;
}

/* 「あなたの結果を理解する」 */
.main-visual__chapter-title {
  display: inline-block;
  color: #47627d;
  font-weight: 700;
  line-height: 1.35;
}

/* 第1章 */
.main-visual__title.chapter-01 .main-visual__chapter {
  color: #5A9AE8;
}

/* 第2章 */
.main-visual__title.chapter-02 .main-visual__chapter {
  color: #59C9B8;
}

/* 第3章 */
.main-visual__title.chapter-03 .main-visual__chapter {
  color: #F29A74;
}

.-hokenshi_comment .content-box-header {
  justify-content: flex-start;
  flex-direction: row;
}

.-hokenshi_comment .content-box-header_ttl {
  width: 100%;
  margin-left: 10px;
}

/* 保健師コメント同士の区切り線 */
.-hokenshi_comment {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #d9e2ea;
}

.-hokenshi_comment:first-child {
  margin-top: 0;
}

.site-logo a {
  color: inherit;
  text-decoration: none;
}

.site-logo a:hover {
  text-decoration: none;
}