/*
 * 固定ページ専用CSS
 * About（店舗案内）、Contact（お問い合わせ）、Menu（メニュー）など
 */

/* ==========================================================================
   ページヘッダー
   ========================================================================== */

.page-header {
    background: linear-gradient(135deg, #74ACDD 0%, #3498db 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    animation: fadeInUp 0.8s ease;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ==========================================================================
   メインコンテンツ
   ========================================================================== */

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
    line-height: 1.8;
}

.page-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #74ACDD;
}

.page-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.page-content p {
    margin-bottom: 20px;
    color: #555;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 20px;
}

.page-content li {
    margin-bottom: 8px;
    color: #555;
}

/* ==========================================================================
   店舗案内ページ専用
   ========================================================================== */

.store-info-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.store-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.store-info-item h4 {
    color: #74ACDD;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-info-item p {
    margin: 0;
    color: #555;
}

.store-map {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.store-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ==========================================================================
   お問い合わせページ専用
   ========================================================================== */

.contact-form-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #74ACDD;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background-color: #74ACDD;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #5a9bd4;
    transform: translateY(-2px);
}

/* 必須マーク */
.required {
    color: #e74c3c;
    margin-left: 3px;
}

/* ==========================================================================
   メニューページ専用
   ========================================================================== */

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

.menu-category {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
}

.menu-category-header {
    background: linear-gradient(135deg, #74ACDD 0%, #3498db 100%);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.menu-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.menu-items {
    padding: 25px;
}

.menu-item {
    /* display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0; */
    border-bottom: 1px solid #f1f2f3;
}

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

.menu-item-info h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.menu-item-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.menu-item-price {
    color: #74ACDD;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 15px;
}

/* ==========================================================================
   レスポンシブデザイン
   ========================================================================== */

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .page-content {
        padding: 0 15px 40px;
    }

    .store-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .store-info-section {
        padding: 25px;
    }

    .contact-form-section {
        padding: 25px;
    }

    .menu-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .menu-item-price {
        margin-left: 0;
    }

    .store-map iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 50px 0 30px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }

    .menu-items {
        padding: 20px;
    }

    .menu-category-header {
        padding: 15px;
    }

    .submit-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   アニメーション
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ページコンテンツのアニメーション */
.page-content>* {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.page-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.page-content>*:nth-child(2) {
    animation-delay: 0.2s;
}

.page-content>*:nth-child(3) {
    animation-delay: 0.3s;
}

.page-content>*:nth-child(4) {
    animation-delay: 0.4s;
}

.page-content>*:nth-child(5) {
    animation-delay: 0.5s;
}

/* メニューカテゴリのアニメーション */
.menu-category {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.menu-category:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-category:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-category:nth-child(3) {
    animation-delay: 0.3s;
}

.menu-category:nth-child(4) {
    animation-delay: 0.4s;
}