@charset "UTF-8";
:root {
  --primary-color: #28385e;
  --secondary-color: #808080;
  --success-color: #295e33;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --info-color: #4d6bb3;
  --light-color: #f0f0f0;
  --dark-color: #212121;
  --background-color: #ffffff;
  --sub-background-color: #f2f2f2;
  --text-color: #333333;
  --sub-text-color: #545454;
  --link-color: #5b7ec4;
  --link-hover-color: #85a6e8;
  --border-color: #B8AFA6;
  --font-size: 16px;
  --font-family: Noto Sans JP, sans-serif;
  --header-background-color: #28385e;
  --header-text-color: #ffffff;
  --footer-background-color: #28385e;
  --footer-text-color: #ffffff;
  --sidebar-background-color: #f2f2f2;
  --sidebar-text-color: #333333;
}

/*==================================================	
/ CSS Reset
/=================================================*/
/* html5doctor.com Reset v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/) - http://cssreset.com */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html, body {
  width: 100%;
  height: 100%;
  font-size: var(--font-size);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-style: normal;
  text-box-trim: trim-both;
}

a {
  text-decoration: none;
  color: var(--link-color);
  transition: color 0.3s ease;
}

input[type=checkbox] {
  width: var(--font-size);
  height: var(--font-size);
}

small {
  font-size: 0.875rem;
}

.fw-bold {
  font-weight: 700;
}

.small {
  font-size: 0.875rem;
}

.d-block {
  display: block;
}

.lh-1 {
  line-height: 1;
}

.lh-sm {
  line-height: 1.25;
}

.lh-base {
  line-height: 1.7;
}

.lh-lg {
  line-height: 2;
}

.text-center {
  text-align: center;
}

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

.text-left {
  text-align: left;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-wrap {
  white-space: wrap !important;
}

.text-color {
  color: var(--text-color);
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.l-container {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-top: 70px;
  min-height: calc(100vh - 70px);
}
.l-container__main {
  flex: 1;
  order: 2;
  padding: 2rem;
}
@media (max-width: 576px) {
  .l-container__main {
    padding: 1rem;
  }
}
.l-container__side {
  order: 1;
  width: 300px;
  height: calc(100vh - 70px);
  background-color: var(--sidebar-background-color);
  box-sizing: border-box;
  color: var(--sidebar-text-color);
  padding: 2rem 1rem;
  position: sticky;
  top: 70px;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 900;
}

@media (max-width: 768px) {
  .l-container {
    display: block;
  }
  .l-container__main {
    order: 1;
  }
  .l-container__side {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    order: 2;
    width: 100%;
    padding: 0;
    position: fixed;
    top: 70px;
    left: 0;
    overflow-y: visible;
    z-index: 1000;
  }
  .l-container__side.is-active {
    display: block;
  }
}
.l-footer {
  background: var(--footer-background-color);
  box-sizing: border-box;
  color: var(--footer-text-color);
  padding: 1rem;
  width: 100%;
  z-index: 800;
}

.copyright {
  font-size: 0.875rem;
  text-align: right;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--header-background-color);
  box-sizing: border-box;
  color: var(--header-text-color);
  padding: 1rem;
  z-index: 1000;
}
.l-header__main {
  flex: 1;
  position: relative;
}
.l-header__side {
  display: flex;
  align-items: center;
}
.l-header__menu {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .l-header__main .site-logo {
    margin-left: 50px;
  }
}
.l-main {
  width: 100%;
  padding-top: 70px;
  min-height: calc(100vh - 70px);
}
.l-main__inner {
  padding: 2rem;
}
@media (max-width: 768px) {
  .l-main__inner {
    padding: 1rem;
  }
}

.article-heading {
  margin-bottom: 3rem;
}
.article-heading__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .article-heading__title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.article-heading__info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.article-heading__time {
  color: var(--sub-text-color);
  font-size: 0.875rem;
}
.article-heading__time i {
  margin-right: 2px;
}
.article-heading__categories {
  display: flex;
  gap: 0.5rem;
}
.article-heading__category {
  background-color: var(--link-color);
  border-radius: 100px;
  color: #fff;
  display: block;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
}
.article-heading__category:hover {
  background-color: var(--link-hover-color);
  transition: 0.3s;
}

.article-visual {
  margin-bottom: 3rem;
}
.article-visual img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.article-content p {
  margin-bottom: 2rem;
  line-height: 2;
}
.article-content p:last-child {
  margin-bottom: 0;
}
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-weight: 600;
  margin: 0 0 2rem;
}
@media (max-width: 768px) {
  .article-content h1,
  .article-content h2,
  .article-content h3,
  .article-content h4,
  .article-content h5,
  .article-content h6 {
    line-height: 1.5;
  }
}
.article-content h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .article-content h1 {
    font-size: 2rem;
  }
}
.article-content h2 {
  font-size: 1.5rem;
  background-color: var(--sub-background-color);
  border-left: 4px solid var(--primary-color);
  padding: 1rem;
}
.article-content h3 {
  font-size: 1.25rem;
  background-image: linear-gradient(90deg, var(--primary-color) 0 20%, var(--border-color) 20%);
  background-repeat: no-repeat;
  background-size: 100% 10%;
  background-position: bottom;
  padding-bottom: 1rem;
}
.article-content h4 {
  font-size: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.article-content h5 {
  font-size: 0.875rem;
}
.article-content h6 {
  font-size: 0.875rem;
}
.article-content ul,
.article-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem !important;
}
.article-content li {
  margin-bottom: 1rem;
}
.article-content blockquote {
  padding-left: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid #B8AFA6;
  color: #545454;
  font-style: italic;
  line-height: 1.7;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.article-content th,
.article-content td {
  padding: 1rem;
  border: 1px solid #B8AFA6;
}
.article-content th {
  text-align: center;
}
.article-content thead {
  background-color: #f7f7f7;
  font-weight: 600;
}
.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
}
.article-content figure {
  margin-bottom: 2rem;
}
.article-content pre,
.article-content code {
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: 0.9rem;
  background: #f6f6f6;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.article-content pre {
  overflow-x: auto;
  margin-bottom: 2rem;
}
.article-content a {
  color: #5b7ec4;
  text-decoration: underline;
}
.article-content a:hover, .article-content a:focus {
  text-decoration: none;
}
.article-content iframe {
  max-width: 100%;
  display: block;
}
.article-content figcaption {
  font-size: 0.875rem;
  color: #666;
}

.back-to-top {
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
  z-index: 1000;
}
.back-to-top.visible {
  display: block;
}
.back-to-top:hover {
  text-decoration: none;
}

.wp-block-heading {
  box-sizing: border-box;
}
.wp-block-heading.is-style-border-vert {
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding: 1rem 0;
}
.wp-block-heading.is-style-border-left {
  border-left: 4px solid var(--primary-color);
  padding: 0.5rem 1rem;
}
.wp-block-heading.is-style-border-bottom {
  border-bottom: 2px solid var(--primary-color);
  padding: 1rem 0;
}
.wp-block-heading.is-style-bg-fill {
  background-color: var(--primary-color);
  border-radius: 4px;
  color: #fff;
  padding: 1rem;
}
.wp-block-heading.is-style-bg-underline {
  background-color: var(--background-color);
  border-bottom: 2px solid var(--primary-color);
  color: var(--text-color);
  padding: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb-wrap {
  margin-bottom: 3rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: 0.875rem;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: var(--text-color);
}
.breadcrumb__item a {
  color: var(--link-color);
  text-decoration: none;
}
.breadcrumb__item a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.breadcrumb__item span {
  display: inline-block;
}

@media (max-width: 768px) {
  .breadcrumb {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .breadcrumb-wrap {
    margin-bottom: 1rem;
  }
  .breadcrumb__item {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .breadcrumb__item:not(:last-child)::after {
    margin: 0 0.3rem;
  }
  .breadcrumb__item a,
  .breadcrumb__item span {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.btn {
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  line-height: normal;
  overflow: hidden;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  z-index: 1;
}
.btn:disabled,
.btn [disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--light-color) !important;
  transition: 0.4s;
}
.btn-primary:hover, .btn-primary.is-active {
  background: var(--link-hover-color);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--light-color) !important;
  transition: 0.4s;
}
.btn-secondary:hover, .btn-secondary.is-active {
  background: var(--light-color);
  color: var(--secondary-color) !important;
}

.btn-submit {
  background: #000;
  color: #fff;
  font-weight: bold;
}
.btn-submit:hover, .btn-submit.is-active {
  background: #333;
}

.btn-cta {
  color: var(--light-color);
  transition: color 0.4s ease-in-out;
}
.btn-cta::before, .btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: background-color 0.3s ease-in-out;
}
.btn-cta::before {
  background-color: var(--link-color);
}
.btn-cta::after {
  background-color: var(--link-hover-color);
  width: 0;
  transition: width 0.3s ease-in-out;
}
.btn-cta:hover::after {
  width: 100%;
}
.btn-cta.is-active {
  background-color: var(--link-hover-color);
}

.btn-group {
  display: flex;
  align-items: center;
}
.btn-group--end {
  justify-content: end;
}
.btn-group__row {
  margin-right: 1rem;
}
.btn-group__row:last-child {
  margin-right: 0;
}

.article-content .btn {
  margin-bottom: 2rem;
}

.card {
  border: 1px solid #B8AFA6;
  border-radius: 4px;
}
.card__link {
  color: var(--text-color);
  display: flex;
  flex-direction: column;
}
.card__figure img {
  width: 100%;
}
.card__figure:hover {
  opacity: 0.8;
}
.card__body {
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 1rem;
}

.card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.card-group .card {
  width: calc(25% - 1rem);
}

@media (max-width: 768px) {
  .card-group .card {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 480px) {
  .card-group {
    display: block;
  }
  .card-group .card {
    width: 100%;
    margin-bottom: 1rem;
  }
  .card-group .card:last-child {
    margin-bottom: 0;
  }
}
.category-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}
.category-list__link {
  display: block;
  font-size: 1rem;
  padding: 1rem 3rem 1rem 1rem;
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
.category-list__link:hover {
  background-color: var(--link-hover-color);
  color: #fff;
  transition: 0.3s;
}
.category-list__link:hover::before, .category-list__link:hover::after {
  background-color: #fff;
}
.category-list__link::before, .category-list__link::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 14px;
  width: 14px;
  height: 2px;
  background-color: var(--link-color);
  transform-origin: calc(100% - 1px) 50%;
}
.category-list__link::before {
  transform: rotate(45deg);
}
.category-list__link::after {
  transform: rotate(-45deg);
}

.color-box {
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 2rem;
}
.color-box.has-border-radius {
  border-radius: 4px;
}
.color-box.is-gray {
  background: color-mix(in srgb, #808080 20%, #fff);
}
.color-box.is-gray.has-border {
  border: 1px solid #808080;
}
.color-box.is-red {
  background: color-mix(in srgb, #e74c3c 20%, #fff);
}
.color-box.is-red.has-border {
  border: 1px solid #e74c3c;
}
.color-box.is-blue {
  background: color-mix(in srgb, #4d6bb3 20%, #fff);
}
.color-box.is-blue.has-border {
  border: 1px solid #4d6bb3;
}
.color-box.is-green {
  background: color-mix(in srgb, #295e33 20%, #fff);
}
.color-box.is-green.has-border {
  border: 1px solid #295e33;
}
.color-box.is-orange {
  background: color-mix(in srgb, #f39c12 20%, #fff);
}
.color-box.is-orange.has-border {
  border: 1px solid #f39c12;
}

.entry-list {
  list-style: none;
}
.entry-list__item {
  margin-bottom: 1rem;
}
.entry-list__item:last-child {
  margin-bottom: 0;
}
.entry-list__link {
  color: var(--text-color);
  position: relative;
  padding-left: 1rem;
}
.entry-list__link:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.entry-list__link::before, .entry-list__link::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 0.5rem;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--link-color);
  transform-origin: calc(100% - 1px) 50%;
}
.entry-list__link::before {
  transform: rotate(45deg);
}
.entry-list__link::after {
  transform: rotate(-45deg);
}
.entry-list__date {
  font-size: 0.875rem;
}
.entry-list__date::before {
  content: "（";
}
.entry-list__date::after {
  content: "）";
}

.flexible-block {
  display: flex;
  gap: 2rem;
}
.flexible-block__item {
  line-height: 1.7;
  flex: 100%;
}
.flexible-block__item img {
  max-width: 100%;
}

@media (max-width: 576px) {
  .flexible-block {
    display: block;
  }
  .flexible-block__item {
    margin-bottom: 1rem;
  }
  .flexible-block__item:last-child {
    margin-bottom: none;
  }
}
.page-content .flexible-block {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .page-content .flexible-block {
    margin-bottom: 1rem;
  }
}

.hamburger-icon {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: -6px;
  left: 0;
  z-index: 1010;
}
.hamburger-icon__bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px auto;
  background-color: var(--header-text-color);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .hamburger-icon {
    display: block;
  }
  .hamburger-icon.is-active .hamburger-icon__bar {
    background-color: var(--header-text-color);
  }
  .hamburger-icon.is-active .hamburger-icon__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-icon.is-active .hamburger-icon__bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-icon.is-active .hamburger-icon__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.heading-box {
  box-sizing: border-box;
  margin-bottom: 2rem;
}
.heading-box__title {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: #fff;
}
.heading-box__content {
  background-color: #fff;
  padding: 1rem !important;
}
.heading-box.is-gray .heading-box__title {
  border: 1px solid #808080;
  background-color: #808080;
}
.heading-box.is-gray .heading-box__content {
  border: 1px solid #808080;
}
.heading-box.is-red .heading-box__title {
  border: 1px solid #e74c3c;
  background-color: #e74c3c;
}
.heading-box.is-red .heading-box__content {
  border: 1px solid #e74c3c;
}
.heading-box.is-blue .heading-box__title {
  border: 1px solid #4d6bb3;
  background-color: #4d6bb3;
}
.heading-box.is-blue .heading-box__content {
  border: 1px solid #4d6bb3;
}
.heading-box.is-green .heading-box__title {
  border: 1px solid #295e33;
  background-color: #295e33;
}
.heading-box.is-green .heading-box__content {
  border: 1px solid #295e33;
}
.heading-box.is-orange .heading-box__title {
  border: 1px solid #f39c12;
  background-color: #f39c12;
}
.heading-box.is-orange .heading-box__content {
  border: 1px solid #f39c12;
}
.heading-box.has-border-radius .heading-box__title {
  border-radius: 10px 10px 0 0;
}
.heading-box.has-border-radius .heading-box__content {
  border-radius: 0 0 10px 10px;
}

.heading-frame {
  border-radius: 4px;
  position: relative;
  padding: 1rem;
  margin-bottom: 2rem;
}
.heading-frame__title {
  position: absolute;
  display: inline-block;
  top: -12px;
  left: 10px;
  padding: 0 10px;
  line-height: 1;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.heading-frame.is-gray {
  border: 3px solid #808080;
}
.heading-frame.is-gray .heading-frame__title {
  color: #808080;
}
.heading-frame.is-red {
  border: 3px solid #e74c3c;
}
.heading-frame.is-red .heading-frame__title {
  color: #e74c3c;
}
.heading-frame.is-blue {
  border: 3px solid #4d6bb3;
}
.heading-frame.is-blue .heading-frame__title {
  color: #4d6bb3;
}
.heading-frame.is-green {
  border: 3px solid #295e33;
}
.heading-frame.is-green .heading-frame__title {
  color: #295e33;
}
.heading-frame.is-orange {
  border: 3px solid #f39c12;
}
.heading-frame.is-orange .heading-frame__title {
  color: #f39c12;
}

.lead {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.lead p {
  margin-bottom: 2rem;
}

.maker-yellow {
  background-color: #FFF3B0 !important;
}

.line-maker-yellow {
  background-image: linear-gradient(to bottom, transparent 60%, #FFF3B0 60%);
}

.maker-pink {
  background-color: #FFD6E0 !important;
}

.line-maker-pink {
  background-image: linear-gradient(to bottom, transparent 60%, #FFD6E0 60%);
}

.maker-green {
  background-color: #B7E4C7 !important;
}

.line-maker-green {
  background-image: linear-gradient(to bottom, transparent 60%, #B7E4C7 60%);
}

.maker-blue {
  background-color: #BFD8F2 !important;
}

.line-maker-blue {
  background-image: linear-gradient(to bottom, transparent 60%, #BFD8F2 60%);
}

.maker-gray {
  background-color: #eeeeee !important;
}

.line-maker-gray {
  background-image: linear-gradient(to bottom, transparent 60%, #eeeeee 60%);
}

.page-heading {
  margin-bottom: 2rem;
}
.page-heading__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-heading__title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.page-info {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 3rem;
  padding: 1rem;
}
.page-info p {
  line-height: 1.7;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: var(--link-color);
  background-color: var(--sub-background-color);
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.pagination .page-numbers:hover {
  background-color: var(--link-hover-color);
  color: #fff;
}
.pagination .page-numbers.current {
  background-color: var(--link-color);
  color: #fff;
  pointer-events: none;
}
.pagination .page-numbers.dots {
  background: none;
  color: var(--border-color);
  cursor: default;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-weight: bold;
}

.search-box {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0.25rem;
  overflow: hidden;
}
.search-box__input {
  border: none;
  padding: 0.5rem;
  width: 200px;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.search-box__input:focus {
  outline: 0;
}
@media (max-width: 768px) {
  .search-box__input {
    width: 0;
    padding: 0;
    opacity: 0;
  }
}
.search-box__submit {
  cursor: pointer;
  border: none;
  background: none;
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .search-box__submit {
    width: 20px;
    height: 20px;
    padding: 0;
  }
}
.search-box.active .search-box__input {
  width: calc(100% - 40px);
  max-width: 200px;
  min-width: 100px;
  padding: 0.5rem;
  opacity: 1;
}
.search-box.active .search-box__submit i::before {
  content: "\f061";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.search-result__item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.search-result__item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.search-result__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.search-result__title a {
  color: var(--link-color);
}
.search-result__title a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.search-result__description {
  line-height: 1.7;
}

.section {
  margin-bottom: 3rem;
}
.section__title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.side-nav {
  width: 100%;
  min-height: 100%;
}
.side-nav::-webkit-scrollbar {
  width: 8px;
}
.side-nav::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 4px;
}
.side-nav__title {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.side-nav__menu {
  margin-bottom: 1rem;
}
.side-nav__item {
  list-style: none;
}
.side-nav__link {
  border-radius: 4px;
  display: block;
  font-size: 0.875rem;
  color: var(--sidebar-text-color);
  padding: 0.5rem 1rem;
  transition: none;
}
.side-nav__link:hover, .side-nav__link.is-active {
  background-color: #ddd;
}

@media (max-width: 768px) {
  .side-nav {
    background-color: var(--sidebar-background-color);
    box-sizing: border-box;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.4);
    padding: 2rem 1rem;
    width: 300px;
    height: auto;
    z-index: 1020;
  }
}
.site-logo {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .site-logo {
    font-size: 1rem;
  }
}
.site-logo img {
  max-width: 300px;
  max-height: 30px;
  width: auto;
  height: auto;
}
@media (max-width: 768px) {
  .site-logo img {
    max-width: 200px;
  }
}

.sticky-box {
  box-sizing: border-box;
  margin-bottom: 2rem;
  padding: 1rem !important;
}
.sticky-box.is-gray {
  border-left: 5px solid #808080;
  background: color-mix(in srgb, #808080 20%, #fff);
}
.sticky-box.is-red {
  border-left: 5px solid #e74c3c;
  background: color-mix(in srgb, #e74c3c 20%, #fff);
}
.sticky-box.is-blue {
  border-left: 5px solid #4d6bb3;
  background: color-mix(in srgb, #4d6bb3 20%, #fff);
}
.sticky-box.is-green {
  border-left: 5px solid #295e33;
  background: color-mix(in srgb, #295e33 20%, #fff);
}
.sticky-box.is-orange {
  border-left: 5px solid #f39c12;
  background: color-mix(in srgb, #f39c12 20%, #fff);
}

.tag-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}
.tag-list__link {
  display: block;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 100px;
}
.tag-list__link:hover {
  background-color: var(--link-hover-color);
  color: #fff;
  transition: 0.3s;
}

.toc_list ul, .toc_list ol {
  padding-left: 0 !important;
}
.toc_list li {
  line-height: 1.7;
}

.text-red {
  color: #e74c3c;
}

.text-blue {
  color: #4d6bb3;
}

.text-green {
  color: #295e33;
}

.text-orange {
  color: #f39c12;
}

.text-gray {
  color: #808080;
}

.text-accent {
  color: #cc144b;
}

.w-0 {
  width: 0 !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.w-1 {
  width: 1rem !important;
}

.w-2 {
  width: 2rem !important;
}

.w-3 {
  width: 3rem !important;
}

.w-4 {
  width: 4rem !important;
}

.w-5 {
  width: 5rem !important;
}

.w-10 {
  width: 10rem !important;
}

.w-15 {
  width: 15rem !important;
}

.w-20 {
  width: 20rem !important;
}

.mw-0 {
  width: 0 !important;
}

.mw-25 {
  width: 25% !important;
}

.mw-50 {
  width: 50% !important;
}

.mw-75 {
  width: 75% !important;
}

.mw-100 {
  width: 100% !important;
}

.mw-auto {
  width: auto !important;
}

.mw-1 {
  width: 1rem !important;
}

.mw-2 {
  width: 2rem !important;
}

.mw-3 {
  width: 3rem !important;
}

.mw-4 {
  width: 4rem !important;
}

.mw-5 {
  width: 5rem !important;
}

.mw-10 {
  width: 10rem !important;
}

.mw-15 {
  width: 15rem !important;
}

.mw-20 {
  width: 20rem !important;
}

.h-0 {
  height: 0 !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.h-1 {
  height: 1rem !important;
}

.h-2 {
  height: 2rem !important;
}

.h-3 {
  height: 3rem !important;
}

.h-4 {
  height: 4rem !important;
}

.h-5 {
  height: 5rem !important;
}

.h-10 {
  height: 10rem !important;
}

.h-15 {
  height: 15rem !important;
}

.h-20 {
  height: 20rem !important;
}

.mh-0 {
  height: 0 !important;
}

.mh-25 {
  height: 25% !important;
}

.mh-50 {
  height: 50% !important;
}

.mh-75 {
  height: 75% !important;
}

.mh-100 {
  height: 100% !important;
}

.mh-auto {
  height: auto !important;
}

.mh-1 {
  height: 1rem !important;
}

.mh-2 {
  height: 2rem !important;
}

.mh-3 {
  height: 3rem !important;
}

.mh-4 {
  height: 4rem !important;
}

.mh-5 {
  height: 5rem !important;
}

.mh-10 {
  height: 10rem !important;
}

.mh-15 {
  height: 15rem !important;
}

.mh-20 {
  height: 20rem !important;
}

/*# sourceMappingURL=style.css.map */
