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

:root {
    --primary-color: #c8411f;
    --secondary-color: #2d5016;
    --accent-color: #f9662d;
    --bg-light: #fefef8;
    --bg-beige: #ebe7cb;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-beige);
}

.section-title {
    font-family: 'Asap', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.lead-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #a03319;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.brsp {
    display: none;
}

header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-family: 'Asap', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.logo a {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.viewer {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slide-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

#introduction .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#introduction p {
    margin-bottom: 20px;
}

.news-container {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.news-list {
    flex: 2;
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-item time {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 20px;
}

.holiday-info {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.holiday-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.holiday-info i {
    margin-right: 8px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-category {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.menu-category h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.menu-category .time {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.menu-list {
    list-style: none;
    margin-bottom: 15px;
}

.menu-list li {
    padding: 10px 0;
    border-bottom: 1px dotted var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-list li:last-child {
    border-bottom: none;
}

.price {
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.plan-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

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

.plan-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.plan-content {
    flex: 1;
}

.plan-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.plan-content p {
    margin-bottom: 20px;
}

.price-info {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.access-info h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.access-info dl {
    margin-top: 20px;
}

.access-info dt {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
}

.access-info dd {
    margin-left: 25px;
    margin-bottom: 10px;
}

.tel-link {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-method {
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-method i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-method h3 {
    margin-bottom: 20px;
}

.tel-number {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tel-number a {
    color: var(--primary-color);
    font-weight: 700;
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: 'Asap', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
}

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

@media (max-width: 767px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .viewer {
        height: 50vh;
    }
    
    .news-container {
        flex-direction: column;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-item,
    .plan-item.reverse {
        flex-direction: column;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .brsp {
        display: block;
    }
    
    .brpc {
        display: none;
    }
    
    .tel-link {
        pointer-events: auto;
    }
}

@media (min-width: 768px) {
    .tel-link {
        pointer-events: none;
    }
}