@import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Noto+Sans+JP:wght@400;500&family=Press+Start+2P&display=swap');

/* ============================================================
   ベース
============================================================ */

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    margin-top: 0 !important;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    margin-top: 44px;
    flex: 1 0 auto;
}

/* ============================================================
   ヘッダー
============================================================ */

.fool-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #fffdf7;
    border-bottom: 1.5px solid #e8e0d0;
    padding: 0 20px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    font-family: 'DotGothic16', monospace;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fool-header.visible {
    opacity: 1;
}

body:not(.home) .fool-header {
    opacity: 1;
}

.fool-logo img {
    width: 130px;
}

.fool-logo span {
    color: #e07c3a;
}

/* スマホ：ナビ非表示、ハンバーガー表示 */
.fool-nav {
    display: none;
}

.fool-sp-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* PC */
@media (min-width: 768px) {
    .fool-nav {
        display: flex;
        align-items: center;
        gap: 36px;
    }

    .fool-sp-controls {
        display: none;
    }
}

.fool-nav a {
    font-family: 'DotGothic16', monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #3d3830;
    position: relative;
    padding-bottom: 2px;
}

.fool-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #e07c3a;
    transition: width 0.2s ease;
}

.fool-nav a:hover {
    color: #e07c3a;
}

.fool-nav a:hover::after {
    width: 100%;
}

.fool-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.fool-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #3d3830;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.fool-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.fool-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.fool-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.fool-nav-sp {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: #fffdf7;
    border-bottom: 1.5px solid #e8e0d0;
    padding: 24px 32px;
    flex-direction: column;
    gap: 20px;
    z-index: 199;
    display: none;
}

.fool-nav-sp.open {
    display: flex;
}

.fool-nav-sp a {
    font-family: 'DotGothic16', monospace;
    font-size: 15px;
    color: #3d3830;
    text-decoration: none;
    letter-spacing: 0.1em;
}

.fool-nav-sp a:hover {
    color: #e07c3a;
}

/* ============================================================
   フッター
============================================================ */

.fool-footer {
    background: #F5C800;
    font-family: 'DotGothic16', monospace;
}

/* スマホ */
.fool-footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 24px 32px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.fool-footer-nav a {
    color: #1a1a2e;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.12em;
    position: relative;
    padding-bottom: 2px;
}

.fool-footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #1a1a2e;
    transition: width 0.2s ease;
}

.fool-footer-nav a:hover::after {
    width: 100%;
}

.fool-footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    flex-direction: column;
}

.fool-footer-logo {
    color: #1a1a2e;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-decoration: none;
}

.fool-footer-logo img {
    width: 130px;
}

.fool-footer-logo span {
    color: #e07c3a;
}

.fool-footer-privacy {
    font-size: 0.75rem;
    color: inherit;
    opacity: 0.6;
    text-decoration: none;
}

.fool-footer-privacy:hover {
    opacity: 1;
}

.fool-footer-copy {
    color: rgba(0, 0, 0, 0.5);
    font-size: 11px;
    letter-spacing: 0.08em;
}

/* PC */
@media (min-width: 768px) {
    .fool-footer-nav {
        flex-direction: row;
        gap: 32px;
        padding: 28px 32px;
    }

    .fool-footer-nav a {
        font-size: 13px;
    }

    .fool-footer-bottom {
        gap: 16px;
        padding: 16px 32px;
    }
}

/* ============================================================
   広告コーナー
============================================================ */

.ad-area {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffd51c;
    margin-top: 50px;
}

.ad-area img {
    height: 100px;
    width: auto;
}

/* ============================================================
   コンテンツご案内
============================================================ */

.fool-navi {
    background: #fffbf3;
    display: flex;
    flex-direction: column;
    padding: 60px 24px;
    font-family: 'DotGothic16', monospace;
}

.fool-navi-heading-en {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #f38943;
    text-align: center;
    margin-bottom: 12px;
}

.fool-navi-heading {
    font-size: 22px;
    color: #2d2a24;
    text-align: center;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    display: inline-block;
}

.fool-navi-heading::after {
    content: '';
    display: block;
    width: 250px;
    height: 2px;
    background: #F5C800;
    margin: 12px auto 0;
}

.fool-navi-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fool-navi-card,
.fool-navi-card:visited,
.fool-navi-card:hover,
.fool-navi-card:active {
    text-decoration: none;
}

.fool-navi-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid #F5C800;
    background: #fff2cd;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.fool-navi-card:hover {
    border-color: #ffd000;
    background: #fffbe6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.fool-navi-card--game,
.fool-navi-card--comic {
    border-left: 4px solid #ff893b;
}

.fool-navi-thumb {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.fool-navi-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fool-navi-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #ffb75a;
}

.fool-navi-title {
    font-size: 20px;
    color: #2d2a24;
    letter-spacing: 0.1em;
}

.fool-navi-arrow {
    font-size: 13px;
    color: #f38943;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .fool-navi-cards {
        max-width: 640px;
        margin: 0 auto;
    }

    .fool-navi-card {
        padding: 24px 40px 24px 24px;
        gap: 24px;
    }

    .fool-navi-thumb {
        width: 140px;
        height: 105px;
    }

    .fool-navi-title {
        font-size: 24px;
    }

    .fool-navi-label {
        font-size: 12px;
    }

    .fool-navi-arrow {
        font-size: 14px;
    }
}

/* ============================================================
   トップページ：FOOLについて
============================================================ */

.fool-about {
    padding: 45px 24px 60px;
    text-align: center;
    font-family: 'DotGothic16', monospace;
    position: relative;
}

.fool-about * {
    position: relative;
    z-index: 1;
}

.fool-about-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #f38943;
    margin-bottom: 12px;
}

.fool-about-title {
    font-size: 22px;
    color: #2d2a24;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    display: inline-block;
}

.fool-about-title::after {
    content: '';
    display: block;
    width: 250px;
    height: 2px;
    background: #F5C800;
    margin: 12px auto 0;
}

.fool-about-body {
    font-size: 14px;
    color: #3d3830;
    line-height: 2.4;
    letter-spacing: 0.08em;
    max-width: 480px;
    margin: 0 auto 40px;
}

.fool-about-body .accent {
    color: #f38943;
    font-size: 18px;
}

.fool-about-btn {
    display: inline-block;
    border: 1.5px solid orange;
    background-color: orange;
    color: #fff;
    font-family: 'DotGothic16', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 10px 32px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.fool-about-btn:hover {
    background: #fff3be;
    color: #ffd000;
}

/* PC */
@media (min-width: 768px) {
    .fool-about {
        padding: 40px 24px;
    }

    .fool-about-label {
        margin-bottom: 16px;
    }

    .fool-about-body {
        font-size: 16px;
    }
}

/* ============================================================
   工事中
============================================================ */

.fixed-wrapper {
    display: flex;
    width: 100vw;
    margin: 0 auto;
    padding: 40px;
    background-color: #f0ece0;
    font-family: 'DotGothic16', monospace;
}

.illust {
    width: 700px;
    flex-shrink: 0;
}

.text-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 700px);
}

.title {
    font-size: 54px;
    color: #333;
    letter-spacing: 4px;
    margin-left: 8px;
}

.en-title {
    font-size: 24px;
    color: #c9a86c;
    letter-spacing: 4px;
    margin-top: -6px;
}

.body-text {
    margin-top: 30px;
    font-size: 20px;
    color: #555;
    letter-spacing: 1px;
    line-height: 2;
}

.waiting {
    font-size: 20px;
    color: #f3a144;
    letter-spacing: 1px;
    margin-top: 4px;
}

.en-title,
.body-text,
.waiting {
    margin-left: 20px;
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 6px 8px;
    width: 200px;
    font-family: 'DotGothic16', monospace;
    font-size: 13px;
    color: #fdbc59;
    background: #fff;
    border: 2px solid #fdbc59;
    text-decoration: none;
    letter-spacing: 2px;
    transition: background 0.2s, color 0.2s;
}

.back-btn:hover {
    background: #fdbc59;
    color: #fffdf7;
}

.back-btn:hover .btn-arrow {
    color: #fffdf7;
}

@media (max-width: 640px) {
    .construction {
        display: block;
        padding-left: 20px;
    }

    .illust {
        width: 100vw;
    }

    .text-area {
        width: 100%;
        align-items: center;
    }

    .title {
        align-self: flex-start;
        white-space: nowrap;
    }
}

/* ============================================================
   禁書庫
============================================================ */

.library-list-area {
    font-family: 'DotGothic16', monospace;
    padding: 40px 24px;
    text-align: center;
}

.library-list {
    list-style: none;
    padding: 0;
    margin: 32px auto 0;
    max-width: 480px;
}

.library-list-item a {
    display: block;
    padding: 12px 0;
    color: #3d3830;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #e8e0d0;
}

.library-list-item a:hover {
    color: #e07c3a;
}

.library-empty {
    color: #999;
    font-size: 14px;
    margin-top: 32px;
}

.library-single {
    max-width: 640px;
    margin: 60px auto;
    padding: 0 24px;
    font-family: 'DotGothic16', monospace;
}

.library-single-genre {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #c9a86c;
    margin: 0 0 8px;
}

.library-single-title {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #2d2a24;
    margin: 0 0 6px;
}

.library-single-date {
    font-size: 12px;
    color: #a0907a;
    margin: 0 0 24px;
}

.library-single-content {
    border-top: 0.5px solid #e8e0d0;
    padding-top: 24px;
    font-size: 17px;
    line-height: 1.5;
    color: #3d3830;
}

.library-single-back {
    display: inline-block;
    margin-top: 48px;
    font-size: 17px;
    letter-spacing: 0.15em;
    color: #c9a86c;
    text-decoration: none;
}

.library-single-back:hover {
    color: #e07c3a;
}

/* スマホ */
.library-single-content img {
    width: 100vw;
    max-width: 100vw;
    margin-left: -24px;
}

/* PC */
@media (min-width: 768px) {
    .library-single-content img {
        width: 100%;
        max-width: 640px;
        margin-left: 0;
    }
}

/* ============================================================
   プライバシーポリシー
============================================================ */

.privacy-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.2rem 4rem;
    font-family: 'Noto Sans JP', sans-serif;
    color: #2a2118;
    line-height: 2;
    font-size: 15px;
}

.privacy-wrap>h1 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 5px solid #ffdd46;
    color: #2a2118;
}

.privacy-wrap>h1:not(:first-of-type) {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.intro {
    padding: 1.2rem 0;
    margin: 2rem 0;
}

.privacy-wrap section {
    margin-bottom: 2.5rem;
}

.privacy-wrap h2 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #2a2118;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: #fff7c8;
    border-left: 5px solid #ffdd46;
}

.privacy-wrap p {
    margin-bottom: 1.6rem;
}

.privacy-wrap ul {
    margin: 0.4rem 0 0.8rem 1.8rem;
}

.privacy-wrap li {
    margin-bottom: 0.3rem;
}

.privacy-wrap a {
    color: #ffdd46;
    text-underline-offset: 3px;
}

.privacy-wrap a:hover {
    opacity: 0.75;
}

.privacy-meta {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 3px solid #ffdd46;
    text-align: right;
    font-size: 0.88rem;
    line-height: 0.5;
}

/* PC */
@media (min-width: 768px) {
    .privacy-wrap {
        padding: 3rem 2rem 5rem;
    }

    .privacy-wrap>h1 {
        font-size: 2.4rem;
    }
}

/* ============================================================
   ABOUTページ
============================================================ */

.page-fool-about {
    font-family: 'DotGothic16', sans-serif;
    color: #555;
}

.page-fool-about .hero {
    width: 100vw;
    padding: 3rem;
    text-align: center;
    background-color: #F5C800;
    background-image: repeating-linear-gradient(-25deg,
            transparent,
            transparent 8px,
            rgba(255, 255, 255, 0.12) 8px,
            rgba(255, 255, 255, 0.12) 16px);
    margin-bottom: 50px;
}

.page-fool-about .hero-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
    letter-spacing: 0.12em;
    text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.page-fool-about .hero-desc {
    font-size: 14px;
    line-height: 1.9;
    max-width: 440px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.page-fool-about .about-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.page-fool-about .divider {
    border: none;
    border-top: 1px solid #e8e4da;
    margin: 2rem 0;
}

.page-fool-about .section-label {
    font-size: 17px;
    letter-spacing: 0.14em;
    color: #f8d01b;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.page-fool-about .about-text {
    font-size: 14px;
    line-height: 1.9;
}

.page-fool-about .creed-list {
    list-style: none;
}

.page-fool-about .creed-list li {
    display: flex;
    align-items: baseline;
    gap: 30px;
    padding: 11px 0;
    border-bottom: 1px solid #ede9df;
    font-size: 14px;
    line-height: 1.6;
}

.page-fool-about .creed-list li:last-child {
    border-bottom: none;
}

.page-fool-about .creed-num {
    font-size: 13px;
    font-weight: 500;
    color: #7a5200;
    background: #fdf3c0;
    padding: 5px 12px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* スマホ */
.page-fool-about .member-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 1.5rem;
}

/* PC */
@media (min-width: 768px) {
    .page-fool-about .member-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

.page-fool-about .member-card {
    background: rgb(255, 250, 234);
    border: 1px solid rgb(255, 246, 225);
    border-radius: 6px;
    padding: 1.5rem 1rem 1.25rem;
    text-align: center;
}

.page-fool-about .member-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #5a3e00;
}

.page-fool-about .member-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-fool-about .small-icon img {
    width: 80%;
    height: 80%;
    margin-top: -20px;
}

.page-fool-about .member-role {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #b08000;
    margin-top: -20px;
    margin-bottom: 5px;
}

.page-fool-about .member-name {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin-bottom: 20px;
}

.page-fool-about .member-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.7;
    text-align: left;
    padding: 0 10px 0 15px;
}

.page-fool-about .member-desc-section {
    margin-top: 1rem;
    height: 80px;
}

.page-fool-about .member-desc-heading {
    font-size: 10px;
    letter-spacing: 0.12em;
    color: #b08000;
    display: block;
    width: fit-content;
    margin: 0 auto 6px;
    padding-bottom: 2px;
    border-bottom: 1px solid #F5C800;
}

.page-fool-about .member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin-top: 10px;
}

.page-fool-about .tag {
    font-size: 10px;
    background: #fdf3c0;
    color: #7a5200;
    padding: 2px 9px;
    border-radius: 10px;
}

.page-fool-about .page-note {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e4da;
}

.member-sns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.sns-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sns-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.sns-icon {
    width: 20px;
    height: 20px;
}

/* ===== お問い合わせ ===== */
.contact-page {
    padding: 2rem 1rem 4rem;
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'DotGothic16', sans-serif;
    color: var(--color-accent, #F5C800);
    margin-bottom: 1.5rem;
}

.contact-mail-block {
    background: #f9f5e8;
    border-left: 4px solid #F5C800;
    padding: 1.2rem 1.5rem;
    border-radius: 4px;
}

.contact-mail-note {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.6rem;
}

.contact-mail {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    word-break: break-all;
}

.contact-mail-img {
    max-width: 100%;
    height: auto;
}

/* ===== グッズ案内ページ ===== */
.goods-page {
    max-width: 70%;
    margin: 0 auto;
    margin-top: 44px;
    padding: 70px 16px 64px;
}

.goods-title-area {
    background: #ffffff;
    padding: 55px 16px;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -70px;
    padding-top: 70px;
}

.goods-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 48px;
    color: #F5C800;
    margin: 0;
    line-height: 1.1;
}

.goods-title-sub {
    display: block;
    font-size: 0.28em;
    letter-spacing: 0.4em;
    color: #e0a800;
    margin-bottom: 0.2em;
}

.goods-title-main {
    display: block;
}

.goods-lead {
    font-family: 'DotGothic16', sans-serif;
    font-size: 13px;
    color: #6b4b00;
    margin: 12px 0 0;
}

/* セクション（お店ごと） */
.goods-section {
    margin-top: 60px;
    margin-bottom: 80px;
}

.goods-section-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 2px solid #F5C800;
    padding-bottom: 8px;
}

.goods-section-name {
    font-family: 'DotGothic16', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #F5C800;
    margin: 0;
}


/* カード一覧 */
.goods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}

.goods-card {
    background: #fffdf6;
    border: 1px solid #ffdf87;
    border-radius: 12px;
    max-width: 75vw;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.goods-photo {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff1c5;
    color: #ffde79;
    font-family: 'DotGothic16', sans-serif;
    font-size: 13px;
}

.goods-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goods-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.goods-name {
    font-family: 'DotGothic16', sans-serif;
    font-size: 19px;
    color: #F5C800;
    margin: 0;
}

.goods-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: #8a7a55;
    line-height: 1.6;
    margin: 10px 0 16px;
}

.goods-btn {
    display: block;
    text-align: center;
    font-family: 'DotGothic16', sans-serif;
    font-size: 14px;
    margin-top: auto;
    padding-top: 12px;
    padding: 9px;
    border-radius: 8px;
    background: #F5C800;
    color: #5a4410;
    text-decoration: none;
}

.goods-btn:hover {
    opacity: 0.85;
}

/* 準備中（リンクなし） */
.goods-btn.is-wip {
    background: #fff1c5;
    color: #9a8a60;
    pointer-events: none;
}

/* 準備中カード：写真にすりガラス */
.goods-card.is-wip .goods-photo {
    position: relative;
}

.goods-card.is-wip .goods-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.55);
    font-family: 'DotGothic16', sans-serif;
    font-size: 16px;
    color: #8a7a55;
}

/* モバイルは幅制限なし */
@media (max-width: 767px) {
    .goods-page {
        max-width: 100%;
    }
}

/* PC表示：3カラム */
@media (min-width: 768px) {
    .goods-lead {
        font-size: 15px;
    }

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

    .goods-card {
        max-width: 15vw;
    }
}