@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Kiwi+Maru:wght@300;400;500&family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  /* theme main colors */
  --color-bg-page: #f7f7f7;
  --color-bg-paper: #fbece3;
  --color-surface: #ffffff;
  --color-surface-soft: #fcfaf8;
  --color-surface-tag: #f1e3db;
  --color-surface-tag-muted: #e5dbd3;
  --color-text-primary: #222222;
  --color-text-secondary: #5b524d;
  --color-text-muted: #6e6e6e;
  --color-text-disabled: #948f8a;
  --color-text-strong: #333333;
  --color-border: #222222;
  --color-border-soft: #e5dbd3;
  --color-border-soft-strong: #d8c6ba;
  --color-border-subtle: #d6d2ce;
  --color-border-inverse: #ffffff;
  --color-accent-feature: #fa966f;
  --color-accent-people: #53ddea;
  --color-accent-life: #d98bf5;
  --color-accent-community: #8cec7d;
  --color-accent-feature-soft: #ffeee8;
  --color-accent-people-soft: #ddf8fc;
  --color-accent-life-soft: #f2e5fa;
  --color-accent-community-soft: #e9f9e2;
  /* theme main fonts */
  --font-display: "Comfortaa", "Noto Sans JP", sans-serif;
  --font-heading: "Kiwi Maru", serif;
  --font-body: "Noto Sans JP", sans-serif;
  /* theme main radius sizes */
  --radius-xs: 5px;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  /* theme main shadows */
  --shadow-soft: 0 18px 34px rgba(34, 34, 34, 0.12);
  --shadow-panel: 0 20px 34px rgba(34, 34, 34, 0.1);
  /* theme main durations */
  --duration-fast: 0.25s;
  --duration-base: 0.45s;
  --duration-slow: 0.7s;
  --easing-standard: ease;
  /* theme main color tokens */
  --surface-tag: var(--color-surface-tag);
  --surface-card: var(--color-surface);
  --surface-soft: var(--color-surface-soft);
  --border-strong: var(--color-border);
  --top-bg: var(--color-bg-page);
  --top-paper: var(--color-bg-paper);
  --top-text: var(--color-text-primary);
  --top-line: var(--color-border);
  --top-logo-gray: var(--color-text-disabled);
  --top-logo-light: #c2bcb6;
  --top-orange: var(--color-accent-feature);
  --top-cyan: var(--color-accent-people);
  --top-purple: var(--color-accent-life);
  --top-green: var(--color-accent-community);
  --top-shadow: var(--shadow-soft);
}

/* theme main container width */
/* theme spacing */
/* theme z-index */
@keyframes about-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
@keyframes category-posts-check-float {
  0%, 100% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes top-tag-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes top-tag-marquee-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes category-posts-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

.top-page {
  min-height: 100svh;
  background: linear-gradient(90deg, var(--top-cyan) 0 20px, transparent 20px calc(100% - 20px), var(--top-green) calc(100% - 20px)), var(--top-bg);
  color: var(--top-text);
}

html {
  scrollbar-gutter: stable;
}

body {
  background: var(--color-bg-page);
  position: relative;
}
body::before, body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9998;
  width: 48px;
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 48px 80px;
  pointer-events: none;
}
body::before {
  left: 0;
  background-image: url("../images/common/deco_left.png");
}
body::after {
  right: 0;
  background-image: url("../images/common/deco_right.png");
}

body.has-top-loading {
  overflow: hidden;
}
body.has-top-loading > *:not(.top-loading-overlay) {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--easing-standard);
}

body.has-top-loading.is-top-loaded {
  overflow: visible;
}
body.has-top-loading.is-top-loaded > *:not(.top-loading-overlay) {
  opacity: 1;
}

body.single-post::before {
  display: none;
}
body.single-post::after {
  display: none;
}
body.single-post .page-top-button {
  right: 0;
  bottom: 20px;
}

.top-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  background: var(--color-bg-page);
  opacity: 1;
  visibility: visible;
  transition: opacity var(--duration-slow) var(--easing-standard), visibility var(--duration-slow) var(--easing-standard);
  overflow: scroll;
}
.top-loading-overlay__logo {
  display: block;
  width: 448px;
  height: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--duration-slow) var(--easing-standard), transform var(--duration-slow) var(--easing-standard);
}
.top-loading-overlay.is-active .top-loading-overlay__logo {
  opacity: 1;
  transform: translateY(0);
}
.top-loading-overlay.is-complete {
  opacity: 0;
  visibility: hidden;
}

.js-scroll-fade {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity var(--duration-slow) var(--easing-standard), transform var(--duration-slow) var(--easing-standard);
  will-change: opacity, transform;
}

.js-scroll-fade.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.page-top-button {
  position: fixed;
  right: 25px;
  bottom: 20px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(32px);
  transition: opacity var(--duration-fast) var(--easing-standard), transform var(--duration-fast) var(--easing-standard), visibility var(--duration-fast) var(--easing-standard);
}
.page-top-button img {
  display: block;
  width: 100%;
  height: auto;
}
.page-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-top-button:hover {
  transform: translateY(-10px);
}

@media screen and (max-width: 1239px) {
  body::before, body::after {
    width: 24px;
    background-size: 24px 40px;
  }
  .page-top-button {
    right: 12px;
  }
}
@media screen and (max-width: 767px) {
  .page-top-button {
    right: 12px;
    bottom: 16px;
    width: 56px;
    transform: translateY(24px);
  }
  .top-loading-overlay__logo {
    width: 220px;
  }
}
.post-new-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #d75a4a;
  color: var(--color-border-inverse);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.tag-collection {
  display: flex;
  gap: 50px;
  padding: 50px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: var(--radius-md);
}
.tag-collection .top-tag-collection .top-tag-collection__item {
  padding: 9px 20px 10px 20px;
  gap: 10px;
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 0;
  border: 2px solid var(--color-border-soft);
  background: var(--color-surface);
}

.post-list__category-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.post-list__category-link {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  color: inherit;
  text-decoration: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: min(100%, 1140px);
  margin: 0 auto;
  gap: 8px;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.6;
  padding: 12px 30px;
}
.breadcrumb span {
  color: var(--color-text-muted);
}
.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.breadcrumb__item {
  display: inline-block;
  max-width: 25ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}
.breadcrumb__item--current {
  color: var(--color-text-primary);
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 12px 30px;
    font-size: 10px;
  }
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  color: var(--color-text-disabled);
  text-decoration: none;
  font-size: 15px;
  font-family: var(--font-display);
}
.page-numbers.current {
  background: var(--color-text-disabled);
  color: var(--color-border-inverse);
}

.prev, .next {
  display: none;
}

@media screen and (max-width: 767px) {
  .nav-links {
    margin-top: 24px;
  }
  .page-numbers {
    min-width: 34px;
    min-height: 34px;
    font-size: 12px;
  }
}
.top-header {
  position: sticky;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(247, 247, 247, 0.92);
  border-bottom: 1px solid var(--color-border);
  top: env(safe-area-inset-top);
}
.top-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1440px);
  min-height: 74px;
  margin: 0 auto;
  padding: 18px 80px;
}
.top-header__logo {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.top-header__logo-image {
  display: block;
  width: 270px;
  height: auto;
}
.top-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}
.top-header__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
}
.top-header__nav a:first-child {
  font-family: var(--font-display);
  font-weight: 500;
}
.top-header__nav a:last-child {
  font-family: var(--font-heading);
  font-weight: 500;
}
.top-header__nav a.is-external::after {
  content: "";
  width: 14px;
  height: 14px;
  background: center/contain no-repeat url("../images/common/external_link.svg");
}
.top-header__menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
}
.top-header__menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.top-header__menu-icon span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}
.top-header__menu-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.top-drawer {
  display: none;
}
.top-drawer__nav {
  display: flex;
}
.top-drawer__nav a {
  color: inherit;
  text-decoration: none;
}
.top-drawer__nav a.is-external::after {
  content: "";
  width: 14px;
  height: 14px;
  background: center/contain no-repeat url("../images/common/external_link.svg");
}
.top-drawer__close-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.site-footer {
  background: #f7f7f7;
}
.site-footer__inner {
  position: relative;
  min-height: 314px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 31px 60px 50px;
}
.site-footer__logo {
  display: block;
  width: 212px;
  margin: 0 auto;
}
.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__visual {
  position: absolute;
  top: 11px;
}
.site-footer__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__visual--left {
  top: 74px;
  left: 60px;
  width: 248px;
}
.site-footer__visual--right {
  right: 60px;
  width: 248px;
}
.site-footer__scenery {
  display: block;
}
.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin-top: 42px;
}
.site-footer__links, .site-footer__sns {
  display: flex;
  align-items: center;
}
.site-footer__links {
  gap: 30px;
}
.site-footer__sns {
  gap: 14px;
}
.site-footer__label {
  color: #222222;
  font-family: "Comfortaa", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.site-footer__nav-link, .site-footer__sns-link {
  color: #222222;
  text-decoration: none;
}
.site-footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Kiwi Maru", serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.site-footer__nav-link.is-external::after {
  content: "";
  width: 14px;
  height: 14px;
  background: center/contain no-repeat url("../images/common/external_link.svg");
}
.site-footer__sns-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Comfortaa", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.site-footer__sns-link img {
  display: block;
  width: 30px;
  height: 30px;
}
.site-footer__copy {
  margin: 39px 0 0;
  color: #6e6e6e;
  text-align: center;
  font-family: "Comfortaa", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.tags-section {
  padding: 159px 0 104px;
  background: #f7f7f7;
}
.tags-section__panel {
  display: flex;
  align-items: flex-start;
  gap: 120px;
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 64px 78px 62px 80px;
  border: 1px solid #222222;
  border-radius: 20px;
  background: #ffffff;
}
.tags-section__heading {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  padding-top: 9px;
}
.tags-section__icon {
  width: 20px;
  height: 27px;
  background: center/contain no-repeat url("../images/top/icon_tag.svg");
}
.tags-section__title {
  margin: 0;
  color: #222222;
  font-family: "Comfortaa", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}
.tags-section__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tags-section__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 9px 20px 10px;
  border: 2px solid #e5dbd3;
  border-radius: 20px 20px 20px 0;
  background: #ffffff;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.tags-section__tag:hover {
  background: #e5dbd3;
  border-color: #d8c6ba;
  transform: translateY(-1px);
}

.popular-posts {
  padding: 120px 0 140px;
  background: #f7f7f7;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
}
.popular-posts__panel {
  position: relative;
  width: min(100%, 50vw + 570px);
  margin: 0 0 0 auto;
  padding: 90px 0 60px 74px;
  border: 1px solid #222222;
  border-right: 0;
  border-radius: 20px 0 0 20px;
  background: #ffffff;
  overflow: hidden;
}
.popular-posts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 74px 56px 0;
}
.popular-posts__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.popular-posts__title-icon {
  width: 20px;
  height: 27px;
  background: center/contain no-repeat url("../images/top/icon_crown.svg");
}
.popular-posts__title {
  margin: 0;
  color: #222222;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.popular-posts__nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.popular-posts__nav-button {
  width: 80px;
  height: 53px;
  border: 0;
  background: center/contain no-repeat url("../images/common/pager.png");
  cursor: pointer;
  transition: transform 0.25s ease, background-image 0.25s ease;
}
.popular-posts__nav-button:hover {
  background-image: url("../images/common/pager_on.png");
  transform: scale(1.04);
}
.popular-posts__nav-button--prev {
  transform: scale(-1, 1);
}
.popular-posts__nav-button--prev:hover {
  transform: scale(-1, 1) scale(1.04);
}
.popular-posts__swiper {
  position: relative;
  overflow: visible;
}
.popular-posts__swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -74px;
  z-index: 3;
  width: 74px;
  height: 100%;
  background: #ffffff;
  pointer-events: none;
}
.popular-posts__swiper-slide {
  position: relative;
  width: 380px;
  border: none;
}
.popular-posts__swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, #222222 0 3px, transparent 3px 8px);
  pointer-events: none;
}
.popular-posts__slide {
  --popular-border: #fa966f;
  --popular-surface: #fa966f;
  padding: 0;
}
.popular-posts__slide[data-category=feature] {
  --popular-border: #fa966f;
  --popular-surface: #fa966f;
}
.popular-posts__slide[data-category=people] {
  --popular-border: #53ddea;
  --popular-surface: #53ddea;
}
.popular-posts__slide[data-category=life] {
  --popular-border: #d98bf5;
  --popular-surface: #d98bf5;
}
.popular-posts__slide[data-category=community] {
  --popular-border: #8cec7d;
  --popular-surface: #8cec7d;
}
.popular-posts__card {
  display: block;
  min-height: 544px;
  padding: 24px 34px;
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.35s ease;
}
.popular-posts__card:hover {
  background: var(--popular-surface);
}
.popular-posts__card:hover .popular-posts__card-new-base {
  opacity: 0;
  transform: rotate(-7deg) scale(0.96);
}
.popular-posts__card:hover .popular-posts__card-new-hover {
  opacity: 1;
  transform: rotate(3deg) scale(1.02);
}
.popular-posts__card-media {
  position: relative;
  margin-bottom: 16px;
}
.popular-posts__card-new {
  position: absolute;
  top: -8px;
  left: -12px;
  z-index: 2;
  width: 104px;
  height: 81px;
}
.popular-posts__card-new-base, .popular-posts__card-new-hover {
  position: absolute;
  inset: 0;
  background: center/contain no-repeat;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.popular-posts__card-new-base {
  background-image: url("../images/common/icon_new.png");
}
.popular-posts__card-new-hover {
  opacity: 0;
  background-image: url("../images/common/icon_new_on.png");
}
.popular-posts__card-image-frame {
  overflow: hidden;
  width: 312px;
  height: 308px;
  border: 4px solid var(--popular-border);
  border-radius: 20px;
}
.popular-posts__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-posts__card-number {
  position: absolute;
  right: 0;
  bottom: -18px;
  color: #222222;
  font-family: "Comfortaa", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.popular-posts__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popular-posts__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #6e6e6e;
  font-family: "Comfortaa", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.popular-posts__card-meta span:last-child {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
}
.popular-posts__card-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6e6e6e;
}
.popular-posts__card-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #222222;
  font-family: "Kiwi Maru", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.popular-posts__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.popular-posts__card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 1px 8px 2px;
  border-radius: 10px 10px 10px 0;
  background: #e5dbd3;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.related-posts {
  padding: 120px 0 140px;
  background: #f7f7f7;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  overflow-x: hidden;
}
.related-posts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 74px 56px 0;
  width: min(100%, 1140px);
  margin: 0 auto;
}
.related-posts__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.related-posts__title-icon {
  width: 20px;
  height: 27px;
  background: center/contain no-repeat url("../images/top/icon_crown.svg");
}
.related-posts__title {
  margin: 0;
  color: #222222;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.related-posts__nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.related-posts__nav-button {
  width: 80px;
  height: 53px;
  border: 0;
  background: center/contain no-repeat url("../images/common/pager.png");
  cursor: pointer;
  transition: transform 0.25s ease, background-image 0.25s ease;
}
.related-posts__nav-button:hover {
  background-image: url("../images/common/pager_on.png");
  transform: scale(1.04);
}
.related-posts__nav-button--prev {
  transform: scale(-1, 1);
}
.related-posts__nav-button--prev:hover {
  transform: scale(-1, 1) scale(1.04);
}
.related-posts__swiper {
  position: relative;
  overflow: visible;
  background: #ffffff;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: repeating-linear-gradient(to right, #222 0 2px, transparent 3px 8px) 1;
}
.related-posts__swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -74px;
  z-index: 3;
  width: 74px;
  height: 100%;
  background: #ffffff;
  pointer-events: none;
}
.related-posts__swiper-slide {
  position: relative;
  width: 380px;
  border: none;
}
.related-posts__swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, #222222 0 3px, transparent 3px 8px);
  pointer-events: none;
}
.related-posts__slide {
  --related-border: #fa966f;
  --related-surface: #fa966f;
  --related-chip: #e5dbd3;
  padding: 0;
}
.related-posts__slide[data-category=feature] {
  --related-border: #fa966f;
  --related-surface: #fa966f;
  --related-chip: #e5dbd3;
}
.related-posts__slide[data-category=people] {
  --related-border: #53ddea;
  --related-surface: #53ddea;
  --related-chip: #ddf8fc;
}
.related-posts__slide[data-category=life] {
  --related-border: #d98bf5;
  --related-surface: #d98bf5;
  --related-chip: #f2e5fa;
}
.related-posts__slide[data-category=community] {
  --related-border: #8cec7d;
  --related-surface: #8cec7d;
  --related-chip: #e9f9e2;
}
.related-posts__card {
  display: block;
  min-height: 544px;
  padding: 24px 34px;
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.35s ease;
}
.related-posts__card:hover {
  background: var(--related-surface);
}
.related-posts__card:hover .related-posts__card-new-base {
  opacity: 0;
  transform: rotate(-7deg) scale(0.96);
}
.related-posts__card:hover .related-posts__card-new-hover {
  opacity: 1;
  transform: rotate(3deg) scale(1.02);
}
.related-posts__card-media {
  position: relative;
  margin-bottom: 16px;
}
.related-posts__card-new {
  position: absolute;
  top: -8px;
  left: -12px;
  z-index: 2;
  width: 104px;
  height: 81px;
}
.related-posts__card-new-base, .related-posts__card-new-hover {
  position: absolute;
  inset: 0;
  background: center/contain no-repeat;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.related-posts__card-new-base {
  background-image: url("../images/common/icon_new.png");
}
.related-posts__card-new-hover {
  opacity: 0;
  background-image: url("../images/common/icon_new_on.png");
}
.related-posts__card-image-frame {
  overflow: hidden;
  border: 4px solid var(--related-border);
  border-radius: 20px;
}
.related-posts__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-posts__card-number {
  position: absolute;
  right: 0;
  bottom: -18px;
  color: #222222;
  font-family: "Comfortaa", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.related-posts__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.related-posts__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #6e6e6e;
  font-family: "Comfortaa", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.related-posts__card-meta span:last-child {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
}
.related-posts__card-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6e6e6e;
}
.related-posts__card-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #222222;
  font-family: "Kiwi Maru", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.related-posts__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.related-posts__card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 1px 8px 2px;
  border-radius: 10px 10px 10px 0;
  background: #E5DBD3;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 1024px) {
  .related-posts {
    padding: 96px 0 112px;
  }
  .related-posts__header {
    width: calc(100% - 48px);
    padding: 0 0 40px;
  }
  .related-posts__nav-button {
    width: 68px;
    height: 45px;
  }
  .related-posts__swiper::before {
    left: -24px;
    width: 24px;
  }
  .related-posts__card {
    min-height: 100%;
    padding: 24px 24px 28px;
  }
  .related-posts__card-media {
    width: 100%;
  }
  .related-posts__card-image-frame {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 312/308;
  }
}
@media (max-width: 767px) {
  .related-posts {
    padding: 64px 0 84px;
  }
  .related-posts__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    width: calc(100% - 24px);
    padding-bottom: 28px;
  }
  .related-posts__title {
    font-size: 24px;
  }
  .related-posts__nav {
    align-self: flex-end;
    gap: 10px;
  }
  .related-posts__nav-button {
    width: 56px;
    height: 38px;
  }
  .related-posts__swiper::before {
    left: -12px;
    width: 12px;
  }
  .related-posts__card {
    padding: 18px 16px 22px;
  }
  .related-posts__card-media {
    margin-bottom: 14px;
  }
  .related-posts__card-new {
    top: -6px;
    left: -6px;
    width: 72px;
    height: 56px;
  }
  .related-posts__card-meta {
    flex-wrap: wrap;
    line-height: 1.4;
  }
  .related-posts__card-title {
    font-size: 18px;
  }
  .related-posts__card-tags {
    gap: 6px 4px;
  }
  .related-posts__card-tags span {
    font-size: 10px;
  }
}
.category-posts {
  --category-accent: var(--color-accent-feature);
  --category-body-bg: var(--color-accent-feature-soft);
  --category-surface: var(--color-surface);
  --category-card-title: var(--color-text-primary);
  --category-chip: var(--color-surface-tag-muted);
  --category-border: var(--color-accent-feature);
  --category-marquee-icon: url("../images/common/icon_feature.svg");
  --category-scale: 1;
  position: relative;
}
.category-posts[data-category=feature] {
  --category-accent: var(--color-accent-feature);
  --category-body-bg: var(--color-accent-feature-soft);
  --category-border: var(--color-accent-feature);
  --category-marquee-icon: url("../images/common/icon_feature.svg");
}
.category-posts[data-category=feature] .category-posts__footer-controls {
  top: calc(20px * var(--category-scale));
}
.category-posts[data-category=people] {
  --category-accent: var(--color-accent-people);
  --category-body-bg: var(--color-accent-people-soft);
  --category-border: var(--color-accent-people);
  --category-marquee-icon: url("../images/common/iconpeople.svg");
}
.category-posts[data-category=life] {
  --category-accent: var(--color-accent-life);
  --category-body-bg: var(--color-accent-life-soft);
  --category-border: var(--color-accent-life);
  --category-marquee-icon: url("../images/common/icon_living.svg");
}
.category-posts[data-category=community] {
  --category-accent: var(--color-accent-community);
  --category-body-bg: var(--color-accent-community-soft);
  --category-border: var(--color-accent-community);
  --category-marquee-icon: url("../images/common/icon_connection.svg");
}
.category-posts[data-category=tag] {
  --category-accent: #f4b491;
  --category-body-bg: #ede9e3;
  --category-border: #fa966f;
  --category-marquee-icon: url("../images/top/icon_tag.svg");
}
.category-posts[data-category=archive] {
  --category-accent: #f4b491;
  --category-body-bg: #ede9e3;
  --category-border: #fa966f;
  --category-marquee-icon: url("../images/top/icon_tag.svg");
}
.category-posts#people .category-posts__heading, .category-posts#life .category-posts__heading, .category-posts#community .category-posts__heading {
  display: block;
  width: min(100%, 1140px);
  margin: 0 auto;
  padding-bottom: 58px;
}
.category-posts#people .category-posts__heading-main, .category-posts#life .category-posts__heading-main, .category-posts#community .category-posts__heading-main {
  min-height: auto;
}
.category-posts#people .category-posts__heading-title-image img, .category-posts#life .category-posts__heading-title-image img, .category-posts#community .category-posts__heading-title-image img {
  max-width: 100%;
}
.category-posts#people .category-posts__heading-description, .category-posts#life .category-posts__heading-description, .category-posts#community .category-posts__heading-description {
  width: min(100%, 820px * var(--category-scale));
  margin-top: calc(30px * var(--category-scale));
  font-size: calc(16px * var(--category-scale));
  font-weight: 400;
  line-height: 2;
}
.category-posts#life .category-posts__heading-main {
  max-width: 350px;
}
.category-posts#community .category-posts__heading-main {
  max-width: 745px;
}
.category-posts#community .category-posts__heading-title-image img {
  width: auto;
}
.category-posts__marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: calc(60px * var(--category-scale));
  background: var(--category-accent);
  border-top: 1px solid rgba(34, 34, 34, 0.08);
  border: 1px solid #000;
}
.category-posts__marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: category-posts-marquee 28s linear infinite;
}
.category-posts__marquee-track {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
  gap: calc(40px * var(--category-scale));
  padding-right: calc(40px * var(--category-scale));
  font-family: var(--font-display);
  font-size: calc(18px * var(--category-scale));
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.category-posts__marquee-icon {
  width: calc(20px * var(--category-scale));
  height: calc(32px * var(--category-scale));
  background: center/contain no-repeat var(--category-marquee-icon);
}
.category-posts__body {
  position: relative;
  padding: calc(80px * var(--category-scale)) 0 calc(140px * var(--category-scale));
  background: var(--category-body-bg);
}
.category-posts__inner {
  position: relative;
  width: min(100%, 1140px * var(--category-scale));
  margin: 0 auto;
}
.category-posts__heading {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  width: min(100%, 1140px * var(--category-scale));
  margin: 0 auto;
  gap: calc(32px * var(--category-scale));
  margin-bottom: calc(96px * var(--category-scale));
}
.category-posts__heading-main {
  display: flex;
  align-items: flex-end;
  min-height: calc(82px * var(--category-scale));
}
.category-posts__heading-description {
  margin: calc(14px * var(--category-scale)) 0 0;
  color: var(--color-text-primary);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16px * var(--category-scale));
  line-height: 1.75;
}
.category-posts__heading-title-image {
  display: block;
  margin: 0;
}
.category-posts__heading-title-image img {
  display: block;
  height: auto;
}
.category-posts__heading-title-text {
  margin: 0;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: calc(28px * var(--category-scale));
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
}
.category-posts__heading-title-text span {
  display: inline-block;
}
.category-posts__heading-check {
  display: none;
}
.category-posts__heading--with-description .category-posts__heading-main,
.category-posts__heading--with-description .category-posts__heading-description {
  width: 100%;
}
.category-posts__heading--with-description .category-posts__heading-check {
  position: absolute;
  top: calc(-8px * var(--category-scale));
  right: 0;
  display: block;
  width: calc(101px * var(--category-scale));
  height: calc(73px * var(--category-scale));
  background: center/contain no-repeat url("../images/common/icon_check.svg");
  animation: category-posts-check-float 1.6s ease-in-out infinite;
}
.category-posts__footer-controls {
  position: absolute;
  top: calc(84px * var(--category-scale));
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: calc(18px * var(--category-scale));
}
.category-posts__footer-check {
  display: block;
  width: calc(101px * var(--category-scale));
  height: calc(73px * var(--category-scale));
  background: center/contain no-repeat url("../images/common/icon_check.svg");
  flex: 0 0 auto;
  animation: category-posts-check-float 1.6s ease-in-out infinite;
}
.category-posts__more {
  display: block;
  width: calc(118px * var(--category-scale));
  min-height: calc(40px * var(--category-scale));
  background: center/contain no-repeat url("../images/common/btn_more.svg");
  color: transparent;
  font-size: 0;
  transition: background-image 0.35s ease, transform 0.35s ease;
}
.category-posts__more:hover {
  background-image: url("../images/common/btn_more_on.svg");
  transform: translateX(2px);
}
.category-posts__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, calc(380px * var(--category-scale)));
}
.category-posts__grid::before, .category-posts__grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.category-posts__grid::before {
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 100vw;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to right, var(--color-border) 0 3px, transparent 3px 8px) top left/100% 1px no-repeat;
}
.category-posts__grid::after {
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(to bottom, var(--color-border) 0 3px, transparent 3px 8px) top left/1px 100% no-repeat, repeating-linear-gradient(to bottom, var(--color-border) 0 3px, transparent 3px 8px) left calc(380px * var(--category-scale)) top/1px 100% no-repeat, repeating-linear-gradient(to bottom, var(--color-border) 0 3px, transparent 3px 8px) left calc(760px * var(--category-scale)) top/1px 100% no-repeat, repeating-linear-gradient(to bottom, var(--color-border) 0 3px, transparent 3px 8px) top right/1px 100% no-repeat;
}
.category-posts__card-item {
  background: var(--category-surface);
}
.category-posts__card[data-category=feature] {
  --category-accent: var(--color-accent-feature);
  --category-border: var(--color-accent-feature);
  --category-chip: var(--color-surface-tag-muted);
}
.category-posts__card[data-category=people] {
  --category-accent: var(--color-accent-people);
  --category-border: var(--color-accent-people);
  --category-chip: var(--color-accent-people-soft);
}
.category-posts__card[data-category=life] {
  --category-accent: var(--color-accent-life);
  --category-border: var(--color-accent-life);
  --category-chip: var(--color-accent-life-soft);
}
.category-posts__card[data-category=community] {
  --category-accent: var(--color-accent-community);
  --category-border: var(--color-accent-community);
  --category-chip: var(--color-accent-community-soft);
}
.category-posts__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(24px * var(--category-scale));
  padding: calc(24px * var(--category-scale)) calc(34px * var(--category-scale)) calc(28px * var(--category-scale));
  color: inherit;
  text-decoration: none;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.category-posts__card:hover {
  background: var(--category-accent);
  box-shadow: var(--shadow-panel);
}
.category-posts__card:hover .category-posts__card-new-base {
  opacity: 0;
  transform: rotate(-7deg) scale(0.96);
}
.category-posts__card:hover .category-posts__card-new-hover {
  opacity: 1;
  transform: rotate(3deg) scale(1.02);
}
.category-posts__card:hover .category-posts__card-image {
  transform: scale(1.04);
}
.category-posts__card:nth-child(3n+1)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 150%;
  z-index: 1;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to right, var(--color-border) 0 3px, transparent 3px 8px) bottom left/100% 1px no-repeat;
}
.category-posts__card.is-coming-soon {
  cursor: default;
}
.category-posts__card.is-coming-soon:hover {
  background: var(--category-surface);
  box-shadow: none;
}
.category-posts__card.is-coming-soon .category-posts__card-image-frame {
  display: grid;
  place-items: center;
  background: var(--color-surface);
  background-image: url(../images/common/logo-ashitana.svg);
  background-position: center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.category-posts__card.is-coming-soon .category-posts__card-meta,
.category-posts__card.is-coming-soon .category-posts__card-title {
  color: var(--color-text-disabled);
}
.category-posts__card.is-coming-soon .category-posts__card-meta-dot {
  background: var(--color-text-disabled);
}
.category-posts__card-media {
  position: relative;
}
.category-posts__card-new {
  position: absolute;
  top: calc(-8px * var(--category-scale));
  left: calc(-26px * var(--category-scale));
  z-index: 2;
  width: calc(104px * var(--category-scale));
  height: calc(81px * var(--category-scale));
}
.category-posts__card-new-base, .category-posts__card-new-hover {
  position: absolute;
  inset: 0;
  background: center/contain no-repeat;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.category-posts__card-new-base {
  opacity: 1;
  background-image: url("../images/common/icon_new.png");
}
.category-posts__card-new-hover {
  opacity: 0;
  background-image: url("../images/common/icon_new_on.png");
}
.category-posts__card-image-frame {
  overflow: hidden;
  width: calc(312px * var(--category-scale));
  height: calc(308px * var(--category-scale));
  border: max(2px, 4px * var(--category-scale)) solid var(--category-border);
  border-radius: calc(20px * var(--category-scale));
}
.category-posts__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.category-posts__card-body {
  display: flex;
  flex-direction: column;
  gap: calc(16px * var(--category-scale));
}
.category-posts__card-meta {
  display: flex;
  align-items: center;
  gap: calc(8px * var(--category-scale));
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: calc(12px * var(--category-scale));
  font-weight: 600;
  line-height: 1;
}
.category-posts__card-meta span:last-child {
  font-family: var(--font-heading);
  font-weight: 500;
}
.category-posts__card-meta-dot {
  width: calc(4px * var(--category-scale));
  height: calc(4px * var(--category-scale));
  border-radius: 50%;
  background: var(--color-text-muted);
}
.category-posts__card-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--category-card-title);
  font-family: var(--font-heading);
  font-size: calc(22px * var(--category-scale));
  font-weight: 500;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.category-posts__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: calc(4px * var(--category-scale));
}
.category-posts__card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: calc(20px * var(--category-scale));
  padding: calc(1px * var(--category-scale)) calc(8px * var(--category-scale)) calc(2px * var(--category-scale));
  border-radius: calc(10px * var(--category-scale)) calc(10px * var(--category-scale)) calc(10px * var(--category-scale)) 0;
  background: var(--category-chip);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: calc(12px * var(--category-scale));
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .category-posts__card:nth-child(3n+1)::after {
    height: 0;
  }
  .category-posts__card:nth-child(2n+1)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    width: 100vw;
    height: 1px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(to right, var(--color-border) 0 3px, transparent 3px 8px) bottom left/100% 1px no-repeat;
  }
  .category-posts__heading-title-image {
    margin-left: 0;
  }
}
.top-hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.top-hero__swiper {
  --top-hero-nav-offset: 503px;
  --top-hero-nav-width: 80px;
  position: relative;
  overflow: visible;
}
.top-hero__swiper::before, .top-hero__swiper::after {
  content: "";
  position: absolute;
  bottom: 2px;
  z-index: 2;
  background: center bottom/contain no-repeat;
  pointer-events: none;
}
.top-hero__swiper::before {
  left: calc(44% - var(--top-hero-nav-offset) + var(--top-hero-nav-width) / 2);
  transform: translateX(-50%);
  width: 342px;
  height: 70px;
  background-image: url("../images/top/mv_ deco_left.png");
}
.top-hero__swiper::after {
  left: calc(56% + var(--top-hero-nav-offset) - var(--top-hero-nav-width) / 2);
  transform: translateX(-50%);
  width: 342px;
  height: 133px;
  background-image: url("../images/top/mv_ deco_right.png");
}
.top-hero .swiper-slide {
  width: 928px;
  border: 2px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}
.top-hero .swiper-slide + .swiper-slide {
  border-left-width: 0;
}
.top-hero__slide {
  --slide-accent: var(--color-accent-feature);
  --slide-surface: var(--color-bg-paper);
  --slide-title: rgba(250, 150, 111, 0.95);
  --slide-button-text: var(--color-text-primary);
  --slide-button-bg: var(--color-surface);
  --slide-button-border: var(--color-text-primary);
  position: relative;
  display: block;
  padding: 58px 0;
  background: var(--slide-accent);
}
.top-hero__slide[data-category=feature] {
  --slide-accent: var(--color-accent-feature);
  --slide-surface: var(--color-bg-paper);
  --slide-title: rgba(250, 150, 111, 0.95);
}
.top-hero__slide[data-category=feature] .top-hero__category::before {
  background-image: url("../images/common/icon_feature.svg");
}
.top-hero__slide[data-category=people] {
  --slide-accent: var(--color-accent-people);
  --slide-surface: #def8fb;
  --slide-title: rgba(83, 221, 234, 0.95);
}
.top-hero__slide[data-category=people] .top-hero__category::before {
  background-image: url("../images/common/iconpeople.svg");
}
.top-hero__slide[data-category=life] {
  --slide-accent: var(--color-accent-life);
  --slide-surface: #f3e8fb;
  --slide-title: rgba(217, 139, 245, 0.95);
}
.top-hero__slide[data-category=life] .top-hero__category::before {
  background-image: url("../images/common/icon_living.svg");
}
.top-hero__slide[data-category=community] {
  --slide-accent: var(--color-accent-community);
  --slide-surface: #edf9e9;
  --slide-title: rgba(140, 236, 125, 0.95);
}
.top-hero__slide[data-category=community] .top-hero__category::before {
  background-image: url("../images/common/icon_connection.svg");
}
.top-hero__panel {
  position: relative;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: center;
  column-gap: 36px;
  width: min(100%, 800px);
  min-height: 414px;
  margin: 0 auto;
  padding: 32px 36px 32px 32px;
  border: 2px solid var(--color-border);
  border-radius: 32px;
  background: var(--slide-surface);
  color: inherit;
  text-decoration: none;
  transition: box-shadow var(--duration-base) var(--easing-standard);
}
.top-hero__panel:hover .top-hero__new-base {
  opacity: 0;
  transform: rotate(-7deg) scale(0.96);
}
.top-hero__panel:hover .top-hero__new-hover {
  opacity: 1;
  transform: rotate(3deg) scale(1.02);
}
.top-hero__panel:hover .top-hero__more {
  background-image: url("../images/common/btn_more_on.svg");
  transform: translateX(2px);
}
.top-hero__panel:hover .top-hero__image {
  transform: scale(1.06);
}
.top-hero__media {
  position: relative;
}
.top-hero__new {
  position: absolute;
  top: -9px;
  left: -18px;
  z-index: 2;
  width: 104px;
  aspect-ratio: 104/81;
}
.top-hero__new-base, .top-hero__new-hover {
  position: absolute;
  inset: 0;
  background: center/contain no-repeat;
  transition: opacity var(--duration-base) var(--easing-standard), transform var(--duration-base) var(--easing-standard);
}
.top-hero__new-base {
  opacity: 1;
  background-image: url("../images/common/icon_new.png");
}
.top-hero__new-hover {
  opacity: 0;
  background-image: url("../images/common/icon_new_on.png");
}
.top-hero__image-frame {
  overflow: hidden;
  width: 340px;
  border: 4px solid var(--slide-accent);
  border-radius: 32px;
}
.top-hero__image {
  display: block;
  width: 340px;
  height: 336px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.top-hero__content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 336px;
  padding: 24px 0 0;
}
.top-hero__category {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 10px;
  min-height: 60px;
  margin-bottom: 18px;
  padding: 0 22px 0 18px;
  border: 2px solid var(--slide-accent);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.32);
}
.top-hero__category::before {
  content: "";
  width: 20px;
  height: 27px;
  background: center/contain no-repeat;
}
.top-hero__category-label {
  font-family: "Kiwi Maru", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.top-hero__date {
  margin-bottom: 18px;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.top-hero__title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.top-hero__title-text {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: var(--slide-title);
  padding: 0 0.16em;
  line-height: 1.44;
}
.top-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}
.top-hero__tag {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 1px 8px 2px;
  border-radius: 10px 10px 10px 0;
  background: var(--color-surface-tag);
  color: var(--color-text-strong);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.top-hero__more {
  align-self: flex-end;
  width: 118px;
  min-height: 40px;
  margin-top: auto;
  background: center/contain no-repeat url("../images/common/btn_more.svg");
  color: transparent;
  font-size: 0;
  transition: background-image var(--duration-base) var(--easing-standard), transform var(--duration-base) var(--easing-standard);
}
.top-hero__nav {
  position: absolute;
  top: calc(50% - 53px);
  z-index: 5;
  width: 80px;
  height: 53px;
  border: 0;
  border-radius: 0;
  background: center/contain no-repeat url("../images/common/pager.png");
  cursor: pointer;
  transition: transform 0.28s var(--easing-standard), background-image 0.28s var(--easing-standard);
}
.top-hero__nav:hover {
  background-image: url("../images/common/pager_on.png");
  transform: scale(1.04);
}
.top-hero__nav--prev {
  left: calc(50% - 503px);
  transform: scale(-1, 1);
}
.top-hero__nav--prev:hover {
  transform: scale(-1, 1) scale(1.04);
}
.top-hero__nav--next {
  right: calc(50% - 503px);
}
.top-hero__footer {
  background: var(--color-surface);
  border-bottom: 2px solid #000;
}
.top-hero__pagination {
  display: none;
}
.top-hero__tag-strip {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px 30px;
  border-top: 1px solid var(--color-border-subtle);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  background: var(--color-surface);
}
.top-hero__tag-strip a {
  color: inherit;
  text-decoration: none;
}
.top-hero__tag-strip a:hover {
  opacity: 0.7;
}
.top-hero__tag-strip-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: top-tag-marquee-loop 28s linear infinite;
}
.top-hero__tag-strip-track {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.about-section {
  position: relative;
  padding: 90px 20px 110px;
}
.about-section__inner {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  text-align: center;
}
.about-section__heading {
  margin-bottom: 46px;
}
.about-section__title-image {
  display: block;
  width: 355px;
  max-width: 100%;
  margin: 0 auto;
}
.about-section__decor {
  position: absolute;
  z-index: 1;
  animation: about-float 2s ease-in-out infinite;
}
.about-section__decor img {
  display: block;
  width: 100%;
  height: auto;
}
.about-section__decor--heart {
  top: 146px;
  left: 32px;
  width: 72px;
}
.about-section__decor--pen {
  top: 118px;
  right: 18px;
  width: 108px;
  animation-delay: 1.2s;
}
.about-section__body {
  position: relative;
  z-index: 2;
  max-width: 748px;
  margin: 0 auto 44px;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 2.1;
  text-align: left;
}
.about-section__more {
  display: block;
  width: 118px;
  min-height: 40px;
  margin: 0 auto;
  background: center/contain no-repeat url("../images/common/btn_more.svg");
  color: transparent;
  font-size: 0;
  transition: background-image 0.35s ease, transform 0.35s ease;
}
.about-section__more:hover {
  background-image: url("../images/common/btn_more_on.svg");
  transform: translateX(2px);
}

.top__contents {
  padding: 100px 50px;
  max-width: 1130px;
  margin: 0 auto;
  background: gray;
}

.page-about .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-heading);
}
.page-about .title img {
  height: 64px;
  width: auto;
}
.page-about .title span {
  font-family: var(--font-heading);
}
.page-about .concept {
  background: #FFEEE8;
}
.page-about .concept-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  padding: 12rem 0;
}
.page-about .concept-details {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.page-about .concept-details p {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  max-width: 567px;
}
.page-about .concept .mv-img img {
  width: 482px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 2px solid #222222;
}
.page-about .company-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 140px;
}
.page-about .company-details ul li {
  font-family: "Noto Sans JP", sans-serif;
}
.page-about .company-details ul li:first-child {
  border-top: 1px solid #C5B9B0;
}
.page-about .company-details ul li {
  padding: 32px 0;
  border-bottom: 1px solid #C5B9B0;
  display: flex;
  gap: 120px;
}
.page-about .company-details ul li span {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .page-about .concept-inner {
    padding: 100px 30px;
  }
  .page-about .company-inner {
    padding: 100px 30px;
    gap: 30px;
  }
  .page-about .company-details ul li {
    gap: 10px;
    flex-direction: column;
    padding: 15px 20px;
  }
  .page-about .company-details ul li span {
    width: 100%;
  }
}

.category-posts--tag .category-posts__heading {
  display: flex;
  justify-content: center;
}

.post-list--tag-list,
.post-list--archive-list {
  padding-bottom: 104px;
}
.post-list--tag-list .breadcrumb,
.post-list--archive-list .breadcrumb {
  width: min(100%, 1140px);
  margin: 0 auto 18px;
}
.post-list--tag-list .post-list__inner,
.post-list--archive-list .post-list__inner {
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 52px 78px 62px 80px;
  border: 1px solid #222222;
  border-radius: 20px;
  background: #ffffff;
}
.post-list--tag-list .post-list__header,
.post-list--archive-list .post-list__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.post-list--tag-list .post-list__title,
.post-list--archive-list .post-list__title {
  flex: 0 0 auto;
  margin: 0;
  color: #222222;
  font-family: "Comfortaa", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}
.post-list--tag-list .post-list__description,
.post-list--archive-list .post-list__description {
  width: min(100%, 680px);
  color: #5b524d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
}
.post-list--tag-list .post-list__description p,
.post-list--archive-list .post-list__description p {
  margin: 0;
}
.post-list--tag-list .post-list__description p + p,
.post-list--archive-list .post-list__description p + p {
  margin-top: 16px;
}
.post-list--tag-list .post-list__category-block,
.post-list--archive-list .post-list__category-block {
  gap: 14px;
  margin-top: 0;
}
.post-list--tag-list .post-list__category-link,
.post-list--archive-list .post-list__category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border: 2px solid #e5dbd3;
  border-radius: 20px 20px 20px 0;
  background: #ffffff;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.post-list--tag-list .post-list__category-link:hover,
.post-list--archive-list .post-list__category-link:hover {
  background: #e5dbd3;
  border-color: #d8c6ba;
  transform: translateY(-1px);
}
.post-list--tag-list .post-list__items,
.post-list--archive-list .post-list__items {
  display: grid;
  gap: 24px;
}
.post-list--tag-list .post-list__item,
.post-list--archive-list .post-list__item {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid #e5dbd3;
  border-radius: 20px;
  background: #fcfaf8;
}
.post-list--tag-list .post-list__thumb,
.post-list--archive-list .post-list__thumb {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #f1ebe6;
}
.post-list--tag-list .post-list__thumb img,
.post-list--archive-list .post-list__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.post-list--tag-list .post-list__body,
.post-list--archive-list .post-list__body {
  min-width: 0;
}
.post-list--tag-list .post-list__meta,
.post-list--archive-list .post-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #6e6e6e;
  font-family: "Comfortaa", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.post-list--tag-list .post-list__categories,
.post-list--archive-list .post-list__categories {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
}
.post-list--tag-list .post-list__item-title,
.post-list--archive-list .post-list__item-title {
  margin: 0 0 14px;
  color: #222222;
  font-family: "Kiwi Maru", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.post-list--tag-list .post-list__item-title a,
.post-list--archive-list .post-list__item-title a {
  color: inherit;
  text-decoration: none;
}
.post-list--tag-list .post-list__tags,
.post-list--archive-list .post-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.post-list--tag-list .post-list__tag,
.post-list--archive-list .post-list__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px 4px;
  border-radius: 12px 12px 12px 0;
  background: #e5dbd3;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
.post-list--tag-list .post-list__excerpt,
.post-list--archive-list .post-list__excerpt {
  color: #5b524d;
  font-size: 14px;
  line-height: 1.85;
}
.post-list--tag-list .post-list__excerpt > :first-child,
.post-list--archive-list .post-list__excerpt > :first-child {
  margin-top: 0;
}
.post-list--tag-list .post-list__excerpt > :last-child,
.post-list--archive-list .post-list__excerpt > :last-child {
  margin-bottom: 0;
}
.post-list--tag-list .post-list__empty,
.post-list--archive-list .post-list__empty {
  padding: 48px 24px;
  border: 1px solid #e5dbd3;
  border-radius: 20px;
  background: #fcfaf8;
  text-align: center;
}
.post-list--tag-list .post-list__empty h2,
.post-list--tag-list .post-list__empty p,
.post-list--archive-list .post-list__empty h2,
.post-list--archive-list .post-list__empty p {
  margin: 0;
}
.post-list--tag-list .post-list__empty p,
.post-list--archive-list .post-list__empty p {
  margin-top: 10px;
  color: #5b524d;
}

.post-list--category-archive .archive-other-categories {
  padding: 64px 0 104px;
  background: #EDE9E3;
  border-top: 1px solid #222222;
}
.post-list--category-archive .archive-other-categories__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}
.post-list--category-archive .archive-other-categories__title {
  margin: 0;
  color: #222222;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-align: center;
}
.post-list--category-archive .archive-other-categories__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.post-list--category-archive .archive-other-categories__card {
  --archive-category-accent: #fa966f;
  --archive-category-icon: url("../images/common/icon_feature.svg");
  --archive-category-lead-icon: url("../images/common/icon-eye.svg");
  --archive-category-icon-width: 120px;
  --archive-category-icon-height: 162px;
  --archive-category-icon-opacity: 0.12;
  --archive-category-icon-hover-opacity: 0.2;
  --archive-category-icon-right: 13px;
  --archive-category-icon-bottom: -45px;
  --archive-category-bg: rgba(255, 255, 255, 0.92);
  --archive-category-hover-bg: var(--archive-category-accent);
  position: relative;
  display: flex;
  align-items: center;
  width: 352px;
  min-height: 121px;
  padding: 16px 20px;
  border: 2px solid var(--archive-category-accent);
  border-radius: 20px;
  background: var(--archive-category-bg);
  color: #222222;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.post-list--category-archive .archive-other-categories__card:hover, .post-list--category-archive .archive-other-categories__card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(34, 34, 34, 0.08);
  background: var(--archive-category-hover-bg);
}
.post-list--category-archive .archive-other-categories__card:hover .archive-other-categories__icon, .post-list--category-archive .archive-other-categories__card:focus-visible .archive-other-categories__icon {
  opacity: var(--archive-category-icon-hover-opacity);
  transform: scale(1.02);
}
.post-list--category-archive .archive-other-categories__card--feature {
  --archive-category-accent: #fa966f;
  --archive-category-icon: url("../images/common/icon_feature.svg");
  --archive-category-hover-bg: #fa966f;
}
.post-list--category-archive .archive-other-categories__card--people {
  --archive-category-accent: #53ddea;
  --archive-category-icon: url("../images/common/iconpeople.svg");
  --archive-category-icon-width: 120px;
  --archive-category-icon-height: 162px;
  --archive-category-icon-opacity: 0.13;
  --archive-category-icon-hover-opacity: 0.18;
  --archive-category-icon-right: 13px;
  --archive-category-icon-bottom: -45px;
  --archive-category-hover-bg: #53ddea;
}
.post-list--category-archive .archive-other-categories__card--life {
  --archive-category-accent: #d98bf5;
  --archive-category-icon: url("../images/common/icon_living.svg");
  --archive-category-icon-right: 10px;
  --archive-category-icon-bottom: -37px;
  --archive-category-hover-bg: #d98bf5;
}
.post-list--category-archive .archive-other-categories__card--community {
  --archive-category-accent: #8cec7d;
  --archive-category-icon: url("../images/common/icon_connection.svg");
  --archive-category-icon-right: 0px;
  --archive-category-icon-bottom: 0px;
  --archive-category-hover-bg: #8cec7d;
}
.post-list--category-archive .archive-other-categories__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  position: relative;
  z-index: 1;
  color: #222222;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.post-list--category-archive .archive-other-categories__label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: center/contain no-repeat var(--archive-category-lead-icon);
  opacity: 0.95;
}
.post-list--category-archive .archive-other-categories__icon {
  position: absolute;
  right: var(--archive-category-icon-right);
  bottom: var(--archive-category-icon-bottom);
  width: var(--archive-category-icon-width);
  height: var(--archive-category-icon-height);
  background: center/contain no-repeat var(--archive-category-icon);
  background-position: right center;
  opacity: var(--archive-category-icon-opacity);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (max-width: 767px) {
  .post-list--tag-list,
  .post-list--archive-list {
    padding-bottom: 72px;
  }
  .post-list--tag-list .breadcrumb,
  .post-list--archive-list .breadcrumb {
    width: 330px;
  }
  .post-list--tag-list .post-list__inner,
  .post-list--archive-list .post-list__inner {
    width: 330px;
    padding: 24px 20px;
  }
  .post-list--tag-list .post-list__header,
  .post-list--archive-list .post-list__header {
    display: block;
    margin-bottom: 24px;
  }
  .post-list--tag-list .post-list__title,
  .post-list--archive-list .post-list__title {
    font-size: 22px;
    line-height: 1.136;
  }
  .post-list--tag-list .post-list__description,
  .post-list--archive-list .post-list__description {
    width: 100%;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
  }
  .post-list--tag-list .post-list__description p + p,
  .post-list--archive-list .post-list__description p + p {
    margin-top: 12px;
  }
  .post-list--tag-list .post-list__category-block,
  .post-list--archive-list .post-list__category-block {
    gap: 12px;
  }
  .post-list--tag-list .post-list__category-link,
  .post-list--archive-list .post-list__category-link {
    min-height: 29px;
    padding: 6px 13px 7px;
    font-size: 12px;
  }
  .post-list--tag-list .post-list__items,
  .post-list--archive-list .post-list__items {
    gap: 16px;
  }
  .post-list--tag-list .post-list__item,
  .post-list--archive-list .post-list__item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
  .post-list--tag-list .post-list__meta,
  .post-list--archive-list .post-list__meta {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .post-list--tag-list .post-list__item-title,
  .post-list--archive-list .post-list__item-title {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .post-list--tag-list .post-list__tags,
  .post-list--archive-list .post-list__tags {
    gap: 6px;
    margin-bottom: 10px;
  }
  .post-list--tag-list .post-list__tag,
  .post-list--archive-list .post-list__tag {
    min-height: 20px;
    padding: 3px 8px 4px;
    font-size: 10px;
  }
  .post-list--tag-list .post-list__excerpt,
  .post-list--archive-list .post-list__excerpt {
    font-size: 13px;
  }
  .post-list--category-archive .archive-other-categories {
    padding-top: 40px;
  }
  .post-list--category-archive .archive-other-categories__inner {
    width: 330px;
  }
  .post-list--category-archive .archive-other-categories__title {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
  .post-list--category-archive .archive-other-categories__grid {
    flex-wrap: wrap;
    gap: 15px;
  }
  .post-list--category-archive .archive-other-categories__card {
    width: 100%;
    max-width: 280px;
    min-height: 96px;
    padding: 14px 14px 14px 16px;
    border-radius: 20px;
  }
  .post-list--category-archive .archive-other-categories__card--people {
    --archive-category-icon-width: 86px;
    --archive-category-icon-height: 116px;
    --archive-category-icon-right: 13px;
    --archive-category-icon-bottom: -45px;
  }
  .post-list--category-archive .archive-other-categories__label {
    gap: 7px;
    font-size: 22px;
  }
  .post-list--category-archive .archive-other-categories__label::before {
    width: 16px;
    height: 16px;
  }
  .post-list--category-archive .archive-other-categories__icon {
    --archive-category-icon-width: 86px;
    --archive-category-icon-height: 116px;
    --archive-category-icon-right: 13px;
    --archive-category-icon-bottom: -45px;
  }
}
.error404 .not-found-page {
  padding: 56px 0 104px;
}
.error404 .not-found-page__inner {
  position: relative;
  overflow: hidden;
  width: min(100% - 80px, 1140px);
  margin: 0 auto;
  padding: 72px 80px;
}
.error404 .not-found-page__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fa966f;
  color: #ffffff;
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.error404 .not-found-page__code {
  margin: 0;
  color: #222222;
  font-family: "Comfortaa", sans-serif;
  font-size: clamp(96px, 18vw, 180px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.04em;
}
.error404 .not-found-page__content {
  max-width: 620px;
  margin-top: 20px;
}
.error404 .not-found-page__title {
  margin: 0;
  color: #222222;
  font-family: "Kiwi Maru", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.5;
}
.error404 .not-found-page__message {
  margin-top: 20px;
  color: #5b524d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
}
.error404 .not-found-page__message p {
  margin: 0;
}
.error404 .not-found-page__message p + p {
  margin-top: 8px;
}
.error404 .not-found-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.error404 .not-found-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 192px;
  min-height: 54px;
  padding: 14px 24px;
  border: 2px solid #222222;
  border-radius: 20px 20px 20px 0;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.error404 .not-found-page__button:hover {
  transform: translateY(-2px);
}
.error404 .not-found-page__button.is-primary {
  background: #222222;
  color: #ffffff;
}
.error404 .not-found-page__button.is-secondary {
  background: #ffffff;
}

@media (max-width: 767px) {
  .error404 .not-found-page {
    padding: 32px 0 72px;
  }
  .error404 .not-found-page__inner {
    width: 330px;
    padding: 36px 24px 40px;
    border-radius: 20px;
  }
  .error404 .not-found-page__eyebrow {
    margin-bottom: 16px;
    padding: 7px 14px;
    font-size: 12px;
  }
  .error404 .not-found-page__title {
    font-size: 24px;
    line-height: 1.6;
  }
  .error404 .not-found-page__message {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }
  .error404 .not-found-page__actions {
    gap: 12px;
    margin-top: 24px;
  }
  .error404 .not-found-page__button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 14px;
  }
}
.single-article-page {
  --single-accent: #fa966f;
  --single-surface-soft: #fef1ea;
  --single-frame-border: #fa966f;
  --single-chip-bg: #e5dbd3;
  --single-chip-border: #d6cec6;
  --single-share-bg: #fffdfb;
  --single-share-title: #fa966f;
  background: linear-gradient(180deg, var(--single-accent) 0, var(--single-accent) 240px, #f7f7f7 240px, #f7f7f7 100%);
}
.single-article-page[data-category=people] {
  --single-accent: #53ddea;
  --single-surface-soft: #eefcfe;
  --single-frame-border: #53ddea;
  --single-chip-bg: #ddf8fc;
  --single-chip-border: #bdebf2;
  --single-share-title: #32b9c7;
}
.single-article-page[data-category=life] {
  --single-accent: #d98bf5;
  --single-surface-soft: #faf1fe;
  --single-frame-border: #d98bf5;
  --single-chip-bg: #f2e5fa;
  --single-chip-border: #e2ccef;
  --single-share-title: #bf67de;
}
.single-article-page[data-category=community] {
  --single-accent: #8cec7d;
  --single-surface-soft: #f1fdea;
  --single-frame-border: #8cec7d;
  --single-chip-bg: #e9f9e2;
  --single-chip-border: #cde8c3;
  --single-share-title: #61c952;
}
.single-article-page__hero-inner, .single-article-page__content-wrap,
.single-article-page .single-related-grid__inner,
.single-article-page .single-article-tags__panel {
  width: min(1120px, 100% - 48px);
  margin-left: auto;
  margin-right: auto;
}
.single-article-page__hero-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 34px 42px;
  background: var(--single-surface-soft);
  border: 1.5px solid #222222;
  border-radius: 28px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.24) inset;
}
.single-article-page__hero-image-frame {
  overflow: hidden;
  border: 2px solid var(--single-frame-border);
  border-radius: 18px;
  background: #ffffff;
}
.single-article-page__hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  max-height: 425px;
}
.single-article-page__hero-body {
  min-width: 0;
}
.single-article-page__card-new {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 78px;
  height: 60px;
}
.single-article-page__card-new-base, .single-article-page__card-new-hover {
  position: absolute;
  inset: 0;
  background: center/contain no-repeat;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.single-article-page__card-new-base {
  opacity: 1;
  background-image: url("../images/common/icon_new.png");
}
.single-article-page__card-new-hover {
  opacity: 0;
  background-image: url("../images/common/icon_new_on.png");
}
.single-article-page__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #58b7f7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.single-article-page__meta {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin: 0;
  color: #6E6E6E;
  font-size: 13px;
  line-height: 1;
  font-family: var(--font-display);
}
.single-article-page__new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f9d596;
  color: #222222;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.single-article-page__title {
  font-family: var(--font-heading);
  margin: 18px 0 0;
  color: #222222;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.05em;
  word-break: break-word;
}
.single-article-page__hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin-top: 24px;
}
.single-article-page__hero-tags a {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-flex;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  align-items: center;
  min-width: 49px;
  min-height: 20px;
  padding: 1px 10px 2px 8px;
  border-radius: 10px 10px 10px 0;
  background: #E5DBD3;
  color: #222222;
  line-height: 1;
  text-decoration: none;
}
.single-article-page__content-wrap {
  margin-top: 32px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(34, 34, 34, 0.06);
}
.single-article-page__content-card {
  padding: 112px 150px 50px;
}
.single-article-page__content {
  color: #222222;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 2.15;
}
.single-article-page__content > *:first-child {
  margin-top: 0;
}
.single-article-page__content p,
.single-article-page__content ul,
.single-article-page__content ol,
.single-article-page__content blockquote {
  margin: 0 0 1.8em;
}
.single-article-page__content h1,
.single-article-page__content h2,
.single-article-page__content h3,
.single-article-page__content h4 {
  margin: 0 0 1.8em;
  color: #222222;
  font-weight: 500;
  line-height: 1.5;
}
.single-article-page__content h1 {
  font-size: 32px;
  line-height: 1.25;
}
.single-article-page__content h2 {
  font-size: 24px;
}
.single-article-page__content h3 {
  font-size: 18px;
}
.single-article-page__content h4 {
  font-size: 16px;
}
.single-article-page__content h5 {
  font-size: 14px;
  line-height: 1.5;
}
.single-article-page__content h6 {
  font-size: 12px;
  line-height: 1.5;
}
.single-article-page__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 18px;
}
.single-article-page__content figure {
  margin: 40px auto;
}
.single-article-page__content figcaption {
  margin-top: 12px;
  color: #6d645f;
  font-size: 12px;
  text-align: center;
}
.single-article-page table {
  margin: 0 0 1.8em;
}
.single-article-page table td {
  border: 1px solid #707070;
}
.single-article-page table tr td:first-of-type {
  border-left: none;
}
.single-article-page table tr td:last-of-type {
  border-right: none;
}
.single-article-page__pagination {
  margin-top: 32px;
}
.single-article-page__share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 34px;
  border: 1px dashed #222222;
  border-radius: 18px;
}
.single-article-page__share-kicker {
  display: block;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1;
  display: flex;
  justify-content: center;
}
.single-article-page__share-kicker::before {
  content: "";
  width: 1px;
  height: 15px;
  margin-right: 10px;
  rotate: -45deg;
  background: #000000;
}
.single-article-page__share-kicker::after {
  content: "";
  width: 1px;
  height: 15px;
  margin-left: 10px;
  rotate: 45deg;
  background: #000000;
}
.single-article-page__share h2 {
  margin: 8px 0 0;
  color: var(--single-share-title);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}
.single-article-page__share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.single-article-page__share-button {
  display: flex;
  width: 168px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #ffffff;
  line-height: 1;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.single-article-page__share-button.is-line {
  background: #06C755;
}
.single-article-page__share-button.is-x {
  background: #000000;
}
.single-article-page__share-button img {
  width: 25px;
  height: 25px;
}
.single-article-page__back-wrap {
  display: flex;
  justify-content: center;
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid #ebe3dc;
}
.single-article-page__back {
  display: block;
  width: 118px;
  min-height: 40px;
  margin: 0 auto;
  background: center/contain no-repeat url("../images/common/btn_back.svg");
  color: transparent;
  font-size: 0;
  transition: background-image 0.35s ease, transform 0.35s ease;
}
.single-article-page__back:hover {
  background-image: url("../images/common/btn_back_on.svg");
  transform: translateX(2px);
}
.single-article-page__empty {
  width: min(1120px, 100% - 48px);
  margin: 80px auto 0;
  padding: 56px;
  background: #ffffff;
  border-radius: 24px;
}
.single-article-page .popular-posts {
  border-top: none;
  border-bottom: none;
}
.single-article-page .related-posts {
  border-top: none;
}

.single-related-grid {
  margin-top: 74px;
}
.single-related-grid__inner {
  padding-top: 8px;
}
.single-related-grid__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.single-related-grid__title {
  margin: 0;
  color: #222222;
  font-size: 26px;
  line-height: 1.2;
}
.single-related-grid__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.single-related-grid__card {
  display: block;
  height: 100%;
  color: inherit;
}
.single-related-grid__media {
  position: relative;
}
.single-related-grid__image-frame {
  overflow: hidden;
  border: 2px solid #fa966f;
  border-radius: 14px;
  background: #ffffff;
}
.single-related-grid__item:nth-child(2n) .single-related-grid__image-frame {
  border-color: #d98bf5;
}
.single-related-grid__item:nth-child(3n) .single-related-grid__image-frame {
  border-color: #8cec7d;
}
.single-related-grid__item:nth-child(4n) .single-related-grid__image-frame {
  border-color: #53ddea;
}
.single-related-grid__image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.single-related-grid__body {
  padding-top: 14px;
}
.single-related-grid__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #6d645f;
  font-size: 11px;
  line-height: 1.4;
}
.single-related-grid__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6d645f;
}
.single-related-grid__item-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: #222222;
  font-size: 20px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.single-related-grid__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin-top: 12px;
}
.single-related-grid__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border: 1px solid #d6cec6;
  border-radius: 999px;
  background: #ffffff;
  color: #444444;
  font-size: 11px;
  line-height: 1;
}

.single-article-tags {
  margin-top: 82px;
}
.single-article-tags__panel {
  padding: 32px 34px;
  border: 1.5px solid #222222;
  border-radius: 20px;
  background: #ffffff;
}
.single-article-tags__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-article-tags__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: center/contain no-repeat url("../images/top/icon_tag.svg");
}
.single-article-tags__title {
  margin: 0;
  color: #222222;
  font-size: 26px;
  line-height: 1;
}
.single-article-tags__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin-top: 22px;
}
.single-article-tags__item {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  border: 1px solid #d6cec6;
  border-radius: 999px;
  background: #ffffff;
  color: #222222;
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .single-article-page__hero-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .single-article-page__share {
    flex-direction: column;
    align-items: flex-start;
  }
  .single-related-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .single-article-page {
    background: linear-gradient(180deg, var(--single-accent) 0, var(--single-accent) 180px, #f7f3ef 180px, #f7f3ef 100%);
  }
  .single-article-page__hero-inner, .single-article-page__content-wrap,
  .single-article-page .single-related-grid__inner,
  .single-article-page .single-article-tags__panel {
    width: calc(100% - 24px);
  }
  .single-article-page .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 14px;
    font-size: 11px;
  }
  .single-article-page__hero-card {
    padding: 18px 18px 22px;
    border-radius: 22px;
  }
  .single-article-page__hero-image {
    aspect-ratio: 4/3;
  }
  .single-article-page__title {
    font-size: 24px;
  }
  .single-article-page__card-new {
    width: 64px;
    height: 50px;
  }
  .single-article-page__content-card {
    padding: 28px 18px 24px;
    border-radius: 22px;
  }
  .single-article-page__content {
    font-size: 14px;
    line-height: 2;
  }
  .single-article-page__content img,
  .single-article-page__content figure {
    margin: 28px auto;
  }
  .single-article-page__share {
    padding: 22px 18px;
    margin-top: 38px;
  }
  .single-article-page__share h2 {
    font-size: 24px;
  }
  .single-article-page__share-actions, .single-article-page__share-button {
    width: 100%;
  }
  .single-related-grid {
    margin-top: 54px;
  }
  .single-related-grid__title {
    font-size: 22px;
  }
  .single-related-grid__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .single-related-grid__item-title {
    font-size: 17px;
  }
  .single-article-tags {
    margin-top: 58px;
  }
  .single-article-tags__panel {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .single-article-tags__title {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1239px) {
  .category-posts {
    --category-scale: clamp(0.68, calc(100vw / 1140px), 1);
  }
  .category-posts__grid {
    grid-template-columns: repeat(3, calc(380px * var(--category-scale)));
  }
  .category-posts__heading-title-image,
  .category-posts .category-posts__heading-description {
    margin-left: 50px;
  }
  .category-posts__footer-controls {
    right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top-page {
    position: relative;
    overflow: hidden;
  }
  .top-page::before,
  .top-page::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 20px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 10px, transparent 0 9px, currentColor 9px 10px, transparent 10px) center top/20px 40px repeat-y;
  }
  .top-page::before {
    left: 0;
    color: var(--top-cyan);
  }
  .top-page::after {
    right: 0;
    color: var(--top-purple);
  }
  .top-header__inner {
    position: relative;
    min-height: 50px;
    padding: 0 30px;
  }
  .top-header__menu-button {
    display: inline-flex;
    position: absolute;
    top: 9px;
    right: 31px;
    z-index: 2;
    width: 29px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
  }
  .top-header__logo {
    position: absolute;
    top: 13px;
    left: 30px;
    transform: none;
  }
  .top-header__logo-image {
    width: 190px;
  }
  .top-header__nav {
    display: none;
  }
  .top-header.is-open .top-header__logo {
    top: 13px;
    left: 30px;
  }
  .top-header.is-open .top-header__menu-button {
    top: 9px;
    right: 31px;
    width: 29px;
    margin-left: 0;
    justify-content: flex-start;
  }
  .top-header.is-open .top-header__menu-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .top-header.is-open .top-header__menu-icon span:nth-child(2) {
    opacity: 0;
  }
  .top-header.is-open .top-header__menu-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .top-drawer {
    position: fixed;
    top: 50px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    height: calc(100svh - 50px);
    padding: 18px 0;
    overflow-y: auto;
    background: rgba(34, 34, 34, 0.16);
  }
  .top-drawer.is-open {
    display: block;
  }
  .top-drawer__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(100% - 60px);
    min-height: calc(100svh - 86px);
    margin: 0 auto;
    padding: 44px 24px 54px;
    border: 2px solid var(--top-line);
    border-radius: 30px;
    background: var(--top-paper);
    box-shadow: var(--top-shadow);
  }
  .top-drawer__nav {
    flex: 1 0 auto;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 3.8svh, 30px);
  }
  .top-drawer__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    font-size: 15px;
    line-height: 1.45;
  }
  .top-drawer__nav a:nth-child(-n+2) {
    font-family: "Comfortaa", sans-serif;
    font-weight: 500;
  }
  .top-drawer__nav a:nth-child(n+3) {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
  }
  .top-drawer__nav a.is-external {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
  }
  .top-drawer__sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: clamp(48px, 8svh, 84px);
    font-family: "Comfortaa", sans-serif;
    font-size: 13px;
    line-height: 1;
  }
  .top-drawer__sns a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
  }
  .top-drawer__instagram-icon {
    width: 30px;
    height: 30px;
    background: center/contain no-repeat url("../images/common/icon_ig.png");
  }
  body.is-top-menu-open {
    overflow: hidden;
  }
  .top-hero {
    padding-bottom: 0;
  }
  .top-hero__slide {
    min-height: 586px;
    padding: 0;
    padding-top: 30px;
    padding-bottom: 88px;
  }
  .top-hero .swiper-slide {
    width: 310px;
  }
  .top-hero__swiper {
    --top-hero-nav-offset: calc(100% - 40px);
    --top-hero-nav-width: 48px;
  }
  .top-hero__swiper::before,
  .top-hero__swiper::after {
    width: 252px;
    height: 56px;
  }
  .top-hero__swiper::after {
    left: calc(100% - 40px);
    width: 274px;
    height: 106px;
  }
  .top-hero__swiper::before {
    left: 40px;
  }
  .top-hero__panel {
    grid-template-columns: 1fr;
    gap: 0;
    width: 278px;
    min-height: 480px;
    margin-top: 0;
    padding: 30px 0 22px;
    border-radius: 30px;
  }
  .top-hero__media {
    margin-bottom: 0;
  }
  .top-hero__new {
    top: -9px;
    left: 29px;
    width: 78px;
  }
  .top-hero__image-frame {
    border-width: 4px;
    border-radius: 24px;
    width: 226px;
    margin: 0 auto;
  }
  .top-hero__image {
    height: 220px;
    width: 226px;
  }
  .top-hero__content {
    min-height: 0;
    width: 226px;
    margin: 0 auto;
    padding: 0;
  }
  .top-hero__category {
    align-self: center;
    min-height: 46px;
    margin-top: -22px;
    margin-bottom: 18px;
    padding: 0 16px;
    border-radius: 16px;
    background: var(--slide-surface);
  }
  .top-hero__category::before {
    width: 16px;
    height: 16px;
  }
  .top-hero__category-label {
    font-size: 18px;
  }
  .top-hero__date {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .top-hero__title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.2;
  }
  .top-hero__title-text {
    padding: 0.06em 0.12em;
  }
  .top-hero__tags {
    gap: 4px;
    margin-top: 14px;
  }
  .top-hero__tag {
    min-height: 18px;
    padding: 4px 6px 5px;
    border-radius: 10px 10px 10px 0;
    font-size: 10px;
    line-height: 1;
  }
  .top-hero__more {
    align-self: flex-end;
    width: 94px;
    min-height: 32px;
    margin-top: 16px;
    transition: transform var(--duration-base) var(--easing-standard);
  }
  .top-hero__nav {
    top: 274px;
    width: 60px;
    height: 40px;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    background-image: url("../images/common/pager.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: none;
  }
  .top-hero__nav--prev {
    left: 26px;
  }
  .top-hero__nav--next {
    right: 26px;
  }
  .top-hero__nav:hover {
    background-image: url("../images/common/pager_on.png");
    transform: scale(1.04);
  }
  .top-hero__nav--prev:hover {
    transform: scale(-1, 1) scale(1.04);
  }
  .top-hero__pagination {
    display: none;
  }
  .top-hero__tag-strip {
    padding: 9px 13px 10px;
    font-size: 14px;
    background: #ffffff;
  }
  .top-hero__tag-strip-track {
    gap: 22px;
  }
  .about-section {
    padding: 28px 0 48px;
  }
  .about-section__inner {
    width: 300px;
  }
  .about-section__heading {
    margin-bottom: 28px;
  }
  .about-section__title-image {
    width: 206px;
  }
  .about-section__decor--heart {
    left: 4px;
    top: 56px;
    width: 49px;
  }
  .about-section__decor--pen {
    right: -2px;
    top: 62px;
    width: 75px;
  }
  .about-section__body {
    max-width: 330px;
    margin-bottom: 34px;
    font-size: 14px;
    line-height: 2;
  }
  .about-section__more {
    width: 94px;
    min-height: 32px;
    transition: transform 0.35s ease;
  }
  .category-posts__marquee {
    height: 60px;
  }
  .category-posts__marquee-track {
    gap: 24px;
    padding-right: 24px;
    font-size: 16px;
  }
  .category-posts__marquee-icon {
    width: 16px;
    height: 24px;
  }
  .category-posts__body {
    padding: 48px 30px 88px;
  }
  .category-posts__inner {
    position: relative;
    width: 330px;
    max-width: 100%;
    margin: 0 auto;
  }
  .category-posts__heading {
    display: block;
    margin-bottom: 32px;
  }
  .category-posts__heading.category-posts__heading-under {
    padding-left: 30px;
  }
  .category-posts__heading-main {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }
  .category-posts__heading-check {
    display: none;
  }
  .category-posts__heading--with-description .category-posts__heading-check {
    position: static;
    display: block;
    width: 56px;
    height: 40px;
    margin: 12px 0 0 auto;
    background: center/contain no-repeat url("../images/common/icon_check.svg");
    animation: category-posts-check-float 1.6s ease-in-out infinite;
  }
  .category-posts__heading-title-image img {
    width: 205px;
  }
  .category-posts__heading-title-text {
    font-size: 28px;
    line-height: 1.1;
  }
  .category-posts__heading-description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
  #people .category-posts__heading-title-image img,
  #community .category-posts__heading-title-image img {
    width: 205px;
  }
  #life .category-posts__heading-title-image img {
    width: 108px;
  }
  #people .category-posts__heading-description,
  #life .category-posts__heading-description,
  #community .category-posts__heading-description {
    width: 100%;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
  .category-posts#people .category-posts__heading-description, .category-posts#life .category-posts__heading-description, .category-posts#community .category-posts__heading-description {
    width: 300px;
  }
  .category-posts__footer-controls {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    margin-right: 73px;
  }
  .category-posts__footer-check {
    display: block;
    width: 61px;
    height: 44px;
    background: center/contain no-repeat url("../images/common/icon_check.svg");
  }
  .category-posts__more {
    position: static;
    width: 94px;
    min-height: 32px;
    margin: 0;
  }
  .category-posts__grid {
    grid-template-columns: repeat(2, 165px);
    /* grid-auto-rows: 326px; */
  }
  .category-posts__grid::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 1;
    width: 100vw;
    transform: translateX(-50%);
    background: repeating-linear-gradient(to right, #222222 0 3px, transparent 3px 8px) top left/100% 1px no-repeat;
    /* repeating-linear-gradient(to right, #222222 0 3px, transparent 3px 8px) 0 326px / 100% 1px no-repeat,
    repeating-linear-gradient(to right, #222222 0 3px, transparent 3px 8px) 0 652px / 100% 1px no-repeat,
    repeating-linear-gradient(to right, #222222 0 3px, transparent 3px 8px) bottom left / 100% 1px no-repeat; */
  }
  .category-posts__grid::after {
    display: block;
    background: repeating-linear-gradient(to bottom, #222222 0 3px, transparent 3px 8px) top left/1px 100% no-repeat, repeating-linear-gradient(to bottom, #222222 0 3px, transparent 3px 8px) left 165px top/1px 100% no-repeat, repeating-linear-gradient(to bottom, #222222 0 3px, transparent 3px 8px) top right/1px 100% no-repeat;
  }
  .category-posts__card-item {
    padding-bottom: 10px;
  }
  .category-posts__card {
    gap: 8px;
    /* min-height: 316px; */
    padding: 12px 12px 16px;
  }
  .category-posts__card-new {
    top: -7px;
    left: -17px;
    width: 62px;
    height: 45px;
  }
  .category-posts__card-image-frame {
    width: 141px;
    height: 139px;
    width: 100%;
  }
  .category-posts__card-body {
    gap: 10px;
  }
  .category-posts__card-meta {
    gap: 6px;
    font-size: 11px;
  }
  .category-posts__card-meta-dot {
    width: 2px;
    height: 2px;
  }
  .category-posts__card-title {
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 4;
  }
  .category-posts__card-tags span {
    min-height: 19px;
    padding: 4px 6px 5px;
    font-size: 10px;
  }
  .category-posts__more {
    transition: transform 0.35s ease;
  }
  .category-posts#people .category-posts__heading.category-posts__heading-under, .category-posts#life .category-posts__heading.category-posts__heading-under, .category-posts#community .category-posts__heading.category-posts__heading-under {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 390px) {
  .category-posts__inner {
    width: 84.615vw;
    max-width: none;
  }
  .category-posts__body {
    padding: 12.308vw 7.692vw 22.564vw;
  }
  .category-posts__heading {
    margin-bottom: 8.205vw;
  }
  .category-posts__heading-title-image img {
    width: 52.564vw;
  }
  #people .category-posts__heading-title-image img,
  #community .category-posts__heading-title-image img {
    width: 52.564vw;
  }
  #life .category-posts__heading-title-image img {
    width: 27.692vw;
  }
  .category-posts__heading-title-text {
    font-size: 7.179vw;
  }
  .category-posts__heading-description,
  #people .category-posts__heading-description,
  #life .category-posts__heading-description,
  #community .category-posts__heading-description,
  .category-posts#people .category-posts__heading-description,
  .category-posts#life .category-posts__heading-description,
  .category-posts#community .category-posts__heading-description {
    width: 76.923vw;
    margin-top: 3.077vw;
    font-size: 3.59vw;
  }
  .category-posts__footer-controls {
    gap: 4.103vw;
    margin-top: 4.615vw;
    margin-right: 18.718vw;
  }
  .category-posts__footer-check {
    width: 15.641vw;
    height: 11.282vw;
  }
  .category-posts__more {
    width: 24.103vw;
    min-height: 8.205vw;
  }
  .category-posts__grid {
    grid-template-columns: repeat(2, 42.308vw);
  }
  .category-posts__grid::after {
    background: repeating-linear-gradient(to bottom, #222222 0 3px, transparent 3px 8px) top left/1px 100% no-repeat, repeating-linear-gradient(to bottom, #222222 0 3px, transparent 3px 8px) left 42.308vw top/1px 100% no-repeat, repeating-linear-gradient(to bottom, #222222 0 3px, transparent 3px 8px) top right/1px 100% no-repeat;
  }
  .category-posts__card-item {
    padding-bottom: 2.564vw;
  }
  .category-posts__card {
    gap: 2.051vw;
    padding: 3.077vw 3.077vw 4.103vw;
  }
  .category-posts__card-new {
    top: -1.795vw;
    left: -4.359vw;
    width: 15.897vw;
    height: 11.538vw;
  }
  .category-posts__card-body {
    gap: 2.564vw;
  }
  .category-posts__card-meta {
    gap: 1.538vw;
    font-size: 2.821vw;
  }
  .category-posts__card-meta-dot {
    width: 0.513vw;
    height: 0.513vw;
  }
  .category-posts__card-title {
    font-size: 3.59vw;
  }
  .category-posts__card-tags span {
    min-height: 4.872vw;
    padding: 1.026vw 1.538vw 1.282vw;
    font-size: 2.564vw;
  }
  .category-posts__heading.category-posts__heading-under,
  .category-posts#people .category-posts__heading.category-posts__heading-under, .category-posts#life .category-posts__heading.category-posts__heading-under, .category-posts#community .category-posts__heading.category-posts__heading-under {
    padding-left: 7.692vw;
  }
}
@media screen and (max-width: 767px) {
  .popular-posts {
    padding: 70px 0 80px;
  }
  .popular-posts__panel {
    width: min(100%, 50vw + 165px);
    margin-left: auto;
    padding: 24px 0 24px 20px;
    border-right: 0;
    border-radius: 20px 0 0 20px;
  }
  .popular-posts__header {
    padding: 0 20px 24px 0;
  }
  .popular-posts__title-wrap {
    gap: 8px;
  }
  .popular-posts__title-icon {
    width: 16px;
    height: 22px;
  }
  .popular-posts__title {
    font-size: 22px;
  }
  .popular-posts__nav {
    gap: 8px;
  }
  .popular-posts__nav-button {
    width: 48px;
    height: 31.8px;
  }
  .popular-posts__swiper-slide {
    width: 165px;
  }
  .popular-posts__swiper-slide::after {
    height: 100%;
  }
  .popular-posts__swiper::before {
    left: -20px;
    width: 20px;
  }
  .popular-posts__card {
    min-height: 302px;
    padding: 12px 12px 12px 12px;
  }
  .popular-posts__card-new {
    top: -7px;
    left: -17px;
    width: 62px;
    height: 45px;
  }
  .popular-posts__card-image-frame {
    width: 141px;
    height: 139px;
  }
  .popular-posts__card-number {
    right: 0;
    bottom: -8px;
    font-size: 20px;
  }
  .popular-posts__card-body {
    gap: 10px;
  }
  .popular-posts__card-meta {
    gap: 6px;
    font-size: 11px;
  }
  .popular-posts__card-meta-dot {
    width: 2px;
    height: 2px;
  }
  .popular-posts__card-title {
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 4;
  }
  .popular-posts__card-tags span {
    min-height: 19px;
    padding: 4px 6px 5px;
    font-size: 10px;
  }
  .tags-section {
    padding: 80px 0 80px;
  }
  .tags-section__panel {
    display: block;
    width: 100%;
    padding: 24px 20px 24px;
    max-width: 300px;
  }
  .tags-section__heading {
    gap: 6.7px;
    padding-top: 0;
  }
  .tags-section__icon {
    width: 16.3px;
    height: 22px;
  }
  .tags-section__title {
    font-size: 22px;
    line-height: 1.136;
  }
  .tags-section__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
  }
  .tags-section__tag {
    min-height: 29px;
    padding: 6px 13px 7px;
    border-radius: 20px 20px 20px 0;
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .site-footer__inner {
    min-height: 391px;
    padding: 0 0 40px;
  }
  .site-footer__logo {
    width: 127.2px;
    padding-top: 21px;
  }
  .site-footer__visual {
    position: static;
  }
  .site-footer__visual img {
    width: 100%;
  }
  .site-footer__visual--left,
  .site-footer__visual--right {
    width: 198.4px;
    top: auto;
  }
  .site-footer__scenery {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    margin: 21px auto 0;
  }
  .site-footer__meta {
    display: block;
    margin-top: 35px;
  }
  .site-footer__links {
    justify-content: center;
    gap: 24px;
  }
  .site-footer__sns {
    justify-content: center;
    gap: 12px;
    margin-top: 33px;
  }
  .site-footer__copy {
    margin-top: 39px;
    font-size: 11px;
  }
}/*# sourceMappingURL=import.css.map */