/**
 * Reserve Page Styles
 *
 * @package NONKE_SPA
 * @since 1.0.0
 */

/* ==========================================================================
   予約ページ共通
   ========================================================================== */
.p-reservePage .c-sectionTitle {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto 30px;
    color: #d9d9d9;
}

/* ==========================================================================
   予約進捗表示
   ========================================================================== */
.p-reserveProgress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.p-reserveProgress::before {
    content: '';
    position: absolute;
    top: 20px; /* 円の半径（40px/2）に合わせて固定値で設定 */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.p-reserveProgress__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 30px;
    position: relative;
    z-index: 1;
}

.p-reserveProgress__item.is-active .p-reserveProgress__number {
    background: #303c09;
    color: #fff;
}

.p-reserveProgress__item.is-active .p-reserveProgress__text {
    font-weight: 700;
}

.p-reserveProgress__number {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #303c09;
    border: 2px solid #303c09;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.p-reserveProgress__text {
    font-size: 12px;
    white-space: nowrap;
    color: #d9d9d9;
}

/* ==========================================================================
   予約選択セクション
   ========================================================================== */
.p-reserveSelect {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.1);
}

.p-reserveSelect__lead {
    text-align: center;
    font-size: 16px;
    color: #d9d9d9;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.p-reserveSelect__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.p-reserveSelect__item {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.p-reserveSelect__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.p-reserveSelect__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #303c09;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-reserveSelect__icon i {
    font-size: 36px;
    color: #fff;
}

.p-reserveSelect__title {
    font-size: 24px;
    font-weight: 700;
    color: #303c09;
    margin-bottom: 16px;
}

.p-reserveSelect__text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 24px;
}

.p-reserveSelect__button {
    display: inline-block;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 768px) {
    .p-reserveProgress__item {
        margin: 0 10px;
    }
    
    .p-reserveProgress__text {
        font-size: 10px;
    }
    .p-reserveSelect {
        padding: 60px 0;
    }
    
    .p-reserveSelect__lead {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .p-reserveSelect__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .p-reserveSelect__item {
        padding: 30px 20px;
    }
    
    .p-reserveSelect__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .p-reserveSelect__icon i {
        font-size: 28px;
    }
    
    .p-reserveSelect__title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .p-reserveSelect__text {
        font-size: 13px;
        margin-bottom: 20px;
    }
}