/* static/styles.css の改良版 */
:root {
    --primary-color: #2A5C82;
    --secondary-color: #5BA4E6;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f8f9fa;
}

.gradient-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.brand-logo {
    height: 40px;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.step-progress {
    display: flex;
    justify-content: center; /* 中央揃え */
    gap: 4rem; /* アイテム間の間隔を広げる */
    padding: 0 20px;
}

.step-item {
    position: relative;
    flex-shrink: 0; /* 縮小を防止 */
}

.step-item::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -50px; /* 線の位置調整 */
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

.step-item:first-child::before {
    display: none;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.step-item.active .step-icon {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.alert {
    border-radius: 10px;
}

.input-group-text {
    background: var(--primary-color);
    color: white;
    border: none;
}

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .step-progress {
        gap: 2rem;
    }
    
    .step-item::before {
        left: -35px;
        width: 30px;
    }
}

/* static/styles.css に追加するスタイル */
.verification-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

.detail-content h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-animation {
    position: relative;
    margin: 0 auto 2rem;
    width: 100px;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--success-color);
    animation: scaleUp 0.5s ease;
}

.checkmark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    height: 50px;
    width: 25px;
    border-bottom: 4px solid white;
    border-right: 4px solid white;
}

@keyframes scaleUp {
    0% { transform: scale(0); }
    90% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #dee2e6;
    z-index: 0;
}

.step {
    text-align: center;
    z-index: 1;
    position: relative;
}

.step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    color: white;
}

.step.completed .step-icon {
    background: var(--success-color);
}

.step.active .step-icon {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.instruction-card {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.instruction-card ol {
    padding-left: 1.5rem;
}

.instruction-card li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

/* static/styles.css に追加 */
.info-label {
    display: inline-block;
    min-width: 80px;
    color: var(--primary-color);
    margin-right: 15px;
}

.info-value {
    font-weight: 500;
    color: var(--text-color);
}

.detail-item .row {
    margin-left: -5px;
    margin-right: -5px;
}

.detail-item .col-12 {
    padding: 5px 15px;
    border-bottom: 1px solid var(--border-color);
}

.detail-item .col-12:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .info-label {
        min-width: 70px;
        margin-right: 10px;
    }
}