:root{
    --white:#ffffff;
    --offwhite:#f7f5f1;
    --charcoal:#2c2c2c;
    --text:#444444;
    --text-light:#6b6b6b;
    --gold:#b89b5e;
    --gold-light:#d9c08a;
    --sage:#6c7b60;
    --sage-light:#e9eee6;
    --border:rgba(0,0,0,0.08);
    --shadow:0 10px 30px rgba(0,0,0,0.06);
    --shadow-hover:0 18px 36px rgba(0,0,0,0.10);
    --radius:8px;
    --max-width:1200px;
    --transition:all .28s ease;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Noto Sans JP',sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.8;
    word-break:keep-all;
    overflow-wrap:break-word;
}

p,h1,h2,h3,h4,h5,h6,a,span,li,td,th{
    word-break:keep-all;
    overflow-wrap:break-word;
}

p{
    line-height:2;
    text-wrap:pretty;
}

h1,h2,h3{
    text-wrap:balance;
}

img{
    max-width:100%;
    display:block;
}

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

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);
    box-shadow:0 4px 18px rgba(0,0,0,0.03);
}

.nav-top{
    max-width:var(--max-width);
    margin:0 auto;
    padding:16px 20px 10px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.logo{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:'Cormorant Garamond',serif;
    font-size:28px;
    letter-spacing:1px;
    color:var(--charcoal);
}

.logo span{
    color:var(--gold);
}

nav{
    max-width:var(--max-width);
    margin:0 auto;
    padding:0 20px 16px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:26px;
    flex-wrap:wrap;
}

nav a{
    position:relative;
    font-size:14px;
    color:var(--text);
    transition:var(--transition);
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:var(--transition);
}

nav a:hover,
nav a.active{
    color:var(--charcoal);
}

nav a:hover::after,
nav a.active::after{
    width:100%;
}

section{
    width:100%;
}

.section-label{
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:10px;
}

.section-title{
    font-family:'Cormorant Garamond',serif;
    font-size:40px;
    font-weight:400;
    letter-spacing:1px;
    color:var(--charcoal);
    margin:0 0 18px;
}

.section-desc{
    max-width:760px;
    margin:0 auto;
    font-size:14px;
    color:var(--text-light);
    line-height:2;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 24px;
    border-radius:999px;
    font-size:14px;
    font-weight:500;
    transition:var(--transition);
    border:1px solid transparent;
    cursor:pointer;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-gold{
    background:var(--gold);
    color:var(--white);
}

.btn-gold:hover{
    background:#a98a49;
}

.btn-outline{
    border-color:rgba(255,255,255,0.65);
    color:var(--white);
    background:transparent;
}

.btn-outline:hover{
    background:rgba(255,255,255,0.08);
}

.btn-dark{
    background:var(--charcoal);
    color:var(--white);
}

.btn-dark:hover{
    background:#1f1f1f;
}

.btn-sage{
    background:var(--sage);
    color:var(--white);
}

.btn-sage:hover{
    background:#5a674f;
}

.products-grid,
.shops-grid{
    max-width:var(--max-width);
    margin:34px auto 0;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.product-card{
    background:var(--white);
    border-radius:var(--radius);
    transition:var(--transition);
}

.product-card:hover{
    transform:translateY(-6px);
}

.product-card a{
    display:block;
}

.product-img{
    aspect-ratio:1/1;
    background:var(--offwhite);
    border-radius:6px;
    overflow:hidden;
    margin-bottom:14px;
    box-shadow:var(--shadow);
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}

.product-card:hover .product-img img{
    transform:scale(1.05);
}

.product-name{
    font-size:14px;
    color:var(--charcoal);
    line-height:1.7;
    min-height:48px;
    margin-bottom:6px;
}

.product-price{
    color:var(--gold);
    font-size:14px;
    font-weight:700;
}

.shops-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    max-width:900px;
    margin:40px auto 0;
}

.shop-item{
    background:var(--offwhite);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px 18px;
    min-height:148px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:var(--transition);
}

.shop-item:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
    border-color:rgba(184,155,94,0.35);
}

.shop-icon{
    width:54px;
    height:54px;
    border-radius:50%;
    background:var(--white);
    border:1px solid #e5e5e5;
    margin:0 auto 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:var(--charcoal);
    flex-shrink:0;
}

.shop-links-note{
    margin:26px auto 0;
    max-width:900px;
    text-align:center;
    font-size:14px;
    line-height:2;
    color:var(--text-light);
}

.content-section{
    padding:80px 20px;
}

.content-inner{
    max-width:1100px;
    margin:0 auto;
}

.two-col{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:center;
}

.two-col-visual{
    min-height:300px;
    background:var(--offwhite);
    border:1px solid var(--border);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:72px;
    box-shadow:var(--shadow);
}

.company-table{
    width:100%;
    border-collapse:collapse;
    margin-top:30px;
    background:var(--white);
}

.company-table th,
.company-table td{
    border-bottom:1px solid var(--border);
    padding:18px 16px;
    text-align:left;
    vertical-align:top;
    font-size:14px;
    line-height:1.9;
}

.company-table th{
    width:180px;
    background:rgba(0,0,0,0.02);
    color:var(--charcoal);
    font-weight:700;
}

.map-wrap{
    max-width:1000px;
    margin:0 auto;
    box-shadow:var(--shadow);
    border-radius:12px;
    overflow:hidden;
}

.message-card{
    max-width:900px;
    margin:0 auto;
    background:linear-gradient(135deg,#fff 0%, #faf8f3 100%);
    border:1px solid var(--border);
    border-radius:14px;
    padding:38px 34px;
    box-shadow:var(--shadow);
}

.message-card p{
    font-size:14px;
    line-height:2.2;
    color:var(--text-light);
    margin:0 0 18px;
}

.message-sign{
    margin-top:28px;
    color:var(--charcoal) !important;
    font-weight:600;
    line-height:2;
}

.story-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:42px;
    align-items:center;
}

.story-text p{
    font-size:14px;
    line-height:2.2;
    color:var(--text-light);
    margin:0 0 18px;
}

.story-visual{
    min-height:320px;
    border-radius:16px;
    background:linear-gradient(135deg,#2f2f2f 0%, #4f5a4d 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:var(--shadow);
}

.story-badge{
    text-align:center;
    color:var(--white);
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    letter-spacing:2px;
    line-height:1.5;
}

.story-badge span{
    color:var(--gold-light);
    font-size:28px;
}

footer{
    margin-top:0;
    background:#1f1f1f;
    color:#d0d0d0;
    padding:60px 20px 24px;
}

.footer-content{
    max-width:var(--max-width);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:34px;
}

.footer-brand p,
.footer-col a{
    font-size:14px;
    line-height:2;
    color:#c9c9c9;
}

.footer-col h4{
    color:var(--white);
    font-size:15px;
    margin:0 0 14px;
}

.footer-col a{
    display:block;
    margin-bottom:6px;
    transition:var(--transition);
}

.footer-col a:hover{
    color:var(--gold-light);
}

.footer-bottom{
    max-width:var(--max-width);
    margin:30px auto 0;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    font-size:13px;
    color:#9e9e9e;
}

.reveal{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .7s ease, transform .7s ease;
}

.reveal.show{
    opacity:1;
    transform:none;
}

@media (max-width: 1024px){
    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .footer-content{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 900px){
    .two-col,
    .story-grid{
        grid-template-columns:1fr;
    }
    .shops-grid{
        grid-template-columns:repeat(2,1fr);
        max-width:700px;
    }
    .message-card{
        padding:28px 22px;
    }
    .story-visual{
        min-height:220px;
    }
}

@media (max-width: 768px){
    .nav-top{
        padding:14px 16px 8px;
    }
    nav{
        gap:16px;
        padding:0 16px 14px;
    }
    .section-title{
        font-size:32px;
    }
    .products-grid{
        grid-template-columns:1fr 1fr;
        gap:16px;
    }
    .footer-content{
        grid-template-columns:1fr;
        gap:24px;
    }
}

@media (max-width: 520px){
    nav{
        justify-content:flex-start;
    }
    .products-grid,
    .shops-grid{
        grid-template-columns:1fr;
    }
    .section-title{
        font-size:28px;
    }
    .shop-item{
        min-height:132px;
    }
}
/* ===== PRO NEWS SECTION ===== */
.announcement-pro{
    position:relative;
    background:
        linear-gradient(135deg, rgba(34,34,34,0.96) 0%, rgba(54,54,54,0.94) 55%, rgba(78,78,78,0.92) 100%);
    padding:110px 20px;
    overflow:hidden;
}

.announcement-pro::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 30%, rgba(184,155,94,0.10) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(217,192,138,0.08) 0%, transparent 28%);
    pointer-events:none;
}

.announcement-wrap{
    position:relative;
    z-index:1;
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(220px, 1fr) minmax(420px, 640px) minmax(220px, 1fr);
    align-items:center;
    gap:42px;
}

.announcement-center{
    text-align:center;
    color:var(--white);
}

.announcement-title{
    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    font-weight:400;
    letter-spacing:1px;
    line-height:1.25;
    margin:10px 0 24px;
    color:var(--white);
    white-space:nowrap;
}

.announcement-text{
    font-size:15px;
    line-height:2.1;
    color:rgba(255,255,255,0.84);
    max-width:620px;
    margin:0 auto 30px;
}

.announcement-image{
    position:relative;
}

.announcement-image img{
    width:100%;
    max-width:320px;
    aspect-ratio:4 / 5;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 22px 50px rgba(0,0,0,0.28);
    border:1px solid rgba(255,255,255,0.10);
    transition:transform .35s ease, box-shadow .35s ease;
}

.announcement-image.left{
    display:flex;
    justify-content:flex-end;
}

.announcement-image.right{
    display:flex;
    justify-content:flex-start;
}

.announcement-image:hover img{
    transform:translateY(-6px) scale(1.02);
    box-shadow:0 28px 60px rgba(0,0,0,0.34);
}

.announcement-image::after{
    content:"";
    position:absolute;
    inset:auto 18px -12px 18px;
    height:24px;
    background:rgba(0,0,0,0.22);
    filter:blur(14px);
    border-radius:50%;
    z-index:-1;
}

@media (max-width: 1100px){
    .announcement-wrap{
        grid-template-columns:1fr;
        gap:28px;
    }

    .announcement-image.left,
    .announcement-image.right{
        justify-content:center;
    }

    .announcement-title{
        font-size:42px;
    }

    .announcement-image img{
        max-width:420px;
    }
}

@media (max-width: 640px){
    .announcement-pro{
        padding:84px 16px;
    }

    .announcement-title{
        font-size:34px;
    }

    .announcement-text{
        font-size:14px;
    }

    .announcement-image img{
        max-width:100%;
        border-radius:12px;
    }
}
/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 900px){

    .hero h1,
    .page-hero h1{
        font-size: 40px !important;
        letter-spacing: 2px !important;
        line-height: 1.25;
    }

    .hero-tagline{
        font-size: 16px !important;
        letter-spacing: 2px !important;
    }

    .hero-desc,
    .page-hero p,
    .section-desc,
    .section-text,
    .announcement-text,
    .company-note,
    .shop-links-note{
        font-size: 14px !important;
        line-height: 2 !important;
    }

    .hero{
        min-height: 70vh !important;
        padding: 40px 16px !important;
    }

    .brands,
    .two-col,
    .story-grid,
    .intro-grid,
    .contact-wrap,
    .wholesale,
    .announcement-wrap,
    .concept-grid,
    .points-grid,
    .service-grid,
    .products-grid,
    .products-grid-local,
    .shops-grid,
    .business-grid{
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .brand-card,
    .content-section,
    .section-wrap,
    .featured,
    .shop-links,
    .announcement-pro,
    .announcement,
    .wholesale-wrap{
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .brand-card{
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .brand-icon{
        width: 96px !important;
        height: 96px !important;
        margin-bottom: 18px !important;
    }

    .section-title,
    .section-title-main,
    .announcement-title,
    .thanks-title{
        font-size: 32px !important;
        line-height: 1.3 !important;
        letter-spacing: 1px !important;
    }

    .announcement-title{
        white-space: normal !important;
    }

    .announcement-image.left,
    .announcement-image.right{
        justify-content: center !important;
    }

    .announcement-image img{
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 12px !important;
    }

    .wholesale-visual,
    .two-col-visual,
    .story-visual,
    .visual-box{
        min-height: 200px !important;
        width: 100% !important;
        height: auto !important;
        font-size: 52px !important;
    }

    .products-grid,
    .products-grid-local{
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-name{
        min-height: auto !important;
    }

    .shops-grid{
        max-width: 520px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .shop-item{
        min-height: 120px !important;
        padding: 22px 14px !important;
    }

    .shop-icon{
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .company-table{
        display: block;
        overflow-x: auto;
        white-space: normal;
    }

    .company-table th,
    .company-table td{
        min-width: 140px;
        font-size: 13px !important;
        padding: 14px 12px !important;
        line-height: 1.8 !important;
    }

    .contact-card,
    .form-card,
    .message-card,
    .thanks-card,
    .point-card,
    .service-card,
    .concept-card,
    .business-card{
        padding: 24px 18px !important;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select{
        font-size: 16px !important;
    }

    .cta-actions,
    .hero-buttons,
    .thanks-actions{
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }

    .btn{
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    nav{
        justify-content: flex-start !important;
        gap: 12px !important;
        padding: 0 16px 14px !important;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    nav::-webkit-scrollbar{
        display: none;
    }

    nav a{
        flex: 0 0 auto;
        font-size: 13px !important;
    }

    .nav-top{
        padding: 12px 16px 8px !important;
    }

    .logo{
        font-size: 24px !important;
    }

    .footer-content{
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .footer-brand,
    .footer-col{
        text-align: left;
    }

    .footer-brand p,
    .footer-col a{
        font-size: 13px !important;
        line-height: 1.9 !important;
    }

    .map-wrap iframe{
        height: 300px !important;
    }
}

@media (max-width: 640px){

    .hero h1,
    .page-hero h1{
        font-size: 32px !important;
    }

    .section-title,
    .section-title-main,
    .announcement-title,
    .thanks-title{
        font-size: 28px !important;
    }

    .hero-desc,
    .page-hero p,
    .section-desc,
    .section-text,
    .announcement-text,
    .company-note,
    .shop-links-note,
    .message-card p,
    .story-text p{
        font-size: 13px !important;
        line-height: 1.95 !important;
    }

    .content-section,
    .section-wrap,
    .featured,
    .shop-links,
    .announcement-pro,
    .announcement,
    .wholesale-wrap,
    .thanks-wrap{
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }

    .hero{
        min-height: 64vh !important;
    }

    .brand-card{
        padding: 40px 18px !important;
    }

    .company-table th,
    .company-table td{
        font-size: 12px !important;
        padding: 12px 10px !important;
    }

    .map-wrap iframe{
        height: 240px !important;
    }

    .thanks-card{
        padding: 34px 18px !important;
    }
}