/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'M PLUS Rounded 1c', sans-serif; /* 親しみやすい丸ゴシック */
    color: #444;
    line-height: 1.8;
    background-color: #fffaf0; /* クリームがかった白 */
}

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

a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff9900; /* 明るいオレンジ */
}

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

/* ヘッダー */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-title {
    font-family: 'Homemade Apple', cursive; /* 手書き風フォント */
    font-size: 38px;
    font-weight: 400;
    color: #ff9900; /* 明るいオレンジ */
    letter-spacing: 1px;
}

.site-title a {
    color: inherit; /* 親の色を継承 */
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin-left: 35px;
}

.nav-list a {
    font-weight: 500;
    font-size: 17px;
    color: #666;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #ff9900;
    transition: width 0.3s ease;
}

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

.btn {
    display: inline-block;
    background-color: #ff9900; /* 明るいオレンジ */
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px; /* 丸みを帯びたボタン */
    font-size: 18px;
    transition: background-color 0.3s ease;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(255,153,0,0.3);
}

.btn:hover {
    background-color: #e68a00;
    box-shadow: 0 5px 12px rgba(255,153,0,0.4);
}

.btn-dark {
    background-color: #888;
    border-radius: 5px;
    box-shadow: none;
}
.btn-dark:hover {
    background-color: #666;
}

.btn-small {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
}

/* 各セクション共通スタイル */
.section {
    padding: 90px 0;
    text-align: center;
}

.section:nth-of-type(even) { /* 偶数番目のセクションの背景色 */
    background-color: #fcf6e9; /* やや濃いクリーム色 */
}

.section h2 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 44px;
    margin-bottom: 60px;
    position: relative;
    color: #333;
    font-weight: 700;
}
/* h2の下線 */
.section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #ff9900;
    border-radius: 2px;
}


/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 650px;
    background-image: url('../images/hero_cafe.jpg'); /* ヒーロー画像を設定 */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    text-align: center;
    overflow: hidden; /* 画像がはみ出さないように */
}

.hero-content h2 {
    font-size: 60px;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 26px;
    margin-bottom: 50px;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* ABOUT USセクション */
.about-section p {
    font-size: 19px;
    margin-bottom: 60px;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ff9900;
    font-weight: 700;
}
.feature-item p {
    font-size: 17px;
    color: #777;
    margin-bottom: 0;
}

/* メニューセクション */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.menu-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease;
}
.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.menu-item h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.menu-item p {
    font-size: 17px;
    color: #666;
    margin-bottom: 15px;
}

.menu-item .price {
    font-size: 24px;
    font-weight: 700;
    color: #ff9900;
    display: block;
    text-align: right;
}

/* ギャラリーセクション */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.03);
}

/* アクセスセクション */
.access-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.access-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.access-info h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #ff9900;
    font-weight: 700;
}

.access-info p {
    margin-bottom: 15px;
    font-size: 18px;
    color: #555;
}

.access-map {
    flex: 1;
    min-width: 300px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* フッター */
.footer {
    background-color: #444;
    color: #eee;
    padding: 35px 0;
    text-align: center;
    font-size: 15px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.sns-links a {
    color: #eee;
    margin-left: 20px;
    font-size: 18px;
}

.sns-links a:hover {
    color: #ff9900;
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    .site-title {
        margin-bottom: 15px;
    }
    .nav-list {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-list li {
        margin: 0 15px 10px;
    }
    .hero-content h2 {
        font-size: 48px;
    }
    .hero-content p {
        font-size: 22px;
    }
    .section {
        padding: 70px 0;
    }
    .section h2 {
        font-size: 38px;
        margin-bottom: 50px;
    }
    .access-content {
        flex-direction: column;
    }
    .footer .container {
        flex-direction: column;
        gap: 15px;
    }
    .sns-links {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 32px;
    }
    .nav-list li {
        margin: 0 10px 8px;
        font-size: 15px;
    }
    .hero-content h2 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    .section h2 {
        font-size: 30px;
    }
    .menu-item img {
        height: 220px;
    }
    .menu-item h3 {
        font-size: 22px;
    }
    .menu-item .price {
        font-size: 20px;
    }
    .gallery-grid img {
        height: 200px;
    }
}
    /* 予約フォームセクション */
    .reservation-section {
        padding: 80px 0;
        background-color: #f8f8f8;
    }
    
    .reservation-form {
        max-width: 600px;
        margin: 0 auto;
        background-color: #fff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        text-align: left; /* フォーム内の要素は左寄せ */
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        display: block;
        font-size: 17px;
        font-weight: 500;
        margin-bottom: 8px;
        color: #333;
    }
    
    .form-group .required {
        color: #e74c3c; /* 赤色で必須マーク */
        font-size: 14px;
        margin-left: 5px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="number"],
    .form-group input[type="date"],
    .form-group select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        color: #555;
        background-color: #fcfcfc;
        transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        border-color: #ff9900; /* フォーカス時の色 */
        outline: none;
        box-shadow: 0 0 5px rgba(255,153,0,0.2);
    }
    
    .btn-submit {
        display: block;
        width: 100%;
        padding: 15px 0;
        margin-top: 30px;
        font-size: 20px;
        cursor: pointer;
        border: none;
        text-align: center;
    }
    
    /* レスポンシブ対応 */
    @media (max-width: 600px) {
        .reservation-form {
            padding: 25px;
        }
        .form-group input,
        .form-group select {
            padding: 10px 12px;
            font-size: 15px;
        }
        .btn-submit {
            font-size: 18px;
            padding: 12px 0;
        }
    }