/* 日本語を文節の切れ目で改行する。Chrome以外では無視されるだけなので安全 */
body { word-break: auto-phrase; }

:root {
  --ink: #553e35;
  --brown: #7d5745;
  --cream: #fffaf3;
  --paper: #f8f1e7;
  --blue: #dfeaf0;
  --blue-deep: #557b8c;
  --peach: #f6dfce;
  --green: #dde8d8;
  --lilac: #e9e0e8;
  --orange: #d7895f;
  --line: rgba(112, 78, 61, .18);
  --shadow: 0 18px 50px rgba(92, 68, 55, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--cream); font-family: "Noto Sans JP", sans-serif; line-height: 1.8; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.wrap { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -60px; padding: 10px 16px; color: white; background: var(--ink); }
.skip-link:focus { top: 16px; }

.site-header { position: relative; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(255, 250, 243, .94); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 41px; height: 41px; display: grid; place-items: center; border-radius: 50%; background: var(--peach); }
.brand-mark svg { width: 25px; color: var(--brown); }
.brand strong { display: block; font-family: "Kaisei Decol", serif; font-size: 23px; letter-spacing: .08em; }
.brand small { display: block; margin-top: -3px; color: #8d7468; font-size: 10px; letter-spacing: .05em; }
.global-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); font-size: 13px; font-weight: 700; }
.global-nav a { position: relative; padding: 32px 0; }
.global-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 24px; height: 1px; background: var(--orange); transition: right .25s; }
.global-nav a:hover::after, .global-nav a:focus-visible::after { right: 0; }
.menu-button { display: none; width: 46px; height: 46px; padding: 11px; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { display: block; height: 1px; margin: 6px 0; background: var(--ink); transition: transform .25s, opacity .25s; }

.hero { overflow: hidden; background: #fbf6ef; }
.hero-art img { width: 100%; height: auto; }
.hero-message { padding: clamp(65px, 8vw, 105px) 0; background: var(--cream); }
.hero-copy { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 9%; }
.kicker, .section-en { margin: 0 0 13px; color: var(--orange); font-family: "Kaisei Decol", serif; font-size: 12px; font-weight: 700; letter-spacing: .19em; }
.hero-message h1 { margin: 0; font-family: "Kaisei Decol", serif; font-size: clamp(42px, 5.2vw, 70px); font-weight: 500; line-height: 1.38; letter-spacing: .055em; }
.hero-lead { max-width: 510px; margin: 28px 0 0; font-size: 15px; line-height: 2.1; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 30px; padding: 14px 25px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .04em; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.button-primary { color: white; background: var(--brown); }
.button-secondary { border: 1px solid var(--brown); background: transparent; }
.button.is-disabled { cursor: not-allowed; opacity: .68; transform: none; }
.button.is-disabled:hover { box-shadow: none; transform: none; }
.text-link, .more-link { padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }

.intro-band { padding: 41px 0; border-top: 1px solid rgba(255,255,255,.8); border-bottom: 1px solid var(--line); background: var(--blue); }
.intro-inner { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 8%; }
.intro-inner p { margin: 0; }
.intro-hand { font-family: "Kaisei Decol", serif; font-size: clamp(18px, 2.5vw, 27px); line-height: 1.7; }
.intro-inner p:last-child { font-size: 13px; }
.section { padding: clamp(80px, 10vw, 130px) 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.section-heading.centered { justify-content: center; text-align: center; }
h2 { margin: 0; font-family: "Kaisei Decol", serif; font-size: clamp(31px, 4.2vw, 48px); font-weight: 500; line-height: 1.5; letter-spacing: .05em; }
.section-heading p:last-child { margin: 15px 0 0; font-size: 14px; }

.stories { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1.22fr .89fr .89fr; gap: 28px; align-items: start; }
.story-card { min-width: 0; }
.story-image { position: relative; display: block; overflow: hidden; border-radius: 100px 100px 15px 15px; background: var(--paper); }
.story-image::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.55); border-radius: inherit; pointer-events: none; }
.story-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s; }
.story-card-featured .story-image img { aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }
.story-card:hover .story-image img { transform: scale(1.025); }
.story-body { padding: 23px 6px 0; }
.category { display: inline-block; margin: 0 0 12px; padding: 4px 10px; border-radius: 999px; color: #806b60; background: var(--paper); font-size: 10px; }
.story-body h3 { margin: 0; font-family: "Kaisei Decol", serif; font-size: clamp(17px, 2vw, 22px); line-height: 1.65; }
.story-body > p:not(.category) { margin: 12px 0; color: #806e65; font-size: 12px; }
.story-body time { color: #ad9a90; font-size: 10px; letter-spacing: .08em; }

.life { position: relative; background: #f9f4ec; }
.life::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: radial-gradient(#bda697 .7px, transparent .7px); background-size: 9px 9px; pointer-events: none; }
.life .wrap { position: relative; }
.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.topic-card { min-height: 350px; display: flex; flex-direction: column; align-items: center; padding: 25px 20px 28px; border: 1px solid rgba(108,79,64,.09); border-radius: 140px 140px 16px 16px; text-align: center; transition: transform .25s, box-shadow .25s; }
.topic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.topic-card.peach { background: var(--peach); }.topic-card.blue { background: var(--blue); }.topic-card.green { background: var(--green); }.topic-card.lilac { background: var(--lilac); }
.topic-num { align-self: flex-start; font-family: serif; font-size: 12px; }
.topic-drawing { width: 125px; height: 105px; display: grid; place-items: center; margin: 35px 0 15px; }
.topic-drawing svg { width: 100%; fill: none; stroke: var(--brown); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.topic-card strong { font-family: "Kaisei Decol", serif; font-size: 22px; font-weight: 500; line-height: 1.6; }
.topic-card small { margin-top: auto; color: #7f6d63; font-size: 11px; }

.goods { background: var(--blue); }
.goods-layout { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: 8%; }
.goods-copy > p:not(.section-en):not(.ad-note) { max-width: 450px; margin: 25px 0; font-size: 14px; }
.ad-note { margin: 0 0 30px; color: #71838a; font-size: 11px; }
.goods-photo { position: relative; padding: 18px; border-radius: 160px 160px 26px 26px; background: rgba(255,255,255,.42); transform: rotate(1deg); }
.goods-photo img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; border-radius: 145px 145px 18px 18px; }
.photo-caption { position: absolute; right: 4px; bottom: -35px; font-family: "Kaisei Decol", serif; font-size: 14px; transform: rotate(-3deg); }

.about { overflow: hidden; background: var(--cream); }
.about-layout { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 10%; }
.about-photo { position: relative; text-align: center; }
.about-photo::before { content: ""; position: absolute; width: 95%; height: 90%; left: -13%; top: 12%; border-radius: 50%; background: var(--peach); }
.photo-frame { position: relative; max-width: 420px; margin: auto; padding: 14px; border: 1px solid var(--line); border-radius: 210px 210px 28px 28px; background: rgba(255,255,255,.65); }
.photo-frame img { width: 100%; aspect-ratio: .82 / 1; object-fit: cover; object-position: 50% 35%; border-radius: 195px 195px 18px 18px; }
.about-photo p { position: relative; margin: 18px 0 0; font-family: "Kaisei Decol", serif; font-size: 13px; }
.about-lead { margin: 24px 0 15px; font-family: "Kaisei Decol", serif; font-size: 20px; line-height: 1.8; }
.about-copy > p:not(.section-en):not(.about-lead) { max-width: 570px; font-size: 14px; }
.profile-list { margin: 27px 0 32px; border-top: 1px solid var(--line); }
.profile-list > div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.profile-list dt { font-weight: 700; }.profile-list dd { margin: 0; }

.faq { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 9%; }
.faq-layout > div:first-child > p:last-child { font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 52px 25px 45px; cursor: pointer; list-style: none; font-family: "Kaisei Decol", serif; font-size: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "Q"; position: absolute; left: 5px; top: 23px; color: var(--orange); font-family: serif; font-size: 18px; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 21px; font-size: 24px; font-weight: 300; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 50px 25px 45px; color: #77645b; font-size: 13px; }

.social-cta { padding: clamp(80px, 9vw, 120px) 0; text-align: center; background: var(--green); }
.social-inner { position: relative; }
.social-inner::before, .social-inner::after { content: ""; position: absolute; top: 40%; width: 90px; height: 90px; border: 1px solid rgba(87,78,57,.25); border-radius: 58% 42% 64% 36%; transform: rotate(20deg); }
.social-inner::before { left: 4%; }.social-inner::after { right: 4%; transform: rotate(-25deg); }
.social-inner > p:not(.section-en) { margin: 20px auto 28px; font-size: 13px; }
.site-footer { padding: 55px 0 30px; color: #f7eee6; background: var(--ink); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.footer-brand .brand-mark { background: rgba(255,255,255,.13); }.footer-brand .brand-mark svg { color: #f2d7c7; }
.footer-brand small { color: #d4c2b8; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 25px; font-size: 11px; }
.copyright { grid-column: 1 / -1; margin: 30px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: #bba9a0; text-align: right; }

/* プライバシーポリシー・広告掲載ページ */
.legal-back { padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; }
.legal-main { background: var(--cream); }
.legal-hero { padding: clamp(65px, 9vw, 110px) 0; text-align: center; background: var(--blue); }
.legal-hero h1 { margin: 0; font-family: "Kaisei Decol", serif; font-size: clamp(36px, 5vw, 58px); font-weight: 500; letter-spacing: .06em; }
.legal-hero > .wrap > p:last-child { margin: 18px 0 0; font-size: 13px; }
.legal-content { max-width: 860px; padding-top: clamp(60px, 8vw, 95px); padding-bottom: clamp(80px, 10vw, 130px); }
.legal-content > p:first-child { margin-top: 0; font-family: "Kaisei Decol", serif; font-size: 17px; }
.legal-content section { margin-top: 52px; }
.legal-content h2 { margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: clamp(21px, 3vw, 27px); }
.legal-content p { font-size: 14px; line-height: 2; }
.legal-content a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-date { margin-top: 65px; padding-top: 25px; border-top: 1px solid var(--line); color: #806f66; }
.legal-note { padding: 18px 20px; border-radius: 12px; background: var(--paper); color: #806f66; font-size: 12px !important; }
.disclosure-box { margin-bottom: 65px; padding: 28px 30px; border: 1px solid rgba(125,87,69,.2); border-radius: 18px; background: var(--peach); }
.disclosure-box strong { font-family: "Kaisei Decol", serif; font-size: 20px; }
.disclosure-box p { margin: 10px 0 0; }
.legal-footer nav { display: flex; flex-wrap: wrap; gap: 25px; font-size: 11px; }
.legal-footer nav a[aria-current="page"] { color: #f2d7c7; }

/* 記事詳細ページ */
.wrap-narrow { width: min(820px, calc(100% - 48px)); margin-inline: auto; }
.wrap-wide { width: min(1060px, calc(100% - 48px)); margin-inline: auto; }
.article-main { background: var(--cream); }
.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; padding-top: 25px; color: #9a857a; font-size: 10px; }
.article-header { padding-top: clamp(58px, 8vw, 100px); padding-bottom: 48px; text-align: center; }
.article-header .category { margin-bottom: 22px; }
.article-header h1 { margin: 0; font-family: "Kaisei Decol", serif; font-size: clamp(36px, 5vw, 58px); font-weight: 500; line-height: 1.55; letter-spacing: .04em; }
.article-intro { max-width: 680px; margin: 25px auto 0; color: #75645b; font-size: 14px; line-height: 2; }
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 26px; margin-top: 25px; color: #a38d82; font-size: 10px; }
.article-cover { margin-bottom: 75px; }
.article-cover.wrap-wide { width: min(720px, calc(100% - 48px)); }
.article-cover img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; border-radius: 220px 220px 24px 24px; background: var(--paper); }
.article-cover.is-landscape.wrap-wide { width: min(1060px, calc(100% - 48px)); }
.article-cover.is-landscape img { aspect-ratio: 16 / 9; border-radius: 180px 180px 24px 24px; object-position: center center; }
.article-cover figcaption, .article-inline-image figcaption { margin-top: 10px; color: #9b877c; font-size: 10px; text-align: center; }
.article-layout { display: grid; grid-template-columns: minmax(0, 740px) 250px; align-items: start; gap: 7%; padding-bottom: clamp(90px, 10vw, 140px); }
.article-body { min-width: 0; }
.article-body > p, .article-body section > p, .article-body section > ul { font-size: 15px; line-height: 2.15; }
.article-opening { margin-top: 0; font-family: "Kaisei Decol", serif; font-size: 17px !important; }
.article-disclosure { margin-bottom: 32px; padding: 16px 19px; border-radius: 10px; background: var(--paper); color: #806f66; font-size: 11px; }
.article-disclosure strong { display: block; margin-bottom: 3px; }.article-disclosure p { margin: 0; }
.article-toc { margin: 45px 0 70px; padding: 30px 36px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.article-toc > p { margin: 0 0 15px; font-family: "Kaisei Decol", serif; font-size: 19px; }
.article-toc ol { margin: 0; padding-left: 1.5em; }.article-toc li { margin: 8px 0; font-size: 13px; }.article-toc a { border-bottom: 1px solid var(--line); }
.article-body section { margin-top: 75px; scroll-margin-top: 30px; }
.article-body section h2 { margin: 0 0 30px; padding: 16px 20px 17px; border-left: 4px solid var(--orange); background: var(--paper); font-size: clamp(24px, 3vw, 31px); }
.article-body section h3 { margin: 48px 0 20px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font-family: "Kaisei Decol", serif; font-size: 21px; font-weight: 500; }
.article-note { margin: 35px 0; padding: 24px 27px; border-radius: 16px; background: var(--blue); }
.article-note strong { font-family: "Kaisei Decol", serif; font-size: 18px; }.article-note p { margin: 7px 0 0; font-size: 13px; }
.article-inline-image { margin: 38px 0; }.article-inline-image img { width: 100%; border-radius: 18px; }
.article-illustration { display: block; margin: 45px auto; padding: 16px; border: 1px solid var(--line); border-radius: 96px 96px 20px 20px; background: rgba(255,255,255,.58); box-shadow: var(--shadow); }
.article-illustration img { width: 100%; border-radius: 82px 82px 14px 14px; }
.article-illustration figcaption { margin-top: 12px; color: #9b877c; font-size: 10px; text-align: center; }
.article-body blockquote { margin: 38px 0; padding: 23px 28px; border-left: 3px solid #adc0a6; background: var(--green); font-family: "Kaisei Decol", serif; }
.article-body blockquote p { margin: 0; }
.article-product { display: grid; grid-template-columns: .8fr 1.2fr; gap: 27px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.article-product img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; border-radius: 13px; }
.product-label { display: inline-block; margin: 0 0 9px; padding: 3px 9px; border-radius: 999px; background: var(--peach); font-size: 9px; }
.article-product h3 { margin: 0 0 12px !important; padding: 0 !important; border: 0 !important; }
.article-product ul { padding-left: 1.2em; font-size: 12px !important; }.article-product .button { margin-top: 9px; }
.article-summary-list { padding: 22px 25px 22px 45px !important; border-radius: 15px; background: var(--green); }
.article-author { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 28px; margin-top: 85px; padding: 28px; border-radius: 26px; background: var(--peach); }
.article-author img { width: 130px; height: 130px; object-fit: cover; object-position: center 30%; border-radius: 50%; }
.article-author h2 { margin: 0; font-size: 25px; }.article-author p:not(.section-en) { font-size: 12px; }
.article-pagination { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 45px; background: var(--line); }
.article-pagination a { min-height: 110px; display: flex; flex-direction: column; justify-content: center; padding: 20px; background: var(--cream); }
.article-pagination a:last-child { text-align: right; }.article-pagination small { color: var(--orange); }.article-pagination span { margin-top: 7px; font-family: "Kaisei Decol", serif; font-size: 13px; }
.article-sidebar { position: sticky; top: 25px; display: grid; gap: 25px; }
.sidebar-card { padding: 23px; border-radius: 18px; background: var(--paper); }
.sidebar-card h2 { margin: 0 0 15px; font-size: 17px; }.sidebar-card > a:not(.sidebar-story) { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.sidebar-story { display: grid; grid-template-columns: 68px 1fr; align-items: center; gap: 11px; margin-top: 14px; font-size: 10px; line-height: 1.6; }
.sidebar-story img { width: 68px; height: 58px; object-fit: cover; border-radius: 8px; }

:focus-visible { outline: 3px solid #2a718c; outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }

@media (max-width: 860px) {
  .wrap { width: min(100% - 32px, 680px); }
  .header-inner { min-height: 72px; }
  .menu-button { display: block; }
  .global-nav { position: absolute; left: 0; right: 0; top: 72px; display: grid; gap: 0; padding: 16px 24px 24px; border-bottom: 1px solid var(--line); background: var(--cream); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .25s, opacity .25s; }
  .global-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .global-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .global-nav a::after { display: none; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-copy { grid-template-columns: 1fr; gap: 10px; }
  .hero-message h1 { font-size: clamp(38px, 9vw, 58px); }
  .hero-lead { max-width: 580px; }
  .intro-inner, .goods-layout, .about-layout, .faq-layout { grid-template-columns: 1fr; }
  .intro-inner { gap: 16px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .story-card-featured .story-image img { aspect-ratio: 3 / 4; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .goods-layout { gap: 55px; }
  .goods-copy { max-width: 580px; }
  .about-layout { gap: 65px; }
  .about-photo { max-width: 480px; margin: auto; }
  .faq-layout { gap: 35px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: 1fr 1fr; margin-top: 65px; }
}

@media (max-width: 560px) {
  .brand small { display: none; }
  .hero-message { padding: 48px 0 54px; }
  .hero-message h1 { font-size: 39px; }
  .hero-lead { font-size: 13px; line-height: 1.95; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .story-grid { grid-template-columns: 1fr; gap: 43px; }
  .story-card-featured { grid-column: auto; display: block; }
  .story-image, .story-card-featured .story-image { border-radius: 80px 80px 14px 14px; }
  .topic-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .topic-card { min-height: 300px; padding-inline: 11px; }
  .topic-drawing { width: 92px; height: 85px; margin-top: 25px; }
  .topic-card strong { font-size: 18px; }.topic-card small { font-size: 9px; }
  .goods-photo { padding: 10px; border-radius: 100px 100px 18px 18px; }
  .goods-photo img { border-radius: 92px 92px 12px 12px; }
  .social-inner::before, .social-inner::after { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-footer nav { gap: 15px; flex-direction: column; }
  .copyright { text-align: left; }
  .legal-content section { margin-top: 40px; }
  .disclosure-box { padding: 22px 20px; }
  .wrap-narrow, .wrap-wide { width: calc(100% - 32px); }
  .article-breadcrumb { overflow: hidden; flex-wrap: nowrap; white-space: nowrap; }
  .article-header { padding-top: 45px; }
  .article-header h1 { font-size: 32px; }
  .article-cover { margin-bottom: 55px; }
  .article-cover.wrap-wide { width: min(430px, calc(100% - 32px)); }
  .article-cover.is-landscape.wrap-wide { width: calc(100% - 32px); }
  .article-cover img { border-radius: 110px 110px 18px 18px; }
  .article-cover.is-landscape img { border-radius: 90px 90px 18px 18px; }
  .article-toc { padding: 25px 23px; }
  .article-body section { margin-top: 60px; }
  .article-body section h2 { font-size: 23px; }
  .article-product { grid-template-columns: 1fr; padding: 16px; }
  .article-product img { min-height: 210px; }
  .article-illustration { padding: 10px; border-radius: 70px 70px 16px 16px; }
  .article-illustration img { border-radius: 60px 60px 12px 12px; }
  .article-author { grid-template-columns: 90px 1fr; gap: 18px; padding: 22px 18px; }
  .article-author img { width: 90px; height: 90px; }
  .article-author p:not(.section-en) { font-size: 10px; }
  .article-pagination { grid-template-columns: 1fr; }
  .article-pagination a:last-child { text-align: left; }
  .article-sidebar { grid-template-columns: 1fr; }
}
