:root {
    --color-bg: #fdfcf8; /* Warm White/Beige */
    --color-text: #4a4a4a; /* Dark Gray for text */
    --color-primary: #2c3e50; /* Navy for headers/accents */
    --color-accent: #f4a261; /* Warm Orange */
    --color-sub: #8ecae6; /* Soft Blue */
    --color-white: #ffffff;
    --font-main: 'Zen Maru Gothic', 'M PLUS Rounded 1c', sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px; /* Dotted pattern */
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-logo h1 {
    font-size: 1.4rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.header-logo p {
    font-size: 0.75rem;
    color: #888;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact {
    text-align: right;
    display: none; /* Hidden on mobile */
}

@media (min-width: 769px) {
    .header-contact {
        display: block;
    }
}

.tel-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.tel-time {
    font-size: 0.75rem;
    color: #666;
}

.btn-header-primary {
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
    display: none; /* Hidden on mobile */
}

@media (min-width: 769px) {
    .btn-header-primary {
        display: inline-block;
    }
}

.btn-header-primary:hover {
    background-color: var(--color-accent);
}

/* Header Nav */
.header-nav {
    background-color: var(--color-primary);
    width: 100%;
}

.header-nav nav ul {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    list-style: none;
}

.header-nav nav a {
    display: block;
    color: #fff;
    padding: 12px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.header-nav nav a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Hamburger */
.hamburger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Mobile Nav */
@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(44, 62, 80, 0.98);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        padding: 20px 0;
    }

    .header-nav.active {
        transform: translateX(0);
    }

    .header-nav nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .header-nav nav a {
        padding: 20px;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

/* Hero Video Section */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full Screen */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0; /* Override previous margin */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    /* Fallback animation if video fails or loads slow */
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.4); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

.hero-catch-main {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.hero-desc-main {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.btn-hero-main {
    display: inline-block;
    background-color: #06c755;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.btn-hero-main:hover {
    transform: translateY(-3px);
    background-color: #05b54b;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.8;
}

.arrow {
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) rotate(45deg);}
    40% {transform: translateY(-10px) rotate(45deg);}
    60% {transform: translateY(-5px) rotate(45deg);}
}

/* Food & Cafe */
.food-cafe {
    background-color: #fff;
}

.section-lead-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

.cafe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cafe-card {
    background-color: #fdfcf8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.cafe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cafe-img {
    height: 200px;
    overflow: hidden;
}

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

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

.cafe-text {
    padding: 25px;
}

.cafe-text h4 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
    padding-bottom: 5px;
}

.cafe-text p {
    font-size: 0.95rem;
    color: #666;
}

/* Concierge */
.concierge {
    background-color: #fdfcf8;
}

.concierge-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.concierge-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.concierge-item:hover {
    border-color: var(--color-accent);
}

.concierge-icon {
    font-size: 3rem;
    background-color: #fdfcf8;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}

.concierge-detail h4 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-catch-main {
        font-size: 2.5rem;
    }
    
    .concierge-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* News */
.news {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.news-list {
    max-width: 800px;
    margin: 0 auto 30px;
    border-top: 1px solid #eee;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.news-item:hover {
    background-color: #fafafa;
    padding-left: 10px;
}

.news-date {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #888;
    font-size: 0.9rem;
    margin-right: 20px;
    min-width: 90px;
}

.news-cat {
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 4px;
    margin-right: 20px;
    min-width: 80px;
    text-align: center;
}

.news-title {
    color: var(--color-text);
    font-weight: 500;
    flex: 1;
}

.news-title:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.news-more {
    text-align: right;
    max-width: 800px;
    margin: 0 auto;
}

.btn-text {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Activity Report */
.activity {
    background-color: #fdfcf8;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.activity-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid #eee;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.activity-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

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

.activity-content {
    padding: 20px;
}

.activity-date {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 8px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.activity-title {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.activity-desc {
    font-size: 0.9rem;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activity-more {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

/* Section Common */
.section {
    padding: 80px 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.en-title {
    display: block;
    font-size: 1rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 5px;
}

.jp-title {
    font-size: 2rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.jp-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Philosophy */
.philosophy {
    background-color: #fff;
    border-radius: 20px;
    margin: 0 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.philosophy-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-lead {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

/* Features */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-img-box {
    flex: 1;
    position: relative;
}

.feature-img-box img {
    border: 10px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
}

.feature-item.reverse .feature-img-box img {
    transform: rotate(2deg);
}

.feature-info {
    flex: 1.2;
}

.feature-info h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed var(--color-accent);
    padding-bottom: 10px;
    display: inline-block;
}

/* Schedule */
.schedule {
    background-color: #fdfcf8;
}

.schedule-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
}

.schedule-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 98px;
    bottom: 40px;
    width: 2px;
    background-color: #eee;
}

.schedule-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
}

.schedule-row:last-child {
    margin-bottom: 0;
}

.time {
    width: 80px;
    font-weight: 700;
    color: var(--color-accent);
    text-align: right;
    padding-top: 5px;
    background-color: #fff; /* Hide line */
    z-index: 1;
}

.event {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.event::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -46px;
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--color-accent);
}

.event h4 {
    color: var(--color-primary);
    margin-bottom: 5px;
}

/* Price */
.price-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--color-primary);
}

.price-note {
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.price-table th, .price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.price-table th {
    background-color: #f4f4f4;
    color: var(--color-primary);
    width: 40%;
}

.price-options h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    background-color: #eef;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
}

.price-options ul {
    list-style: disc;
    padding-left: 20px;
}

/* Access */
.access-content {
    display: flex;
    gap: 40px;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.access-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #888;
}

.access-details {
    flex: 1;
}

.access-details dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.access-details dt {
    font-weight: 700;
    color: var(--color-primary);
}

.btn-line-large {
    display: block;
    background-color: #06c755;
    color: #fff;
    text-align: center;
    padding: 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 0 #05a546;
    transition: var(--transition);
}

.btn-line-large:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #05a546;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.footer-links ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .header-info {
        display: none; /* Hide info on mobile */
    }

    .nav {
        display: none; /* Hide nav on mobile initially */
    }

    .hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--color-primary);
        position: absolute;
        left: 0;
    }
    
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { bottom: 0; }

    .hero {
        margin-top: 60px;
    }

    .hero-container {
        flex-direction: column-reverse;
        padding: 40px 20px;
        text-align: center;
    }

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

    .feature-item, .feature-item.reverse {
        flex-direction: column;
        padding: 30px;
    }

    .access-content {
        flex-direction: column;
    }

    .schedule-container::before {
        left: 20px;
    }

    .schedule-row {
        flex-direction: column;
        gap: 10px;
        padding-left: 40px;
    }

    .time {
        text-align: left;
        width: auto;
    }

    .event::before {
        left: -26px;
    }
}
