:root {
    --primary-color: #2E7D32; /* Forest Green from sign */
    --secondary-color: #A1887F; /* Brown/Earth tone */
    --accent-color: #E65100; /* Warm accent */
    --bg-color: #F9F9F9;
    --text-color: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-heading: 'Zen Maru Gothic', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

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

.header-tel {
    font-family: var(--font-heading);
    font-weight: 700;
}

.tel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    background-color: #f1f8e9;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
}

.tel-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.tel-icon {
    font-size: 1.1rem;
}

.tel-number {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Hero */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    padding: 0 1rem;
    animation: fadeIn 1.5s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Common Section */
.section {
    padding: 5rem 1rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Services */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.services-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.services-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Access */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-list {
    border-top: 1px solid #ddd;
}

.info-item {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 1.5rem 0;
}

.info-item dt {
    width: 100px;
    font-weight: 700;
    color: var(--primary-color);
}

.info-item dd {
    flex: 1;
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    text-align: center;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.map-placeholder p {
    position: absolute;
    bottom: 20px;
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #aaa;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .about-content,
    .access-content,
    .services-gallery {
        grid-template-columns: 1fr;
    }
    
    .services-gallery img {
        height: 200px;
    }
}
