@charset "UTF-8";
/*!
Theme Name: 天満ワークス
Author: 天満ワークス
Description: 天満ワークスのテーマ
Version: 1.0.0
Text Domain: -
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box; /* box-sizingを追加すると便利です */
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

img {
  display: block;
}

/* ----------------------------------- */
/* --- フォーム要素のリセットCSS --- */
/* ----------------------------------- */
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  border-radius: 0;
  -webkit-appearance: none; /* Safari, Chromeなどのベンダープレフィックス */
  -moz-appearance: none; /* Firefox */
  appearance: none;
}

/* buttonとinput[type="button"]などにカーソルをポインターに */
button,
input[type=button],
input[type=submit],
input[type=reset] {
  cursor: pointer;
}

/* iOSでの内側の影を削除 */
input[type=text],
input[type=email],
input[type=search],
input[type=password],
textarea {
  -webkit-appearance: none;
}

/* selectの矢印を非表示にする（基本的なリセット） */
select::-ms-expand {
  /* IE */
  display: none;
}

/* textareaのリサイズを無効化（必要に応じて縦(vertical)や横(horizontal)に設定） */
textarea {
  resize: none;
}

.text-example {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .text-example {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: calc(992px + 1px)) {
  .text-example {
    font-size: 1.8rem;
  }
}

/*!
Theme Name: 天満ワークス
Author: 天満ワークス
Description: 天満ワークスのテーマ
Version: 1.0.0
Text Domain: -
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333333;
  background-color: #fff;
}

a {
  cursor: pointer;
}

main {
  position: relative;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: calc(576px + 1px)) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (min-width: calc(768px + 1px)) {
  .under-tablet-only {
    display: none !important;
  }
}

@media screen and (max-width: 576px) {
  .over-tablet-only {
    display: none !important;
  }
}

.inner {
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
  max-width: 1000px;
}

.inner--large {
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
  max-width: 1240px;
}

.inner--small {
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
  max-width: 728px;
}

.inner--full {
  padding-inline: 0;
  max-width: 100%;
}

section {
  padding-block: 80px;
}

:root {
  --header-height: 84px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background-color: #fbf8f3;
  border-bottom: 1.5px solid #1a1a1a;
}

.site-header__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
  height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 992px) {
  .site-header__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .site-header__inner {
    padding: 14px 18px;
    height: auto;
    gap: 16px;
  }
}

.site-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo {
  width: auto;
  height: 48px;
  display: block;
}
@media screen and (max-width: 768px) {
  .site-header__logo {
    height: 36px;
  }
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 992px) {
  .site-header__nav {
    gap: 18px;
  }
}
@media screen and (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
}

.site-header__nav-link {
  position: relative;
  padding: 4px 0;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.site-header__nav-link:hover {
  color: #e63946;
}

.site-header__nav-link.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 3px;
  background-color: #e63946;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__icon-btn {
  padding: 0;
  width: 40px;
  height: 40px;
  display: grid;
  color: #1a1a1a;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .site-header__icon-btn {
    display: none;
  }
}

.site-header__icon-btn:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(2px, 2px);
}

.site-header__icon-btn:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

.site-header__icon-btn--contact.is-active {
  color: #fff;
  background-color: #e63946;
  border-color: #1a1a1a;
}

@media screen and (max-width: 768px) {
  .site-header__icon-btn--search {
    width: 36px;
    height: 36px;
    display: grid;
  }
}

.site-header__menu-btn {
  padding: 0 14px;
  height: 36px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fbf8f3;
  background-color: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #e63946;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .site-header__menu-btn {
    display: inline-flex;
  }
}

.site-header__menu-btn:hover {
  box-shadow: 0 0 0 #e63946;
  transform: translate(2px, 2px);
}

.site-header__menu-label {
  line-height: 1;
}

.site-header__drawer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .site-header__drawer {
    display: block;
    visibility: hidden;
    pointer-events: none;
  }
}

.site-header__drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.site-header__drawer-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.45);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.site-header__drawer.is-open .site-header__drawer-backdrop {
  opacity: 1;
}

.site-header__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 380px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background-color: #fbf8f3;
  border-left: 1.5px solid #1a1a1a;
  box-shadow: -8px 0 0 #1a1a1a;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.site-header__drawer.is-open .site-header__drawer-panel {
  transform: translateX(0);
}

.site-header__drawer-head {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1.5px solid #1a1a1a;
}

.site-header__drawer-num {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e63946;
}

.site-header__drawer-close {
  padding: 0;
  width: 40px;
  height: 40px;
  display: grid;
  color: #1a1a1a;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
  place-items: center;
}

.site-header__drawer-close:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(2px, 2px);
}

.site-header__drawer-nav {
  padding: 8px 0 24px;
  display: flex;
  flex-direction: column;
}

.site-header__drawer-link {
  position: relative;
  padding: 18px 24px;
  display: grid;
  align-items: center;
  gap: 8px;
  grid-template-columns: 44px 1fr 24px;
  color: #1a1a1a;
  border-bottom: 1px solid #e5e0d8;
  transition: background-color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.site-header__drawer-link:hover {
  background-color: #f3eee4;
}

.site-header__drawer-link.is-active {
  background-color: #f8dddf;
}

.site-header__drawer-link.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background-color: #e63946;
}

.site-header__drawer-link-num {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #4a4a4a;
}

.site-header__drawer-link-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header__drawer-link-arrow {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 18px;
  text-align: right;
  color: #4a4a4a;
}

.site-header__drawer-link:hover .site-header__drawer-link-arrow {
  color: #e63946;
}

.site-header__drawer-foot {
  margin-top: auto;
  padding: 20px 24px 24px;
  background-color: #f3eee4;
  border-top: 1.5px solid #1a1a1a;
}

.site-header__drawer-foot-en {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #4a4a4a;
}

body.is-drawer-open {
  overflow: hidden;
}

.subpage-hero-crumbs {
  padding-block: 16px;
  background-color: #fbf8f3;
  border-bottom: 1px dashed #b8b0a4;
}

.subpage-hero-crumbs__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
}

.subpage-hero-crumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #4a4a4a;
}

.subpage-hero-crumbs__item {
  font-weight: 500;
}

.subpage-hero-crumbs__item--current {
  font-weight: 700;
  color: #1a1a1a;
}

.subpage-hero-crumbs__link {
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.subpage-hero-crumbs__link:hover {
  color: #e63946;
}

.subpage-hero-crumbs__sep {
  color: #b8b0a4;
}

@media screen and (max-width: 768px) {
  .subpage-hero-crumbs__inner {
    padding-inline: 18px;
  }
  .subpage-hero-crumbs__list {
    font-size: 11px;
  }
}
.subpage-hero {
  position: relative;
  padding-block: 64px 48px;
  overflow: hidden;
  background-color: #fbf8f3;
  border-bottom: 1.5px solid #1a1a1a;
}

.subpage-hero__inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
}

.subpage-hero__body {
  min-width: 0;
}

.subpage-hero__num {
  margin: 0 0 14px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e63946;
}

.subpage-hero__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.subpage-hero__en {
  margin: 14px 0 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #4a4a4a;
}

.subpage-hero__lede {
  margin: 24px 0 0;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: #4a4a4a;
}

@media screen and (max-width: 768px) {
  .subpage-hero {
    padding-block: 40px 32px;
  }
  .subpage-hero__inner {
    padding-inline: 18px;
  }
  .subpage-hero__title {
    font-size: 30px;
    line-height: 1.15;
  }
  .subpage-hero__num,
  .subpage-hero__en {
    font-size: 11px;
  }
  .subpage-hero__lede {
    font-size: 13px;
    line-height: 1.85;
  }
}
.subpage-hero--red .subpage-hero__num {
  color: #e63946;
}

.subpage-hero--ink .subpage-hero__num {
  color: #1a1a1a;
}

.subpage-hero--yellow .subpage-hero__num {
  color: #c8202e;
}

.subpage-hero--author-detail {
  padding-block: 72px 80px;
}

.subpage-hero--author-detail .subpage-hero__inner {
  display: grid;
  align-items: center;
  gap: 56px;
  grid-template-columns: auto minmax(0, 1fr);
}

.subpage-hero__avatar {
  position: relative;
  width: 200px;
  height: 200px;
  display: grid;
  overflow: hidden;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  background: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  box-shadow: 8px 8px 0 #1a1a1a;
  place-items: center;
}

.subpage-hero__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.subpage-hero__avatar-initial {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: inherit;
}

.subpage-hero__avatar--red {
  background: #e63946;
}

.subpage-hero__avatar--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.subpage-hero__avatar--ink {
  background: #1a1a1a;
}

.subpage-hero__stats {
  margin: 28px 0 0;
  padding: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  border-top: 1px dashed #b8b0a4;
}

.subpage-hero__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #4a4a4a;
}

.subpage-hero__stat-label {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.subpage-hero__stat-value {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

.subpage-hero__stat--link .subpage-hero__stat-value {
  font-size: 13px;
}

.subpage-hero__link {
  text-decoration: none;
  color: #e63946;
  border-bottom: 1px solid currentcolor;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.subpage-hero__link:hover {
  color: #c8202e;
}

@media screen and (max-width: 992px) {
  .subpage-hero--author-detail {
    padding-block: 56px 64px;
  }
  .subpage-hero--author-detail .subpage-hero__inner {
    gap: 40px;
  }
  .subpage-hero__avatar {
    width: 160px;
    height: 160px;
    font-size: 52px;
  }
  .subpage-hero__avatar-initial {
    font-size: 52px;
  }
}
@media screen and (max-width: 768px) {
  .subpage-hero--author-detail {
    padding-block: 44px 52px;
  }
  .subpage-hero--author-detail .subpage-hero__inner {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }
  .subpage-hero__avatar {
    width: 120px;
    height: 120px;
    font-size: 40px;
    box-shadow: 5px 5px 0 #1a1a1a;
  }
  .subpage-hero__avatar-initial {
    font-size: 40px;
  }
  .subpage-hero__stats {
    margin-top: 22px;
    padding-top: 16px;
    gap: 20px;
  }
  .subpage-hero__stat-value {
    font-size: 19px;
  }
}
.site-footer {
  margin-top: auto;
  padding: 64px 0 32px;
  color: #fbf8f3;
  background: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 56px 0 24px;
  }
}

.site-footer__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .site-footer__inner {
    padding-inline: 18px;
    gap: 32px;
    grid-template-columns: 1fr;
  }
}

.site-footer__brand-link {
  display: inline-block;
  text-decoration: none;
  color: #fbf8f3;
}

.site-footer__brand-name {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fbf8f3;
}

.site-footer__brand-desc {
  margin-top: 16px;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.9;
  color: #e5e0d8;
}

.site-footer__heading {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #f4c542;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__link {
  font-size: 13px;
  text-decoration: none;
  color: #e5e0d8;
  transition: color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #f4c542;
}

.site-footer__socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.site-footer__social-link {
  width: 36px;
  height: 36px;
  display: grid;
  color: #e5e0d8;
  border: 1.5px solid #e5e0d8;
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  place-items: center;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  color: #1a1a1a;
  background: #f4c542;
  border-color: #f4c542;
}

.site-footer__bottom {
  margin: 56px auto 0;
  padding: 24px 32px 0;
  width: 100%;
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #b8b0a4;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (max-width: 768px) {
  .site-footer__bottom {
    margin-top: 40px;
    padding: 20px 18px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 10px;
  }
}

.post-rank-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-rank-cards__item {
  position: relative;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.post-rank-cards__item:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.post-rank-cards__item--gold::before,
.post-rank-cards__item--silver::before,
.post-rank-cards__item--bronze::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  border-radius: 4px 0 0 4px;
}

.post-rank-cards__item--gold::before {
  background: #e63946;
}

.post-rank-cards__item--silver::before {
  background: #f4c542;
}

.post-rank-cards__item--bronze::before {
  background: #1a1a1a;
}

.post-rank-cards__link {
  position: relative;
  padding: 24px 28px;
  display: grid;
  align-items: center;
  gap: 28px;
  grid-template-columns: 92px 180px 1fr 32px;
  text-decoration: none;
  color: #1a1a1a;
}

.post-rank-cards__rank {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  font-family: "DM Mono", ui-monospace, monospace;
  line-height: 1;
  user-select: none;
}

.post-rank-cards__rank-mark {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #4a4a4a;
}

.post-rank-cards__rank-num {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #1a1a1a;
}

.post-rank-cards__item--gold .post-rank-cards__rank-num {
  color: #e63946;
}

.post-rank-cards__item--silver .post-rank-cards__rank-num {
  color: #f4c542;
}

.post-rank-cards__item--bronze .post-rank-cards__rank-num {
  color: #1a1a1a;
}

.post-rank-cards__rank-label {
  margin-top: 4px;
  padding: 3px 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  background: #1a1a1a;
  border-radius: 999px;
}

.post-rank-cards__item--gold .post-rank-cards__rank-label {
  background: #e63946;
}

.post-rank-cards__item--silver .post-rank-cards__rank-label {
  color: #1a1a1a;
  background: #f4c542;
}

.post-rank-cards__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f3eee4;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
}

.post-rank-cards__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.post-rank-cards__link:hover .post-rank-cards__img {
  transform: scale(1.04);
}

.post-rank-cards__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  background-image: repeating-linear-gradient(45deg, transparent 0 10px, rgba(0, 0, 0, 0.04) 10px 11px);
  place-items: center;
}

.post-rank-cards__placeholder-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #4a4a4a;
}

.post-rank-cards__cat-pos {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
}

.post-rank-cards__cat {
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
}

.post-rank-cards__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-rank-cards__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.post-rank-cards__chip {
  padding: 3px 10px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
}

.post-rank-cards__chip--area {
  background: #f3eee4;
}

.post-rank-cards__chip--hot {
  color: #fff;
  background: #e63946;
  border-color: #e63946;
}

.post-rank-cards__title {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-rank-cards__excerpt {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.85;
  color: #4a4a4a;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-rank-cards__meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #4a4a4a;
}

.post-rank-cards__date {
  font-family: "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
}

.post-rank-cards__author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #1a1a1a;
}

.post-rank-cards__author-initial {
  width: 22px;
  height: 22px;
  display: inline-grid;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  background: #fbe8a0;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  place-items: center;
}

.post-rank-cards__views {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  color: #e63946;
}

.post-rank-cards__views-icon {
  flex-shrink: 0;
}

.post-rank-cards__arrow {
  width: 32px;
  height: 32px;
  display: grid;
  color: #1a1a1a;
  background: #f3eee4;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), background-color 0.15s cubic-bezier(0, 0, 0.2, 1);
  place-items: center;
}

.post-rank-cards__link:hover .post-rank-cards__arrow {
  color: #fff;
  background: #e63946;
  transform: translateX(2px);
}

@media screen and (max-width: 992px) {
  .post-rank-cards__link {
    gap: 20px;
    grid-template-columns: 76px 150px 1fr 28px;
  }
  .post-rank-cards__rank-num {
    font-size: 44px;
  }
}
@media screen and (max-width: 768px) {
  .post-rank-cards {
    gap: 14px;
  }
  .post-rank-cards__link {
    padding: 18px 18px 18px 22px;
    gap: 12px 14px;
    grid-template-columns: 60px 1fr;
    grid-template-areas: "rank media" "body  body";
  }
  .post-rank-cards__rank {
    grid-area: rank;
  }
  .post-rank-cards__rank-mark {
    font-size: 9px;
  }
  .post-rank-cards__rank-num {
    font-size: 32px;
  }
  .post-rank-cards__rank-label {
    margin-top: 2px;
    padding: 2px 6px;
    font-size: 9px;
  }
  .post-rank-cards__media {
    grid-area: media;
    aspect-ratio: 16/10;
  }
  .post-rank-cards__body {
    gap: 8px;
    grid-area: body;
  }
  .post-rank-cards__title {
    font-size: 16px;
    line-height: 1.55;
  }
  .post-rank-cards__excerpt {
    font-size: 12px;
    line-height: 1.8;
    -webkit-line-clamp: 3;
  }
  .post-rank-cards__meta {
    gap: 10px;
    font-size: 11px;
  }
  .post-rank-cards__author-initial {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
  .post-rank-cards__arrow {
    display: none;
  }
  .post-rank-cards__item--gold::before,
  .post-rank-cards__item--silver::before,
  .post-rank-cards__item--bronze::before {
    width: 4px;
  }
}
.search-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.search-form__label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.search-form__field {
  position: relative;
  display: grid;
  align-items: stretch;
  gap: 0;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.search-form__icon {
  position: absolute;
  top: 50%;
  left: 16px;
  display: inline-flex;
  color: #4a4a4a;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .search-form__icon {
    left: 12px;
  }
}

.search-form__input {
  padding: 16px 16px 16px 46px;
  width: 100%;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  background-color: transparent;
  border: 0;
  outline: none;
}
@media screen and (max-width: 768px) {
  .search-form__input {
    padding: 14px 14px 14px 40px;
    font-size: 15px;
  }
}

.search-form__input::placeholder {
  font-weight: 400;
  color: #b8b0a4;
}

.search-form__input:focus {
  background-color: #f3eee4;
}

.search-form__submit {
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: #1a1a1a;
  border: 0;
  border-left: 1.5px solid #1a1a1a;
  transition: background-color 0.15s cubic-bezier(0, 0, 0.2, 1), color 0.15s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .search-form__submit {
    padding: 0 16px;
    font-size: 12px;
  }
}

.search-form__submit:hover {
  background-color: #e63946;
}

.search-form__submit:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

.search-form__submit-text {
  line-height: 1;
}

.search-form__submit-arrow {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.search-form__submit:hover .search-form__submit-arrow {
  transform: translateX(2px);
}

.search-form__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: #4a4a4a;
}
@media screen and (max-width: 768px) {
  .search-form__note {
    font-size: 11px;
  }
}

.search-form--page {
  gap: 16px;
}

.search-form--page .search-form__input {
  padding: 18px 18px 18px 50px;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .search-form--page .search-form__input {
    padding: 14px 14px 14px 40px;
    font-size: 15px;
  }
}

.search-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.search-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.search-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.55);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.search-modal.is-open .search-modal__backdrop {
  opacity: 1;
}

.search-modal__panel {
  position: absolute;
  top: 12vh;
  left: 50%;
  width: min(92vw, 640px);
  display: flex;
  flex-direction: column;
  background-color: #fbf8f3;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 8px 8px 0 #1a1a1a;
  opacity: 0;
  transform: translate(-50%, -16px);
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media screen and (max-width: 768px) {
  .search-modal__panel {
    top: 6vh;
    width: min(94vw, 520px);
    box-shadow: 5px 5px 0 #1a1a1a;
  }
}

.search-modal.is-open .search-modal__panel {
  opacity: 1;
  transform: translate(-50%, 0);
}

.search-modal__head {
  position: relative;
  padding: 22px 64px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1.5px solid #1a1a1a;
}
@media screen and (max-width: 768px) {
  .search-modal__head {
    padding: 18px 56px 14px 18px;
  }
}

.search-modal__num {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e63946;
}

.search-modal__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .search-modal__title {
    font-size: 18px;
  }
}

.search-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 0;
  width: 40px;
  height: 40px;
  display: grid;
  color: #1a1a1a;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .search-modal__close {
    width: 34px;
    height: 34px;
  }
}

.search-modal__close:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(2px, 2px);
}

.search-modal__close:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

.search-modal__body {
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .search-modal__body {
    padding: 18px;
  }
}

body.is-search-open {
  overflow: hidden;
}

body.page-home {
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background-color: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.front {
  display: block;
  color: #1a1a1a;
}

.front-hero {
  --front-hero-pad-top: 56px;
  --front-hero-pad-bottom: 72px;
  position: relative;
  padding: var(--front-hero-pad-top) 0 var(--front-hero-pad-bottom);
  height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #fbf8f3;
}

.front-hero__bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(230, 57, 70, 0.06) 0%, rgba(244, 197, 66, 0.05) 60%, rgba(251, 248, 243, 0) 100%);
  pointer-events: none;
}

.front-hero__inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: 1.1fr 1fr;
}

.front-hero__copy {
  display: block;
}

.front-hero__eyebrow {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.front-hero__eyebrow::before,
.front-hero__eyebrow::after {
  content: "";
  width: 32px;
  height: 1.5px;
  background: #1a1a1a;
}

.front-hero__eyebrow-accent {
  color: #e63946;
}

.front-hero__title {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 1rem + 4vw, 4.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.front-hero__title-line {
  display: block;
  white-space: nowrap;
}

.front-hero__title-accent {
  color: #e63946;
}

.front-hero__lede {
  margin-bottom: 32px;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.9;
  color: #4a4a4a;
}

.front-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.front-hero__visual {
  position: relative;
  height: calc(100dvh - var(--header-height) - var(--front-hero-pad-top) - var(--front-hero-pad-bottom));
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 8px 8px 0 #1a1a1a;
}

.front-hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.front-hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.front-hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .front-hero {
    --front-hero-pad-top: 32px;
    --front-hero-pad-bottom: 40px;
  }
  .front-hero__inner {
    padding-inline: 18px;
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .front-hero__eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }
  .front-hero__title {
    margin-bottom: 18px;
    line-height: 1.2;
  }
  .front-hero__lede {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.85;
  }
  .front-hero__visual {
    display: none;
  }
}
.front-btn {
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  box-shadow: 5px 5px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.front-btn:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.front-btn:active {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(4px, 4px);
}

.front-btn:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

.front-btn--red {
  color: #fff;
  background: #e63946;
}

.front-btn--ink {
  color: #fff;
  background: #1a1a1a;
}

.front-btn--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.front-btn__icon {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .front-btn {
    padding: 12px 18px;
    font-size: 13px;
  }
}
.front-tag {
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
}

.front-tag--red {
  color: #fff;
  background: #e63946;
}

.front-tag--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.front-tag--ink {
  color: #fff;
  background: #1a1a1a;
}

.front-avatar {
  width: 22px;
  height: 22px;
  display: inline-grid;
  font-size: 10px;
  font-weight: 700;
  color: #1a1a1a;
  background: #fbe8a0;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  place-items: center;
}

.front-avatar--red {
  background: #f8dddf;
}

.front-avatar--yellow {
  background: #fbe8a0;
}

.front-avatar--ink {
  color: #fff;
  background: #1a1a1a;
}

.front-ph {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  background-color: #f3eee4;
  background-image: repeating-linear-gradient(45deg, transparent 0 10px, rgba(0, 0, 0, 0.04) 10px 11px);
  place-items: center;
}

.front-ph--red {
  background-color: #f8dddf;
}

.front-ph--yellow {
  background-color: #fbe8a0;
}

.front-ph--ink {
  background-color: #1a1a1a;
}

.front-ph--ink .front-ph__label {
  color: #fbf8f3;
}

.front-ph__label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.front-section {
  position: relative;
  padding: 80px 0;
  background-color: #fbf8f3;
}

.front-section--alt {
  border-block: 1.5px solid #1a1a1a;
  background-color: #f3eee4;
}

.front-section__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
}

.front-section-head {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.front-section-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.front-section-title__num {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #e63946;
}

.front-section-title__jp {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
}

.front-section-title__en {
  margin-left: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #4a4a4a;
}

.front-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.front-section-link:hover {
  color: #e63946;
}

@media screen and (max-width: 768px) {
  .front-section {
    padding: 56px 0;
  }
  .front-section__inner {
    padding-inline: 18px;
  }
  .front-section-head {
    margin-bottom: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .front-section-title {
    flex-wrap: wrap;
    gap: 10px;
  }
  .front-section-title__num {
    font-size: 11px;
  }
  .front-section-title__jp {
    font-size: 28px;
    line-height: 1.1;
  }
  .front-section-title__en {
    margin-left: 0;
    font-size: 10px;
  }
}
.front-grid {
  display: grid;
  gap: 32px;
}

.front-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
  .front-grid {
    gap: 24px;
  }
  .front-grid--3 {
    grid-template-columns: 1fr;
  }
}
.front-card {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
}

.front-card__media {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  background: #f3eee4;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  aspect-ratio: 4/3;
}

.front-card:hover .front-card__media {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.front-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.front-card__cat {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
}

.front-card__title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.front-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #4a4a4a;
}

.front-card__date {
  font-family: "DM Mono", ui-monospace, monospace;
}

.front-card__author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media screen and (max-width: 768px) {
  .front-card__title {
    font-size: 15px;
    line-height: 1.55;
  }
  .front-card__meta {
    font-size: 11px;
  }
}
.front-popular {
  position: relative;
}

.front-popular .swiper-wrapper {
  max-height: 420px;
}

.front-popular__slide {
  padding-right: 16px;
  padding-bottom: 16px;
  box-sizing: border-box;
  height: auto;
  max-height: 420px;
}

.front-popular__card {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 8px 8px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.front-popular__card:hover {
  box-shadow: 4px 4px 0 #1a1a1a;
  transform: translate(4px, 4px);
}

.front-popular__media {
  position: relative;
  overflow: hidden;
  background: #f3eee4;
  border-right: 1.5px solid #1a1a1a;
}

.front-popular__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.front-popular__rank {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 84px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 4px 4px 0 #1a1a1a;
}

.front-popular__rank-en {
  position: absolute;
  top: 28px;
  left: 130px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #fff;
}

.front-popular__cat-pos {
  position: absolute;
  top: 24px;
  right: 24px;
}

.front-popular__body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.front-popular__chips {
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
}

.front-popular__title {
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.front-popular__excerpt {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.9;
  color: #4a4a4a;
}

.front-popular__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #4a4a4a;
}

.front-popular__date {
  font-family: "DM Mono", ui-monospace, monospace;
}

.front-popular__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #1a1a1a;
}

.front-popular__views {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "DM Mono", ui-monospace, monospace;
  color: #e63946;
}

.front-popular__views-icon {
  flex-shrink: 0;
}

.front-popular__controls {
  margin-top: 28px;
  margin-right: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.front-popular__dots {
  position: static !important;
  width: auto !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.front-popular__dot {
  padding: 0;
  width: 32px;
  height: 4px;
  background: #1a1a1a;
  border: none;
  border-radius: 4px;
  opacity: 0.2;
  transition: width 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.15s cubic-bezier(0, 0, 0.2, 1), background-color 0.15s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
}

.front-popular__dot.is-on {
  width: 64px;
  background: #e63946;
  opacity: 1;
}

.front-popular__arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.front-popular__counter {
  min-width: 64px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: right;
  color: #4a4a4a;
}

.front-popular__arrow {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  box-shadow: 4px 4px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
  place-items: center;
}

.front-popular__arrow::before,
.front-popular__arrow::after {
  content: none;
  display: none;
}

.front-popular__arrow:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.front-popular__arrow--red {
  color: #fff;
  background: #e63946;
}

@media screen and (max-width: 992px) {
  .front-popular .swiper-wrapper {
    max-height: none;
  }
  .front-popular__slide {
    max-height: none;
  }
  .front-popular__card {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .front-popular__media {
    aspect-ratio: 4/3;
    border-right: none;
    border-bottom: 1.5px solid #1a1a1a;
  }
  .front-popular__rank {
    font-size: 60px;
  }
  .front-popular__rank-en {
    top: 24px;
    left: 92px;
  }
}
@media screen and (max-width: 768px) {
  .front-popular__body {
    padding: 22px 20px 24px;
  }
  .front-popular__title {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.5;
  }
  .front-popular__excerpt {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.8;
  }
  .front-popular__rank {
    top: 12px;
    left: 14px;
    font-size: 48px;
  }
  .front-popular__rank-en {
    top: 18px;
    left: 70px;
    font-size: 10px;
  }
  .front-popular__cat-pos {
    top: 14px;
    right: 14px;
  }
  .front-popular__media {
    aspect-ratio: 16/10;
  }
  .front-popular__counter {
    min-width: 0;
  }
}
.front-cat-tiles {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.front-cat-tile {
  position: relative;
  padding: 24px 20px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.front-cat-tile:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.front-cat-tile--red {
  color: #fff;
  background: #e63946;
}

.front-cat-tile--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.front-cat-tile__num {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #4a4a4a;
}

.front-cat-tile--red .front-cat-tile__num {
  color: rgba(255, 255, 255, 0.85);
}

.front-cat-tile__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.front-cat-tile__jp {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.front-cat-tile__en {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #4a4a4a;
}

.front-cat-tile--red .front-cat-tile__en {
  color: rgba(255, 255, 255, 0.85);
}

.front-cat-tile__count {
  margin-top: auto;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  color: #e63946;
}

.front-cat-tile--red .front-cat-tile__count {
  color: rgba(255, 255, 255, 0.85);
}

@media screen and (max-width: 768px) {
  .front-cat-tiles {
    grid-template-columns: 1fr;
  }
  .front-cat-tile {
    padding: 22px;
    min-height: 130px;
  }
  .front-cat-tile__jp {
    font-size: 26px;
  }
}
.front-area-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.front-area-chip {
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1), background-color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.front-area-chip:hover {
  background: #f4c542;
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.front-area-chip__name {
  font-size: 15px;
  font-weight: 700;
}

.front-area-chip__count {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  color: #4a4a4a;
}

@media screen and (max-width: 768px) {
  .front-area-list {
    grid-template-columns: 1fr;
  }
  .front-area-chip {
    padding: 18px 20px;
  }
}
.front-writer {
  padding: 24px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.front-writer:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.front-writer__avatar {
  margin: 0 auto 16px;
  width: 96px;
  height: 96px;
  display: grid;
  font-size: 28px;
  font-weight: 900;
  color: #1a1a1a;
  background: #fbe8a0;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  place-items: center;
}

.front-writer__avatar--red {
  color: #fff;
  background: #e63946;
}

.front-writer__avatar--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.front-writer__avatar--ink {
  color: #fff;
  background: #1a1a1a;
}

.front-writer__name {
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 700;
}

.front-writer__handle {
  margin-bottom: 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  color: #4a4a4a;
}

.front-writer__bio {
  font-size: 13px;
  line-height: 1.7;
  color: #4a4a4a;
}

.front-writer__stats {
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 11px;
  color: #4a4a4a;
  border-top: 1px dashed #b8b0a4;
}

.front-writer__stats b {
  margin-right: 4px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

@media screen and (max-width: 768px) {
  .front-writer {
    padding: 20px;
  }
  .front-writer__avatar {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }
  .front-writer__name {
    font-size: 18px;
  }
}
.front-banner {
  padding: 56px 0;
  background-color: #f3eee4;
  border-top: 1.5px solid #1a1a1a;
  border-bottom: 1.5px solid #1a1a1a;
}

.front-banner__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.front-banner__label {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4a4a4a;
  text-align: center;
}

.front-banner__link {
  display: block;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  transition: opacity 0.2s ease;
}
.front-banner__link:hover, .front-banner__link:focus-visible {
  opacity: 0.85;
}

.front-banner__img {
  width: 100%;
  height: auto;
  display: block;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.front-banner__inner > .front-banner__img {
  max-width: 600px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .front-banner {
    padding: 40px 0;
  }
  .front-banner__inner {
    padding-inline: 18px;
  }
  .front-banner__link,
  .front-banner__inner > .front-banner__img {
    width: 90%;
    max-width: none;
  }
}
.front-empty {
  padding: 32px 0;
  font-size: 14px;
  text-align: center;
  color: #4a4a4a;
}

.front-empty--error {
  padding: 28px 32px;
  font-size: 13px;
  line-height: 1.85;
  text-align: left;
  color: #4a4a4a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-left-width: 6px;
  border-left-color: #e63946;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
}

body.error404 {
  color: #1a1a1a;
  background-color: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.page-404 {
  display: block;
  color: #1a1a1a;
  background-color: #fbf8f3;
}

.page-404__visually-hidden {
  position: absolute;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.page-404__body {
  padding: 80px 0;
  background-color: #fbf8f3;
}

.page-404__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-404__num-card {
  position: relative;
  padding: 32px 56px 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 8px 8px 0 #1a1a1a;
}

.page-404__num {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #e63946;
}

.page-404__num-label {
  padding: 4px 14px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #fff;
  background-color: #1a1a1a;
  border-radius: 999px;
}

.page-404__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #4a4a4a;
}

.page-404__actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.page-404__btn {
  position: relative;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #fff;
  background-color: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1), background-color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.page-404__btn:hover {
  background-color: #e63946;
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.page-404__btn:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 4px;
}

.page-404__btn-arrow {
  display: inline-flex;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.page-404__btn:hover .page-404__btn-arrow {
  transform: translateX(3px);
}

@media screen and (max-width: 768px) {
  .page-404__body {
    padding: 56px 0;
  }
  .page-404__inner {
    padding-inline: 18px;
    gap: 28px;
  }
  .page-404__num-card {
    padding: 24px 36px 18px;
    box-shadow: 5px 5px 0 #1a1a1a;
  }
  .page-404__num {
    font-size: 96px;
  }
  .page-404__num-label {
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .page-404__text {
    font-size: 13px;
    line-height: 1.85;
  }
  .page-404__btn {
    padding: 14px 26px;
    font-size: 13px;
  }
}
/*!
Theme Name: 天満ワークス
Author: 天満ワークス
Description: 天満ワークスのテーマ
Version: 1.0.0
Text Domain: -
*/
.blog {
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  background: #fbf8f3;
}

.archive-list {
  padding-block: 56px 96px;
  background: #fbf8f3;
}

.archive-list__inner {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .archive-list {
    padding-block: 36px 64px;
  }
}
.archive-filter {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.archive-filter__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-filter__item {
  display: inline-flex;
}

.archive-filter__chip {
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1), background 0.15s cubic-bezier(0, 0, 0.2, 1), color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.archive-filter__chip:hover {
  background: #f4c542;
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(2px, 2px);
}

.archive-filter__chip:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

.archive-filter__chip--current {
  color: #fbf8f3;
  background: #1a1a1a;
  box-shadow: 3px 3px 0 #e63946;
}

.archive-filter__chip--current:hover {
  color: #fbf8f3;
  background: #1a1a1a;
  box-shadow: 0 0 0 #e63946;
  transform: translate(2px, 2px);
}

.archive-filter__chip-label {
  display: inline-block;
}

.archive-filter__chip-count {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.archive-filter__total {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #4a4a4a;
}

.archive-filter__total-label {
  margin: 0 2px;
}

.archive-filter__total-num {
  margin: 0 4px;
  font-weight: 500;
  color: #1a1a1a;
}

@media screen and (max-width: 768px) {
  .archive-filter {
    margin-bottom: 28px;
  }
}
.archive-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 40px 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-grid__item {
  display: flex;
}

@media screen and (max-width: 992px) {
  .archive-grid {
    gap: 32px 24px;
  }
}
@media screen and (max-width: 768px) {
  .archive-grid {
    gap: 28px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .archive-grid {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr);
  }
}
.article-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.article-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}

.article-card__link:focus-visible {
  border-radius: 6px;
  outline: 2px solid #e63946;
  outline-offset: 4px;
}

.article-card__media {
  position: relative;
  overflow: hidden;
  background: #f3eee4;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  aspect-ratio: 4/3;
}

.article-card__link:hover .article-card__media {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.article-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-color: #f3eee4;
  background-image: repeating-linear-gradient(45deg, transparent 0 10px, rgba(0, 0, 0, 0.05) 10px 11px);
}

.article-card__placeholder-label {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.article-card__cat {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
}

.article-card__cat-tag {
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
}

.article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.article-card__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: #1a1a1a;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.article-card__link:hover .article-card__title {
  color: #e63946;
}

.article-card__excerpt {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.85;
  color: #4a4a4a;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.article-card__meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #4a4a4a;
}

.article-card__date {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.article-card__area {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

.article-card__area-mark {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: #e63946;
  border-radius: 50%;
}

@media screen and (max-width: 576px) {
  .article-card__title {
    font-size: 15px;
  }
  .article-card__excerpt {
    font-size: 12px;
    line-height: 1.8;
  }
  .article-card__meta {
    font-size: 11px;
  }
}
.archive-pager {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}

.archive-pager__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.archive-pager__item {
  display: inline-flex;
}

.archive-pager__link {
  width: 44px;
  height: 44px;
  display: grid;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1), background 0.15s cubic-bezier(0, 0, 0.2, 1), color 0.15s cubic-bezier(0, 0, 0.2, 1);
  place-items: center;
}

.archive-pager__link:hover {
  background: #f4c542;
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(2px, 2px);
}

.archive-pager__link:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

.archive-pager__link--current {
  color: #fff;
  background: #e63946;
}

.archive-pager__link--current:hover {
  color: #fff;
  background: #e63946;
}

.archive-pager__link--dots {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.archive-pager__link--dots:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

@media screen and (max-width: 576px) {
  .archive-pager {
    margin-top: 48px;
  }
  .archive-pager__link {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}
.archive-empty {
  padding-block: 64px;
  font-size: 15px;
  text-align: center;
  color: #4a4a4a;
}

body.single {
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background-color: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.single {
  display: block;
  color: #1a1a1a;
}

.single-tag {
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  transition: background-color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

a.single-tag:hover {
  background: #f4c542;
}

.single-tag--red {
  color: #fff;
  background: #e63946;
}

.single-tag--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.single-tag--ink {
  color: #fff;
  background: #1a1a1a;
}

.single-avatar {
  width: 28px;
  height: 28px;
  display: inline-grid;
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  background: #fbe8a0;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  place-items: center;
}

.single-avatar--red {
  background: #f8dddf;
}

.single-avatar--yellow {
  background: #fbe8a0;
}

.single-avatar--ink {
  color: #fff;
  background: #1a1a1a;
}

.single-ph {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  background-color: #f3eee4;
  background-image: repeating-linear-gradient(45deg, transparent 0 10px, rgba(0, 0, 0, 0.04) 10px 11px);
  place-items: center;
}

.single-ph--red {
  background-color: #f8dddf;
}

.single-ph--yellow {
  background-color: #fbe8a0;
}

.single-ph--ink {
  background-color: #1a1a1a;
}

.single-ph--ink .single-ph__label {
  color: #fbf8f3;
}

.single-ph__label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.single-crumbs-wrap {
  margin-inline: auto;
  padding: 16px 32px 0;
  width: 100%;
  max-width: 1240px;
}

.single-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #4a4a4a;
}

.single-crumbs__link {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.single-crumbs__link:hover {
  color: #e63946;
}

.single-crumbs__sep {
  color: #b8b0a4;
}

.single-crumbs__current {
  color: #4a4a4a;
}

@media screen and (max-width: 768px) {
  .single-crumbs-wrap {
    padding: 12px 18px 0;
  }
  .single-crumbs {
    font-size: 11px;
  }
}
.single-hero {
  padding: 48px 0 24px;
  background-color: #fbf8f3;
}

.single-hero__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 800px;
}

.single-hero__cats {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-hero__title {
  margin-bottom: 24px;
  font-size: clamp(1.75rem, 1.1rem + 2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: #1a1a1a;
}

.single-hero__meta {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #4a4a4a;
}

.single-hero__date {
  font-family: "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
}

.single-hero__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.single-hero__author-name {
  font-weight: 700;
  color: #1a1a1a;
}

.single-hero__cover {
  position: relative;
  overflow: hidden;
  background: #f3eee4;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 8px 8px 0 #1a1a1a;
  aspect-ratio: 16/9;
}

.single-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .single-hero {
    padding: 24px 0 20px;
  }
  .single-hero__inner {
    padding-inline: 18px;
  }
  .single-hero__cats {
    margin-bottom: 12px;
  }
  .single-hero__title {
    margin-bottom: 18px;
    line-height: 1.4;
  }
  .single-hero__meta {
    margin-bottom: 20px;
    gap: 12px;
    font-size: 11px;
  }
  .single-hero__cover {
    aspect-ratio: 16/10;
    box-shadow: 5px 5px 0 #1a1a1a;
  }
}
.single-body {
  padding: 56px 0;
  background-color: #fbf8f3;
}

.single-body__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
  display: grid;
  align-items: start;
  gap: 56px;
  grid-template-columns: 1fr 320px;
}

.single-body__main {
  font-size: 16px;
  line-height: 2;
  color: #1a1a1a;
}

.single-body__lead {
  margin-bottom: 32px;
  padding-bottom: 32px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  color: #1a1a1a;
  border-bottom: 1px dashed #b8b0a4;
}

@media screen and (max-width: 992px) {
  .single-body__inner {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .single-body {
    padding: 36px 0 48px;
  }
  .single-body__inner {
    padding-inline: 18px;
    gap: 40px;
  }
  .single-body__main {
    font-size: 15px;
    line-height: 1.95;
  }
  .single-body__lead {
    margin-bottom: 24px;
    padding-bottom: 24px;
    font-size: 16px;
    line-height: 1.85;
  }
}
.single-toc {
  margin: 0 0 40px;
  padding: 24px 28px;
  background: #fbe8a0;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.single-toc__head {
  margin-bottom: 16px;
  padding-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1.5px dashed #1a1a1a;
}

.single-toc__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #e63946;
}

.single-toc__title {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  color: #1a1a1a;
  border: none;
}

.single-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.single-toc__item {
  margin: 0;
  padding: 0;
}

.single-toc__link {
  padding: 8px 10px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  color: #1a1a1a;
  border-radius: 4px;
  transition: background-color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.single-toc__link:hover,
.single-toc__link:focus-visible {
  text-decoration: underline;
  background: #fff;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.single-toc__num {
  flex: 0 0 auto;
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #e63946;
}

.single-toc__text {
  flex: 1 1 auto;
}

@media screen and (max-width: 768px) {
  .single-toc {
    margin-bottom: 32px;
    padding: 18px 20px;
  }
  .single-toc__head {
    margin-bottom: 12px;
    padding-bottom: 10px;
    gap: 10px;
  }
  .single-toc__title {
    font-size: 16px;
  }
  .single-toc__link {
    padding: 6px 8px;
    font-size: 14px;
  }
}
.single-content {
  font-size: inherit;
  line-height: inherit;
  color: #1a1a1a;
}

.single-content p {
  margin: 0 0 24px;
}

.single-content p:last-child {
  margin-bottom: 0;
}

.single-content h2 {
  margin: 56px 0 20px;
  padding-left: 16px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.005em;
  border-left: 6px solid #e63946;
}

.single-content h3 {
  margin: 36px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.single-content h3::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: #f4c542;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
}

.single-content h4 {
  margin: 28px 0 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.single-content a {
  text-decoration: underline;
  color: #e63946;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
  text-underline-offset: 3px;
}

.single-content a:hover {
  color: #c8202e;
}

.single-content strong {
  font-weight: 700;
}

.single-content ul,
.single-content ol {
  margin: 0 0 24px 1.4em;
  padding: 0;
}

.single-content li {
  margin-bottom: 6px;
}

.single-content figure {
  margin: 32px 0;
}

.single-content figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.single-content figcaption {
  margin-top: 12px;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.7;
  color: #4a4a4a;
  border-left: 2px solid #b8b0a4;
}

.single-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.9;
  background: #fbe8a0;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.single-content blockquote p {
  margin: 0;
}

.single-content > img,
.single-content p > img {
  margin: 24px 0;
  width: 100%;
  height: auto;
  display: block;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.single-content hr {
  margin: 40px 0;
  border: none;
  border-top: 1.5px dashed #b8b0a4;
}

@media screen and (max-width: 768px) {
  .single-content h2 {
    margin: 40px 0 16px;
    padding-left: 12px;
    font-size: 22px;
    border-left-width: 5px;
  }
  .single-content h3 {
    margin: 28px 0 12px;
    font-size: 17px;
  }
  .single-content h3::before {
    width: 14px;
    height: 14px;
  }
  .single-content blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: bold;
  }
  .single-content figure {
    margin: 24px 0;
  }
}
.single-shop {
  margin: 48px 0;
  padding: 28px 32px;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 5px 5px 0 #1a1a1a;
}

.single-shop__head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px dashed #b8b0a4;
}

.single-shop__eyebrow {
  margin-bottom: 6px;
  display: inline-block;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #e63946;
}

.single-shop__name {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #1a1a1a;
}

.single-shop__list {
  margin: 0;
  display: grid;
  gap: 14px;
}

.single-shop__row {
  display: grid;
  align-items: baseline;
  gap: 16px;
  grid-template-columns: 96px 1fr;
}

.single-shop__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #4a4a4a;
}

.single-shop__value {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #1a1a1a;
}

.single-shop__tel {
  font-family: "DM Mono", ui-monospace, monospace;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #1a1a1a;
  border-bottom: 1.5px solid #1a1a1a;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1), border-color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.single-shop__tel:hover {
  color: #e63946;
  border-color: #e63946;
}

.single-shop__links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-shop__link {
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1), background-color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.single-shop__link:hover {
  background: #f4c542;
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(2px, 2px);
}

.single-shop__link--accent {
  color: #fff;
  background: #e63946;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.single-shop__link--accent:hover {
  color: #fff;
  background: #e63946;
  box-shadow: 0 0 0 #1a1a1a;
}

@media screen and (max-width: 768px) {
  .single-shop {
    margin: 32px 0;
    padding: 22px;
  }
  .single-shop__name {
    font-size: 19px;
  }
  .single-shop__row {
    gap: 6px;
    grid-template-columns: 1fr;
  }
  .single-shop__label {
    font-size: 11px;
  }
  .single-shop__value {
    font-size: 14px;
  }
}
.single-tags {
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-author-box {
  margin: 48px 0 0;
  padding: 28px;
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: 100px 1fr;
  background: #f3eee4;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.single-author-box__avatar {
  width: 100px;
  height: 100px;
  display: grid;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  background: #e63946;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  place-items: center;
}

.single-author-box__avatar--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.single-author-box__avatar--ink {
  color: #fff;
  background: #1a1a1a;
}

.single-author-box__avatar--red {
  color: #fff;
  background: #e63946;
}

.single-author-box__body {
  display: block;
}

.single-author-box__name {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.single-author-box__handle {
  margin-bottom: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #4a4a4a;
}

.single-author-box__bio {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.8;
  color: #4a4a4a;
}

.single-author-box__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.single-author-box__link:hover {
  color: #e63946;
}

@media screen and (max-width: 768px) {
  .single-author-box {
    margin: 32px 0 0;
    padding: 20px;
    gap: 16px;
    grid-template-columns: 72px 1fr;
  }
  .single-author-box__avatar {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }
  .single-author-box__name {
    font-size: 17px;
  }
}
.single-aside {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.single-aside__block {
  padding: 24px;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.single-aside__block--accent {
  background: #f4c542;
}

.single-aside__title {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #1a1a1a;
}

.single-aside__title::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #e63946;
  border: 1.5px solid #1a1a1a;
}

.single-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.single-aside__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.single-aside__num {
  flex-shrink: 0;
  min-width: 24px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #e63946;
}

.single-aside__link {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.single-aside__link:hover {
  color: #e63946;
}

.single-aside__lede {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.8;
  color: #1a1a1a;
}

.single-aside__btn {
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.single-aside__btn:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(2px, 2px);
}

@media screen and (max-width: 992px) {
  .single-aside {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .single-aside {
    gap: 20px;
  }
  .single-aside__block {
    padding: 20px;
  }
}
.single-related {
  position: relative;
  padding: 80px 0;
  background-color: #f3eee4;
  border-block: 1.5px solid #1a1a1a;
}

.single-related__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
}

.single-related__head {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.single-related__title-group {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.single-related__num {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #e63946;
}

.single-related__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #1a1a1a;
}

.single-related__en {
  margin-left: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #4a4a4a;
}

.single-related__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 992px) {
  .single-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .single-related {
    padding: 56px 0;
  }
  .single-related__inner {
    padding-inline: 18px;
  }
  .single-related__head {
    margin-bottom: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .single-related__title-group {
    flex-wrap: wrap;
    gap: 10px;
  }
  .single-related__num {
    font-size: 11px;
  }
  .single-related__title {
    font-size: 28px;
    line-height: 1.1;
  }
  .single-related__en {
    margin-left: 0;
    font-size: 10px;
  }
  .single-related__grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }
}
.single-card {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
}

.single-card__media {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  aspect-ratio: 4/3;
}

.single-card:hover .single-card__media {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.single-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-card__cat {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
}

.single-card__title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.single-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #4a4a4a;
}

.single-card__date {
  font-family: "DM Mono", ui-monospace, monospace;
}

.single-card__author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media screen and (max-width: 768px) {
  .single-card__title {
    font-size: 15px;
    line-height: 1.55;
  }
  .single-card__meta {
    font-size: 11px;
  }
}
body.category {
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background-color: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.category {
  display: block;
  color: #1a1a1a;
  background-color: #fbf8f3;
}

.category-archive {
  padding: 56px 0 80px;
  background-color: #f3eee4;
  border-top: 1.5px solid #1a1a1a;
}

.category-archive__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
}

@media screen and (max-width: 768px) {
  .category-archive {
    padding: 40px 0 56px;
  }
  .category-archive__inner {
    padding-inline: 18px;
  }
}
.category-filter {
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.category-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filter__total {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #4a4a4a;
}

.category-chip {
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1), background-color 0.15s cubic-bezier(0, 0, 0.2, 1), color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.category-chip:hover {
  background: #f4c542;
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.category-chip:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

.category-chip.is-on {
  color: #fff;
  background: #e63946;
  border-color: #1a1a1a;
}

.category-chip.is-on:hover {
  color: #fff;
  background: #c8202e;
}

.category-chip__count {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .category-filter {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .category-chip {
    padding: 8px 14px;
    font-size: 12px;
  }
}
.category-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 992px) {
  .category-grid {
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .category-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }
}
.category-card-wrap {
  display: block;
}

.category-card {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
}

.category-card__media {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fbf8f3;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  aspect-ratio: 4/3;
}

.category-card:hover .category-card__media {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.category-card:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 4px;
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-card__ph {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  background-color: #f3eee4;
  background-image: repeating-linear-gradient(45deg, transparent 0 10px, rgba(0, 0, 0, 0.04) 10px 11px);
  place-items: center;
}

.category-card__ph--red {
  background-color: #f8dddf;
}

.category-card__ph--yellow {
  background-color: #fbe8a0;
}

.category-card__ph--ink {
  background-color: #1a1a1a;
}

.category-card__ph--ink .category-card__ph-label {
  color: #fbf8f3;
}

.category-card__ph-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.category-card__cat {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
}

.category-card__title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: #1a1a1a;
}

.category-card:hover .category-card__title {
  color: #e63946;
}

.category-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #4a4a4a;
}

.category-card__date {
  font-family: "DM Mono", ui-monospace, monospace;
}

.category-card__area {
  padding-left: 10px;
  border-left: 1px solid #b8b0a4;
}

.category-card__author {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media screen and (max-width: 768px) {
  .category-card__title {
    font-size: 15px;
  }
  .category-card__meta {
    gap: 10px;
    font-size: 11px;
  }
}
.category-tag {
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
}

.category-tag--red {
  color: #fff;
  background: #e63946;
}

.category-tag--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.category-tag--ink {
  color: #fff;
  background: #1a1a1a;
}

.category-avatar {
  width: 22px;
  height: 22px;
  display: inline-grid;
  font-size: 10px;
  font-weight: 700;
  color: #1a1a1a;
  background: #fbe8a0;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  place-items: center;
}

.category-avatar--red {
  background: #f8dddf;
}

.category-avatar--yellow {
  background: #fbe8a0;
}

.category-avatar--ink {
  color: #fff;
  background: #1a1a1a;
}

.category-empty {
  padding: 64px 0;
  font-size: 14px;
  text-align: center;
  color: #4a4a4a;
}

.categories {
  display: block;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background-color: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.categories-grid-section {
  padding: 56px 0 80px;
  background-color: #f3eee4;
  border-top: 1.5px solid #1a1a1a;
}

.categories-grid-section__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
}

@media screen and (max-width: 768px) {
  .categories-grid-section {
    padding: 40px 0 56px;
  }
  .categories-grid-section__inner {
    padding-inline: 18px;
  }
}
.categories-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 992px) {
  .categories-grid {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .categories-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
.categories-grid__item {
  display: block;
}

.categories-tile {
  position: relative;
  padding: 36px 32px 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 5px 5px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.categories-tile:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(5px, 5px);
}

.categories-tile:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 4px;
}

.categories-tile--red {
  color: #fff;
  background: #e63946;
}

.categories-tile--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.categories-tile--default {
  color: #1a1a1a;
  background: #fff;
}

.categories-tile__num {
  position: relative;
  z-index: 1;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e63946;
}

.categories-tile--red .categories-tile__num {
  color: rgba(255, 255, 255, 0.92);
}

.categories-tile--yellow .categories-tile__num {
  color: #c8202e;
}

.categories-tile__jp {
  position: relative;
  z-index: 1;
  margin: 6px 0 4px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.categories-tile__desc {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.85;
  color: #4a4a4a;
}

.categories-tile--red .categories-tile__desc {
  color: rgba(255, 255, 255, 0.88);
}

.categories-tile__foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.categories-tile__count {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #4a4a4a;
}

.categories-tile--red .categories-tile__count {
  color: rgba(255, 255, 255, 0.85);
}

.categories-tile__view {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e63946;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.categories-tile--red .categories-tile__view {
  color: #fff;
}

.categories-tile--yellow .categories-tile__view {
  color: #c8202e;
}

.categories-tile:hover .categories-tile__view {
  transform: translateX(4px);
}

@media screen and (max-width: 768px) {
  .categories-tile {
    padding: 28px 24px 22px;
    min-height: 220px;
  }
  .categories-tile__jp {
    font-size: 24px;
  }
  .categories-tile__desc {
    font-size: 12px;
    line-height: 1.8;
  }
}
.categories-empty {
  padding: 64px 0;
  font-size: 14px;
  text-align: center;
  color: #4a4a4a;
}

/*!
Theme Name: 天満ワークス
Author: 天満ワークス
Description: 天満ワークスのテーマ
Version: 1.0.0
Text Domain: -
*/
.page-areas {
  display: block;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background-color: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.page-areas-grid-section {
  padding: 56px 0 80px;
  background-color: #f3eee4;
  border-top: 1.5px solid #1a1a1a;
}

.page-areas-grid-section__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
}

@media screen and (max-width: 768px) {
  .page-areas-grid-section {
    padding: 40px 0 56px;
  }
  .page-areas-grid-section__inner {
    padding-inline: 18px;
  }
}
.page-areas-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 992px) {
  .page-areas-grid {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page-areas-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
.page-areas-grid__item {
  display: flex;
}

.page-areas-tile {
  position: relative;
  padding: 36px 32px 28px;
  width: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 5px 5px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.page-areas-tile:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(5px, 5px);
}

.page-areas-tile:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 4px;
}

.page-areas-tile--red {
  color: #fff;
  background: #e63946;
}

.page-areas-tile--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.page-areas-tile--default {
  color: #1a1a1a;
  background: #fff;
}

.page-areas-tile__num {
  position: relative;
  z-index: 1;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e63946;
}

.page-areas-tile--red .page-areas-tile__num {
  color: rgba(255, 255, 255, 0.92);
}

.page-areas-tile--yellow .page-areas-tile__num {
  color: #c8202e;
}

.page-areas-tile__jp {
  position: relative;
  z-index: 1;
  margin: 6px 0 2px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.page-areas-tile__en {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #4a4a4a;
}

.page-areas-tile--red .page-areas-tile__en {
  color: rgba(255, 255, 255, 0.78);
}

.page-areas-tile--yellow .page-areas-tile__en {
  color: #c8202e;
}

.page-areas-tile__desc {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.85;
  color: #4a4a4a;
}

.page-areas-tile--red .page-areas-tile__desc {
  color: rgba(255, 255, 255, 0.88);
}

.page-areas-tile__foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-areas-tile__count {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #4a4a4a;
}

.page-areas-tile--red .page-areas-tile__count {
  color: rgba(255, 255, 255, 0.85);
}

.page-areas-tile__view {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e63946;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.page-areas-tile--red .page-areas-tile__view {
  color: #fff;
}

.page-areas-tile--yellow .page-areas-tile__view {
  color: #c8202e;
}

.page-areas-tile:hover .page-areas-tile__view {
  transform: translateX(4px);
}

@media screen and (max-width: 768px) {
  .page-areas-tile {
    padding: 28px 24px 22px;
    min-height: 220px;
  }
  .page-areas-tile__jp {
    font-size: 26px;
  }
  .page-areas-tile__desc {
    font-size: 12px;
    line-height: 1.8;
  }
}
/*!
Theme Name: 天満ワークス
Author: 天満ワークス
Description: 天満ワークスのテーマ
Version: 1.0.0
Text Domain: -
*/
.author-archive {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  color: #1a1a1a;
  background: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.author-list {
  padding-block: 64px 96px;
  background: #f3eee4;
  border-top: 1.5px solid #1a1a1a;
}

.author-list__inner {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .author-list {
    padding-block: 44px 64px;
  }
}
.author-list__head {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.author-list__title-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.author-list__num {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e63946;
}

.author-list__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: #1a1a1a;
}

.author-list__en {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #4a4a4a;
}

.author-list__total {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #4a4a4a;
}

.author-list__total-label {
  margin: 0 2px;
}

.author-list__total-num {
  margin: 0 4px;
  font-weight: 500;
  color: #1a1a1a;
}

@media screen and (max-width: 768px) {
  .author-list__head {
    margin-bottom: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .author-list__title {
    font-size: 26px;
  }
}
.author-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 40px 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.author-grid__item {
  display: flex;
}

@media screen and (max-width: 992px) {
  .author-grid {
    gap: 32px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .author-grid {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr);
  }
}
.author-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.author-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}

.author-card__link:focus-visible {
  border-radius: 6px;
  outline: 2px solid #e63946;
  outline-offset: 4px;
}

.author-card__media {
  position: relative;
  overflow: hidden;
  background: #fbf8f3;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  aspect-ratio: 4/3;
}

.author-card__link:hover .author-card__media {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.author-card__thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.author-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  background-color: #f3eee4;
  background-image: repeating-linear-gradient(45deg, transparent 0 10px, rgba(0, 0, 0, 0.05) 10px 11px);
  place-items: center;
}

.author-card__placeholder--red {
  background-color: #f8dddf;
}

.author-card__placeholder--yellow {
  background-color: #fbe8a0;
}

.author-card__placeholder--ink {
  background-color: #1a1a1a;
}

.author-card__placeholder--ink .author-card__placeholder-label {
  color: #fbf8f3;
}

.author-card__placeholder-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.author-card__cat {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
}

.author-card__cat-tag {
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
}

.author-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.author-card__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: #1a1a1a;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.author-card__link:hover .author-card__title {
  color: #e63946;
}

.author-card__excerpt {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.85;
  color: #4a4a4a;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.author-card__meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #4a4a4a;
}

.author-card__date {
  font-family: "DM Mono", ui-monospace, monospace;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.author-card__area {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

.author-card__area-mark {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: #e63946;
  border-radius: 50%;
}

@media screen and (max-width: 576px) {
  .author-card__title {
    font-size: 15px;
  }
  .author-card__excerpt {
    font-size: 12px;
    line-height: 1.8;
  }
  .author-card__meta {
    font-size: 11px;
  }
}
.author-pager {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}

.author-pager__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.author-pager__item {
  display: inline-flex;
}

.author-pager__link {
  width: 44px;
  height: 44px;
  display: grid;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1), background 0.15s cubic-bezier(0, 0, 0.2, 1), color 0.15s cubic-bezier(0, 0, 0.2, 1);
  place-items: center;
}

.author-pager__link:hover {
  background: #f4c542;
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(2px, 2px);
}

.author-pager__link:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

.author-pager__link--current {
  color: #fff;
  background: #e63946;
}

.author-pager__link--current:hover {
  color: #fff;
  background: #e63946;
}

.author-pager__link--dots {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.author-pager__link--dots:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

@media screen and (max-width: 576px) {
  .author-pager {
    margin-top: 48px;
  }
  .author-pager__link {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}
.author-empty {
  padding-block: 64px;
  font-size: 15px;
  text-align: center;
  color: #4a4a4a;
}

.authors {
  display: block;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background-color: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.authors-visually-hidden {
  position: absolute;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.authors-stats {
  padding: 32px 0 36px;
  background-color: #fbf8f3;
  border-bottom: 1px dashed #b8b0a4;
}

.authors-stats__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
}

.authors-stats__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.authors-stats__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.authors-stats__label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #e63946;
}

.authors-stats__value {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

@media screen and (max-width: 768px) {
  .authors-stats {
    padding: 24px 0 28px;
  }
  .authors-stats__inner {
    padding-inline: 18px;
  }
  .authors-stats__list {
    gap: 28px;
  }
  .authors-stats__value {
    font-size: 22px;
  }
}
.authors-grid-section {
  padding: 56px 0 80px;
  background-color: #f3eee4;
  border-top: 1.5px solid #1a1a1a;
}

.authors-grid-section__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
}

@media screen and (max-width: 768px) {
  .authors-grid-section {
    padding: 40px 0 56px;
  }
  .authors-grid-section__inner {
    padding-inline: 18px;
  }
}
.authors-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 992px) {
  .authors-grid {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .authors-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
.authors-grid__item {
  display: block;
}

.authors-card {
  position: relative;
  padding: 32px 28px 26px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 5px 5px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.authors-card:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(5px, 5px);
}

.authors-card:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 4px;
}

.authors-card--default {
  color: #1a1a1a;
  background: #fff;
}

.authors-card--red {
  color: #fff;
  background: #e63946;
}

.authors-card--yellow {
  color: #1a1a1a;
  background: #f4c542;
}

.authors-card__num {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #e63946;
}

.authors-card--red .authors-card__num {
  color: rgba(255, 255, 255, 0.92);
}

.authors-card--yellow .authors-card__num {
  color: #c8202e;
}

.authors-card__avatar {
  position: relative;
  margin: 18px 0 18px;
  width: 112px;
  height: 112px;
  display: grid;
  overflow: hidden;
  background: #fbe8a0;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  box-shadow: 3px 3px 0 #1a1a1a;
  place-items: center;
}

.authors-card--red .authors-card__avatar {
  background: #fff;
}

.authors-card--yellow .authors-card__avatar {
  background: #fff;
}

.authors-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.authors-card__avatar-initial {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: #1a1a1a;
}

.authors-card__name {
  margin: 4px 0 2px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.authors-card__handle {
  margin: 0 0 14px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #4a4a4a;
}

.authors-card--red .authors-card__handle {
  color: rgba(255, 255, 255, 0.85);
}

.authors-card__bio {
  margin: 0;
  max-width: 280px;
  font-size: 13px;
  line-height: 1.85;
  color: #4a4a4a;
}

.authors-card--red .authors-card__bio {
  color: rgba(255, 255, 255, 0.9);
}

.authors-card__foot {
  margin-top: auto;
  padding-top: 18px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #b8b0a4;
}

.authors-card--red .authors-card__foot {
  border-top-color: rgba(255, 255, 255, 0.4);
}

.authors-card--yellow .authors-card__foot {
  border-top-color: rgba(26, 26, 26, 0.3);
}

.authors-card__count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.authors-card__count-num {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #1a1a1a;
}

.authors-card--red .authors-card__count-num {
  color: #fff;
}

.authors-card__count-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #4a4a4a;
}

.authors-card--red .authors-card__count-label {
  color: rgba(255, 255, 255, 0.8);
}

.authors-card__view {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #e63946;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.authors-card--red .authors-card__view {
  color: #fff;
}

.authors-card--yellow .authors-card__view {
  color: #c8202e;
}

.authors-card:hover .authors-card__view {
  transform: translateX(4px);
}

@media screen and (max-width: 768px) {
  .authors-card {
    padding: 28px 22px 22px;
    min-height: 320px;
  }
  .authors-card__avatar {
    margin: 14px 0 14px;
    width: 96px;
    height: 96px;
  }
  .authors-card__avatar-initial {
    font-size: 30px;
  }
  .authors-card__name {
    font-size: 17px;
  }
  .authors-card__bio {
    font-size: 12.5px;
    line-height: 1.8;
  }
  .authors-card__count-num {
    font-size: 16px;
  }
}
.authors-empty {
  padding: 64px 0;
  font-size: 14px;
  text-align: center;
  color: #4a4a4a;
}

.popular-page {
  display: block;
  color: #1a1a1a;
  background-color: #fbf8f3;
}

.popular-page__main {
  padding: 80px 0 96px;
  background-color: #fbf8f3;
}

.popular-page__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 960px;
}

.popular-page__head {
  margin-bottom: 32px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px dashed #b8b0a4;
}

.popular-page__head-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #4a4a4a;
}

.popular-page__head-meta-label {
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  background: #e63946;
  border-radius: 999px;
}

.popular-page__head-meta-num {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
}

.popular-page__head-meta-sep {
  color: #b8b0a4;
}

.popular-page__head-meta-total {
  font-size: 14px;
  color: #4a4a4a;
}

.popular-page__head-note {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #4a4a4a;
}

.popular-page__empty {
  padding: 56px 24px;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  color: #4a4a4a;
  background: #fff;
  border: 1px dashed #b8b0a4;
  border-radius: 4px;
}

.popular-page__notice {
  padding: 28px 32px;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-left-width: 6px;
  border-left-color: #e63946;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.popular-page__notice-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.popular-page__notice-body {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: #4a4a4a;
}

.popular-page__notice-body strong {
  font-weight: 700;
  color: #1a1a1a;
}

.popular-page__pager {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.popular-page__pager-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.popular-page__pager-item {
  display: flex;
}

.popular-page__pager-link {
  padding: 0 12px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1), background-color 0.15s cubic-bezier(0, 0, 0.2, 1), color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

a.popular-page__pager-link:hover {
  background: #f4c542;
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.popular-page__pager-link--current {
  color: #fff;
  background: #e63946;
  border-color: #e63946;
  box-shadow: 3px 3px 0 #1a1a1a;
  cursor: default;
}

.popular-page__pager-link--dots {
  color: #4a4a4a;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: default;
}

.popular-page__pager-link--prev,
.popular-page__pager-link--next {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .popular-page__main {
    padding: 56px 0;
  }
  .popular-page__inner {
    padding-inline: 18px;
  }
  .popular-page__head {
    margin-bottom: 24px;
    padding-bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .popular-page__head-meta-num {
    font-size: 16px;
  }
  .popular-page__notice {
    padding: 22px;
  }
  .popular-page__pager {
    margin-top: 40px;
  }
  .popular-page__pager-link {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
body.page-template-page-contact,
body.page-contact {
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.page-contact {
  display: block;
  color: #1a1a1a;
  background-color: #fbf8f3;
}

.page-contact-form-section {
  position: relative;
  padding-block: 80px;
  background-color: #fbf8f3;
}

.page-contact-form-section__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 760px;
}

@media screen and (max-width: 768px) {
  .page-contact-form-section {
    padding-block: 56px;
  }
  .page-contact-form-section__inner {
    padding-inline: 18px;
  }
}
.page-contact-intro {
  margin-bottom: 40px;
}

.page-contact-intro__num {
  margin: 0 0 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e63946;
}

.page-contact-intro__title {
  margin: 0 0 18px;
  padding-left: 12px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  border-left: 4px solid #1a1a1a;
}

.page-contact-intro__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #4a4a4a;
}

@media screen and (max-width: 768px) {
  .page-contact-intro {
    margin-bottom: 32px;
  }
  .page-contact-intro__title {
    font-size: 20px;
    line-height: 1.45;
  }
  .page-contact-intro__text {
    font-size: 13px;
    line-height: 1.95;
  }
}
.page-contact-form-card {
  position: relative;
  padding: 48px 44px;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 5px 5px 0 #1a1a1a;
}

@media screen and (max-width: 768px) {
  .page-contact-form-card {
    padding: 32px 22px;
    box-shadow: 3px 3px 0 #1a1a1a;
  }
}
.contactFormInner,
.page-contact-form-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
}

.page-contact-form-card .wpcf7-form .hidden-fields-container {
  margin: 0;
  padding: 0;
  border: 0;
}

.contactFormItem {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contactFormItem--fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contactFormItemTitle {
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.contactFormItemTitleText {
  display: inline-block;
}

.contactFormItemRequired {
  padding: 2px 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #e63946;
  border-radius: 2px;
}

.contactFormItemOptional {
  padding: 2px 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #4a4a4a;
  background-color: #e5e0d8;
  border-radius: 2px;
}

.contactFormItemContent {
  position: relative;
  width: 100%;
  min-width: 0;
}

.contactFormItemContent .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}

.contactFormInput {
  padding: 14px 16px;
  width: 100%;
  max-width: 100%;
  display: block;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0, 0, 0.2, 1), background-color 0.3s cubic-bezier(0, 0, 0.2, 1);
  appearance: none;
}

.contactFormInput::placeholder {
  color: #b8b0a4;
}

.contactFormInput:hover {
  background-color: #fbf8f3;
}

.contactFormInput:focus,
.contactFormInput:focus-visible {
  background-color: #fff;
  border-color: #e63946;
  box-shadow: 3px 3px 0 #e63946;
}

textarea.contactFormInput {
  min-height: 200px;
  resize: vertical;
}

@media screen and (max-width: 768px) {
  .contactFormInput {
    padding: 12px 14px;
    font-size: 14px;
  }
}
.contactFormItemContent .wpcf7-radio,
.contactFormItemContent .wpcf7-checkbox,
.contactFormItemContent .wpcf7-acceptance {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contactFormItemContent .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
}

.contactFormItemContent .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
}

.contactFormItemContent .wpcf7-list-item input[type=radio],
.contactFormItemContent .wpcf7-list-item input[type=checkbox] {
  flex-shrink: 0;
  margin: 0;
  accent-color: #e63946;
  cursor: pointer;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.contactFormItemContent .wpcf7-list-item-label {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 14px;
  color: #1a1a1a;
}

.contactFormItemContent .wpcf7-list-item input:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 2px;
}

select.contactFormInput {
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, #1a1a1a 50%), linear-gradient(135deg, #1a1a1a 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.submitWrapper {
  margin-top: 12px;
  padding-top: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-top: 1px dashed #b8b0a4;
}

.submitWrapper .contactFormItemText,
.submitWrapper .material-symbols-rounded {
  display: none;
}

.contactFormItemButton {
  display: inline-flex;
  flex-grow: 0;
}

.contactFormBtn {
  padding: 16px 56px 16px 40px;
  min-width: 280px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #1a1a1a;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"/><path d="m12 5 7 7-7 7"/></svg>');
  background-position: right 22px center;
  background-repeat: no-repeat;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: background-color 0.3s cubic-bezier(0, 0, 0.2, 1), color 0.3s cubic-bezier(0, 0, 0.2, 1), transform 0.3s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
  appearance: none;
}

.contactFormBtn:hover {
  color: #fff;
  background-color: #e63946;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.contactFormBtn:active {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.contactFormBtn:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 4px;
}

@media screen and (max-width: 768px) {
  .submitWrapper {
    padding-top: 24px;
  }
  .contactFormItemButton {
    flex-grow: 1;
    width: 100%;
  }
  .contactFormBtn {
    padding: 14px 48px 14px 24px;
    width: 100%;
    min-width: 0;
    font-size: 15px;
    background-position: right 18px center;
  }
}
.page-contact-form-note {
  margin: 24px 0 0;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
  color: #4a4a4a;
}

.page-contact-form-note__link {
  text-decoration: underline;
  color: #1a1a1a;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: text-decoration-thickness 0.3s cubic-bezier(0, 0, 0.2, 1), color 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.page-contact-form-note__link:hover {
  color: #e63946;
  text-decoration-thickness: 2px;
}

.page-contact-form-note__link:focus-visible {
  border-radius: 2px;
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

.page-contact-form-card .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #c8202e;
}

.page-contact-form-card .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  background-color: #fbf8f3;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
}

body.page-template-page-policy,
body.page-policy {
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background-color: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.policy {
  display: block;
  color: #1a1a1a;
  background-color: #fbf8f3;
}

.policy-visually-hidden {
  position: absolute;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.policy-body {
  padding: 24px 0 80px;
  background-color: #fbf8f3;
}
@media screen and (max-width: 768px) {
  .policy-body {
    padding-bottom: 56px;
  }
}

.policy-body__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .policy-body__inner {
    padding-inline: 18px;
  }
}

.policy-body__intro {
  margin: 0 0 40px;
  font-size: 14px;
  line-height: 2;
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .policy-body__intro {
    margin-bottom: 32px;
    font-size: 13px;
    line-height: 1.95;
  }
}

.policy-article {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .policy-article {
    margin-bottom: 32px;
  }
}

.policy-article__title {
  margin: 0 0 14px;
  padding-left: 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  border-left: 4px solid #1a1a1a;
}
@media screen and (max-width: 768px) {
  .policy-article__title {
    font-size: 16px;
    line-height: 1.45;
  }
}

.policy-article__num {
  flex-shrink: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .policy-article__num {
    font-size: 13px;
  }
}

.policy-article__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 2;
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .policy-article__text {
    font-size: 13px;
    line-height: 1.95;
  }
}

.policy-article__list {
  margin: 12px 0 16px 24px;
  padding: 0;
  font-size: 14px;
  line-height: 2;
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .policy-article__list {
    margin-left: 20px;
    font-size: 13px;
    line-height: 1.95;
  }
}

.policy-article__item {
  margin-bottom: 6px;
}

.policy-article__link {
  text-decoration: underline;
  color: #1a1a1a;
  transition: text-decoration-thickness 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.policy-article__link:hover {
  text-decoration-thickness: 2px;
  opacity: 0.7;
}

.policy-article__link:focus-visible {
  border-radius: 2px;
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}

.policy-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px dashed #b8b0a4;
}
@media screen and (max-width: 768px) {
  .policy-footer {
    margin-top: 36px;
  }
}

.policy-footer__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  line-height: 1.8;
  color: #4a4a4a;
}

.policy-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.policy-footer__term {
  min-width: 80px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  flex-shrink: 0;
}

.policy-footer__desc {
  margin: 0;
  font-size: 12px;
  color: #4a4a4a;
}

body.search,
body.search-results,
body.search-no-results {
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background-color: #fbf8f3;
  -webkit-font-smoothing: antialiased;
}

.search-page {
  display: block;
  color: #1a1a1a;
  background-color: #fbf8f3;
}

.search-page__body {
  padding: 56px 0 80px;
  background-color: #f3eee4;
  border-top: 1.5px solid #1a1a1a;
}
@media screen and (max-width: 768px) {
  .search-page__body {
    padding: 40px 0 56px;
  }
}

.search-page__inner {
  margin-inline: auto;
  padding-inline: 32px;
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .search-page__inner {
    padding-inline: 18px;
    gap: 24px;
  }
}

.search-page__form-card {
  padding: 28px;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 5px 5px 0 #1a1a1a;
}
@media screen and (max-width: 768px) {
  .search-page__form-card {
    padding: 18px;
    box-shadow: 3px 3px 0 #1a1a1a;
  }
}

.search-page__total {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: "DM Mono", ui-monospace, monospace;
  color: #4a4a4a;
}

.search-page__total-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.search-page__total-num {
  font-size: 22px;
  font-weight: 900;
  color: #e63946;
}

.search-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 992px) {
  .search-grid {
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .search-grid {
    gap: 18px;
    grid-template-columns: 1fr;
  }
}

.search-card {
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.search-card:hover {
  box-shadow: 0 0 0 #1a1a1a;
  transform: translate(3px, 3px);
}

.search-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #1a1a1a;
}

.search-card__media {
  position: relative;
  overflow: hidden;
  background-color: #f3eee4;
  border-bottom: 1.5px solid #1a1a1a;
  aspect-ratio: 16/10;
}

.search-card__thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.search-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  background-color: #fbf8f3;
  place-items: center;
}

.search-card__placeholder-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #4a4a4a;
}

.search-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
}

.search-card__cat-tag {
  padding: 4px 10px;
  display: inline-flex;
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #1a1a1a;
  border-radius: 999px;
}

.search-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .search-card__body {
    padding: 14px 16px 18px;
  }
}

.search-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .search-card__title {
    font-size: 16px;
  }
}

.search-card__excerpt {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.7;
  color: #4a4a4a;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.search-card__meta {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  color: #4a4a4a;
  border-top: 1px dashed #e5e0d8;
}

.search-card__date {
  letter-spacing: 0.08em;
}

.search-card__area {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.search-card__area-mark {
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: #e63946;
  border-radius: 50%;
}

.search-page__empty {
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #1a1a1a;
}
@media screen and (max-width: 768px) {
  .search-page__empty {
    padding: 36px 18px;
  }
}

.search-page__empty-num {
  margin: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 84px;
  font-weight: 900;
  line-height: 1;
  color: #e63946;
}
@media screen and (max-width: 768px) {
  .search-page__empty-num {
    font-size: 64px;
  }
}

.search-page__empty-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .search-page__empty-title {
    font-size: 16px;
  }
}

.search-page__empty-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: #4a4a4a;
}

.search-page__empty-links {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.search-page__empty-link {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #1a1a1a;
  border-bottom: 1.5px solid #1a1a1a;
  transition: color 0.15s cubic-bezier(0, 0, 0.2, 1);
}

.search-page__empty-link:hover {
  color: #e63946;
  border-bottom-color: #e63946;
}

.search-pager {
  display: flex;
  justify-content: center;
}

.search-pager__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-pager__link {
  padding: 0 12px;
  min-width: 40px;
  height: 40px;
  display: inline-grid;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #1a1a1a;
  background-color: #fff;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0, 0, 0.2, 1);
  place-items: center;
}

.search-pager__link:hover {
  box-shadow: 3px 3px 0 #1a1a1a;
  transform: translate(-1px, -1px);
}

.search-pager__link--current {
  color: #fff;
  background-color: #1a1a1a;
}

.search-pager__link--dots {
  background-color: transparent;
  border-color: transparent;
}

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