/*
Theme Name: MARUCO
Author: Your Name
Version: 1.0
*/
        
        /* CSS Variables */
        :root {
            --brand: #2e405e;
            --white: #ffffff;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --blue-50: #eff6ff;
            --indigo-50: #eef2ff;
        }

        /* Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Noto Sans JP', sans-serif;
            color: var(--slate-600);
            background-color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

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

        button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            font: inherit;
        }

        /* Minimal Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--slate-300);
            border-radius: 3px;
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes blob {
            0% { transform: translate(0px, 0px) scale(1); }
            33% { transform: translate(20px, -30px) scale(1.1); }
            66% { transform: translate(-10px, 10px) scale(0.95); }
            100% { transform: translate(0px, 0px) scale(1); }
        }

        @keyframes scroll-line {
            0% { height: 0; top: 0; opacity: 0; }
            50% { height: 50%; top: 0; opacity: 1; }
            100% { height: 0; top: 100%; opacity: 0; }
        }

        /* Header */
        .header {
            position: fixed;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 50;
            transition: all 0.3s;
            border-bottom: 1px solid var(--slate-100);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        @media (min-width: 768px) { .header-container { padding: 1.25rem 1.5rem; } }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            font-weight: 900;
            letter-spacing: 0.05em;
            color: var(--brand);
            font-family: 'Montserrat', sans-serif;
            position: relative;
            z-index: 50;
        }
        @media (min-width: 768px) { .header-logo { font-size: 1.25rem; gap: 0.75rem; letter-spacing: 0.1em; } }

        .header-logo-img {
            width: 1.25rem;
            height: 1.25rem;
            object-fit: contain;
        }
        @media (min-width: 768px) { .header-logo-img { width: 2.5rem; height: 2.5rem; } }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        @media (min-width: 768px) { .desktop-nav { gap: 3rem; } }

        .nav-link {
            display: none; /* スマホでは非表示 */
            font-size: 0.55rem;
            color: var(--slate-500);
            letter-spacing: 0.05em;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
        }
        @media (min-width: 768px) { 
            .nav-link { 
                display: block; /* PCでは表示 */
                font-size: 0.75rem; 
                letter-spacing: 0.2em; 
            } 
        }

        .nav-icon {
            color: var(--slate-400);
            font-size: 0.875rem;
        }
        @media (min-width: 768px) { .nav-icon { font-size: 1.125rem; } }

        /* Hero Section */
        .hero-section {
            height: 100dvh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background-color: var(--white);
            overflow: hidden;
        }

        .blob-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            mix-blend-mode: multiply;
            filter: blur(3rem);
            opacity: 0.7;
            animation: blob 15s infinite;
        }

        .blob-1 {
            top: 0;
            left: -1rem;
            width: 16rem;
            height: 16rem;
            background-color: var(--blue-50);
        }

        .blob-2 {
            top: 25%;
            right: -2.5rem;
            width: 16rem;
            height: 16rem;
            background-color: var(--slate-100);
            animation-delay: 3s;
        }

        .blob-3 {
            bottom: -5rem;
            left: 33.333333%;
            width: 16rem;
            height: 16rem;
            background-color: var(--indigo-50);
            animation-delay: 6s;
        }

        @media (min-width: 768px) {
            .blob-1, .blob-2, .blob-3 {
                width: 24rem;
                height: 24rem;
            }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding-top: 4rem;
            padding-bottom: 6rem;
        }
        @media (min-width: 768px) { .hero-content { padding-top: 5rem; padding-bottom: 8rem; } }

        .hero-badge {
            border: 2px solid var(--brand);
            padding: 0.5rem 1.5rem;
            margin-bottom: 1.5rem;
            background-color: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        @media (min-width: 768px) {
            .hero-badge { border-width: 3px; padding: 0.75rem 2.5rem; margin-bottom: 2.5rem; }
        }

        .hero-badge-text {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            color: var(--brand);
            display: block;
            font-family: 'Montserrat', sans-serif;
        }
        @media (min-width: 768px) { .hero-badge-text { font-size: 1.25rem; letter-spacing: 0.25em; } }

        .hero-subtitle-top {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.3em;
            color: var(--slate-500);
            margin-bottom: 1rem;
            font-family: 'Montserrat', sans-serif;
        }
        @media (min-width: 768px) { .hero-subtitle-top { font-size: 0.875rem; } }

        .hero-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--brand);
            margin-bottom: 1.25rem;
            letter-spacing: 0.1em;
            line-height: 1;
            user-select: none;
            font-family: 'Montserrat', sans-serif;
        }
        @media (min-width: 640px) { .hero-title { font-size: 4.5rem; } }
        @media (min-width: 768px) { .hero-title { font-size: 6rem; } }
        @media (min-width: 1024px) { .hero-title { font-size: 9rem; } }

        .hero-subtitle-stack {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.125rem;
        }
        @media (min-width: 768px) { .hero-subtitle-stack { gap: 0.25rem; } }

        .hero-subtitle-stack span {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            color: var(--brand);
            padding-left: 0.25rem;
            font-family: 'Montserrat', sans-serif;
        }
        @media (min-width: 768px) {
            .hero-subtitle-stack span { font-size: 1.25rem; letter-spacing: 0.35em; }
        }

        .scroll-indicator-center {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
        }
        @media (min-width: 768px) { .scroll-indicator-center { bottom: 2.5rem; } }

        .scroll-text {
            font-size: 8px;
            letter-spacing: 0.2em;
            color: var(--brand);
            margin-bottom: 0.5rem;
            writing-mode: vertical-rl;
            font-family: 'Montserrat', sans-serif;
        }
        @media (min-width: 768px) { .scroll-text { font-size: 10px; letter-spacing: 0.25em; margin-bottom: 0.75rem; } }

        .scroll-line-wrapper {
            width: 1px;
            height: 2.5rem;
            background-color: var(--slate-200);
            position: relative;
            overflow: hidden;
        }
        @media (min-width: 768px) { .scroll-line-wrapper { height: 4rem; } }

        .scroll-line-inner {
            position: absolute;
            width: 100%;
            background-color: var(--brand);
            animation: scroll-line 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
        }

        .hero-side-left, .hero-side-right {
            display: none;
            position: absolute;
            bottom: 2.5rem;
            z-index: 10;
        }
        @media (min-width: 640px) {
            .hero-side-left { display: flex; align-items: center; gap: 0.5rem; left: 5%; }
            .hero-side-right { display: flex; flex-direction: column; align-items: center; right: 5%; }
        }
        @media (min-width: 768px) { .hero-side-left { left: 20%; } .hero-side-right { right: 20%; } }
        @media (min-width: 1024px) { .hero-side-left { left: 25%; } .hero-side-right { right: 25%; } }

        .hero-side-left span {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--brand);
            font-family: 'Montserrat', sans-serif;
            opacity: 0.6;
            writing-mode: vertical-rl;
        }

        .since-wrapper {
            position: relative;
            height: 3rem;
            display: flex;
            align-items: center;
        }
        @media (min-width: 768px) { .since-wrapper { height: 4rem; } }

        .since-line {
            width: 1px;
            height: 100%;
            background-color: var(--brand);
        }

        .since-text {
            position: absolute;
            left: 0.5rem;
            font-size: 9px;
            letter-spacing: 0.3em;
            color: var(--brand);
            font-family: 'Montserrat', sans-serif;
            writing-mode: vertical-rl;
        }

        .since-year {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--brand);
            font-family: 'Montserrat', sans-serif;
            margin-top: 0.5rem;
            writing-mode: vertical-rl;
        }
        @media (min-width: 768px) { .since-year { font-size: 1.125rem; margin-top: 0.75rem; } }

        /* About Section */
        .about-section {
            padding: 6rem 0;
            background-color: var(--white);
            position: relative;
            z-index: 10;
            overflow: hidden;
        }
        @media (min-width: 768px) { .about-section { padding: 8rem 0; } }

        .about-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            user-select: none;
            z-index: 0;
            font-size: 8rem;
            font-weight: 900;
            color: var(--slate-50);
            font-family: 'Montserrat', sans-serif;
            line-height: 1;
            white-space: nowrap;
            opacity: 0.6;
        }
        @media (min-width: 640px) { .about-bg-text { font-size: 12rem; } }
        @media (min-width: 768px) { .about-bg-text { font-size: 20rem; } }

        .about-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 10;
            display: flex;
            justify-content: center;
        }

        .about-content {
            writing-mode: vertical-rl;
            text-orientation: upright;
            font-feature-settings: "vpal";
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1rem 0;
            margin: 0 auto;
        }
        @media (min-width: 768px) { .about-content { min-height: 500px; gap: 2rem; } }

        .about-label {
            color: var(--brand);
            font-size: 10px;
            letter-spacing: 0.3em;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            display: block;
        }
        @media (min-width: 768px) { .about-label { font-size: 0.75rem; } }

        .about-heading {
            font-size: 1.25rem;
            font-family: 'Shippori Mincho', serif;
            color: var(--brand);
            line-height: 1.6;
            letter-spacing: 0.1em;
        }
        @media (min-width: 768px) { .about-heading { font-size: 1.875rem; } }

        .about-text {
            color: var(--slate-600);
            font-size: 0.75rem;
            line-height: 2.6;
            letter-spacing: 0.1em;
            font-weight: 300;
            text-align: justify;
            margin-top: 0.5rem;
        }
        @media (min-width: 768px) { .about-text { font-size: 0.875rem; line-height: 2.8; margin-top: 1rem; } }

        /* Menu Section */
        .menu-section {
            padding: 6rem 0;
            background-color: var(--white);
            position: relative;
            z-index: 10;
        }
        @media (min-width: 768px) { .menu-section { padding: 8rem 0; } }

        .container-lg {
            max-width: 1152px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .menu-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        @media (min-width: 768px) { .menu-header { margin-bottom: 6rem; } }

        .menu-label {
            color: var(--brand);
            font-size: 10px;
            letter-spacing: 0.3em;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }
        @media (min-width: 768px) { .menu-label { font-size: 0.75rem; } }

        .menu-title {
            font-size: 1.25rem;
            font-family: 'Shippori Mincho', serif;
            color: var(--brand);
        }
        @media (min-width: 768px) { .menu-title { font-size: 1.5rem; } }

        .menu-subsection {
            margin-bottom: 6rem;
        }
        @media (min-width: 768px) { .menu-subsection { margin-bottom: 8rem; } }

        .subsection-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--slate-100);
            padding-bottom: 1rem;
        }
        @media (min-width: 768px) { .subsection-header { margin-bottom: 3rem; } }

        .subsection-title {
            font-size: 1.125rem;
            font-family: 'Shippori Mincho', serif;
            color: var(--brand);
            letter-spacing: 0.1em;
        }
        @media (min-width: 768px) { .subsection-title { font-size: 1.25rem; } }

        .subsection-label {
            font-size: 9px;
            color: var(--slate-400);
            letter-spacing: 0.1em;
            font-family: 'Montserrat', sans-serif;
        }
        @media (min-width: 768px) { .subsection-label { font-size: 0.75rem; } }

        .product-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem 2rem;
        }
        @media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem 2rem; } }

        .product-image-wrap {
            aspect-ratio: 1 / 1;
            background-color: var(--slate-50);
            margin-bottom: 1rem;
            overflow: hidden;
            position: relative;
            border-radius: 2px;
        }
        @media (min-width: 768px) { .product-image-wrap { margin-bottom: 1.5rem; } }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        .product-name {
            font-family: 'Shippori Mincho', serif;
            font-size: 1rem;
            color: var(--brand);
            margin-bottom: 0.25rem;
        }
        @media (min-width: 768px) { .product-name { font-size: 1.125rem; margin-bottom: 0.5rem; } }

        .product-desc {
            font-size: 10px;
            color: var(--slate-500);
            line-height: 1.6;
        }
        @media (min-width: 768px) { .product-desc { font-size: 0.75rem; } }

        .cafe-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: flex-start;
        }
        @media (min-width: 768px) { .cafe-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }

        .cafe-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        @media (min-width: 768px) { .cafe-list { gap: 3rem; } }

        .cafe-item-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 0.5rem;
        }

        .cafe-item-title {
            font-family: 'Shippori Mincho', serif;
            font-size: 1rem;
            color: var(--brand);
        }
        @media (min-width: 768px) { .cafe-item-title { font-size: 1.125rem; } }

        .cafe-item-desc {
            font-size: 10px;
            color: var(--slate-500);
            font-weight: 300;
            line-height: 1.6;
        }
        @media (min-width: 768px) { .cafe-item-desc { font-size: 0.75rem; } }

        .cafe-img-wrap {
            position: relative;
        }

        .cafe-img {
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            border-radius: 2px;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }

        /* Access Section */
        .access-section {
            padding: 6rem 0;
            background-color: var(--white);
            position: relative;
            z-index: 10;
        }
        @media (min-width: 768px) { .access-section { padding: 8rem 0; } }

        .container-md {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .access-layout {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }
        @media (min-width: 768px) { .access-layout { flex-direction: row; gap: 4rem; } }

        .access-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        @media (min-width: 768px) { .access-info { width: 33.333333%; gap: 2rem; } }

        .access-title {
            font-size: 1.25rem;
            font-family: 'Shippori Mincho', serif;
            color: var(--brand);
            margin-bottom: 1.5rem;
        }
        @media (min-width: 768px) { .access-title { font-size: 1.5rem; } }

        .access-block {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .access-label {
            font-size: 10px;
            color: var(--slate-400);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .access-text {
            font-size: 0.875rem;
            color: var(--slate-600);
            font-weight: 300;
            line-height: 1.5;
        }

        .access-btn-wrap {
            padding-top: 1rem;
        }
        @media (min-width: 768px) { .access-btn-wrap { padding-top: 2rem; } }

        .access-btn {
            display: inline-block;
            width: 100%;
            text-align: center;
            font-size: 10px;
            color: var(--brand);
            border: 1px solid var(--brand);
            padding: 0.75rem 1.5rem;
            letter-spacing: 0.1em;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        @media (min-width: 768px) { .access-btn { font-size: 0.75rem; padding: 0.75rem 2rem; } }

        .map-wrapper {
            height: 16rem;
            background-color: var(--slate-100);
            border-radius: 2px;
            overflow: hidden;
            width: 100%;
        }
        @media (min-width: 640px) { .map-wrapper { height: 20rem; } }
        @media (min-width: 768px) { .map-wrapper { height: 24rem; width: 66.666667%; } }

        .map-iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer */
        .footer {
            background-color: var(--white);
            padding: 5rem 0 3rem;
            border-top: 1px solid var(--slate-100);
            position: relative;
            z-index: 10;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            color: var(--brand);
            margin-bottom: 2rem;
            font-family: 'Montserrat', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo {
            width: 3rem;
            height: 3rem;
            object-fit: contain;
        }
        @media (min-width: 768px) { .footer-logo { width: 4rem; height: 4rem; } }

        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 3rem;
            font-size: 10px;
            color: var(--slate-500);
            font-weight: 300;
            letter-spacing: 0.1em;
            line-height: 1.6;
        }
        @media (min-width: 768px) { .footer-info { font-size: 0.75rem; } }

        .footer-links {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            font-size: 10px;
            color: var(--slate-400);
            letter-spacing: 0.2em;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        @media (min-width: 768px) { .footer-links { font-size: 0.75rem; } }

        .footer-credits {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-copy {
            font-size: 9px;
            color: var(--slate-400);
            letter-spacing: 0.2em;
            font-family: 'Montserrat', sans-serif;
        }
        @media (min-width: 768px) { .footer-copy { font-size: 10px; } }

        .footer-by {
            font-size: 8px;
            color: var(--slate-300);
            letter-spacing: 0.1em;
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
        }
        @media (min-width: 768px) { .footer-by { font-size: 9px; } }
.product-price {
    font-size: 14px;
    margin-top: 6px;
    color: #666;
}