/* タカトクWEBのご利用方法ページ専用CSS */

.help-container {
    max-width: 1200px;
    margin: 40px 80px;
    background-color: #ffffff;
    line-height: 1.6;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}
.ec-layoutRole__main{
    background-color: #FFF;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    
}
/* ヘッダー部分 */


.help-title {
    background:#8f7a37;
    color: white;
    padding: 24px 32px;
    margin: 0 0 0px 0;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
    line-height: normal;
}

.help-header-image {
    width: 100%;
    overflow: hidden;
}

.help-header-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* セクション */
.help-section {
    margin-bottom: 40px;
}

.help-section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #8f7a37;
    margin-top: 40px;
}

.help-subsection {
    margin: 20px 0;
}

.help-subsection-title {
    font-size: 16px;
    font-weight: bold;
    color: #b8860b;
    margin-bottom: 10px;
}

.help-text {
    font-size: 14px;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.8;
}

.help-text a{
    color: #8f7a37;
}

.help-text a:hover{
        color: #4A90E2;
        transition: all 0.3s ease;
        text-decoration: underline
    }

.help-list {
    margin: 10px 0;
    padding-left: 0;
    list-style: none;
}

.help-list li {
    font-size: 14px;
    color: #333333;
    margin-bottom: 5px;
    line-height: 1.6;
}

/* 支払い方法セクション */
.payment-method {
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.payment-title {
    background-color: #f5f5f5;
    padding: 12px 15px;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.new-badge {
    background-color: #ff6b35;
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 10px;
    font-weight: bold;
}

.payment-content {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.payment-image {
    flex-shrink: 0;
    width: 200px;
}

.payment-image img {
    width: 100%;
    height: auto;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.payment-description {
    flex: 1;
}

.payment-description a{
    color: #8f7a37;
}

.payment-description a:hover{   
    color: #4A90E2;
    transition: all 0.3s ease;
    text-decoration: underline
}


.payment-description p {
    font-size: 14px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

/* 銀行振込情報 */
.bank-info {
    background-color: #f9f9f9;
    border: 1px solid #8f7a37;
    padding: 10px 25px;
    margin-top: 15px;
    border-radius: 3px;
    width: fit-content;
    font-weight: bold;
}

.bank-info p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* リンク */
.help-link {
    color: #0066cc;
}

.help-link:hover {
    color: #004499;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .help-container {
        padding: 15px;
        margin: 10px;
    }
    
    .help-title {
        font-size: 20px;
        padding: 12px 15px;
    }
    
    .payment-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .payment-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .help-section-title {
        font-size: 18px;
        margin-top: 0;
    }
    
    .payment-title {
        font-size: 14px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .help-container {
        padding: 0.5rem;
        margin: 1rem auto;
    }
    
    .help-title {
        font-size: 18px;
        padding: 1rem;
    }
    
    .help-text {
        font-size: 13px;
    }
    
    .payment-description p {
        font-size: 13px;
    }
    .help-section {
    padding: 1rem;
    margin-bottom: 1rem;
    }
}
