@charset "UTF-8";

/* =========================================
   Base Styles & Variables
   ========================================= */
:root {
    --primary-color: #4A6C45;
    /* Matcha Green */
    --accent-color: #8C9E5E;
    /* Lighter Green */
    --text-color: #333333;
    /* Dark Gray */
    --bg-color: #F9F8F6;
    /* Off-white / Washi paper feel */
    --white: #ffffff;
    --border-color: #e0e0e0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", serif;
    color: var(--text-color);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

/* =========================================
   Layout Utility
   ========================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

main.container {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f0f0f0' fill-opacity='0.6' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-position: top left;
    padding: 50px;
}

/* Background Wrapper */
.haikei {
    background-image: url("images/decoration.png");
    background-repeat: no-repeat;
    background-position: left -50px top -50px;
    background-size: 400px;
    position: relative;
    z-index: 0;
}

/* =========================================
   Header / Hero Section
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background-color: var(--white);
    background-image: url("images/decoration.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 400px;
    display: grid;
    grid-template-columns: 1.2fr 0.3fr 1fr;
    align-items: center;
    overflow: hidden;
}

.hero-circles {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.circle-large {
    width: 450px;
    height: 450px;
    top: 10%;
    left: 15%;
    z-index: 1;
}

.circle-small {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 10%;
    z-index: 2;
    border: 3px solid var(--white);
}

/* Divider */
.hero-divider {
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1.5rem;
    color: #888;
}

.divider-line {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.3em;
    border-right: 1px solid #ccc;
    padding-left: 10px;
    height: 80%;
    align-items: center;
}

.divider-line:nth-child(even) {
    margin-top: 2rem;
}

/* Text Container */
.hero-text-container {
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 3rem;
    position: relative;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.3em;
    font-family: "Shippori Mincho", serif;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.8;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    line-height: 2;
    margin-top: 2rem;
}

.text-corner-decoration {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 60px;
    height: 60px;
    border-top: 4px solid #ccc;
    border-right: 4px solid #ccc;
}

/* Seasonal Copy (PC Base) */
.seasonal-copy {
    position: absolute;
    top: -180px;
    left: 0;
    z-index: -1;
    padding: 20px;
}

.seasonal-copy p {
    font-size: calc(2rem + 9vw);
    color: #e5e5e5;
    letter-spacing: 0.2em;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

/* =========================================
   Intro Section
   ========================================= */
.intro-section {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

/* =========================================
   Features Grid
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.card-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 50% 50% 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 50% 50% 0 0;
}

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

.card-content {
    padding: 1.5rem;
    text-align: justify;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 0.8rem;
}

.card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

/* =========================================
   Info & Access Section
   ========================================= */
.info-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 0;
    background-color: transparent;
    border: none;
}

.design-box {
    position: relative;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    background-color: var(--white);
    padding: 2.5rem 2rem;
    margin-top: 1.5rem;
}

.box-label {
    position: absolute;
    top: -1.2rem;
    left: 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 4px;
    letter-spacing: 0.05em;
    transform: rotate(-2deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.box-content {
    width: 100%;
}

.box-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 0.5rem;
}

.jp-title {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    border: none;
}

.access-content {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.access-details {
    flex: 1;
}

.shop-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.address-info {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.4);
    opacity: 1;
}

.btn-instagram::before {
    content: "📷";
    margin-right: 8px;
    font-size: 1.1rem;
}

.access-map {
    width: 500px;
    flex-shrink: 0;
}

.access-map iframe {
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.news-list li {
    display: flex;
    margin-bottom: 0.8rem;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 0.5rem;
}

.news-list .date {
    font-family: "Helvetica Neue", sans-serif;
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 1.5rem;
    min-width: 90px;
}

.news-list .title {
    flex: 1;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
    background-color: #8c9e5e;
    color: #e0e0e0;
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
    border-top: 4px solid var(--accent-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.footer-logo p {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
}

.footer-nav ul {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #e0e0e0;
    transition: color 0.3s;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 5px;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.6;
    font-family: sans-serif;
    letter-spacing: 0.05em;
}

/* =========================================
   Responsive Design (Intermediate)
   980px - 1300px
   ========================================= */
@media screen and (min-width: 1125px) and (max-width: 1300px) {
    .circle-large {
        width: 380px;
        height: 380px;
    }

    .circle-small {
        width: 200px;
        height: 200px;
        bottom: 30%;
    }
}

@media screen and (min-width: 980px) and (max-width: 1125px) {
    .circle-large {
        width: 280px;
        height: 280px;
    }

    .circle-small {
        width: 200px;
        height: 200px;
        bottom: 30%;
    }
}

/* =========================================
   Responsive Design (Mobile)
   Max-width: 768px
   ========================================= */
@media (max-width: 768px) {

    /* Layout */
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
        padding-top: 2rem;
    }

    .hero-circles {
        height: 400px;
        margin-bottom: 2rem;
    }

    .circle-large {
        width: 250px;
        height: 250px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .circle-small {
        width: 150px;
        height: 150px;
        bottom: 60px;
        left: 10%;
    }

    .hero-divider {
        display: none;
    }

    .hero-text-container {
        flex-direction: row-reverse;
        padding: 3rem 1rem;
        justify-content: center;
    }

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

    .text-corner-decoration {
        right: 5%;
        top: 5%;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Info & Access */
    .info-layout {
        grid-template-columns: 1fr;
        padding: 0rem;
        gap: 2rem;
    }

    /* Access Map Mobile */
    .access-content {
        flex-direction: column;
    }

    .access-map {
        width: 100%;
    }

    /* Mobile Background Decoration */
    .haikei {
        background-size: 250px;
        background-position: left -20px top -20px;
    }

    /* Seasonal Copy Mobile (Hidden) */
    .seasonal-copy {
        display: none;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}