/* eローン専用 カスタムスタイル - Premium Obsidian Black & Red */
body {
    font-family: "Noto Sans JP", sans-serif;
    background-color: #f8f9fa;
}

/* Hero Section */
#hero-loan {
    background: linear-gradient(135deg, #0f0f11 0%, #2a0808 100%);
    color: #ffffff;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

#hero-loan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/loanhero.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

#hero-loan .container {
    position: relative;
    z-index: 1;
}

.hero-ttl {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-sub-ttl {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    color: #e2e2e2;
    letter-spacing: 2px;
    border-top: 1px solid #dc3545;
    border-bottom: 1px solid #dc3545;
    display: inline-block;
    padding: 10px 30px;
}

/* Pill Tabs Navigation Customization */
.loan-tabs {
    background-color: #ffffff;
    border-radius: 50px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
}

.loan-tabs .nav-link {
    color: #555;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.loan-tabs .nav-link:hover {
    color: #dc3545;
    background-color: #ffe8ea;
}

.loan-tabs .nav-link.active {
    background-color: #dc3545;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.4);
}

/* Pricing Card */
.price-card {
    border: none;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card-header {
    background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.price-value-highlight {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    color: #dc3545;
}

.list-group-pricing .list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    border-bottom: 1px dashed #e4e4e4;
    color: #4a4a4a;
}

.list-group-pricing .list-group-item:last-child {
    border-bottom: none;
}

.list-group-pricing .price-label {
    font-weight: 500;
}

.list-group-pricing .price-amount {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
}

.list-group-pricing .total-row {
    background-color: #fdfdfd;
    border-top: 2px solid #333;
    border-bottom: none;
    margin-top: 10px;
    padding: 20px 10px;
    color: #1a1a1a;
    border-radius: 8px;
}

.list-group-pricing .total-row .price-amount {
    font-size: 1.4rem;
    color: #dc3545;
}

/* Steps Section */
.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #ffe8ea;
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.1);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc3545 0%, #900a16 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 25px;
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
}

/* Disclaimer Text */
.disclaimer-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.85rem;
    color: #6c757d;
}

.disclaimer-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.disclaimer-list li::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}

.img-placeholder {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    min-height: 250px;
    font-weight: bold;
    margin-bottom: 30px;
}