:root {
  color-scheme: light;
  --ink: #14345c;
  --ink-deep: #082348;
  --ink-soft: #42627f;
  --paper: #fffefb;
  --line: #d8e2ea;
  --accent: #b8ddeb;
  --max-width: 980px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-link {
  color: var(--ink-deep);
  text-decoration: underline;
  text-decoration-color: rgba(66, 98, 127, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  text-decoration-color: rgba(66, 98, 127, 0.72);
  outline: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 36px 0 48px;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 6px 0 40px;
}

.site-name {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.site-name::after {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 18px;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: translateX(-50%);
}

.hero {
  display: grid;
  justify-items: center;
  gap: 34px;
  padding: 0 0 52px;
  text-align: center;
  animation: fade-in 900ms ease-out both;
}

.hero-visual {
  width: min(100%, 680px);
  margin: 0;
}

.hero-visual img {
  width: 100%;
  border: 1px solid rgba(20, 52, 92, 0.11);
  border-radius: 2px;
  box-shadow: 0 18px 48px rgba(8, 35, 72, 0.08);
}

.hero-copy {
  max-width: 740px;
}

.quiet-label {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  color: var(--ink-deep);
  font-size: clamp(1.74rem, 1.55rem + 0.85vw, 2.34rem);
  font-weight: 500;
  line-height: 1.55;
}

.lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 0.9rem + 0.2vw, 1.04rem);
  line-height: 2;
}

.hero-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.hero-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-deep);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero-action a:hover,
.hero-action a:focus-visible {
  border-color: rgba(66, 98, 127, 0.44);
  background: rgba(184, 221, 235, 0.16);
  color: var(--ink);
  outline: none;
}

.profile {
  width: min(100%, 740px);
  margin: 0 auto 52px;
  padding: 34px clamp(18px, 4vw, 42px) 38px;
  border: 1px dashed rgba(66, 98, 127, 0.42);
  border-radius: 2px;
  color: var(--ink-deep);
  text-align: center;
  animation: fade-in 900ms ease-out 120ms both;
}

.profile h2 {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.profile-text {
  display: grid;
  gap: 24px;
  font-size: clamp(0.96rem, 0.93rem + 0.16vw, 1.04rem);
  line-height: 2.08;
}

.profile-perspective-link {
  margin-top: 8px;
}

.alias-name {
  display: inline-block;
}

.intro {
  position: relative;
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 46px 0 54px;
  color: var(--ink-deep);
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.1rem);
  text-align: center;
}

.intro::before,
.intro::after {
  position: absolute;
  left: 50%;
  width: 72px;
  height: 1px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}

.intro::before {
  top: 0;
}

.intro::after {
  bottom: 0;
}

.recent-note {
  width: min(100%, 600px);
  margin: 44px auto 0;
  color: var(--ink-deep);
  text-align: center;
  animation: fade-in 900ms ease-out 180ms both;
}

.recent-note-inner {
  padding: 24px clamp(18px, 4vw, 34px) 26px;
  border: 1px solid rgba(66, 98, 127, 0.22);
  border-radius: 2px;
  background:
    linear-gradient(rgba(255, 254, 251, 0.84), rgba(255, 254, 251, 0.84)),
    linear-gradient(180deg, rgba(184, 221, 235, 0.16), rgba(255, 254, 251, 0));
}

.recent-note h2 {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.recent-date {
  margin-bottom: 13px;
  color: rgba(66, 98, 127, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.recent-note p:not(.recent-date) {
  color: var(--ink-deep);
  font-size: clamp(0.94rem, 0.9rem + 0.18vw, 1.02rem);
  line-height: 2;
}

.activity-log-teaser {
  width: min(100%, 520px);
  margin: 36px auto 0;
  padding: 0 18px;
  color: var(--ink-soft);
  text-align: center;
  animation: fade-in 900ms ease-out 220ms both;
}

.activity-log-teaser h2 {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.activity-log-teaser > p:not(.activity-log-teaser-link) {
  font-size: clamp(0.84rem, 0.81rem + 0.12vw, 0.9rem);
  line-height: 1.9;
}

.activity-log-teaser-link {
  margin-top: 13px;
  font-size: 0.84rem;
  line-height: 1.7;
}

.activity-log-teaser-link a {
  display: inline-block;
  color: var(--ink-deep);
  text-decoration: underline;
  text-decoration-color: rgba(66, 98, 127, 0.3);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.34em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.activity-log-teaser-link a:hover,
.activity-log-teaser-link a:focus-visible {
  color: var(--ink);
  text-decoration-color: rgba(66, 98, 127, 0.72);
  outline: none;
}

.activities {
  width: min(100%, 600px);
  margin: 0 auto;
  padding: 54px 0 28px;
}

.activities h2 {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-align: center;
}

.activities ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.activities a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.55;
  transition: color 180ms ease, background-color 180ms ease, padding 180ms ease;
}

.activities li:first-child a {
  border-top: 1px solid var(--line);
}

.activities a::after {
  flex: 0 0 auto;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.34;
  transition: width 180ms ease, opacity 180ms ease;
}

.activities a:hover,
.activities a:focus-visible {
  color: var(--ink-deep);
  background: rgba(184, 221, 235, 0.16);
  padding-left: 20px;
  outline: none;
}

.activities a:hover::after,
.activities a:focus-visible::after {
  width: 28px;
  opacity: 0.72;
}

.home-contact {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 0 18px 74px;
  color: rgba(66, 98, 127, 0.74);
  text-align: center;
  animation: fade-in 900ms ease-out 260ms both;
}

.home-contact p {
  margin: 0;
  font-size: clamp(0.8rem, 0.78rem + 0.1vw, 0.86rem);
  line-height: 1.95;
}

.home-contact-link {
  margin-top: 13px;
}

.home-contact-button {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-deep);
  font-size: 0.84rem;
  line-height: 1.7;
  text-decoration: underline;
  text-decoration-color: rgba(66, 98, 127, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.34em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.home-contact-button:hover,
.home-contact-button:focus-visible {
  color: var(--ink);
  text-decoration-color: rgba(66, 98, 127, 0.72);
  outline: none;
}

.form-privacy-note {
  color: rgba(66, 98, 127, 0.66);
  font-size: 0.76rem;
  line-height: 1.8;
}

.page.subpage {
  width: min(100% - 36px, 760px);
}

.journal-hero {
  padding: 20px 0 54px;
  text-align: center;
  animation: fade-in 900ms ease-out both;
}

.journal-hero .lead {
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
}

.journal-note {
  max-width: 580px;
  margin: 18px auto 0;
  color: rgba(66, 98, 127, 0.72);
  font-size: 0.78rem;
  line-height: 1.85;
}

.portrait-page {
  --portrait-warm: #f6eadb;
  --portrait-rose: #d9aaa0;
}

.page.portrait-page {
  width: min(100% - 36px, 960px);
}

.portrait-hero {
  position: relative;
  padding-bottom: 42px;
}

.portrait-hero::after {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--portrait-rose), transparent);
  content: "";
  transform: translateX(-50%);
}

.portrait-story {
  width: min(100%, 640px);
  margin: 0 auto;
  padding: 0 0 54px;
  color: var(--ink-deep);
  animation: fade-in 900ms ease-out 120ms both;
}

.portrait-story-block {
  padding: 34px clamp(8px, 4vw, 32px);
}

.portrait-story-block + .portrait-story-block {
  border-top: 1px solid rgba(66, 98, 127, 0.18);
}

.portrait-story-past {
  background:
    linear-gradient(135deg, rgba(246, 234, 219, 0.42), rgba(255, 254, 251, 0) 62%);
}

.portrait-story-future {
  background:
    linear-gradient(225deg, rgba(184, 221, 235, 0.15), rgba(255, 254, 251, 0) 62%);
}

.portrait-story p {
  font-size: clamp(0.96rem, 0.92rem + 0.18vw, 1.04rem);
  line-height: 2.12;
}

.portrait-story p + p {
  margin-top: 24px;
}

.portrait-gallery {
  padding: 8px 0 70px;
  animation: fade-in 900ms ease-out 180ms both;
}

.portrait-gallery-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
  text-align: center;
}

.portrait-gallery-heading .quiet-label {
  margin-bottom: 0;
}

.portrait-gallery-heading h2 {
  color: var(--ink-deep);
  font-size: clamp(1.18rem, 1.08rem + 0.4vw, 1.42rem);
  font-weight: 500;
  line-height: 1.6;
}

.portrait-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
  justify-content: center;
  gap: 22px;
}

.portrait-work-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid rgba(66, 98, 127, 0.2);
  border-radius: 2px;
  background: rgba(255, 254, 251, 0.94);
  box-shadow: 0 16px 34px rgba(8, 35, 72, 0.055);
  overflow: hidden;
}

.portrait-work-image {
  display: grid;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(246, 234, 219, 0.5), rgba(184, 221, 235, 0.18));
  aspect-ratio: 4 / 3;
  overflow: hidden;
  place-items: center;
}

.portrait-work-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portrait-work-body {
  padding: 18px 18px 21px;
}

.portrait-work-body h3 {
  margin: 0;
  color: var(--ink-deep);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.portrait-work-body p {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.85;
}

.portrait-contact-section {
  padding-bottom: 70px;
}

.portrait-contact {
  display: grid;
  justify-items: center;
  padding-top: 38px;
  border-top: 1px solid rgba(66, 98, 127, 0.18);
  text-align: center;
}

.portrait-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 10px 24px;
  border: 1px solid rgba(66, 98, 127, 0.28);
  border-radius: 2px;
  background: rgba(246, 234, 219, 0.34);
  color: var(--ink-deep);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.portrait-contact-button:hover,
.portrait-contact-button:focus-visible {
  border-color: rgba(217, 170, 160, 0.72);
  background: rgba(246, 234, 219, 0.72);
  color: var(--ink);
  outline: none;
}

.portrait-contact-note {
  max-width: 500px;
  margin-top: 14px;
}

.post-list {
  display: grid;
  gap: 14px;
  padding: 0 0 70px;
}

.post-card {
  border-top: 1px solid var(--line);
}

.post-card:last-child {
  border-bottom: 1px solid var(--line);
}

.post-card a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 16px 24px 4px;
  background: rgba(184, 221, 235, 0);
  transition: background-color 180ms ease, padding 180ms ease;
}

.post-card a:hover,
.post-card a:focus-visible {
  background: rgba(184, 221, 235, 0.13);
  padding-left: 12px;
  outline: none;
}

.post-number {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.post-body {
  display: grid;
  gap: 9px;
}

.post-body h2 {
  color: var(--ink-deep);
  font-size: clamp(1.02rem, 0.98rem + 0.2vw, 1.14rem);
  font-weight: 500;
  line-height: 1.65;
}

.post-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.9;
}

.reflection-page {
  --reflection-width: 680px;
  --series-width: 680px;
}

.reflection-hero {
  padding-bottom: 48px;
}

.reflection-hero .lead {
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.reflection-number {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.reflection-index-heading h2 {
  color: var(--ink-deep);
  font-size: clamp(1.22rem, 1.12rem + 0.42vw, 1.46rem);
  font-weight: 500;
  line-height: 1.6;
}

.reflection-intro-body {
  display: grid;
  gap: 1.25em;
  font-size: clamp(0.98rem, 0.94rem + 0.18vw, 1.06rem);
  line-height: 2.12;
}

.reflection-article-body p + p {
  margin-top: 0;
}

.reflection-thought {
  color: var(--ink-deep);
  font-weight: 500;
}

.reflection-axis {
  padding: 17px 20px;
  border-left: 3px solid rgba(66, 98, 127, 0.4);
  background: rgba(184, 221, 235, 0.11);
  font-weight: 500;
}

.reflection-catchphrase {
  padding: 18px 12px;
  border-top: 1px solid rgba(66, 98, 127, 0.24);
  border-bottom: 1px solid rgba(66, 98, 127, 0.24);
  color: var(--ink-deep);
  font-size: clamp(1.08rem, 1.02rem + 0.3vw, 1.22rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.reflection-index {
  width: min(100%, var(--reflection-width));
  margin: 0 auto;
  padding: 0 0 70px;
  animation: fade-in 900ms ease-out 180ms both;
}

.reflection-index-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}

.reflection-list {
  display: grid;
  gap: 10px;
}

.reflection-card {
  border-top: 1px solid var(--line);
}

.reflection-card:last-child {
  border-bottom: 1px solid var(--line);
}

.reflection-card-inner {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  align-items: baseline;
  min-height: 76px;
  padding: 22px 16px 22px 4px;
}

.reflection-card a.reflection-card-inner {
  transition: background-color 180ms ease, padding 180ms ease;
}

.reflection-card a.reflection-card-inner:hover,
.reflection-card a.reflection-card-inner:focus-visible {
  padding-left: 12px;
  background: rgba(184, 221, 235, 0.13);
  outline: none;
}

.reflection-card h3 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.7;
}

.manga-page {
  --manga-card-bg: rgba(255, 252, 246, 0.86);
  --manga-card-hover: rgba(184, 221, 235, 0.13);
  --manga-warm-line: rgba(202, 158, 104, 0.28);
  --manga-clay: #a66d4f;
  --manga-sage: #78927c;
}

.page.manga-catalog-page {
  width: min(100% - 36px, 960px);
}

.manga-hero {
  padding-bottom: 48px;
}

.manga-hub-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 0 auto 16px;
  padding: 0;
}

.manga-hub-links a {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 9px 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.manga-hub-links a:hover,
.manga-hub-links a:focus-visible {
  border-color: rgba(166, 109, 79, 0.38);
  background: rgba(184, 221, 235, 0.13);
  color: var(--ink-deep);
  outline: none;
}

.shop-link-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.shop-link-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  align-items: start;
  min-height: 154px;
  padding: 27px 26px 25px;
  border: 1px solid rgba(66, 98, 127, 0.28);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(239, 247, 250, 0.96), rgba(250, 253, 254, 0.96));
  color: var(--ink-deep);
  box-shadow: 0 18px 34px rgba(8, 35, 72, 0.07);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.shop-link-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(244, 248, 251, 0.98), rgba(250, 252, 253, 0.96));
}

.shop-link-card:hover,
.shop-link-card:focus-visible {
  border-color: rgba(30, 68, 102, 0.48);
  background: linear-gradient(180deg, rgba(229, 242, 248, 0.98), rgba(247, 252, 254, 0.98));
  box-shadow: 0 20px 38px rgba(8, 35, 72, 0.1);
  color: var(--ink-deep);
  outline: none;
}

.shop-link-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(66, 98, 127, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-deep);
  font-size: 1.08rem;
  line-height: 1;
}

.shop-link-copy {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.shop-link-title {
  color: var(--ink-deep);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.45;
}

.shop-link-description {
  color: rgba(66, 98, 127, 0.9);
  font-size: 0.92rem;
  line-height: 1.85;
}

.shop-link-action {
  align-self: end;
  margin-top: 5px;
  color: var(--ink-deep);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.shop-link-note {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.8;
  text-align: center;
}

.manga-hub-note {
  max-width: 680px;
  margin: 0 auto 46px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.85;
  text-align: center;
}

.work-section {
  padding: 0 0 70px;
}

.manga-section-heading {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  text-align: center;
}

.manga-section-heading h2 {
  color: var(--ink-deep);
  font-size: clamp(1.22rem, 1.12rem + 0.46vw, 1.48rem);
  font-weight: 500;
  line-height: 1.55;
}

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

.work-gallery-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  border-top-color: rgba(166, 109, 79, 0.32);
  border-radius: 2px;
  background: rgba(255, 254, 251, 0.92);
  box-shadow: 0 18px 34px rgba(8, 35, 72, 0.06);
  overflow: hidden;
}

.work-cover-link {
  display: block;
  color: inherit;
  background: #eef4f4;
}

.work-cover-link:hover,
.work-cover-link:focus-visible {
  outline: none;
}

.work-cover-frame {
  position: relative;
  margin: 0;
  background: #eef4f4;
  aspect-ratio: 27 / 38;
  overflow: hidden;
}

.work-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 260ms ease;
}

.work-card:hover .work-cover-frame img {
  transform: scale(1.025);
}

.work-cover-link:hover img,
.work-cover-link:focus-visible img {
  opacity: 0.88;
}

.work-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px 18px 22px;
}

.work-card-body h2 {
  color: var(--ink-deep);
  font-size: clamp(1.04rem, 0.98rem + 0.22vw, 1.16rem);
  font-weight: 500;
  line-height: 1.55;
}

.work-description,
.work-long-description,
.work-note,
.work-card-note,
.work-empty,
.work-preparing,
.work-detail-missing p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.9;
}

.work-card-note {
  font-size: 0.8rem;
  line-height: 1.75;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.work-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(66, 98, 127, 0.18);
  border-radius: 2px;
  background: rgba(184, 221, 235, 0.12);
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.work-meta dt {
  color: var(--manga-sage);
}

.work-meta dd {
  margin: 0;
  color: var(--ink-deep);
}

.work-card-actions,
.work-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.work-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid rgba(66, 98, 127, 0.24);
  border-radius: 2px;
  color: var(--ink-deep);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.work-button-primary {
  border-color: rgba(166, 109, 79, 0.42);
  background: rgba(166, 109, 79, 0.1);
}

.work-button:hover,
.work-button:focus-visible {
  border-color: rgba(20, 52, 92, 0.42);
  background: rgba(184, 221, 235, 0.18);
  color: var(--ink);
  outline: none;
}

.work-empty,
.work-preparing {
  width: 100%;
  padding: 18px 0;
}

.work-detail {
  padding: 8px 0 74px;
}

.work-detail-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  animation: fade-in 900ms ease-out both;
}

.work-detail-body {
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.work-detail-body h1 {
  text-align: left;
}

.work-long-description {
  color: var(--ink-deep);
  font-size: clamp(0.98rem, 0.94rem + 0.18vw, 1.04rem);
  line-height: 2.05;
}

.work-note {
  padding: 16px 18px;
  border-left: 3px solid rgba(166, 109, 79, 0.42);
  background: rgba(184, 221, 235, 0.1);
  font-size: 0.86rem;
}

.work-detail-missing {
  display: grid;
  gap: 16px;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 34px 0 54px;
  text-align: center;
}

.work-detail-missing h2 {
  color: var(--ink-deep);
  font-size: 1.24rem;
  font-weight: 500;
}

.manga-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 42px;
}

.manga-card-grid-large {
  gap: 18px;
  padding-bottom: 70px;
}

.manga-card-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.manga-card {
  min-width: 0;
}

.manga-card a,
.manga-card-inner {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 184px;
  padding: 25px 22px 27px;
  border: 1px solid var(--line);
  border-top-color: var(--manga-warm-line);
  border-radius: 2px;
  background: var(--manga-card-bg);
}

.manga-card a {
  height: 100%;
  transition: background-color 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.manga-card a:hover,
.manga-card a:focus-visible {
  padding-left: 28px;
  border-color: rgba(66, 98, 127, 0.34);
  background: var(--manga-card-hover);
  outline: none;
}

.manga-card-kicker {
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: lowercase;
}

.manga-card-body {
  display: grid;
  gap: 10px;
}

.manga-card-body h2 {
  color: var(--ink-deep);
  font-size: clamp(1.08rem, 1.02rem + 0.28vw, 1.22rem);
  font-weight: 500;
  line-height: 1.55;
}

.manga-card-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.9;
}

.series-page {
  --series-width: 700px;
}

.series-hero .lead {
  max-width: var(--series-width);
}

.series-intro {
  width: min(100%, var(--series-width));
  margin: 0 auto 38px;
  padding: 28px 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 2;
}

.episode-list {
  display: grid;
  gap: 10px;
  width: min(100%, var(--series-width));
  margin: 0 auto;
  padding: 0 0 70px;
}

.episode-card {
  border-top: 1px solid var(--line);
}

.episode-card:last-child {
  border-bottom: 1px solid var(--line);
}

.episode-card a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 20px 14px 20px 4px;
  background: rgba(184, 221, 235, 0);
  transition: background-color 180ms ease, padding 180ms ease;
}

.episode-card a:hover,
.episode-card a:focus-visible {
  background: rgba(184, 221, 235, 0.13);
  padding-left: 12px;
  outline: none;
}

.article {
  width: min(100%, var(--series-width));
  margin: 0 auto;
  padding: 10px 0 74px;
  animation: fade-in 900ms ease-out both;
}

.article-header {
  padding: 0 0 34px;
  text-align: center;
}

.article-number {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
}

.article-body {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-deep);
  font-size: clamp(0.98rem, 0.94rem + 0.18vw, 1.06rem);
  line-height: 2.12;
}

.article-body p + p {
  margin-top: 1.35em;
}

.article-body h2 {
  margin: 2.6em 0 1em;
  color: var(--ink-deep);
  font-size: clamp(1.18rem, 1.08rem + 0.34vw, 1.36rem);
  font-weight: 500;
  line-height: 1.65;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-figure {
  width: min(100%, 620px);
  margin: 2.2em auto;
}

.article-figure img {
  width: 100%;
  border: 1px solid rgba(20, 52, 92, 0.12);
  border-radius: 2px;
  box-shadow: 0 14px 32px rgba(8, 35, 72, 0.07);
}

.article-figure figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.75;
  text-align: center;
}

.article-figure-wide {
  width: 100%;
}

.article-figure-portrait {
  width: min(100%, 400px);
}

.article-highlight {
  margin: 1.7em 0;
  padding: 18px 22px;
  border-left: 3px solid rgba(166, 109, 79, 0.42);
  background: rgba(184, 221, 235, 0.1);
  color: var(--ink-deep);
  font-weight: 500;
}

.article-highlight p {
  margin: 0;
}

.article-button-row {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}

.article-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-deep);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.article-button:hover,
.article-button:focus-visible {
  border-color: rgba(66, 98, 127, 0.44);
  background: rgba(184, 221, 235, 0.16);
  color: var(--ink);
  outline: none;
}

.interest-box {
  display: grid;
  gap: 14px;
  margin-top: 2.3em;
  padding: 24px clamp(18px, 4vw, 30px) 26px;
  border: 1px solid rgba(66, 98, 127, 0.22);
  border-top-color: rgba(166, 109, 79, 0.28);
  border-radius: 2px;
  background:
    linear-gradient(rgba(255, 254, 251, 0.82), rgba(255, 254, 251, 0.82)),
    linear-gradient(180deg, rgba(184, 221, 235, 0.16), rgba(255, 254, 251, 0));
}

.interest-box h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(1.06rem, 1rem + 0.26vw, 1.2rem);
  font-weight: 500;
  line-height: 1.65;
}

.interest-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.9;
}

.article-body .form-privacy-note,
.interest-box .form-privacy-note {
  color: rgba(66, 98, 127, 0.66);
  font-size: 0.76rem;
  line-height: 1.8;
}

.interest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quiet-list {
  display: grid;
  gap: 0.35em;
  margin: 1.1em 0 1.3em;
  padding: 0;
  color: var(--ink-deep);
  list-style: none;
}

.quiet-list li {
  position: relative;
  padding-left: 1.25em;
}

.quiet-list li::before {
  position: absolute;
  left: 0;
  color: var(--ink-soft);
  content: "・";
}

.page.awabota-experience-page {
  width: min(100% - 36px, 980px);
  --series-width: 900px;
}

.experience-hero {
  display: grid;
  gap: 30px;
  padding: 0 0 38px;
  text-align: center;
}

.experience-hero-visual {
  width: min(100%, 900px);
  margin: 0 auto;
}

.experience-hero-visual img {
  width: 100%;
  border: 1px solid rgba(20, 52, 92, 0.12);
  border-radius: 2px;
  box-shadow: 0 18px 48px rgba(8, 35, 72, 0.08);
}

.experience-hero-copy {
  max-width: 700px;
  margin: 0 auto;
}

.experience-body,
.experience-nav {
  width: min(100%, 720px);
  margin-right: auto;
  margin-left: auto;
}

.experience-section + .experience-section {
  margin-top: 3.4em;
  padding-top: 3em;
  border-top: 1px solid rgba(66, 98, 127, 0.18);
}

.experience-section h2 {
  margin: 0 0 1em;
}

.experience-figure {
  margin-top: 2.4em;
  margin-bottom: 2.4em;
}

.experience-figure-small {
  width: min(100%, 560px);
}

.experience-figure-wide {
  width: min(88vw, 860px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.experience-cta {
  margin-top: 3.2em;
}

.experience-cta .quiet-list {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.9;
}

.life-page {
  --series-width: 720px;
}

.life-header .lead {
  margin-top: 20px;
}

.life-body {
  display: grid;
  gap: 32px;
}

.life-body p + p {
  margin-top: 0;
}

.life-opening,
.life-ending {
  display: grid;
  gap: 1.05em;
}

.life-sections {
  display: grid;
  gap: 18px;
}

.life-section {
  position: relative;
  display: grid;
  gap: 0.95em;
  padding: 28px clamp(18px, 4vw, 34px) 30px;
  border: 1px solid var(--line);
  border-top-color: rgba(166, 109, 79, 0.28);
  border-radius: 2px;
  background: rgba(255, 254, 251, 0.76);
}

.life-section h2,
.life-note h2,
.life-ending h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(1.14rem, 1.06rem + 0.34vw, 1.34rem);
  font-weight: 500;
  line-height: 1.65;
}

.life-section-number {
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.16em;
}

.life-statement,
.life-question {
  color: var(--ink-deep);
}

.life-statement {
  padding: 16px 18px;
  border-left: 3px solid rgba(166, 109, 79, 0.38);
  background: rgba(184, 221, 235, 0.1);
  font-weight: 500;
}

.life-question {
  font-weight: 500;
}

.life-note {
  display: grid;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 34px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.life-note-soft {
  border: 1px dashed rgba(66, 98, 127, 0.32);
  background: rgba(184, 221, 235, 0.07);
}

.life-list {
  margin-top: 0;
  margin-bottom: 0;
}

.life-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.life-keywords li {
  padding: 5px 11px;
  border: 1px solid rgba(66, 98, 127, 0.2);
  border-radius: 2px;
  background: rgba(255, 254, 251, 0.72);
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.life-age {
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-align: right;
}

.cats-page {
  --series-width: 720px;
}

.cats-header .lead {
  margin-top: 20px;
}

.cats-body {
  display: grid;
  gap: 42px;
}

.cats-body p + p {
  margin-top: 0;
}

.cats-introduction,
.cats-tiktok {
  display: grid;
  gap: 1.05em;
}

.cats-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cat-profile {
  display: grid;
  align-content: start;
  gap: 0.95em;
  padding: 28px clamp(18px, 4vw, 30px) 30px;
  border: 1px solid var(--line);
  border-top-color: rgba(166, 109, 79, 0.28);
  border-radius: 6px;
  background: rgba(255, 254, 251, 0.76);
}

.cat-profile h2,
.cats-gallery-section h2,
.cats-tiktok h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(1.14rem, 1.06rem + 0.34vw, 1.34rem);
  font-weight: 500;
  line-height: 1.65;
}

.cats-gallery-section {
  display: grid;
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.cats-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cat-gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(66, 98, 127, 0.18);
  border-radius: 10px;
  background: rgba(255, 254, 251, 0.9);
  box-shadow: 0 12px 28px rgba(8, 35, 72, 0.06);
}

.cat-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cat-gallery-image-frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.cat-gallery-card .cat-gallery-image-bottom {
  object-position: center bottom;
  transform: scale(1.25);
  transform-origin: 30% 65%;
}

.cat-gallery-card figcaption {
  padding: 13px 15px 15px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.cats-tiktok {
  padding: 30px clamp(18px, 4vw, 30px) 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(184, 221, 235, 0.07);
}

.cats-tiktok .article-button-row {
  margin-top: 0.35em;
}

.yoga-page {
  --series-width: 720px;
  --yoga-sage: #78927c;
  --yoga-sage-soft: rgba(120, 146, 124, 0.1);
  --yoga-warm: rgba(202, 158, 104, 0.24);
}

.yoga-header .lead {
  margin-top: 20px;
}

.yoga-body {
  display: grid;
  gap: 0;
}

.yoga-opening {
  padding: 2px 0 12px;
}

.yoga-section {
  margin-top: 3.2em;
  padding-top: 2.8em;
  border-top: 1px solid rgba(66, 98, 127, 0.18);
}

.yoga-section h2 {
  margin: 0 0 1.15em;
}

.yoga-key-points {
  display: grid;
  gap: 0.2em;
  margin: 1.5em 0;
  padding: 18px 22px;
  border-left: 3px solid rgba(120, 146, 124, 0.54);
  background: var(--yoga-sage-soft);
  color: var(--ink-deep);
  font-size: clamp(1.06rem, 1rem + 0.26vw, 1.2rem);
  font-weight: 500;
}

.article-body .yoga-key-points p,
.article-body .yoga-reflection p,
.article-body .yoga-quote p {
  margin: 0;
}

.yoga-quote {
  margin: 1.8em clamp(0px, 3vw, 28px);
  padding: 22px clamp(18px, 4vw, 28px);
  border-top: 1px solid var(--yoga-warm);
  border-bottom: 1px solid var(--yoga-warm);
  color: var(--ink-deep);
  font-size: 0.98em;
  line-height: 2;
}

.yoga-reflection {
  display: grid;
  gap: 0.6em;
  margin: 1.6em 0;
  padding: 22px clamp(18px, 4vw, 28px);
  border: 1px dashed rgba(120, 146, 124, 0.42);
  border-radius: 2px;
  background:
    linear-gradient(rgba(255, 254, 251, 0.82), rgba(255, 254, 251, 0.82)),
    linear-gradient(135deg, rgba(184, 221, 235, 0.18), var(--yoga-sage-soft));
  color: var(--ink-deep);
  text-align: center;
}

.yoga-special {
  margin-top: 3.5em;
  padding: 34px clamp(18px, 4vw, 34px) 36px;
  border: 1px solid rgba(120, 146, 124, 0.3);
  border-top-color: rgba(202, 158, 104, 0.38);
  border-radius: 2px;
  background:
    linear-gradient(rgba(255, 254, 251, 0.86), rgba(255, 254, 251, 0.86)),
    linear-gradient(180deg, rgba(184, 221, 235, 0.18), rgba(120, 146, 124, 0.08));
}

.yoga-special h2 {
  margin-top: 1.5em;
}

.yoga-question {
  padding: 16px 18px;
  border-left: 3px solid rgba(120, 146, 124, 0.54);
  background: var(--yoga-sage-soft);
  color: var(--ink-deep);
  font-weight: 500;
}

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

.special-session-header h1 {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.special-session-title-break {
  display: none;
}

.special-session-notice {
  display: grid;
  gap: 0.75em;
  margin-bottom: 1.7em;
  padding: 22px clamp(18px, 4vw, 28px);
  border-top: 1px solid var(--yoga-warm);
  border-bottom: 1px solid var(--yoga-warm);
  background: rgba(202, 158, 104, 0.06);
  color: var(--ink-deep);
}

.article-body .special-session-notice p,
.article-body .special-session-method p,
.article-body .special-session-dilemma p,
.article-body .special-session-contact p {
  margin: 0;
}

.special-session-dilemma {
  margin: 1.8em 0;
  padding: 22px clamp(18px, 4vw, 28px);
  border-left: 3px solid rgba(120, 146, 124, 0.54);
  background: var(--yoga-sage-soft);
  color: var(--ink-deep);
  font-size: clamp(1.02rem, 0.98rem + 0.2vw, 1.12rem);
  font-weight: 500;
  line-height: 2;
}

.special-session-method {
  display: grid;
  gap: 1em;
  margin-top: 1.7em;
  padding: 28px clamp(20px, 5vw, 38px) 30px;
  border-top: 1px solid rgba(120, 146, 124, 0.42);
  border-bottom: 1px solid rgba(120, 146, 124, 0.42);
  background:
    linear-gradient(rgba(255, 254, 251, 0.84), rgba(255, 254, 251, 0.84)),
    linear-gradient(135deg, rgba(184, 221, 235, 0.18), var(--yoga-sage-soft));
}

.special-session-method h2 {
  margin: 0;
}

.special-session-method-label {
  color: var(--yoga-sage);
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

.special-session-pattern-list {
  text-align: left;
}

.special-session-results {
  display: grid;
  gap: 0.85em;
  margin: 1.7em 0;
  padding: 22px clamp(18px, 4vw, 28px);
  border-top: 1px solid rgba(66, 98, 127, 0.18);
  border-bottom: 1px solid rgba(66, 98, 127, 0.18);
  color: var(--ink-deep);
  list-style: none;
}

.special-session-results li {
  position: relative;
  padding-left: 1.45em;
}

.special-session-results li::before {
  position: absolute;
  left: 0;
  color: var(--yoga-sage);
  content: "・";
}

.special-session-contact {
  margin-top: 3.5em;
}

.special-session-feelings {
  display: grid;
  gap: 0.45em;
  padding: 17px 18px;
  border-left: 3px solid rgba(120, 146, 124, 0.46);
  background: var(--yoga-sage-soft);
  color: var(--ink-deep);
  font-weight: 500;
}

.special-session-possibility {
  color: var(--ink-deep) !important;
  font-weight: 500;
}

.special-session-actions {
  justify-content: center;
  margin-top: 8px;
}

.special-session-studio {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin-top: 1.6em;
}

.special-session-studio small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.fx-page {
  --series-width: 720px;
  --fx-slate: #657d8f;
  --fx-slate-soft: rgba(101, 125, 143, 0.1);
  --fx-gold: #aa875c;
  --fx-gold-soft: rgba(170, 135, 92, 0.1);
}

.fx-header .lead {
  margin-top: 20px;
}

.fx-body {
  display: grid;
  gap: 0;
}

.fx-opening h2 {
  margin-top: 0;
}

.fx-section,
.fx-ending {
  margin-top: 3.2em;
  padding-top: 2.8em;
  border-top: 1px solid rgba(66, 98, 127, 0.18);
}

.fx-section h2,
.fx-ending h2 {
  margin: 0 0 1.15em;
}

.fx-impression-list,
.fx-principles,
.fx-environment-list,
.fx-hurdle-list {
  margin: 1.6em 0;
  padding: 0;
  list-style: none;
}

.fx-impression-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.fx-impression-list li {
  padding: 6px 12px;
  border: 1px solid rgba(101, 125, 143, 0.24);
  border-radius: 2px;
  background: var(--fx-slate-soft);
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.fx-ellipsis {
  color: var(--ink-soft);
  letter-spacing: 0.18em;
}

.fx-principles {
  display: grid;
  gap: 0.9em;
  padding: 24px clamp(18px, 4vw, 30px);
  border-top: 1px solid rgba(170, 135, 92, 0.34);
  border-bottom: 1px solid rgba(170, 135, 92, 0.34);
  background:
    linear-gradient(rgba(255, 254, 251, 0.84), rgba(255, 254, 251, 0.84)),
    linear-gradient(135deg, var(--fx-gold-soft), var(--fx-slate-soft));
}

.fx-principles li,
.fx-environment-list li,
.fx-hurdle-list li {
  position: relative;
  padding-left: 1.45em;
}

.fx-principles li::before,
.fx-environment-list li::before,
.fx-hurdle-list li::before {
  position: absolute;
  left: 0;
  color: var(--fx-gold);
  content: "・";
}

.fx-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5em 0;
}

.fx-keywords span {
  padding: 7px 15px;
  border-top: 1px solid rgba(101, 125, 143, 0.34);
  border-bottom: 1px solid rgba(101, 125, 143, 0.34);
  color: var(--ink-deep);
  font-weight: 500;
}

.fx-realization {
  display: grid;
  gap: 0.8em;
  margin: 1.8em 0;
  padding: 22px clamp(18px, 4vw, 28px);
  border-left: 3px solid rgba(101, 125, 143, 0.54);
  background: var(--fx-slate-soft);
  color: var(--ink-deep);
  font-weight: 500;
  line-height: 2;
}

.article-body .fx-realization p {
  margin: 0;
}

.fx-steady-work,
.fx-question {
  padding: 16px 18px;
  border-left: 3px solid rgba(170, 135, 92, 0.46);
  background: var(--fx-gold-soft);
  color: var(--ink-deep);
  font-weight: 500;
}

.fx-environment-list,
.fx-hurdle-list {
  display: grid;
  gap: 0.7em;
  padding: 19px 22px;
  border-top: 1px solid rgba(66, 98, 127, 0.18);
  border-bottom: 1px solid rgba(66, 98, 127, 0.18);
}

.fx-ending {
  padding: 32px clamp(18px, 4vw, 34px) 34px;
  border: 1px solid rgba(101, 125, 143, 0.26);
  border-top-color: rgba(170, 135, 92, 0.38);
  border-radius: 2px;
  background:
    linear-gradient(rgba(255, 254, 251, 0.86), rgba(255, 254, 251, 0.86)),
    linear-gradient(180deg, var(--fx-slate-soft), var(--fx-gold-soft));
}

.fx-ending-thought {
  color: var(--ink-deep);
  font-weight: 500;
}

.fx-ending-message {
  color: var(--ink-deep);
  font-size: clamp(1.04rem, 1rem + 0.2vw, 1.14rem);
  font-weight: 500;
}

.article-nav {
  display: grid;
  gap: 10px;
  padding-top: 30px;
}

.article-nav a {
  display: block;
  padding: 17px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.65;
  transition: background-color 180ms ease, padding 180ms ease;
}

.article-nav a:first-child {
  border-top: 1px solid var(--line);
}

.article-nav a:hover,
.article-nav a:focus-visible {
  background: rgba(184, 221, 235, 0.13);
  padding-left: 20px;
  outline: none;
}

.article-nav span {
  color: var(--ink-soft);
}

/* Monster landing page */
.page.monster-lp-page {
  width: min(100% - 36px, 1080px);
  --monster-water: #bfeefa;
  --monster-water-soft: rgba(191, 238, 250, 0.28);
  --monster-pink: #f3a6c9;
  --monster-pink-soft: rgba(243, 166, 201, 0.24);
  --monster-green: #b9df9f;
  --monster-green-soft: rgba(185, 223, 159, 0.24);
  --monster-yellow: #fff0a8;
  --monster-tape: rgba(255, 239, 168, 0.72);
}

.monster-lp-page .quiet-label,
.monster-lp-section-label {
  letter-spacing: 0;
  text-transform: none;
}

.monster-lp-main {
  display: grid;
  gap: 74px;
  padding-bottom: 72px;
}

.monster-lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: center;
  padding: 8px 0 48px;
  border-bottom: 1px solid rgba(66, 98, 127, 0.18);
  animation: fade-in 900ms ease-out both;
}

.monster-lp-hero-copy {
  max-width: 520px;
}

.monster-lp-hero h1 {
  font-size: 2.28rem;
  line-height: 1.5;
}

.monster-lp-subcopy {
  margin-top: 18px;
  color: #c85f8b;
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.monster-lp-lead {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 2;
}

.monster-lp-collage {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.monster-lp-photo {
  position: relative;
  width: min(100%, 560px);
  margin: 0;
  padding: 10px;
  border: 2px solid rgba(66, 98, 127, 0.2);
  border-radius: 6px;
  background: rgba(255, 254, 251, 0.94);
  box-shadow: 0 16px 34px rgba(8, 35, 72, 0.08);
}

.monster-lp-photo::before {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 92px;
  height: 22px;
  border: 1px solid rgba(202, 158, 104, 0.2);
  border-radius: 2px;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.22) 0,
      rgba(255, 255, 255, 0.22) 6px,
      rgba(255, 240, 168, 0.36) 6px,
      rgba(255, 240, 168, 0.36) 12px
    ),
    var(--monster-tape);
  content: "";
  transform: translateX(-50%) rotate(-4deg);
}

.monster-lp-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px dashed rgba(66, 98, 127, 0.18);
  border-radius: 4px;
  object-fit: cover;
}

.monster-lp-photo-small {
  width: min(74%, 390px);
}

.monster-lp-photo-small img {
  aspect-ratio: 16 / 9;
}

.monster-lp-photo-large {
  transform: rotate(-1.6deg);
}

.monster-lp-collage .monster-lp-photo-small {
  margin-top: -10px;
  margin-right: 22px;
  transform: rotate(2.8deg);
}

.monster-lp-photo-tilt-right {
  transform: rotate(1.8deg);
}

.monster-lp-photo-tilt-left {
  transform: rotate(-1.8deg);
}

.monster-lp-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: 46px;
  align-items: center;
  padding-top: 8px;
}

.monster-lp-section-copy {
  position: relative;
  max-width: 520px;
}

.monster-lp-section-copy::before,
.monster-lp-section-heading::before,
.monster-lp-cta::before {
  display: block;
  width: 74px;
  height: 12px;
  margin-bottom: 20px;
  border-radius: 2px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.26) 0,
      rgba(255, 255, 255, 0.26) 7px,
      rgba(191, 238, 250, 0.45) 7px,
      rgba(191, 238, 250, 0.45) 14px
    ),
    rgba(243, 166, 201, 0.34);
  content: "";
}

.monster-lp-section-label {
  margin: 0 0 12px;
  color: rgba(66, 98, 127, 0.72);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
}

.monster-lp-section h2,
.monster-lp-check-section h2,
.monster-lp-faq-section h2,
.monster-lp-cta h2 {
  color: var(--ink-deep);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.6;
}

.monster-lp-section p:not(.monster-lp-section-label),
.monster-lp-cta p:not(.monster-lp-section-label):not(.monster-lp-disclaimer) {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 2;
}

.monster-lp-photo-stack {
  display: grid;
  gap: 22px;
}

.monster-lp-photo-stack .monster-lp-photo-small {
  justify-self: end;
  margin-top: -4px;
}

.monster-lp-check-section,
.monster-lp-faq-section {
  padding: 48px 0 0;
  border-top: 1px solid rgba(66, 98, 127, 0.16);
}

.monster-lp-section-heading {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.monster-lp-section-heading::before {
  margin-right: auto;
  margin-left: auto;
}

.monster-lp-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.monster-lp-checklist li {
  position: relative;
  min-height: 74px;
  padding: 18px 16px 16px 44px;
  border: 1px solid rgba(66, 98, 127, 0.16);
  border-radius: 6px;
  background: rgba(255, 254, 251, 0.88);
  color: var(--ink-deep);
  font-size: 0.94rem;
  line-height: 1.7;
  box-shadow: 0 12px 24px rgba(8, 35, 72, 0.05);
}

.monster-lp-checklist li:nth-child(3n + 1) {
  background: linear-gradient(180deg, var(--monster-water-soft), rgba(255, 254, 251, 0.9));
}

.monster-lp-checklist li:nth-child(3n + 2) {
  background: linear-gradient(180deg, var(--monster-pink-soft), rgba(255, 254, 251, 0.9));
}

.monster-lp-checklist li:nth-child(3n) {
  background: linear-gradient(180deg, var(--monster-green-soft), rgba(255, 254, 251, 0.9));
}

.monster-lp-checklist li::before {
  position: absolute;
  top: 24px;
  left: 17px;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(66, 98, 127, 0.36);
  border-radius: 3px;
  background: rgba(255, 254, 251, 0.72);
  content: "";
}

.monster-lp-checklist li::after {
  position: absolute;
  top: 27px;
  left: 21px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #5a9d7d;
  border-left: 2px solid #5a9d7d;
  content: "";
  transform: rotate(-45deg);
}

.monster-lp-faq-list {
  display: grid;
  gap: 12px;
  width: min(100%, 860px);
  margin: 30px auto 0;
  padding: 0;
}

.monster-lp-faq-item {
  position: relative;
  padding: 20px clamp(16px, 3vw, 26px) 22px;
  border: 1px solid rgba(66, 98, 127, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(191, 238, 250, 0.2), rgba(255, 254, 251, 0.86) 36%),
    rgba(255, 254, 251, 0.9);
}

.monster-lp-faq-item h3 {
  margin: 0;
  color: var(--ink-deep);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.monster-lp-faq-item p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.9;
}

.monster-lp-cta {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 42px clamp(18px, 5vw, 56px);
  border-top: 2px solid rgba(243, 166, 201, 0.46);
  border-bottom: 2px solid rgba(191, 238, 250, 0.74);
  background:
    linear-gradient(180deg, rgba(185, 223, 159, 0.16), rgba(255, 254, 251, 0.92) 42%),
    rgba(255, 254, 251, 0.92);
  text-align: center;
}

.monster-lp-cta::before {
  margin-right: auto;
  margin-bottom: 2px;
  margin-left: auto;
  transform: rotate(-1.5deg);
}

.monster-lp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.monster-lp-actions-single .monster-lp-button {
  min-width: min(100%, 260px);
}

.monster-lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(66, 98, 127, 0.2);
  border-radius: 6px;
  color: var(--ink-deep);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.monster-lp-button-mail {
  background: rgba(243, 166, 201, 0.26);
}

.monster-lp-button:hover,
.monster-lp-button:focus-visible {
  border-color: rgba(66, 98, 127, 0.4);
  background: rgba(191, 238, 250, 0.36);
  outline: none;
  transform: translateY(-1px);
}

.monster-lp-disclaimer {
  max-width: 680px;
  margin: 8px auto 0;
  color: rgba(66, 98, 127, 0.78);
  font-size: 0.78rem;
  line-height: 1.8;
}

.monster-lp-back {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  text-align: center;
}

.monster-lp-back a {
  display: inline-flex;
  padding: 8px 0;
  border-bottom: 1px solid rgba(66, 98, 127, 0.28);
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: border-color 180ms ease, color 180ms ease;
}

.monster-lp-back a:hover,
.monster-lp-back a:focus-visible {
  border-color: rgba(66, 98, 127, 0.68);
  color: var(--ink-deep);
  outline: none;
}

@media (min-width: 768px) {
  .monster-lp-section-reverse .monster-lp-section-copy {
    order: 2;
  }

  .monster-lp-section-reverse .monster-lp-photo {
    order: 1;
  }
}

@media (max-width: 767px) {
  .page.monster-lp-page {
    width: min(100% - 28px, 1080px);
  }

  .monster-lp-main {
    gap: 54px;
    padding-bottom: 54px;
  }

  .monster-lp-hero,
  .monster-lp-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .monster-lp-hero {
    padding-bottom: 38px;
  }

  .monster-lp-hero-copy,
  .monster-lp-section-copy {
    max-width: none;
  }

  .monster-lp-hero h1 {
    font-size: 1.82rem;
    line-height: 1.58;
  }

  .monster-lp-section h2,
  .monster-lp-check-section h2,
  .monster-lp-faq-section h2,
  .monster-lp-cta h2 {
    font-size: 1.28rem;
    line-height: 1.65;
  }

  .monster-lp-subcopy,
  .monster-lp-lead,
  .monster-lp-section p:not(.monster-lp-section-label),
  .monster-lp-cta p:not(.monster-lp-section-label):not(.monster-lp-disclaimer) {
    font-size: 0.96rem;
    line-height: 1.95;
  }

  .monster-lp-collage {
    justify-items: center;
  }

  .monster-lp-photo,
  .monster-lp-photo-large,
  .monster-lp-photo-small,
  .monster-lp-photo-tilt-right,
  .monster-lp-photo-tilt-left,
  .monster-lp-collage .monster-lp-photo-small {
    width: min(100%, 520px);
    margin-right: auto;
    margin-left: auto;
    transform: none;
  }

  .monster-lp-photo-stack {
    gap: 18px;
  }

  .monster-lp-photo-stack .monster-lp-photo-small {
    justify-self: center;
  }

  .monster-lp-check-section,
  .monster-lp-faq-section {
    padding-top: 38px;
  }

  .monster-lp-section-heading {
    text-align: left;
  }

  .monster-lp-section-heading::before {
    margin-left: 0;
  }

  .monster-lp-checklist {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 24px;
  }

  .monster-lp-checklist li {
    min-height: 64px;
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .monster-lp-checklist li::before {
    top: 21px;
  }

  .monster-lp-checklist li::after {
    top: 24px;
  }

  .monster-lp-faq-list {
    margin-top: 24px;
  }

  .monster-lp-cta {
    padding-top: 34px;
    padding-bottom: 36px;
    text-align: left;
  }

  .monster-lp-cta::before {
    margin-left: 0;
  }

  .monster-lp-actions {
    justify-content: stretch;
  }

  .monster-lp-button {
    width: 100%;
  }
}

.activity-log-main {
  width: min(100%, 680px);
  margin: 0 auto;
}

.activity-log-header {
  padding: 20px 0 62px;
  text-align: center;
  animation: fade-in 900ms ease-out both;
}

.activity-log-header .lead {
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
}

.activity-log-feed {
  animation: fade-in 900ms ease-out 100ms both;
}

.log-entry-list {
  border-bottom: 1px solid var(--line);
}

.activity-log-feed-list {
  border-top: 1px solid var(--line);
}

.log-entry {
  padding: 29px clamp(2px, 1.5vw, 10px) 31px;
}

.log-entry + .log-entry {
  border-top: 1px solid var(--line);
}

.log-entry-header {
  margin-bottom: 16px;
}

.log-entry-header h2 {
  color: var(--ink-deep);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.log-entry-field {
  color: var(--ink-deep);
  font-size: clamp(0.96rem, 0.92rem + 0.16vw, 1.03rem);
  line-height: 2;
}

.log-entry-field + .log-entry-field {
  margin-top: 20px;
}

.log-entry-field p + p {
  margin-top: 1.15em;
}

.log-entry-field h3 {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.activity-log-message {
  padding: 34px 10px 36px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 2;
  text-align: center;
}

.activity-log-message a {
  color: var(--ink-deep);
  text-decoration: underline;
  text-decoration-color: rgba(66, 98, 127, 0.34);
  text-underline-offset: 0.28em;
}

.log-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 22px;
  margin: 0;
  padding-left: 1.25em;
}

.log-category-list li {
  padding-left: 0.1em;
}

.log-category-list li::marker {
  color: rgba(66, 98, 127, 0.62);
}

.site-footer {
  padding: 26px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 768px) {
  .page {
    width: min(100% - 64px, var(--max-width));
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .site-header {
    padding-bottom: 46px;
  }

  .hero {
    gap: 40px;
    padding-bottom: 64px;
  }

  .hero-visual {
    width: min(100%, 720px);
  }

  .lead {
    margin-top: 20px;
  }

  .profile {
    width: min(100%, 780px);
    margin-bottom: 58px;
    padding: 40px clamp(34px, 6vw, 62px) 44px;
  }

  .profile-text {
    gap: 26px;
  }

  .intro {
    padding: 52px 0 60px;
  }

  .recent-note {
    width: min(100%, 640px);
    margin-top: 52px;
  }

  .activities {
    padding: 60px 0 32px;
  }

  .activities a {
    min-height: 56px;
    padding: 10px 16px;
  }

  .home-contact {
    padding-bottom: 82px;
  }
}

@media (max-width: 767px) {
  .page {
    width: min(100% - 28px, var(--max-width));
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .site-header {
    padding-bottom: 32px;
  }

  .activity-log-header {
    padding-top: 8px;
    padding-bottom: 48px;
  }

  .log-entry {
    padding-top: 25px;
    padding-bottom: 27px;
  }

  .hero {
    gap: 28px;
    padding-bottom: 42px;
  }

  .hero-visual {
    width: 100%;
  }

  h1 {
    font-size: clamp(1.56rem, 1.2rem + 1.8vw, 1.9rem);
    line-height: 1.62;
  }

  .lead {
    margin-top: 16px;
    font-size: clamp(0.98rem, 0.94rem + 0.3vw, 1.04rem);
    line-height: 1.96;
  }

  .profile {
    width: 100%;
    margin-bottom: 44px;
    padding: 28px 18px 32px;
  }

  .profile-text {
    gap: 21px;
    font-size: clamp(0.96rem, 0.92rem + 0.4vw, 1rem);
    line-height: 2.02;
  }

  .profile-perspective-link {
    margin-top: 5px;
  }

  .intro {
    width: 100%;
    padding: 38px 0 46px;
    font-size: clamp(0.98rem, 0.94rem + 0.36vw, 1.04rem);
    line-height: 2;
  }

  .recent-note {
    width: 100%;
    margin-top: 38px;
  }

  .recent-note-inner {
    padding: 22px 16px 24px;
  }

  .recent-note p:not(.recent-date) {
    font-size: 0.96rem;
    line-height: 1.96;
  }

  .activities {
    width: 100%;
    padding: 44px 0 28px;
  }

  .activities ul {
    gap: 5px;
  }

  .activities a {
    min-height: 60px;
    padding: 12px 12px;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .activities a:hover,
  .activities a:focus-visible {
    padding-left: 16px;
  }

  .home-contact {
    width: 100%;
    padding: 0 6px 64px;
  }

  .home-contact p {
    font-size: 0.82rem;
    line-height: 1.92;
  }

  .home-contact-button {
    width: auto;
    min-height: 0;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 28px, var(--max-width));
    padding-top: 22px;
  }

  .site-header {
    padding-bottom: 30px;
  }

  .hero {
    gap: 30px;
    padding-bottom: 42px;
  }

  .hero-visual {
    width: min(100%, 520px);
  }

  .profile {
    margin-bottom: 44px;
    padding: 28px 16px 32px;
  }

  .profile h2 {
    margin-bottom: 18px;
    font-size: 0.8rem;
  }

  .profile-text {
    gap: 20px;
    font-size: 0.96rem;
    line-height: 2.02;
  }

  .intro {
    padding: 38px 0 44px;
  }

  .recent-note {
    margin-top: 34px;
  }

  .activities {
    padding: 42px 0 62px;
  }

  .activities a {
    min-height: 60px;
    padding: 12px;
  }

  .activities a:hover,
  .activities a:focus-visible {
    padding-left: 14px;
  }

  .page.subpage {
    width: min(100% - 28px, 760px);
  }

  .page.portrait-page {
    width: min(100% - 28px, 960px);
  }

  .page.manga-catalog-page {
    width: min(100% - 28px, 960px);
  }

  .journal-hero {
    padding: 10px 0 44px;
  }

  .portrait-hero {
    padding-bottom: 38px;
  }

  .portrait-story {
    padding-bottom: 48px;
  }

  .portrait-story-block {
    padding: 28px 4px;
  }

  .portrait-story p {
    font-size: 0.96rem;
    line-height: 2.04;
  }

  .portrait-gallery {
    padding-top: 4px;
    padding-bottom: 56px;
  }

  .portrait-gallery-heading {
    margin-bottom: 22px;
  }

  .portrait-work-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .portrait-work-card {
    width: min(100%, 420px);
    justify-self: center;
  }

  .portrait-work-body {
    padding: 17px 16px 19px;
  }

  .portrait-contact-section {
    padding-bottom: 58px;
  }

  .portrait-contact {
    padding-top: 32px;
  }

  .portrait-contact-button {
    width: min(100%, 300px);
    margin-top: 26px;
  }

  .post-list {
    gap: 8px;
    padding-bottom: 58px;
  }

  .post-card a {
    grid-template-columns: 32px 1fr;
    gap: 14px;
    padding: 20px 8px 20px 0;
  }

  .post-card a:hover,
  .post-card a:focus-visible {
    padding-left: 6px;
  }

  .post-body h2 {
    font-size: 1rem;
  }

  .reflection-hero {
    padding-bottom: 38px;
  }

  .reflection-intro-body {
    gap: 1.15em;
    font-size: 0.96rem;
    line-height: 2.04;
  }

  .reflection-axis {
    padding: 15px 16px;
  }

  .reflection-catchphrase {
    padding: 16px 8px;
  }

  .reflection-index {
    padding: 0 0 58px;
  }

  .reflection-index-heading {
    margin-bottom: 22px;
  }

  .reflection-card-inner {
    grid-template-columns: 32px 1fr;
    gap: 14px;
    min-height: 72px;
    padding: 20px 8px 20px 0;
  }

  .reflection-card h3 {
    font-size: 1rem;
  }

  .manga-hero {
    padding-bottom: 38px;
  }

  .manga-hub-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
  }

  .shop-link-cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .shop-link-card {
    min-height: 0;
    padding: 22px 18px 21px;
  }

  .manga-hub-note {
    margin-bottom: 36px;
    font-size: 0.8rem;
  }

  .work-section {
    padding-bottom: 54px;
  }

  .work-gallery,
  .work-gallery-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .work-card {
    grid-template-columns: minmax(108px, 34%) 1fr;
    grid-template-rows: none;
  }

  .work-card-body {
    gap: 12px;
    padding: 16px 14px 18px;
  }

  .work-card-actions,
  .work-link-group {
    gap: 7px;
  }

  .work-button {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 0.82rem;
  }

  .work-detail {
    padding-top: 0;
    padding-bottom: 62px;
  }

  .work-detail-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .work-detail-layout .work-cover-frame {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .work-detail-body {
    padding-top: 0;
  }

  .work-detail-body h1 {
    text-align: center;
  }

  .manga-card-grid,
  .manga-card-grid-large {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 46px;
  }

  .manga-card a,
  .manga-card-inner {
    min-height: 0;
    padding: 21px 16px 23px;
  }

  .manga-card a:hover,
  .manga-card a:focus-visible {
    padding-left: 20px;
  }

  .series-intro {
    margin-bottom: 30px;
    padding: 24px 0 28px;
    font-size: 0.9rem;
  }

  .episode-list {
    gap: 8px;
    padding-bottom: 58px;
  }

  .episode-card a {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px 8px 18px 0;
  }

  .episode-card a:hover,
  .episode-card a:focus-visible {
    padding-left: 6px;
  }

  .article {
    padding-top: 0;
    padding-bottom: 62px;
  }

  .article-header {
    padding-bottom: 28px;
  }

  .article-body {
    padding: 28px 0 36px;
    line-height: 2.05;
  }

  .article-figure {
    margin: 1.8em auto;
  }

  .article-figure figcaption {
    padding: 0 4px;
    font-size: 0.72rem;
    text-align: left;
  }

  .article-highlight {
    padding: 15px 16px;
  }

  .life-body {
    gap: 26px;
  }

  .life-section {
    gap: 0.85em;
    padding: 23px 16px 25px;
  }

  .life-statement {
    padding: 14px 15px;
  }

  .life-note {
    padding: 23px 16px;
  }

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

  .cats-body {
    gap: 32px;
  }

  .cats-profiles,
  .cats-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .cat-profile {
    padding: 23px 16px 25px;
  }

  .cats-gallery-section {
    padding-top: 30px;
  }

  .cats-tiktok {
    padding: 24px 16px 26px;
  }

  .yoga-section {
    margin-top: 2.7em;
    padding-top: 2.4em;
  }

  .yoga-key-points,
  .yoga-quote,
  .yoga-reflection {
    padding: 17px 16px;
  }

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

  .yoga-special {
    margin-top: 2.8em;
    padding: 27px 16px 30px;
  }

  .yoga-button {
    width: 100%;
  }

  .special-session-title-break {
    display: block;
  }

  .special-session-notice,
  .special-session-dilemma,
  .special-session-method,
  .special-session-results {
    padding: 18px 16px;
  }

  .special-session-contact {
    margin-top: 2.8em;
  }

  .fx-section,
  .fx-ending {
    margin-top: 2.7em;
    padding-top: 2.4em;
  }

  .fx-principles,
  .fx-realization,
  .fx-environment-list,
  .fx-hurdle-list {
    padding: 18px 16px;
  }

  .fx-ending {
    padding: 26px 16px 28px;
  }

  .article-nav a {
    padding-inline: 8px;
  }

  .article-nav a:hover,
  .article-nav a:focus-visible {
    padding-left: 12px;
  }
}
