@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;600;700&display=swap');

:root {
    --ink: #171512;
    --ink-soft: #2a2722;
    --sumi: #37332d;
    --paper: #f2eee5;
    --paper-deep: #e8e0d2;
    --white: #fffdf8;
    --red: #a42d25;
    --red-dark: #752019;
    --indigo: #27384a;
    --gold: #a88b52;
    --line: rgba(23, 21, 18, .14);
    --muted: #706a61;
    --radius: 2px;
    --serif: "Noto Serif", "Noto Serif JP", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(rgba(63, 55, 44, .035) .75px, transparent .75px),
        var(--paper);
    background-size: 8px 8px;
    font-family: inherit;
    line-height: 1.8;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    opacity: .12;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.announcement { color: var(--paper); background: var(--ink); font-size: 11px; letter-spacing: .02em; }
.announcement__inner {
    min-height: 34px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.announcement__message { color: rgba(255,255,255,.58); }
.announcement a { color: #d9c295; border-bottom: 1px solid rgba(217,194,149,.5); }

.site-header { position: relative; z-index: 100; background: rgba(242,238,229,.96); }
.header-main {
    min-height: 94px;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 440px) 1fr;
    align-items: center;
    gap: 42px;
}
.brand { justify-self: start; display: inline-flex; align-items: center; gap: 12px; }
.brand__seal {
    width: 47px; height: 47px;
    display: grid; place-items: center;
    color: var(--paper); background: var(--red);
    font: 600 25px/1 "Noto Serif JP", serif;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px var(--red), inset 0 0 0 3px rgba(255,255,255,.5);
}
.brand__logo {
    width: 52px;
    height: 52px;
    display: block;
    flex: 0 0 52px;
    padding: 4px;
    object-fit: contain;
    border: 1px solid rgba(164,45,37,.18);
    border-radius: 50%;
    background: #fffdf8;
}
.brand__copy { display: flex; flex-direction: column; line-height: 1.25; }
.brand__copy strong { font: 700 21px/1.4 var(--serif); letter-spacing: -.03em; }
.brand__copy small { color: var(--muted); font: 600 8px/1.6 var(--serif); letter-spacing: .18em; }

.site-search {
    position: relative; height: 43px;
    display: flex; align-items: center;
    border-bottom: 1px solid var(--ink);
}
.site-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 12px; }
.site-search input::placeholder { color: #898277; }
.site-search button { width: 38px; height: 38px; border: 0; color: var(--ink); background: transparent; cursor: pointer; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 26px; }
.icon-action { position: relative; display: grid; grid-template-columns: 22px auto; align-items: center; gap: 2px 8px; font-size: 11px; }
.icon-action i { grid-row: span 2; font-size: 17px; }
.icon-action b { color: var(--muted); font-size: 9px; font-weight: 500; }

.nav-shell { border-block: 1px solid var(--line); }
.primary-nav { min-height: 49px; display: flex; align-items: center; justify-content: space-between; }
.nav-menu { display: flex; align-items: center; gap: 33px; margin: 0; padding: 0; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    min-height: 49px; display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700;
}
.nav-menu > li > a::after {
    content: ""; position: absolute; bottom: -1px; right: 0;
    width: 0; height: 2px; background: var(--red); transition: width .25s ease;
}
.nav-menu > li:hover > a::after, .nav-menu > li:focus-within > a::after { width: 100%; }
.nav-menu ul {
    position: absolute; top: 100%; right: 0;
    width: 250px; margin: 0; padding: 12px;
    background: var(--white); border: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(23,21,18,.14);
    list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: .2s ease;
}
.nav-menu li:hover > ul, .nav-menu li:focus-within > ul { opacity: 1; visibility: visible; transform: none; }
.nav-menu ul a { display: flex; padding: 9px 10px; font-size: 12px; border-bottom: 1px solid rgba(23,21,18,.07); }
.nav-menu ul li:last-child a { border-bottom: 0; }
.nav-menu ul a:hover { color: var(--red); padding-right: 15px; }
.nav-note { color: var(--muted); font-size: 9px; letter-spacing: .06em; }
.menu-toggle { display: none; }

.japan-hero { position: relative; min-height: 660px; overflow: hidden; color: var(--white); background: var(--ink); }
.japan-hero__image {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(90deg, rgba(18,15,12,.22) 0%, rgba(18,15,12,.1) 40%, rgba(18,15,12,.85) 74%, rgba(18,15,12,.98) 100%),
        url("../image_asset/japan/hero-ceramics.png");
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}
.japan-hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.3), transparent 38%);
    pointer-events: none;
}
.japan-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 660px;
    display: grid;
    grid-template-columns: minmax(0, 52%) minmax(420px, 48%);
    align-items: center;
    direction: ltr;
}
.japan-hero__copy {
    grid-column: 2;
    width: min(520px, calc(100% - 40px));
    margin: 0 auto;
    direction: rtl;
    text-align: right;
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--red); font: 600 10px/1.7 var(--serif); letter-spacing: .09em;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: #d3b87e; }
.japan-hero h1 {
    margin: 20px 0 20px; font: 500 clamp(42px, 5.2vw, 74px)/1.38 var(--serif);
    letter-spacing: -.055em;
}
.japan-hero h1 em { color: #d9c295; font-style: normal; font-size: .82em; }
.japan-hero__copy > p { width: 88%; margin: 0 0 34px; color: rgba(255,255,255,.69); font-size: 14px; line-height: 2.1; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
    min-height: 48px; display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 28px; border: 1px solid currentColor;
    font-size: 12px; font-weight: 800; transition: .25s ease;
}
.button--paper { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button--paper:hover { color: var(--paper); background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-block: 5px; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(-4px); }
.text-link--light { color: rgba(255,255,255,.86); border-color: rgba(255,255,255,.3); }
.japan-hero__stamp {
    position: absolute; left: 0; bottom: 66px;
    width: 106px; height: 106px; display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
    transform: rotate(-7deg);
}
.japan-hero__stamp span { font: 600 30px/1 "Noto Serif JP", serif; }
.japan-hero__stamp small { position: absolute; bottom: 17px; color: rgba(255,255,255,.55); font-size: 8px; }
.japan-hero__counter {
    position: absolute; z-index: 3; right: 32px; bottom: 28px;
    display: flex; align-items: center; gap: 12px; direction: ltr;
}
.japan-hero__counter b { font: 500 12px var(--serif); }
.japan-hero__counter span { width: 68px; height: 1px; background: rgba(255,255,255,.5); }
.japan-hero__counter small { color: rgba(255,255,255,.55); font: 500 8px var(--serif); letter-spacing: .18em; }

.trust-line { border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.trust-line__grid { min-height: 102px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-line__grid > div { display: flex; align-items: center; justify-content: center; gap: 14px; border-left: 1px solid var(--line); }
.trust-line__grid > div:first-child { border-right: 1px solid var(--line); }
.trust-line__icon { color: var(--red); font: 500 25px "Noto Serif JP", serif; }
.trust-line p { display: flex; flex-direction: column; margin: 0; line-height: 1.55; }
.trust-line strong { font-size: 12px; }
.trust-line small { color: var(--muted); font-size: 9px; }

.section { padding: 105px 0; }
.section--products { background: var(--paper); }
.section--new { background: var(--white); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 45px; }
.section-title { margin: 12px 0 0; font: 600 clamp(29px, 3vw, 43px)/1.6 var(--serif); letter-spacing: -.04em; }
.section-head__aside { width: 350px; display: flex; align-items: flex-end; gap: 25px; }
.section-head__aside p { flex: 1; margin: 0; color: var(--muted); font-size: 11px; line-height: 2; }
.section-head--compact { align-items: center; }
.slider-controls { display: flex; direction: ltr; }
.ctrl {
    width: 39px; height: 39px; border: 1px solid var(--line); color: var(--ink); background: transparent;
    cursor: pointer; transition: .2s ease;
}
.ctrl + .ctrl { border-left: 0; }
.ctrl:hover { color: var(--paper); background: var(--ink); }
.product-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 1fr);
    grid-template-rows: 1fr;
    gap: 20px;
    overflow-x: auto; padding: 18px 2px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.product-row::-webkit-scrollbar { display: none; }
.product-card {
    min-width: 0; position: relative; overflow: visible; background: transparent;
    border: 0; border-radius: 0; box-shadow: none; scroll-snap-align: start;
}
.product-media {
    position: relative; display: block; aspect-ratio: .82; overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255,255,255,.3), transparent),
        #ded7ca;
}
.product-media::after {
    content: ""; position: absolute; inset: 0; border: 1px solid rgba(23,21,18,.08);
    pointer-events: none;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-media__placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(23,21,18,.16); font: 500 90px "Noto Serif JP", serif; }
.product-body { padding: 17px 3px 0; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 9px; letter-spacing: .03em; }
.product-code { font-family: var(--serif); letter-spacing: .1em; }
.product-title { margin: 8px 0 16px; font: 700 14px/1.75 var(--serif); }
.product-title a:hover { color: var(--red); }
.product-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.price { display: flex; flex-direction: column; line-height: 1.6; }
.price del { color: #9a9389; font-size: 9px; }
.price strong { font-size: 12px; font-weight: 800; }
.add-cart-form { margin: 0; }
.add-cart {
    width: 37px; height: 37px; display: grid; place-items: center;
    border: 1px solid var(--ink); border-radius: 50%;
    color: var(--ink); background: transparent; cursor: pointer; transition: .2s ease;
}
.add-cart:hover { color: var(--white); background: var(--red); border-color: var(--red); transform: rotate(90deg); }
.product-new-badge, .product-discount-badge {
    position: absolute; top: 12px; z-index: 5;
    padding: 5px 10px; color: var(--white); background: var(--ink);
    border: 0; border-radius: 0; font-size: 9px; font-weight: 700; transform: none;
}
.product-new-badge { left: 12px; }
.product-discount-badge { right: 12px; background: var(--red); }
.product-featured-badge {
    position: absolute; top: 12px; right: 12px; z-index: 5;
    padding: 5px 10px; color: var(--ink); background: #d9c295; border: 0; border-radius: 0; font-size: 9px;
}
.collection-link { width: max-content; display: flex; gap: 14px; margin: 28px auto 0; padding: 10px 18px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 800; }

.category-showcase { padding: 110px 0 120px; color: var(--paper); background: var(--ink); }
.category-showcase__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.category-showcase__head h2 { margin: 12px 0 0; font: 500 clamp(32px, 4vw, 52px)/1.55 var(--serif); }
.category-tiles { display: grid; grid-template-columns: 1.15fr .85fr .85fr 1.15fr; min-height: 390px; border-block: 1px solid rgba(255,255,255,.15); }
.category-tile {
    position: relative; min-height: 390px; overflow: hidden; display: flex; align-items: flex-end;
    padding: 30px; border-left: 1px solid rgba(255,255,255,.15);
    transition: flex .4s ease, background .3s ease;
}
.category-tile:first-child { border-right: 1px solid rgba(255,255,255,.15); }
.category-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .23; filter: grayscale(1); transition: .4s ease; }
.category-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.82), transparent 70%); }
.category-tile:hover { background: #211e1a; }
.category-tile:hover img { opacity: .38; filter: grayscale(.35); transform: scale(1.03); }
.category-tile__jp { position: absolute; top: 14px; left: 20px; color: rgba(255,255,255,.09); font: 500 110px "Noto Serif JP", serif; }
.category-tile > div { position: relative; z-index: 2; }
.category-tile small { color: #d3b87e; font: 500 9px var(--serif); }
.category-tile h3 { margin: 8px 0; font: 600 19px var(--serif); }
.category-tile p { margin: 0; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.9; }
.category-tile__arrow { display: block; margin-top: 15px; transition: transform .2s ease; }
.category-tile:hover .category-tile__arrow { transform: translateX(-6px); }

.story-section { padding: 130px 0; background: var(--paper-deep); }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; position: relative; }
.story-visual {
    position: relative; min-height: 540px; display: grid; place-items: center;
    background:
        linear-gradient(135deg, rgba(255,255,255,.5), transparent),
        repeating-linear-gradient(90deg, transparent 0 92px, rgba(23,21,18,.07) 93px 94px);
    border: 1px solid var(--line);
}
.story-visual__sun { width: 270px; height: 270px; border-radius: 50%; background: var(--red); opacity: .9; }
.story-visual__kanji { position: absolute; color: var(--ink); font: 600 93px/1.13 "Noto Serif JP", serif; text-align: center; }
.story-visual__caption { position: absolute; bottom: 25px; font: 600 9px var(--serif); letter-spacing: .25em; }
.story-copy h2 { margin: 14px 0 27px; font: 600 clamp(30px, 3.5vw, 49px)/1.65 var(--serif); letter-spacing: -.045em; }
.story-copy p { color: var(--muted); font-size: 12px; line-height: 2.25; }
.story-copy__lead { color: var(--ink) !important; font-size: 14px !important; }
.story-copy .text-link { margin-top: 18px; }
.story-grid blockquote {
    position: absolute; right: 36%; bottom: -62px; width: 390px;
    margin: 0; padding: 25px 32px; color: var(--paper); background: var(--indigo);
}
.story-grid blockquote > span { position: absolute; top: -10px; right: 15px; color: #d3b87e; font: 50px var(--serif); }
.story-grid blockquote p { margin: 0; font: 500 15px/2 var(--serif); }
.story-grid blockquote small { color: rgba(255,255,255,.45); font: 500 8px var(--serif); letter-spacing: .15em; }

.journal-section { padding: 110px 0; background: var(--paper); border-top: 1px solid var(--line); }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.journal-card__image { display: block; aspect-ratio: 1.5; overflow: hidden; margin-bottom: 18px; background: #ded7ca; }
.journal-card__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); transition: .4s ease; }
.journal-card:hover img { transform: scale(1.025); filter: saturate(1); }
.journal-card small { color: var(--red); font-size: 9px; }
.journal-card h3 { margin: 8px 0; font: 700 17px/1.8 var(--serif); }
.journal-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 2; }

.newsletter-strip { padding: 75px 0; color: var(--paper); background: var(--red-dark); }
.newsletter-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.newsletter-strip h2 { margin: 9px 0 0; font: 500 29px var(--serif); }
.newsletter-strip form { width: min(490px, 48%); display: flex; border-bottom: 1px solid rgba(255,255,255,.6); }
.newsletter-strip input { flex: 1; border: 0; outline: 0; padding: 13px 0; color: var(--white); background: transparent; font-size: 12px; }
.newsletter-strip input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-strip button { border: 0; color: var(--white); background: transparent; cursor: pointer; font-size: 11px; }

.site-footer { padding-top: 0; color: rgba(255,255,255,.72); background: #11100e; }
.footer-story { min-height: 190px; display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-story__mark { color: #d3b87e; font: 500 65px "Noto Serif JP", serif; }
.footer-story__logo { width: 72px; height: 72px; padding: 6px; object-fit: contain; border-radius: 50%; background: #f2eee5; }
.footer-story h2 { margin: 8px 0 0; color: var(--paper); font: 500 27px var(--serif); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 65px; padding-block: 75px; }
.brand--light .brand__copy strong { color: var(--paper); }
.brand--light .brand__copy small { color: rgba(255,255,255,.45); }
.footer-about p { max-width: 390px; margin: 24px 0; font-size: 11px; line-height: 2; }
.footer-contact { display: flex; flex-direction: column; font: 500 10px/2 var(--serif); direction: ltr; align-items: flex-end; }
.footer-grid h3 { margin: 0 0 20px; color: var(--paper); font: 600 13px var(--serif); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 10px; transition: .2s ease; }
.footer-links a:hover { color: #d3b87e; transform: translateX(-3px); }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); font-size: 9px; }
.footer-jp { font-family: "Noto Serif JP", serif; letter-spacing: .1em; }

.live-search-box {
    position: absolute; top: calc(100% + 10px); right: 0; left: 0;
    display: none; padding: 10px; background: var(--white); border: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(23,21,18,.16);
}
.live-search-box.show { display: block; }
.toast {
    position: fixed; z-index: 999; right: 50%; bottom: 24px; transform: translate(50%, 15px);
    padding: 11px 20px; color: var(--white); background: var(--ink);
    opacity: 0; pointer-events: none; transition: .2s ease; font-size: 11px;
}
.toast.show { opacity: 1; transform: translate(50%, 0); }
.empty-state { color: var(--muted); font-size: 12px; }

/* Theme the legacy storefront pages without changing their business logic. */
.category-page, .product-page, .cart-page, .checkout-page,
.products-page, main:not(.home-page) { color: var(--ink); }
.breadcrumb, .breadcrumbs { border-radius: 0 !important; }
.pagination .active > *, .pagination .page-item.active .page-link { color: var(--white) !important; background: var(--red) !important; border-color: var(--red) !important; }

@media (max-width: 1050px) {
    .header-main { grid-template-columns: auto 1fr auto; gap: 25px; }
    .brand__copy { display: none; }
    .nav-menu { gap: 20px; }
    .nav-note { display: none; }
    .japan-hero__inner { grid-template-columns: minmax(0, 43%) minmax(420px, 57%); }
    .japan-hero__copy { width: min(500px, calc(100% - 34px)); }
    .category-tiles { grid-template-columns: repeat(2, 1fr); }
    .category-tile { min-height: 320px; }
    .story-grid { gap: 55px; }
    .footer-grid { gap: 35px; }
}

@media (max-width: 900px) {
    .container { width: min(100% - 32px, 720px); }
    .announcement__message { display: none; }
    .header-main { min-height: 76px; grid-template-columns: auto 1fr auto; }
    .site-search { order: 4; grid-column: 1 / -1; width: 100%; margin-bottom: 15px; }
    .header-actions .icon-action > span, .header-actions .icon-action > b { display: none; }
    .header-actions { gap: 18px; }
    .primary-nav { position: relative; }
    .menu-toggle {
        min-height: 49px; display: flex; align-items: center; gap: 10px;
        border: 0; color: var(--ink); background: transparent; cursor: pointer; font-size: 11px;
    }
    .menu-toggle__lines, .menu-toggle__lines::before, .menu-toggle__lines::after {
        width: 20px; height: 1px; display: block; background: currentColor;
    }
    .menu-toggle__lines { position: relative; }
    .menu-toggle__lines::before, .menu-toggle__lines::after { content: ""; position: absolute; right: 0; }
    .menu-toggle__lines::before { top: -6px; }
    .menu-toggle__lines::after { top: 6px; }
    .nav-menu {
        position: absolute; top: 100%; right: 0; left: 0;
        display: none; max-height: 70vh; overflow: auto; padding: 14px;
        background: var(--paper); border: 1px solid var(--line); box-shadow: 0 20px 40px rgba(0,0,0,.13);
    }
    .nav-menu.open { display: block; }
    .nav-menu > li > a { justify-content: space-between; min-height: 44px; border-bottom: 1px solid var(--line); }
    .nav-menu ul {
        position: static; display: none; width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        background: var(--paper-deep);
    }
    .nav-menu li.is-open > ul { display: block; }
    .japan-hero, .japan-hero__inner { min-height: 590px; }
    .japan-hero__image {
        background-image:
            linear-gradient(90deg, rgba(18,15,12,.1), rgba(18,15,12,.88) 65%, rgba(18,15,12,.98)),
            url("../image_asset/japan/hero-ceramics.png");
        background-position: 42% center;
    }
    .japan-hero__inner { grid-template-columns: minmax(0, 35%) minmax(400px, 65%); }
    .japan-hero__copy { width: min(500px, calc(100% - 30px)); }
    .japan-hero__stamp { display: none; }
    .trust-line__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-line__grid > div { min-height: 82px; border-bottom: 1px solid var(--line); }
    .section { padding: 80px 0; }
    .section-head { align-items: flex-start; }
    .section-head__aside { width: 280px; }
    .product-row { grid-auto-columns: minmax(220px, 42vw); }
    .story-grid { grid-template-columns: 1fr; }
    .story-visual { min-height: 430px; }
    .story-grid blockquote { right: auto; left: 30px; bottom: auto; top: 370px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
    .container { width: calc(100% - 28px); }
    .announcement__inner { min-height: 31px; font-size: 9px; }
    .header-main { gap: 16px; }
    .brand__seal, .brand__logo { width: 40px; height: 40px; flex-basis: 40px; font-size: 21px; }
    .japan-hero, .japan-hero__inner { min-height: 610px; }
    .japan-hero__image {
        background-image:
            linear-gradient(0deg, rgba(18,15,12,.95) 0%, rgba(18,15,12,.62) 68%, rgba(18,15,12,.05) 100%),
            url("../image_asset/japan/hero-ceramics.png");
        background-position: 31% center;
    }
    .japan-hero__inner { display: flex; align-items: flex-end; padding-bottom: 80px; direction: rtl; }
    .japan-hero__copy { width: 100%; margin: 0; }
    .japan-hero h1 { font-size: 41px; margin-block: 13px; }
    .japan-hero__copy > p { width: 100%; font-size: 12px; margin-bottom: 25px; }
    .hero-actions { gap: 18px; }
    .button { padding-inline: 21px; }
    .japan-hero__counter { right: 15px; bottom: 19px; }
    .trust-line__grid { grid-template-columns: 1fr 1fr; }
    .trust-line__grid > div { padding: 12px 8px; justify-content: flex-start; }
    .trust-line__icon { font-size: 20px; }
    .trust-line strong { font-size: 10px; }
    .trust-line small { font-size: 8px; }
    .section-head, .section-head--compact { display: block; margin-bottom: 30px; }
    .section-head__aside { width: 100%; margin-top: 18px; }
    .section-title { font-size: 30px; }
    .product-row { grid-auto-columns: 74vw; gap: 14px; }
    .category-showcase { padding-block: 80px; }
    .category-tiles { grid-template-columns: 1fr; }
    .category-tile { min-height: 260px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
    .story-section { padding-block: 80px 110px; }
    .story-visual { min-height: 360px; }
    .story-visual__sun { width: 210px; height: 210px; }
    .story-visual__kanji { font-size: 73px; }
    .story-grid blockquote { position: relative; inset: auto; width: calc(100% - 28px); margin: -35px auto 0; }
    .journal-grid { grid-template-columns: 1fr; gap: 45px; }
    .newsletter-strip__inner { display: block; }
    .newsletter-strip form { width: 100%; margin-top: 25px; }
    .footer-story { grid-template-columns: 50px 1fr; padding-block: 35px; }
    .footer-story__mark { font-size: 42px; }
    .footer-story__logo { width: 48px; height: 48px; }
    .footer-story h2 { font-size: 20px; }
    .footer-story > a { display: inline-flex; grid-column: 1 / -1; justify-self: start; margin-right: 58px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; padding-block: 55px; }
    .footer-about { grid-column: 1 / -1; }
    .footer-bottom { display: block; padding-block: 18px; }
    .footer-jp { display: block; margin-top: 6px; }
}

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