/* order.css - 新規お申し込みページ専用スタイル */

/* メインコンテンツエリア */
.l-contents {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* オーダーセクション */
.order-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 40px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00b5ad;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #00b5ad;
}

.order-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* ステップナビゲーション */
.step-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.step-nav-item {
    text-align: center;
    min-width: 120px;
}

.step-nav-number {
    background: linear-gradient(135deg, #00b5ad 0%, #00897b 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 8px;
    display: inline-block;
}

.step-nav-title {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
}

.step-nav-arrow {
    color: #00b5ad;
    font-size: 1.2rem;
    padding: 0 10px;
}

/* 注意ボックス */
.notice-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.notice-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 20px;
}

.notice-title i {
    margin-right: 10px;
}

.notice-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.notice-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: #856404;
    line-height: 1.6;
}

.notice-list li::before {
    content: "●";
    position: absolute;
    left: 10px;
    color: #ffc107;
    font-size: 0.8rem;
}

/* お申し込みボタンエリア */
.order-button-area {
    text-align: center;
    margin: 40px 0;
}

.btn-order {
    display: inline-block;
    background: linear-gradient(135deg, #fc4530 0%, #e63946 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(252, 69, 48, 0.3);
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: linear-gradient(135deg, #e63946 0%, #fc4530 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 69, 48, 0.4);
    color: #fff;
}

.btn-order i {
    margin-right: 10px;
}

/* セクションサブタイトル */
.section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00b5ad;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 5px solid #00b5ad;
}

.section-subtitle i {
    margin-right: 10px;
}

/* お手続きの流れ */
.procedure-section {
    margin: 50px 0;
}

.procedure-list {
    margin-top: 30px;
}

.procedure-item {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.procedure-item:hover {
    background-color: #e9f7f6;
    box-shadow: 0 2px 10px rgba(0, 181, 173, 0.1);
}

.procedure-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00b5ad 0%, #00897b 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.procedure-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.procedure-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* お手続きに必要なもの */
.requirements-section {
    margin: 50px 0;
}

.requirement-list {
    margin-top: 30px;
}

.requirement-item {
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    border-color: #00b5ad;
    box-shadow: 0 2px 10px rgba(0, 181, 173, 0.1);
}

.requirement-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00b5ad;
    margin-bottom: 15px;
}

.requirement-item h4 i {
    margin-right: 10px;
}

.requirement-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* 注意事項セクション */
.attention-section {
    margin: 50px 0;
}

.attention-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.attention-list li {
    padding: 15px 15px 15px 40px;
    position: relative;
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    color: #333;
    line-height: 1.6;
}

.attention-list li::before {
    content: "!";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #ffc107;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* シミュレーションセクション */
.simulation-section {
    background: linear-gradient(135deg, #00b5ad 0%, #00897b 100%);
    border-radius: 10px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.simulation-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.simulation-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.simulation-button-area {
    margin-top: 30px;
}

.btn-simulation {
    display: inline-block;
    background-color: #fff;
    color: #00b5ad;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-simulation:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #00897b;
}

.btn-simulation i {
    margin-right: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .l-contents {
        padding: 30px 0;
    }

    .order-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .order-main-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .order-intro {
        font-size: 1rem;
    }

    .step-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .step-nav-arrow {
        transform: rotate(90deg);
    }

    .notice-box {
        padding: 20px;
    }

    .notice-title {
        font-size: 1.1rem;
    }

    .btn-order {
        font-size: 1.1rem;
        padding: 15px 40px;
    }

    .section-subtitle {
        font-size: 1.3rem;
        padding-left: 15px;
    }

    .procedure-item {
        flex-direction: column;
        padding: 15px;
    }

    .procedure-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .procedure-content h4 {
        font-size: 1.1rem;
    }

    .requirement-item {
        padding: 20px;
    }

    .requirement-item h4 {
        font-size: 1rem;
    }

    .simulation-section {
        padding: 30px 20px;
    }

    .simulation-title {
        font-size: 1.5rem;
    }

    .simulation-text {
        font-size: 1.1rem;
    }

    .btn-simulation {
        font-size: 1.1rem;
        padding: 15px 40px;
    }
}
