.page-title {
  background-image: url("../images/blog/title_bg.webp");
}

.category-list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.category-list li a {
  background: var(--color-primary);
  padding: 0.2rem 0.5rem;
  text-decoration: none;
  color: #fff;
}

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.post-list li {
  width: calc((100% - 4rem) / 3);
}
.post-list li .post-list__img {
  aspect-ratio: 335/200;
  overflow: hidden;
  position: relative;
  margin-bottom: 5px;
}
.post-list li .post-list__img .post-list__category {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
}
.post-list li .post-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.post-list li .post-list__text {
  font-family: var(--font-family-gothic);
}
.post-list li .post-list__text .post-list__text__date {
  font-size: 0.8rem;
  font-weight: 700;
}
.post-list li .post-list__text .post-list__text__title {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .post-list {
    gap: 1rem;
  }
  .post-list li {
    width: calc((100% - 1rem) / 2);
  }
}

/* PAGINATION */
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.pagination .page-numbers li {
  list-style: none;
}
.pagination .page-numbers li a, .pagination .page-numbers li span {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}
.pagination .page-numbers li a:hover {
  background: var(--bg-highlight);
}
.pagination .page-numbers li span.current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.pagination .dots {
  padding: 0.5rem;
  border: none;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers {
    gap: 0.5rem;
  }
  .pagination .page-numbers li a, .pagination .page-numbers li span {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
  }
}

.single .h1 {
  font-size: clamp(1.5rem, 1.173rem + 1.64vw, 2.4rem);
  font-weight: 900;
  font-family: var(--font-family-mincho);
  text-align: center;
}
.single .post-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .single .post-wrapper {
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
  }
}
.single .post-wrapper article {
  min-width: 0;
  overflow: hidden;
}
.single .post-wrapper article .post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.single .post-wrapper article .post-navigation > div {
  width: 49%;
}
.single .post-wrapper article .post-navigation > div .post-navigation__icon {
  flex-shrink: 0;
}
.single .post-wrapper article .post-navigation a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.single .post-wrapper article .post-navigation .previous-post .post-navigation__icon {
  rotate: 180deg;
}
.single .post-wrapper article .post-navigation .next-post a {
  justify-content: flex-end;
}
.single h1.post-title {
  color: var(--color-sub04);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-primary);
  margin-bottom: 1rem;
}
.single .meta {
  display: flex;
  justify-content: space-between;
}
.single .meta .category-list {
  margin-bottom: 0.8rem;
}
.single .meta .category-list li {
  text-decoration: none;
  color: #fff;
  font-size: clamp(0.75rem, 0.696rem + 0.25vw, 0.85rem);
}
.single .meta .category-list time {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-family-gothic);
}
.single .tags {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.single .tags li {
  padding: 0.2rem 0.5rem;
  text-decoration: none;
  font-family: var(--font-family-gothic);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.696rem + 0.25vw, 0.85rem);
}
.single .tags li::before {
  content: "#";
}
.single .post-thumbnail {
  margin-bottom: 1rem;
}
.single .post-thumbnail img {
  width: 100%;
  height: auto;
}
.single .content {
  margin-bottom: 2rem;
}
.single .content p {
  font-family: var(--font-family-gothic);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.single .content p:has(+ p), .single .content p:has(+ ul), .single .content p:has(+ ol), .single .content p:has(+ img) {
  margin-bottom: 1rem;
}
.single .content img {
  margin-bottom: 2rem;
}
.single .content a:not(.btn01) {
  color: var(--color-sub04);
  text-decoration: underline;
}
.single .content ol, .single .content ul {
  padding-left: 1.3rem;
  margin-bottom: 1rem;
}
.single .content ol li::marker, .single .content ul li::marker {
  color: var(--color-sub04);
  font-weight: 700;
}
.single .content blockquote {
  padding: 1rem;
  background: var(--bg-highlight);
  margin-bottom: 1rem;
}
.single .content blockquote p:last-child {
  margin-bottom: 0;
}
.single .content .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.single .content table {
  min-width: 100%;
  border-collapse: collapse;
  width: -moz-max-content;
  width: max-content;
  table-layout: auto;
  font-family: var(--font-family-gothic);
}
.single .content table th {
  background: var(--bg-highlight);
  border: 1px solid var(--color-primary);
}
.single .content table td {
  border: 1px solid var(--color-primary);
}
.single .content .lwptoc-light {
  margin-bottom: 1rem;
}
.single .content .lwptoc-light .lwptoc_i {
  color: var(--color-text);
  font-family: var(--font-family-gothic);
  background-color: var(--bg-highlight);
  width: 100%;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
}
.single .content .lwptoc-light .lwptoc_i .lwptoc_header {
  position: relative;
  display: flex;
  font-size: clamp(1rem, 0.865rem + 0.62vw, 1.25rem);
  margin: 0;
}
.single .content .lwptoc-light .lwptoc_i .lwptoc_header .lwptoc_toggle {
  flex: 1;
  position: relative;
  z-index: 2;
}
.single .content .lwptoc-light .lwptoc_i .lwptoc_header .lwptoc_toggle::before, .single .content .lwptoc-light .lwptoc_i .lwptoc_header .lwptoc_toggle::after {
  content: none;
}
.single .content .lwptoc-light .lwptoc_i .lwptoc_header .lwptoc_toggle a {
  display: block;
  width: 100%;
}
.single .content .lwptoc-light .lwptoc_i .lwptoc_header::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../images/btn_arrow_b.svg") center/contain no-repeat;
  rotate: 90deg;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  transform-origin: top;
}
.single .content .lwptoc-light .lwptoc_i .lwptoc_header.open::after {
  rotate: -90deg;
}
.single .content .lwptoc-light .lwptoc_i a {
  color: inherit;
  font-weight: 700;
  font-size: 1rem;
}
.single .content .lwptoc-light .lwptoc_i .lwptoc_itemWrap .lwptoc_item {
  margin-bottom: 0.3rem;
}
.single .content .lwptoc-light .lwptoc_i .lwptoc_itemWrap .lwptoc_itemWrap .lwptoc_item a {
  font-weight: 500;
}
.single .content .lwptoc-light .lwptoc_i div a:hover {
  border: none !important;
}
.single .content h2 {
  font-size: clamp(1.375rem, 1.254rem + 0.55vw, 1.6rem);
  padding-left: 1rem;
  position: relative;
  margin: 1rem 0;
}
.single .content h2::before {
  content: "";
  background: var(--color-sub04);
  width: 4px;
  height: 75%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single .recommended .section__title {
  position: relative;
  padding-top: 2.1rem;
  margin-bottom: 2.4rem;
  letter-spacing: 0.05em;
}
.single .recommended .section__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 30px;
  background-color: var(--color-sub04);
}
.single .recommended .section__title .section__title-sub {
  font-size: clamp(1rem, 0.946rem + 0.25vw, 1.1rem);
  font-weight: 900;
  text-align: center;
  color: var(--color-sub04);
}
.single .recommended .section__title h2 {
  font-weight: 900;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 1.231rem + 1.23vw, 2rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single .recommended .section__title {
    margin-bottom: 1.8rem;
  }
}
.single .recommended .post-swiper {
  margin-bottom: 2rem;
}
.single .recommended .post-swiper .post-list__img {
  aspect-ratio: 670/400;
  overflow: hidden;
  position: relative;
}
.single .recommended .post-swiper .post-list__img .category {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.1rem 0.3rem;
  font-size: clamp(0.75rem, 0.696rem + 0.25vw, 0.85rem);
}
.single .recommended .post-swiper .post-list__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.single .button-wrapper {
  text-align: center;
}
.single .button-wrapper .btn01 {
  margin: 0 auto;
}
.single .side-content .side-content__title {
  background: var(--color-sub04);
  color: #fff;
  padding: 0.5rem;
  font-size: clamp(1.25rem, 1.169rem + 0.37vw, 1.4rem);
  margin-bottom: 1rem;
  font-weight: 700;
}
.single .side-content .side-category {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.single .side-content .side-category li {
  padding: 0.3rem 0;
}
.single .side-content .new-post-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.single .side-content .new-post-list li a {
  display: flex;
  gap: 0.5rem;
}
.single .side-content .new-post-list li a .post-list__img {
  width: 40%;
}
.single .side-content .new-post-list li a .post-list__text {
  flex: 1;
}
.single .side-content .new-post-list li a .post-list__text .post-list__category span {
  background: var(--color-primary);
  color: #fff;
  font-size: clamp(0.75rem, 0.696rem + 0.25vw, 0.85rem);
  padding: 0 5px;
}
.single .side-content .new-post-list li a .post-list__text .post-list__text__date {
  font-family: var(--font-family-gothic);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.696rem + 0.25vw, 0.85rem);
}
.single .side-content .new-post-list li a .post-list__text .post-list__text__title {
  font-family: var(--font-family-gothic);
  font-weight: 500;
  font-size: clamp(0.75rem, 0.696rem + 0.25vw, 0.85rem);
}
.single .symptoms {
  margin-bottom: 6rem;
}
.single .symptoms .symptoms__title {
  background-color: var(--color-primary);
  border-bottom: 3px solid var(--color-sub04);
  color: #fff;
  padding: 1rem 0.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.single .symptoms .symptoms__title .font-mincho {
  font-size: 1.2rem;
  font-weight: 700;
}
.single .symptoms .symptoms__title .font-gothic {
  font-weight: 600;
  font-size: 0.8rem;
}
.single .symptoms .symptoms__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.single .symptoms .symptoms__list .symptoms__list__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 2rem) / 3);
}
.single .symptoms .symptoms__list .symptoms__list__box .symptoms__list__box__img {
  aspect-ratio: 1/1;
  margin-bottom: 10px;
  max-width: 200px;
}
.single .symptoms .symptoms__list .symptoms__list__box__text {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}/*# sourceMappingURL=blog.css.map */