/************************************
** Normalize CSS v8.0.1
************************************/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}
/* ------------------------------ */
/* add */
/* ------------------------------ */
body {
  font-family: var(--font-family_noto-sans);
  color: var(--color_black);
  background-color: var(--color_pale);
}
ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin: 0;
  letter-spacing: 0.1em;
}
/* ------------------------------ */
/* fonts */
/* ------------------------------ */
/* NotoSansJP-Regular */
/* @font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff"),
    url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
} */
/* ------------------------------ */
/* variables (変数) */
/* ------------------------------ */
:root {
  /* ---------- color ---------- */
  /* --color_primary: #062a87; */
  --color_accent: #f3d896;
  --color_base: #e6ebf6;
  --color_pale: #f9fafc;
  --color_main: #0072bc;
  --color_gray: #aab4bf;
  --color_gray2: #d7d7e1;
  --color_dark-gray: #282f3c;
  --color_black: #312f2d;
  --color_white: #fefefe;
  /* ---------- font-family ---------- */
  --font-family_logo: "Mochiy Pop P One", sans-serif;
  --font-family_noto-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Meiryo", sans-serif;
  --font-family_OpenSans: "Open+Sans", "Segoe UI", "Helvetica Neue", sans-serif;
  /* ---------- font-size ---------- */
  --font-size_13: 13px;
  --font-size_16: 16px;
  --font-size_16-20: clamp(16px, 2.6vw, 20px);
  --font-size_20-24: clamp(20px, 3.3vw, 24px);
  --font-size_24-32: clamp(24px, 4vw, 32px);
  --font-size_20-40: clamp(20px, 3.3vw, 40px);
  /* ---------- margin ---------- */
  --margin_8: 8px;
  --margin_16: 16px;
  --margin_24: 24px;
  --margin_40: 40px;
  --margin_16-24: clamp(16px, 2.6vw, 24px);
  --margin_16-40: clamp(16px, 2.6vw, 40px);
  --margin_40-80: clamp(40px, 6.6vw, 80px);
  --margin_80-160: clamp(80px, 13.3vw, 160px);
}
/************************************
** Micromodal
************************************/
[data-micromodal-transition] {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

[data-micromodal-transition].is-open {
  opacity: 1;
}
/************************************
** 改行ありなし
************************************/
@media screen and (min-width: 1199px) {
  .pc-br {
    display: block;
  }
}
.sp-br {
  display: none;
}
@media screen and (max-width: 599px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}
/************************************
** layout
************************************/
.l-container {
  max-width: 1200px;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .l-container {
    max-width: 700px;
    padding-right: 0;
    padding-left: 0;
  }
}

/*** header *******************/
.l-header {
  width: 100%;
}

.l-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}

@media (max-width: 1199px) {
  .l-header__wrap {
    width: 90%;
    margin: 0 auto;
    height: auto;
  }
}
@media (max-width: 1199px) {
  .l-header {
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .l-header__logo {
    margin-right: auto;
    height: 100%;
    display: flex;
    align-items: center;
  }
}

/* 初期ヘッダー */
#site-header {
  position: relative;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 1199px) {
  #site-header {
    width: 100%;
    max-width: 700px;
    margin: 24px auto;
  }
}
/* スクロール後に現れる固定ヘッダー */
#fixed-header {
  position: fixed;
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  z-index: 1000;
  backdrop-filter: blur(10px);
  height: 90px;
}
@media (max-width: 599px) {
  #fixed-header {
    height: 65px;
  }
}
/* 表示状態 */
#fixed-header.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transform: translateX(-50%);
  left: 50%;
}
#site-header.is-hidden {
  opacity: 0;
  visibility: hidden;
}
#fixed-header .l-header__logo {
  width: 90%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.l-header__logo-img {
}
.l-header__logo-link {
  font-family: var(--font-family_logo);
  font-weight: 400;
  font-size: var(--font-size_20-40);
  color: var(--color_main);
  text-decoration: none;
}

.c-title {
  font-weight: bold;
  font-size: var(--font-size_16-20);
  display: block;
  margin-bottom: var(--margin_16-24);
}
.c-search.p-header__search {
  padding-right: 16px;
}
@media (max-width: 1199px) {
  .c-search.p-header__search {
    padding-right: 0;
  }
}
@media (max-width: 1199px) {
  .c-search {
    margin-left: auto;
  }
}
.c-search form {
  display: flex;
  gap: 8px;
}
@media (max-width: 1199px) {
  .c-search form {
    gap: 4px;
  }
}
.c-search-input::placeholder {
  color: var(--color_main);
}

.c-search-input,
.c-search-button {
  border: 2px solid var(--color_main);
  width: 256px;
}
@media (max-width: 1199px) {
  .c-search-input,
  .c-search-button {
    width: 150px;
  }
}
@media (max-width: 1199px) {
  .c-search-input,
  .c-search-button {
    width: 133px;
  }
}
.c-search-input {
  border-radius: 16px;
  padding-left: var(--margin_16);
}
.c-search-button {
  background: #0072bc;
  color: #fefefe;
  background-image: url("../images/icon/search.svg");
  background-size: 26px;
  background-repeat: no-repeat;
  background-position: 60% 45%;
  font-weight: 400;
  letter-spacing: 2px;
  padding-left: 10px;
  line-height: 2;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

/*** pagination *******************/
.c-pagination {
  text-align: center;
  margin: var(--margin_40-80) 0;
}

.c-pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  gap: 8px;
}

.c-pagination li:not(:has(.next, .prev)) a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color_main);
  padding-top: 1px;
  padding-left: 2px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination li:has(.current) {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color_main);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination li:has(.dots) {
  width: 40px;
  height: 40px;
  padding-top: 1px;
  padding-left: 2px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-pagination li:has(.next, .prev) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-pagination li a,
.c-pagination li span,
.c-pagination li .dots {
  font-weight: bold;
  text-decoration: none;
  color: var(--color_main);
  position: relative;
  top: 1px;
  left: 1px;
}
.c-pagination li:has(.current) {
  background-color: var(--color_main);
}
.c-pagination li .current {
  color: var(--color_white);
}
.c-articleHead {
  padding: 8px 0 24px;
  margin-bottom: 40px;
  border-bottom: 2px solid #e6ebf6;
}

.c-articleHead-description span.c-articleHead-category {
  display: inline-block;
  background: #0072bc;
  color: white;
  padding-bottom: 3px;
  padding-left: 4px;
  padding-right: 6px;
  line-height: 1.4;
  border-radius: 4px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.c-article__thumbnail {
  width: 100%;
  height: auto;
}
/*** 前後ナビゲーション *******************/

.c-articleNavi {
  border-top: 1px solid var(--color_main);
  border-bottom: 1px solid var(--color_main);
  padding: 8px 16px;
  margin-bottom: var(--margin_40-80);
}
.c-articleNavi__inner {
  display: flex;
}
.c-articleNavi__content {
  color: var(--color_main);
  word-break: break-all;
}
.c-articleNavi__category {
  font-weight: bold;
  font-size: 15px;
  display: block;
  margin-bottom: 8px;
}
.c-articleNavi__prev,
.c-articleNavi__next {
  width: 50%;
  padding: 32px 0;
  text-decoration: none;
  color: black;
}
.c-articleNavi__prev {
  text-align: left;
  border-right: 1px solid #333;
}
.c-articleNavi__inner:not(:has(.c-articleNavi__next)) .c-articleNavi__prev {
  border: none;
}

.c-articleNavi__next {
  text-align: right;
}

/*** 関連記事 *******************/
.c-related {
}
.c-related__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1%;
}
.c-related__title {
  font-weight: bold;
  font-size: 15px;
  display: block;
  margin-bottom: var(--margin_16-24);
}

.c-related__item {
  width: 100%;
}

.c-related__item-link {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  transition: 0.3s;
  padding: 8px;
  border-radius: 4px;
}
.c-related__item-link img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.c-related__item-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
}

.c-related__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.c-related__item-link:hover img {
  transform: scale(1.1);
}

/*** wrapper *******************/
.l-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 160px;
}
@media (max-width: 1199px) {
  .l-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.l-main {
  width: 100%;
  background-color: var(--color_white);
  padding: var(--margin_40-80) var(--margin_16-40);
  border-radius: 8px;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .l-main {
    width: 90%;
    margin: 0 auto;
  }
}
/************************************
** contents
************************************/

.p-submenu {
  margin-bottom: var(--margin_16-40);
}
.p-submenu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1199px) {
  .p-submenu__list {
    gap: 4px;
    width: 90%;
    margin: 0 auto;
  }
}
.p-submenu__item {
  width: 100%;
}
.p-submenu__link {
  border-radius: 8px;
  background-color: var(--color_main);
  height: clamp(64px, 10.6vw, 110px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color_white);
  font-size: var(--font-size_16-20);
  font-weight: 600;
  text-decoration: none;
  padding: 4px;
}
.c-related__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
}
@media (max-width: 599px) {
  .c-related__list {
    gap: 24px;
  }
}
.c-related__item {
  width: calc((100% - 24px) / 3);
}

.c-related__link {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
  padding: 16px;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  transition: background-color 0.3s ease;
}
@media (max-width: 1199px) {
  .c-related__link {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 599px) {
  .c-related__list.is-sp-layout .c-related__link {
    padding: 0;
  }
}
@media (any-hover: hover) {
  .c-related__link:hover {
    background-color: var(--color_base, #f5f5f5);
  }

  .c-related__link:hover .c-related__image {
    transform: scale(1.1);
  }
}

.c-related__image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
}

.c-related__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 0;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-related__body {
  display: block;
  margin-top: 12px;
}

.c-related__content {
  margin-top: 8px;
}
@media (max-width: 599px) {
  .c-related__content {
    margin-top: 0;
  }
}
.c-related__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-related__category {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color_main);
}

.c-related__category::before {
  /* content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  background-image: url(../img/topics/icon/gradient-blue-round_icon.svg);
  background-size: cover;
  background-repeat: no-repeat; */
}

.c-related__date-wrapper,
.c-articleHead-date {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #888;
  align-items: center;
  margin-top: 6px;
}

.c-related__published-date,
.c-related__modified-date,
.c-articleHead-date__modified,
.c-articleHead-date__published {
  position: relative;
  padding-left: 22px;
  letter-spacing: 1px;
}
@media (max-width: 599px) {
  .c-related__published-date,
  .c-related__modified-date,
  .c-articleHead-date__modified,
  .c-articleHead-date__published {
    padding-left: 14px;
  }
  .c-related__modified-date {
    padding-right: 8px;
  }
}
.c-related__published-date::before,
.c-related__modified-date::before,
.c-articleHead-date__modified::before,
.c-articleHead-date__published::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-related__published-date::before,
.c-articleHead-date__published::before {
  background-image: url("../images/icon/time.svg");
  width: 17px;
  height: 17px;
}
@media (max-width: 599px) {
  .c-related__published-date::before,
  .c-articleHead-date__published::before {
    width: 13px;
    height: 13px;
  }
}
.c-related__modified-date::before,
.c-articleHead-date__modified::before {
  background-image: url("../images/icon/reload.svg");
  width: 15px;
  height: 15px;
}
@media (max-width: 599px) {
  .c-related__modified-date::before,
  .c-articleHead-date__modified::before {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 599px) {
  .c-related__list {
    flex-direction: column;
  }

  .c-related__item {
    width: 100%;
  }

  .c-related__link {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .c-related__image-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: auto;
  }

  .c-related__image {
    width: 100%;
    height: auto;
  }

  .c-related__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .c-related__category {
    font-size: 12px;
    margin: 0;
  }

  .c-related__title {
    font-size: 15px;
    margin: 0;
  }

  .c-related__date-wrapper {
    font-size: 12px;
    gap: 8px;
  }
}
.c-related__list.is-sp-layout {
  flex-direction: column;
}

.c-related__list.is-sp-layout .c-related__item {
  width: 100%;
}

.c-related__list.is-sp-layout .c-related__link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.c-related__list.is-sp-layout .c-related__image-wrapper {
  flex-shrink: 0;
  width: 35%;
  height: auto;
}
@media (max-width: 599px) {
  .c-related__image-wrapper {
    width: 50% !important;
    max-width: 150px;
  }
}

.c-related__list.is-sp-layout .c-related__image {
  width: 100%;
  height: auto;
}

.c-related__list.is-sp-layout .c-related__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 599px) {
  .c-related__body {
    margin-top: 0;
    gap: 0;
  }
}
.c-related__list.is-sp-layout .c-related__category {
  font-size: 12px;
  margin: 0;
}

.c-related__list.is-sp-layout .c-related__title {
  font-size: 15px;
  margin: 0;
}
@media (max-width: 599px) {
  .c-related__title {
    line-height: 1.2;
  }
}
.c-related__list.is-sp-layout .c-related__date-wrapper {
  font-size: 12px;
  gap: 8px;
}
@media (max-width: 599px) {
  .c-related__date-wrapper {
    gap: 2px !important;
  }
}
/* ==============================
   記事ページ用
================================ */
.c-single {
  padding-bottom: 80px;
}
.c-single h1 {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  letter-spacing: 0.07rem;
  margin-bottom: 16px;
  word-break: break-all;
}

.c-single h2 {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  border-left: 5px solid #0073aa;
  padding-left: 10px;
  margin-bottom: 16px;
  word-break: break-all;
}

/* H3見出しのスタイル */
.c-single h3 {
  font-size: 20px;
  color: #555;
  font-weight: bold;
  border-bottom: 2px solid #0073aa;
  padding-bottom: 5px;
  margin-bottom: 16px;
  word-break: break-all;
}
.c-single p {
  line-height: 2;
  margin-bottom: 16px;
  margin-top: 3.3rem;
  margin-bottom: 3.3rem;
  word-break: break-all;
}
.c-single li {
  line-height: 1.4;
}
.p-share__wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-share__wrap .tw-share-button {
  width: 85px;
  display: flex;
  align-items: center;
  height: 100%;
}
.p-share__wrap.is-sp {
  display: none;
}
@media (max-width: 599px) {
  .p-share__wrap.is-sp {
    display: flex;
  }
  .p-share__wrap.is-pc {
    display: none;
  }
}
/* ==============================
 人気記事
================================ */

/* ==============================
 カテゴリボタン
================================ */

/* ==============================
 サイドバー
================================ */
.p-sidebar {
  width: 332px;
  box-sizing: border-box;
  padding: var(--margin_16);
  flex-shrink: 0;
  min-height: 100vh;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .p-sidebar {
    width: 100%;
    margin: 0 auto;
    min-height: initial;
    padding: 0;
  }
}
.p-sidebar figure {
  max-width: 300px;
  width: 100%;
  height: auto;
}
.p-sidebar__container {
  overflow: visible;
  min-height: 100vh;
  height: 100%;
}
@media (max-width: 1199px) {
  .p-sidebar__container {
    min-height: auto;
  }
}
.p-sidebar__item {
  margin-bottom: var(--margin_40);
}
.sidebar-trigger {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.sidebar-trigger.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.p-sidebar__search {
  margin-bottom: var(--margin_16-24);
}
.p-sidebar__category {
  color: var(--color_main);
}
.p-sidebar__category-item {
  padding-left: 16px;
  color: var(--color_main);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-bottom: 8px;
  gap: 4px;
}
.p-sidebar__category-item::before {
  content: "";
  background-image: url("../images/icon/tag.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
}
.p-sidebar__category-item a {
  color: var(--color_main);
  font-size: var(--font-size_16);
  font-weight: 600;
  text-decoration: none;
}
/* ==============================
 記事内目次
================================ */
.c-single #ez-toc-container {
  margin: 32px 0 48px;
  box-sizing: border-box;
  padding: 10px 16px 2px 16px;
}
.c-single #ez-toc-container .ez-toc-title-container {
  display: flex;
  align-items: center;
}
.c-single #ez-toc-container .ez-toc-title {
  line-height: 34px;
}
.c-single #ez-toc-container nav {
  margin-top: var(--margin_8);
}
.c-single #ez-toc-container ul li {
  margin-left: var(--margin_16);
}
.c-single #ez-toc-container ul {
  margin-bottom: var(--margin_8);
}
/* ==============================
 サイドバー目次
================================ */
.p-sidebar__sticky {
  position: sticky;
  top: 90px; /* 固定開始位置 */
}
@media (max-width: 1199px) {
  .p-sidebar__sticky {
    display: none;
  }
}
.p-sidebar__sticky .ez-toc-title-container {
}
.p-sidebar__sticky .ez-toc-btn {
  display: none;
}

.p-sidebar__sticky .ez-toc-link {
  color: var(--color_main);
  letter-spacing: 1.4px;
  font-size: 14px;
}
.p-sidebar__sticky .active {
  font-weight: 900;
  font-size: var(--font-size_16);
}
.p-sidebar__sticky .ez-toc-list {
  margin: 0;
  padding: 0 !important;
  display: block !important;
}
.p-sidebar__sticky ul.ez-toc-list li {
  padding: 4px 0;
}
.p-sidebar__sticky ul.ez-toc-list li.active {
  background-color: var(--color_base);
}
.p-sidebar__sticky ul.ez-toc-list li a {
  padding-left: 16px;
}
.p-sidebar__title {
  margin-bottom: var(--margin_16);
  font-weight: 600;
  font-size: 20px;
}
.p-sidebar__profile-ImgContainer {
  text-align: center;
}
.p-sidebar__profile-ImgContainer img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.p-sidebar__profile-title {
  font-size: 15px;
  margin-top: -32px;
  color: var(--color_main);
  font-weight: 600;
}
.p-sidebar__profile-name {
  margin-top: -8px;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: var(--margin_16);
}
/* .p-sidebar__profile-TextContainer {
  padding-left: 16px;
} */
.p-sidebar__profile-text {
  margin-bottom: 16px;
  line-height: 1.7;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .p-sidebar__profile {
    width: 90%;
    margin: 0 auto;
    background-color: var(--color_white);
    padding: var(--margin_40-80) var(--margin_16-40);
    border-radius: 8px;
    box-sizing: border-box;
  }
}
.p-sidebar__profile-banner-container {
}

/* ==============================
 フッター
================================ */
.l-footer__copyright {
  background-color: var(--color_main);
  color: var(--color_white);
  font-weight: 400;
  text-align: center;
  padding: 4px 4px;
  font-size: 13px;
  letter-spacing: 1.4px;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
}
.u-fs-large {
  font-size: var(--font-size_20-24);
  font-weight: bold;
}
.u-underline-yellow {
  background: linear-gradient(transparent 60%, #ffe99a 0);
}
