/* 基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ヘッダー */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo h1 {
    font-size: 1.2rem;
    color: #2c5282;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5282;
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('img/139411_0.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    color: #ffffff;
    line-height: 2;
    letter-spacing: 0.05em;
}

/* セクション共通 */
section {
    padding: 5rem 1rem;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

/* 農園について */
.about {
    background-color: #f7fafc;
}

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

.about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.main-catchphrase {
    font-size: 1.8rem;
    color: #333;
    font-weight: bold;
    margin: 2rem 0;
    line-height: 2;
    letter-spacing: 0.05em;
}

.about-text {
    text-align: left;
    margin-top: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* 摘み取り体験 */
.activity-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.info-box h3 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.activity-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.business-hours {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

/* 料金案内 */
.price-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.price-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
}

.price-box {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.price-box h3 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.price-box ul {
    list-style: none;
}

.price-box li {
    margin-bottom: 0.5rem;
}

/* アクセス */
.access {
    background-color: #f7fafc;
}

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

.map-container {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.access-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.access-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #2c5282;
}

/* お問い合わせ */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.instagram {
    background-color: #E1306C;
}

.line {
    background-color: #06C755;
}

/* フッター */
footer {
    background-color: #2c5282;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    header {
        display: none;
    }

    main {
        padding-top: 0;
    }

    .hero {
        height: 100vh;
        margin-top: 0;
    }

    .hero-content h2 {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .main-catchphrase {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-text {
        padding: 0 1rem;
    }

    .about-text p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .price-content {
        padding: 0 1rem;
    }

    .price-box {
        padding: 1rem;
    }

    .access-content {
        padding: 0 1rem;
    }

    .map-container {
        margin: 0 -1rem 2rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-links a {
        width: 100%;
        text-align: center;
    }

    .business-hours {
        flex-direction: column;
        gap: 1rem;
    }

    .activity-content {
        grid-template-columns: 1fr;
    }

    .activity-image {
        order: -1;
    }
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2c5282;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: fixed;
        top: 1rem;
        right: 1rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-overlay {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

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

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        color: #2c5282;
        font-weight: bold;
    }

    .main-nav {
        padding: 0.5rem 1rem;
    }

    .logo-link {
        gap: 0.5rem;
    }

    .logo-image {
        width: 30px;
        height: 30px;
    }

    .logo h1 {
        font-size: 1rem;
    }
} 