/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Disable geo links */
[x-apple-data-detectors], 
.x-apple-data-detectors,
[data-geo] {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none !important;
}

body {
    font-family: 'Shippori Mincho', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #6b5b47;
    margin-bottom: 2.5rem;
    letter-spacing: 0.08em;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f7f6f2;
    box-shadow: none;
    border-bottom: 1px solid #e5e2db;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #6b5b47;
    letter-spacing: 0.1em;
    text-decoration: none;
    white-space: nowrap;
    max-width: 100vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reserve-btn, .hamburger { display: none !important; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    display: flex;
    align-items: center;
}
.nav-menu a {
    text-decoration: none;
    color: #6b5b47;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.08rem;
    letter-spacing: 0.06em;
    padding: 6px 0;
    transition: color 0.2s;
    position: relative;
}
.nav-menu a:hover {
    color: #8b7a65;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff !important;
    padding-top: 70px;
}

.hero-bg {
    display: block !important;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('image/hero.jpg') center center/cover no-repeat;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 30, 30, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 600px;
    margin-left: 5vw;
}

.hero-catch {
    margin-bottom: 2.5rem;
}

.catch-jp {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 0.2em;
    line-height: 2.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.cta-button {
    background: #8b7a65;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 14px 38px;
    font-size: 1.1rem;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(107,91,71,0.10);
    text-decoration: none;
    display: inline-block;
    text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

.cta-button:hover {
    background: #6b5b47;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.paper-cut-preview {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.paper-cut-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 C60 20, 80 30, 90 50 C80 70, 60 80, 50 90 C40 80, 20 70, 10 50 C20 30, 40 20, 50 10" fill="none" stroke="%238B7355" stroke-width="2"/></svg>') center/contain no-repeat;
    opacity: 0.7;
}

/* About Section */
.about {
    padding: 100px 0 80px 0;
    background: #f7f6f2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #6b5b47;
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2.1;
    color: #6b5b47;
    margin-bottom: 1.5rem;
    font-family: 'Shippori Mincho', serif;
}

.profile-image {
    width: 400px;
    height: 400px;
    background: url('image/profile.jpg') center center/cover no-repeat;
    border-radius: 50%;
    margin: 0 auto;
}

/* Works Section */
.works {
    padding: 100px 0 80px 0;
    background: #fff;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.work-item {
    background: #f7f6f2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(139, 122, 101, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(139, 122, 101, 0.13);
}

.work-image {
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
    width: 100%;
}

.work-1 {
    background: url('image/works/work-1.png') center center/cover no-repeat;
}

.work-2 {
    background: url('image/works/work-2.png') center center/cover no-repeat;
}

.work-3 {
    background: url('image/works/work-3.png') center center/cover no-repeat;
}

.work-4 {
    background: url('image/works/work-4.png') center center/cover no-repeat;
}

.work-5 {
    background: url('image/works/work-5.png') center center/cover no-repeat;
}

.work-6 {
    background: url('image/works/work-6.jpg') center center/cover no-repeat;
}

.work-info {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
}

.work-info h3 {
    color: #6b5b47;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.work-info p {
    color: #8b7a65;
    font-size: 1rem;
    line-height: 1.7;
    font-family: 'Shippori Mincho', serif;
}

/* Process Section */
.process {
    padding: 100px 0 80px 0;
    background: #f7f6f2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(139, 122, 101, 0.07);
}

.step-number {
    width: 54px;
    height: 54px;
    background: #8b7a65;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0 auto 1.2rem;
}

.step h3 {
    color: #6b5b47;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step p {
    color: #8b7a65;
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0 80px 0;
    background: #fff;
}

.contact-content {
    text-align: center;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #6b5b47;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info p {
    color: #8b7a65;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-family: 'Shippori Mincho', serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 2rem;
}

.social-links a {
    color: #6b5b47;
    font-size: 1.8rem;
    transition: color 0.2s;
    text-decoration: none;
}

.social-links a:hover {
    color: #8b7a65;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #8b7a65;
}

.contact-item i {
    color: #8b7a65;
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e2db;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #f7f6f2;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7a65;
}

.submit-button {
    padding: 15px 30px;
    background: #8b7a65;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 1rem;
    font-family: 'Shippori Mincho', serif;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 8px rgba(139, 122, 101, 0.10);
}

.submit-button:hover {
    background: #6b5b47;
}

/* Footer */
.footer {
    background: #f7f6f2;
    color: #6b5b47;
    padding: 60px 0 20px 0;
    border-top: 1px solid #e5e2db;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    color: #6b5b47;
}

.footer-logo p {
    color: #8b7a65;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #8b7a65;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #6b5b47;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 8px;
        height: 56px;
    }
    .nav-logo a {
        font-size: 1.1rem;
        max-width: 25vw;
        padding-right: 0.3em;
    }
    .nav-menu {
        gap: 0.7rem;
        padding: 0 3px;
        margin-left: -5px;
    }
    .nav-menu a {
        font-size: 0.88rem;
        white-space: nowrap;
        padding: 4px 1px;
    }
    .hero-content {
        margin-left: 0;
        max-width: 95vw;
    }
    .catch-jp {
        font-size: 1.3rem;
        line-height: 1.8rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .paper-cut-preview {
        width: 300px;
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        margin-top: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
        letter-spacing: 0.06em;
    }

    .about-text h2,
    .works h2,
    .news h2,
    .store-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }

    .profile-image {
        width: 300px;
        height: 300px;
    }

    .social-links {
        gap: 20px;
    }
    
    .social-links a {
        font-size: 1.5rem;
    }

    .about-text p,
    .store-intro p {
        font-size: 1rem;
        line-height: 1.9;
        margin-bottom: 1.2rem;
        letter-spacing: 0.03em;
    }

    .about-text, .store-intro {
        text-align: left;
    }

    .work-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.03em;
    }

    .work-info p {
        font-size: 1rem;
        line-height: 1.9;
        margin-bottom: 1.2rem;
        letter-spacing: 0.03em;
    }

    .store-link {
        margin-top: 2rem;
    }

    .store-link a {
        font-size: 1rem;
        padding: 12px 30px;
    }

    .news h2,
    .store-intro h2 {
        font-size: 2.2rem;
        margin-bottom: 2.2rem;
    }

    .store-intro p {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
        text-align: left;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo a {
        font-size: 1rem;
        max-width: 22vw;
        padding-right: 0.2em;
    }

    .nav-menu {
        gap: 0.5rem;
        padding: 0 2px;
        margin-left: -8px;
    }
    .nav-menu a {
        font-size: 0.82rem;
        padding: 3px 1px;
        letter-spacing: 0.02em;
    }

    .hero-title {
        font-size: 2rem;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }

    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        font-size: 1.3rem;
    }

    .about-text p,
    .store-intro p {
        font-size: 0.92rem;
        line-height: 1.8;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
        text-align: left;
        padding: 0 0.5rem;
    }

    .about-text, .store-intro {
        text-align: left;
    }

    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        letter-spacing: 0.04em;
    }

    .about-text h2,
    .works h2,
    .news h2,
    .store-intro h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .work-info {
        padding: 0.8rem;
    }

    .work-info h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        letter-spacing: 0.02em;
    }

    .work-info p {
        font-size: 0.92rem;
        line-height: 1.8;
        margin-bottom: 0.8rem;
        letter-spacing: 0.02em;
    }

    .store-link {
        margin-top: 1.5rem;
    }

    .store-link a {
        font-size: 0.92rem;
        padding: 10px 25px;
    }

    .works-grid {
        gap: 1.8rem;
    }

    .news h2,
    .store-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
        letter-spacing: 0.06em;
    }

    .store-intro p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
        letter-spacing: 0.04em;
        text-align: left;
        padding: 0 0.8rem;
    }

    .news-list {
        padding: 0 0.3rem;
    }

    .news-list li {
        padding: 1.2rem 1.5rem;
    }

    .news-title {
        font-size: 1.02rem;
        margin: 0.3rem 0;
    }

    .news-desc {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .news-date {
        font-size: 0.92rem;
    }
}

@media (max-width: 900px) {
    .about-content, .contact-content, .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .profile-image {
        height: 260px;
    }
    .nav-logo a {
        font-size: 1.1rem;
        max-width: 60vw;
        padding-right: 0.5em;
    }
}

@media (max-width: 600px) {
    .work-image {
        aspect-ratio: 1/1;
        min-height: 0;
    }
    .news-list li {
        flex-direction: column;
        padding: 1.2rem 1rem;
        font-size: 0.98rem;
    }
    .news h2 {
        font-size: 1.3rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.works-grid,
.process-steps,
.contact-content {
    animation: fadeInUp 1s ease-out;
}

/* --- News / Exhibitions Section --- */
.news {
    padding: 100px 0 80px 0;
    background: #f7f6f2;
}
.news h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #6b5b47;
    margin-bottom: 2.5rem;
    letter-spacing: 0.08em;
    text-align: center;
}
.news-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
}
.news-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(139, 122, 101, 0.07);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.08rem;
}
.news-date {
    font-family: 'Shippori Mincho', serif;
    color: #8b7a65;
    min-width: 90px;
    font-size: 1rem;
    margin-right: 0.5rem;
}
.news-title {
    color: #6b5b47;
    font-weight: bold;
    margin-right: 0.7rem;
}
.news-desc {
    font-family: 'Shippori Mincho', serif;
    color: #8b7a65;
    flex: 1 1 100%;
    margin-top: 0.2rem;
    font-size: 0.98rem;
}
.news-desc a {
    color: #8b7a65;
    text-decoration: underline;
    transition: color 0.2s;
}
.news-desc a:hover {
    color: #6b5b47;
}
.news-more {
    text-align: center;
    margin-top: 1.5rem;
}
.news-more a {
    color: #8b7a65;
    font-size: 1.05rem;
    text-decoration: underline;
    transition: color 0.2s;
}
.news-more a:hover {
    color: #6b5b47;
}

.store-intro {
    text-align: center;
    padding: 100px 0 80px 0;
    background: #f7f6f2;
}
.store-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: #6b5b47;
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
}
.store-intro p {
    font-size: 1.15rem;
    line-height: 2.1;
    color: #6b5b47;
    margin-bottom: 1.5rem;
    font-family: 'Shippori Mincho', serif;
}
.store-link {
    margin-top: 2.5rem;
}
.store-link a {
    display: inline-block;
    background: #8b7a65;
    color: #fff;
    padding: 14px 38px;
    border-radius: 24px;
    text-decoration: none;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    transition: background 0.2s;
    box-shadow: 0 4px 16px rgba(107,91,71,0.10);
}
.store-link a:hover {
    background: #6b5b47;
}

.nav-menu a, .about-text p, .work-info p, .contact-info p, .store-intro p {
    font-family: 'Shippori Mincho', serif;
}

/* Section Headers */
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #6b5b47;
    margin-bottom: 2.5rem;
    letter-spacing: 0.08em;
    text-align: center;
}

.news h2,
.store-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
        letter-spacing: 0.06em;
    }

    .news h2,
    .store-intro h2 {
        font-size: 2.2rem;
        margin-bottom: 2.2rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        letter-spacing: 0.04em;
    }

    .news h2,
    .store-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
        letter-spacing: 0.06em;
    }

    .store-intro p {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
        text-align: left;
        padding: 0 0.5rem;
    }
}

.news-list li a {
    color: #8b7a65;
    text-decoration: underline;
    transition: color 0.2s;
}

.news-list li a:hover {
    color: #6b5b47;
} 