/* Chromatic Editorial — framework-free static export */
:root {
    --paper: #f8f5ef;
    --ink: #111;
    --coral: #ff3d67;
    --cyan: #21c6d9;
    --lime: #c6f032;
    --yellow: #ffd62e;
    --ease-out: cubic-bezier(.23, 1, .32, 1);
    --ease-in-out: cubic-bezier(.77, 0, .175, 1)
}

.product-lower * {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
    overflow-x: hidden
}

:where(.product-lower) :where(button, a, summary, label) {
    -webkit-tap-highlight-color: transparent
}

/*
:where(.product-lower) a {
    color: inherit
} */

:where(.product-lower) :where(a[href], summary, label) {
    cursor: pointer
}

.product-lower img {
    max-width: 100%
}

::selection {
    background: var(--coral);
    color: #fff
}

.section-shell {
    width: min(100% - 40px, 1240px);
    margin-inline: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgb(248 245 239/92%);
    border-bottom: 1px solid rgb(17 17 17/16%);
    backdrop-filter: blur(18px)
}

.header-inner {
    width: min(100% - 40px, 1360px);
    min-height: 78px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px
}

.brand-lockup {
    position: relative;
    display: grid;
    grid-template-columns: 42px auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 9px;
    text-decoration: none;
    line-height: 1
}

.brand-mark {
    grid-row: 1/3;
    width: 42px;
    height: 42px;
    object-fit: contain
}

.brand-word {
    font-family: "Bebas Neue", sans-serif;
    font-size: 26px;
    letter-spacing: .055em
}

.brand-sub {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .16em;
    color: #555
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 2.1vw, 34px)
}

.desktop-nav a {
    position: relative;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 3px;
    background: var(--coral);
    transition: right 180ms var(--ease-out)
}

.desktop-nav a:hover::after {
    right: 0
}

.header-buy,
.primary-cta,
.closing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--ink);
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .04em;
    transition: transform 160ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out)
}

.header-buy {
    min-height: 43px;
    padding: 0 17px;
    font-size: 12px
}

.header-buy:hover,
.primary-cta:hover,
.closing-cta:hover {
    background: var(--coral)
}

.header-buy:active,
.primary-cta:active,
.closing-cta:active,
.product-info a:active {
    transform: scale(.97)
}

.mobile-menu {
    display: none
}

.mobile-menu summary {
    list-style: none;
    width: 40px;
    height: 40px;
    padding: 9px;
    align-content: center
}

.mobile-menu summary::-webkit-details-marker {
    display: none
}

.mobile-menu summary span {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: #111;
    transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out)
}

.mobile-menu[open] summary span:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.mobile-menu[open] summary span:nth-child(2) {
    opacity: 0
}

.mobile-menu[open] summary span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

.mobile-nav {
    display: none
}

.hero-section {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
    background: linear-gradient(90deg, transparent 0 48%, rgb(255 255 255/18%) 48% 49%, transparent 49%), var(--paper)
}

.hero-copy {
    padding: clamp(42px, 6vw, 94px) clamp(28px, 6.5vw, 104px) 58px max(28px, calc((100vw - 1360px)/2 + 40px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: clamp(38px, 6vh, 74px);
    color: #6f6a63;
    font-size: 11px;
    font-weight: 600
}

.breadcrumbs a {
    text-underline-offset: 3px
}

.hero-kicker,
.eyebrow {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: .15em;
    font-size: 15px;
    line-height: 1.2
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px
}

.hero-kicker span {
    width: 40px;
    height: 5px;
    background: var(--coral);
    transform: skewX(-24deg)
}

.hero-copy h1 {
    margin: 0
}

.hero-display {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(76px, 9.4vw, 154px);
    line-height: .78;
    letter-spacing: -.025em;
    white-space: nowrap
}

.hero-title-jp {
    display: block;
    margin-top: 28px;
    font-size: clamp(20px, 2.15vw, 34px);
    line-height: 1.45;
    font-weight: 900;
    letter-spacing: .015em
}

.hero-catch {
    margin: 30px 0 12px;
    color: var(--coral);
    font-size: clamp(18px, 1.45vw, 23px);
    font-weight: 900;
    letter-spacing: .06em
}

.hero-definition {
    max-width: 610px;
    margin: 0;
    color: #46413b;
    font-size: 14px;
    line-height: 2
}

.primary-cta {
    width: fit-content;
    margin-top: 34px;
    min-height: 56px;
    padding: 0 26px;
    font-size: 13px
}

.primary-cta span,
.closing-cta span,
.product-info a span,
.earth-link-card a span {
    transition: transform 180ms var(--ease-out)
}

.primary-cta:hover span,
.closing-cta:hover span,
.product-info a:hover span,
.earth-link-card a:hover span {
    transform: translateX(4px)
}

.hero-visual {
    position: relative;
    overflow: hidden;
    min-height: 650px
}

.hero-visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: -22px;
    top: 8%;
    width: 44px;
    height: 84%;
    background: var(--coral);
    transform: skewX(-4deg);
    mix-blend-mode: multiply
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-stamp {
    position: absolute;
    z-index: 3;
    right: 30px;
    bottom: 28px;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    border-radius: 50%;
    background: var(--lime);
    color: #111;
    transform: rotate(7deg);
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    line-height: 1.05;
    letter-spacing: .08em
}

.hero-stamp .spark {
    font-size: 18px
}

.hero-vertical {
    position: absolute;
    z-index: 3;
    left: 25px;
    bottom: 28px;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    letter-spacing: .17em;
    writing-mode: vertical-rl;
    text-shadow: 0 1px 12px rgb(0 0 0/35%)
}

.section-label {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-family: "Bebas Neue", sans-serif;
    line-height: 1
}

.section-label>span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid currentColor;
    font-size: 19px
}

.section-label strong {
    font-size: 14px;
    letter-spacing: .16em
}

.about-section {
    position: relative;
    padding: 150px 0 160px;
    display: grid;
    grid-template-columns: 130px minmax(250px, .8fr) minmax(360px, 1.15fr);
    gap: 34px;
    align-items: start
}

.about-heading {
    padding-top: 4px
}

.about-heading h2,
.scene-intro h2,
.color-heading h2,
.howto-top h2,
.products-heading h2,
.faq-heading h2,
.closing-inner h2 {
    margin: 8px 0 0;
    font-size: clamp(36px, 4.6vw, 68px);
    line-height: 1.13;
    letter-spacing: -.035em;
    font-weight: 900
}

.about-copy {
    position: relative;
    z-index: 2;
    padding: 4px 0 0 54px;
    border-left: 1px solid #b8b1a7;
    color: #3f3b36
}

.about-copy p {
    margin: 0 0 24px
}

.about-copy .lead-copy {
    color: var(--ink);
    font-size: clamp(20px, 2.1vw, 28px);
    line-height: 1.75;
    font-weight: 800
}

.about-slash {
    position: absolute;
    z-index: 0;
    right: 2%;
    bottom: 40px;
    width: 160px;
    height: 380px;
    background: var(--yellow);
    transform: skewX(-18deg) rotate(16deg);
    opacity: .72
}

.scene-section {
    padding: 124px 0 150px;
    background: #111;
    color: #fff
}

.scene-intro {
    display: grid;
    grid-template-columns: 130px minmax(330px, .9fr) minmax(300px, .8fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 72px
}

.scene-intro>p {
    max-width: 430px;
    margin: 0 0 6px;
    color: #c9c7c2
}

.scene-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px 34px;
    align-items: start
}

.scene-card {
    min-width: 0
}

.scene-card-image {
    position: relative
}

.scene-card-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.02)
}

.scene-card-school {
    margin-top: 110px
}

.scene-card-festival {
    width: 84%;
    justify-self: end
}

.scene-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 142px;
    display: flex;
    align-items: flex-end;
    gap: 13px;
    padding: 34px 30px 24px;
    background: linear-gradient(transparent, rgb(0 0 0/75%))
}

.scene-overlay span {
    font-family: "Bebas Neue", sans-serif;
    color: var(--yellow);
    font-size: 26px
}

.scene-overlay h3 {
    margin: 0;
    font-size: clamp(25px, 2.5vw, 38px);
    line-height: 1.25
}

.scene-card>p {
    min-height: 142px;
    margin: 0;
    padding: 24px 28px 0 0;
    color: #c9c7c2;
    font-size: 14px
}

.hadegami-card {
    position: relative;
    min-height: 540px;
    padding: 54px;
    display: flex;
    align-items: flex-end;
    background: var(--coral);
    color: #111;
    overflow: hidden
}

.hadegami-card>div:last-child {
    position: relative;
    z-index: 2
}

.hadegami-card h3 {
    margin: 7px 0 18px;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1;
    font-weight: 900
}

.hadegami-card p {
    margin: 0 0 26px;
    max-width: 520px
}

.hadegami-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid currentColor;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none
}

.hadegami-index {
    position: absolute;
    top: 24px;
    left: 28px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px
}

.hadegami-burst {
    position: absolute;
    right: -16px;
    top: -64px;
    width: 300px;
    height: 300px;
    display: grid;
    place-items: center;
    border: 40px solid #111;
    transform: rotate(23deg);
    font-family: "Bebas Neue", sans-serif;
    font-size: 160px;
    opacity: .12
}

.color-guide {
    padding: 150px 0;
    display: grid;
    grid-template-columns: 130px minmax(290px, .7fr) minmax(500px, 1.35fr);
    gap: 34px
}

.color-list {
    border-top: 1px solid #111
}

.color-row {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(170px, .58fr) minmax(260px, 1fr);
    gap: 22px;
    align-items: start;
    padding: 31px 0;
    border-bottom: 1px solid #aaa49b
}

.color-row h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.45
}

.color-row p {
    margin: 0;
    color: #4f4b45;
    font-size: 14px
}

.color-swatch {
    width: 27px;
    height: 27px;
    margin-top: 2px;
    transform: rotate(45deg);
    background: var(--coral)
}

.color-cyan .color-swatch {
    background: var(--cyan)
}

.color-yellow .color-swatch {
    background: var(--yellow)
}

.color-silver .color-swatch {
    background: linear-gradient(135deg, #5d6974, #e4e7ea)
}

.color-row a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    text-underline-offset: 5px
}

.howto-section {
    padding: 140px 0;
    background: var(--yellow)
}

.howto-top {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: end;
    margin: 48px 0 76px 164px
}

.howto-top>p {
    max-width: 430px;
    margin: 0 0 8px
}

.steps-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    padding: 0;
    margin: 0;
    background: #111;
    border: 1px solid #111
}

.steps-list li {
    /* min-height: 340px; */
    gap: 2rem;
    padding: 30px 26px 34px;
    background: var(--yellow);
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    transition: background 200ms var(--ease-out), color 200ms var(--ease-out)
}

.steps-list li:hover {
    background: #111;
    color: #fff
}

.step-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: 62px;
    line-height: 1
}

.steps-list h3 {
    margin: 0 0 15px;
    font-size: 20px;
    line-height: 1.4
}

.steps-list p {
    margin: 0;
    font-size: 13px;
    line-height: 1.9
}

.products-section {
    padding: 150px 0
}

.products-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 48px 0 55px 164px
}

.products-heading>p {
    margin: 0 0 8px;
    color: var(--coral);
    font-size: 18px;
    font-weight: 900
}

.product-filter>input {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none
}

.product-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    border-block: 1px solid #111;
    scrollbar-width: none
}

.product-tabs::-webkit-scrollbar {
    display: none
}

.product-tabs label {
    flex: 1 0 auto;
    min-height: 60px;
    padding: 0 22px;
    border-right: 1px solid #b8b1a7;
    display: grid;
    place-items: center;
    background: transparent;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    transition: color 160ms var(--ease-out), background 160ms var(--ease-out)
}

.product-tabs label:hover {
    background: #ece7df
}

.product-filter:has(#filter-all:checked) label[for="filter-all"],
.product-filter:has(#filter-red:checked) label[for="filter-red"],
.product-filter:has(#filter-blue:checked) label[for="filter-blue"],
.product-filter:has(#filter-gold:checked) label[for="filter-gold"],
.product-filter:has(#filter-silver:checked) label[for="filter-silver"] {
    background: #111;
    color: #fff
}

.product-filter:has(#filter-red:checked) .product-card:not([data-category="red"]),
.product-filter:has(#filter-blue:checked) .product-card:not([data-category="blue"]),
.product-filter:has(#filter-gold:checked) .product-card:not([data-category="gold"]),
.product-filter:has(#filter-silver:checked) .product-card:not([data-category="silver"]) {
    display: none
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 26px;
    margin-top: 66px
}

.product-card {
    min-width: 0;
    animation: card-in 420ms var(--ease-out) both;
    animation-delay: var(--delay)
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 1/1;
    background: #fff;
    overflow: hidden
}

.product-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgb(17 17 17/12%);
    pointer-events: none
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 280ms var(--ease-out)
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.035)
}

.product-swatch {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 13px;
    height: 100%
}

.product-code {
    position: absolute;
    z-index: 2;
    right: 15px;
    top: 12px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 21px;
    letter-spacing: .08em
}

.product-info {
    padding-top: 22px
}

.product-info>p {
    margin: 0 0 1px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    letter-spacing: .1em;
    color: #716c65
}

.product-info h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.45
}

.product-price {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700
}

.product-info a {
    margin-top: 21px;
    min-height: 50px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #111;
    background: transparent;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: color 180ms var(--ease-out), background 180ms var(--ease-out), transform 160ms var(--ease-out)
}

.product-info a:hover {
    background: var(--coral);
    color: #111
}

.earth-link-card {
    margin-top: 100px;
    padding: 38px 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: #d9dee1;
    border-left: 10px solid #7d929e
}

.earth-link-card>div>span {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: .12em
}

.earth-link-card h3 {
    margin: 4px 0 0;
    font-size: 22px
}

.earth-link-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 2px solid #111;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none
}

.faq-section {
    padding: 140px 0;
    background: #1bbdcd
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(500px, 1.28fr);
    gap: 100px
}

.faq-heading .section-label {
    margin-bottom: 70px
}

.faq-heading>p:last-child {
    max-width: 330px;
    margin-top: 28px
}

.faq-list {
    border-top: 1px solid #111
}

.faq-list details {
    border-bottom: 1px solid #111
}

.faq-list summary {
    list-style: none;
    min-height: 92px;
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    align-items: center;
    font-weight: 800
}

.faq-list summary::-webkit-details-marker {
    display: none
}

.faq-list summary span,
.faq-answer>span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px
}

.faq-list summary i {
    font-style: normal;
    font-size: 24px;
    transition: transform 200ms var(--ease-out)
}

.faq-list details[open] summary i {
    transform: rotate(180deg)
}

.faq-answer {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 0 42px 28px 0
}

.faq-answer p {
    margin: 0
}

.closing-section {
    position: relative;
    padding: 0 0 140px;
    background: #111;
    color: #fff;
    overflow: hidden
}

.closing-colorbar {
    height: 20px;
    background: linear-gradient(90deg, var(--coral) 0 27%, var(--yellow) 27% 51%, var(--lime) 51% 75%, var(--cyan) 75%)
}

.closing-inner {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.closing-inner::after {
    content: "POP";
    position: absolute;
    right: -2%;
    bottom: -125px;
    color: transparent;
    -webkit-text-stroke: 1px rgb(255 255 255/22%);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(250px, 34vw, 520px);
    line-height: .8;
    pointer-events: none
}

.closing-inner h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(54px, 7.2vw, 108px)
}

.closing-cta {
    position: relative;
    z-index: 2;
    width: fit-content;
    min-height: 64px;
    margin-top: 38px;
    padding: 0 26px;
    background: var(--coral);
    color: #111
}

.closing-cta:hover {
    background: var(--yellow)
}

.site-footer {
    padding: 70px 0 26px;
    background: var(--paper)
}

.footer-main {
    display: grid;
    grid-template-columns: 1.05fr 1fr .72fr;
    gap: 60px;
    padding-bottom: 64px
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px
}

.footer-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain
}

.footer-brand strong {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 34px;
    line-height: 1;
    letter-spacing: .05em
}

.footer-brand span {
    display: block;
    margin-top: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em
}

.footer-label {
    margin: 0 0 11px;
    color: #756f67;
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    letter-spacing: .13em
}

.footer-main p {
    margin-top: 4px;
    font-size: 12px
}

.footer-main a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 800;
    font-size: 13px;
    text-underline-offset: 5px
}

.footer-socials {
    display: flex;
    gap: 18px;
    margin-top: 22px
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #111;
    text-decoration: none;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: .06em;
    transition: background 160ms var(--ease-out), color 160ms var(--ease-out)
}

.footer-socials a:hover {
    background: #111;
    color: #fff
}

.footer-bottom {
    padding-top: 21px;
    border-top: 1px solid #b8b1a7;
    display: flex;
    justify-content: space-between;
    color: #726d66;
    font-size: 10px;
    letter-spacing: .04em
}

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

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

@media(max-width:1050px) {
    .desktop-nav {
        display: none
    }

    .header-inner {
        grid-template-columns: auto 1fr auto auto
    }

    .mobile-menu {
        display: block
    }

    .mobile-menu[open] .mobile-nav {
        display: grid;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        padding: 0 20px 18px;
        background: var(--paper);
        border-bottom: 1px solid rgb(17 17 17/16%)
    }

    .mobile-nav a {
        min-height: 52px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #c4beb5;
        text-decoration: none;
        font-size: 13px;
        font-weight: 800
    }

    .hero-section {
        min-height: auto;
        grid-template-columns: 1fr
    }

    .hero-copy {
        min-height: 660px;
        padding-inline: max(28px, calc((100vw - 920px)/2))
    }

    .hero-display {
        font-size: clamp(88px, 16vw, 146px)
    }

    .hero-visual {
        min-height: 680px
    }

    .about-section,
    .color-guide {
        grid-template-columns: 100px minmax(230px, .65fr) minmax(340px, 1fr)
    }

    .about-copy {
        padding-left: 30px
    }

    .scene-intro {
        grid-template-columns: 100px minmax(290px, .9fr) minmax(260px, .8fr)
    }

    .steps-list {
        grid-template-columns: repeat(2, 1fr)
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .faq-layout {
        gap: 55px
    }
}

@media(max-width:760px) {
    body {
        line-height: 1.75
    }

    .section-shell {
        width: min(100% - 30px, 640px)
    }

    .header-inner {
        width: calc(100% - 26px);
        min-height: 66px;
        gap: 8px
    }

    .brand-mark {
        width: 34px;
        height: 34px
    }

    .brand-lockup {
        grid-template-columns: 34px auto;
        column-gap: 7px
    }

    .brand-word {
        font-size: 23px
    }

    .brand-sub {
        font-size: 7px
    }

    .header-buy {
        width: 40px;
        min-height: 40px;
        padding: 0;
        font-size: 0;
        gap: 0
    }

    .header-buy::before {
        content: "▣";
        font-size: 18px
    }

    .hero-copy {
        min-height: auto;
        padding: 44px 22px 58px
    }

    .breadcrumbs {
        margin-bottom: 48px
    }

    .hero-display {
        font-size: clamp(12px, 14vw, 104px)
    }

    .hero-title-jp {
        margin-top: 22px;
        font-size: 20px
    }

    .hero-catch {
        margin-top: 23px
    }

    .hero-definition {
        font-size: 13px
    }

    .primary-cta {
        width: 100%
    }

    .hero-visual {
        min-height: 470px
    }

    .hero-visual::before {
        left: -10px;
        width: 25px
    }

    .hero-stamp {
        right: 15px;
        bottom: 16px;
        width: 90px;
        height: 90px;
        font-size: 13px
    }

    .hero-vertical {
        left: 16px
    }

    .about-section,
    .color-guide {
        padding: 94px 0;
        grid-template-columns: 1fr;
        gap: 36px
    }

    .about-heading h2,
    .scene-intro h2,
    .color-heading h2,
    .howto-top h2,
    .products-heading h2,
    .faq-heading h2 {
        font-size: 42px
    }

    .about-copy {
        padding: 27px 0 0;
        border-top: 1px solid #b8b1a7;
        border-left: 0
    }

    .about-copy .lead-copy {
        font-size: 20px
    }

    .about-slash {
        right: -20px;
        width: 95px;
        height: 250px;
        opacity: .35
    }

    .scene-section {
        padding: 90px 0
    }

    .scene-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 45px
    }

    .scene-intro>p {
        font-size: 14px
    }

    .scene-grid {
        grid-template-columns: 1fr;
        gap: 64px
    }

    .scene-card-school {
        margin-top: 0
    }

    .scene-card-festival {
        width: 100%
    }

    .scene-card>p {
        min-height: auto;
        padding-right: 0
    }

    .scene-overlay {
        bottom: auto;
        top: 0;
        padding: 28px 20px 60px;
        background: linear-gradient(rgb(0 0 0/70%), transparent);
        align-items: flex-start
    }

    .hadegami-card {
        min-height: 500px;
        padding: 38px 28px
    }

    .color-row {
        grid-template-columns: 30px 1fr;
        gap: 18px
    }

    .color-row>p,
    .color-row>div {
        grid-column: 2
    }

    .howto-section {
        padding: 90px 0
    }

    .howto-top {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 38px 0 46px
    }

    .steps-list {
        grid-template-columns: 1fr
    }

    .steps-list li {
        min-height: 265px
    }

    .products-section {
        padding: 92px 0
    }

    .products-heading {
        margin: 38px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px
    }

    .product-tabs {
        margin-inline: -15px;
        padding-left: 15px;
        border-right: 0
    }

    .product-tabs label {
        flex: 0 0 auto
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px 14px;
        margin-top: 45px
    }

    .product-info h3 {
        font-size: 14px
    }

    .product-info>p {
        font-size: 12px
    }

    .product-info a {
        min-height: 54px;
        padding: 8px 10px;
        font-size: 10px;
        line-height: 1.5
    }

    .product-price {
        font-size: 11px
    }

    .earth-link-card {
        margin-top: 70px;
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start
    }

    .faq-section {
        padding: 90px 0
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .faq-heading .section-label {
        margin-bottom: 35px
    }

    .faq-list summary {
        min-height: 86px;
        grid-template-columns: 30px 1fr auto;
        gap: 7px;
        font-size: 14px
    }

    .faq-answer {
        grid-template-columns: 30px 1fr;
        padding-right: 4px;
        font-size: 14px
    }

    .closing-section {
        padding-bottom: 70px
    }

    .closing-inner {
        min-height: 460px
    }

    .closing-inner h2 {
        font-size: min(10.5dvw, 54px);
    }

    .closing-cta {
        width: 100%;
        padding-inline: 16px;
        font-size: 12px
    }

    .closing-inner::after {
        right: -26%;
        bottom: -60px
    }

    .site-footer {
        padding-top: 55px
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px
    }
}

@media(max-width:430px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 52px
    }

    .product-info h3 {
        font-size: 18px
    }

    .product-info a {
        font-size: 11px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important
    }
}