/* exchange-detail-style.css */

/* --- 詳細ページヘッダー --- */
.detail-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exchange-logo-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: #fff;
}

.detail-header h1 {
    font-size: 2.8rem;
    margin: 0;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 10px 0 30px;
}

.main-cta {
    font-size: 1.2rem;
    padding: 15px 30px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(77, 138, 255, 0.3);
}
.main-cta i {
    margin-right: 10px;
}

.cta-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* --- メリット・デメリットセクション --- */
.pros-cons-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.pros-cons-section .card h4 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.pros-cons-section .card h4 i {
    margin-right: 10px;
}
.pros-cons-section .card:first-child h4 { color: var(--positive-color); }
.pros-cons-section .card:last-child h4 { color: var(--negative-color); }

.pros-cons-section ul {
    padding-left: 20px;
    margin: 0;
    line-height: 1.8;
}

/* --- 基本情報セクション --- */
.info-section {
    padding: 30px;
    margin-bottom: 30px;
}
.info-section h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 10px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}
.info-table td {
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}
.info-table tr:last-child td {
    border-bottom: none;
}
.info-table td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
    width: 30%;
}

/* --- 口座開設手順セクション --- */
.signup-guide-section {
    padding: 30px;
}

.signup-guide-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.step-content h4 {
    font-size: 1.2rem;
    margin: 0 0 5px;
}

.step-content p {
    margin: 0;
    line-height: 1.7;
    color: var(--secondary-color);
}
.signup-guide-section .main-cta {
    display: block;
    max-width: 400px;
    margin: 30px auto 0;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
    .detail-header h1 { font-size: 2.2rem; }
    .pros-cons-section { grid-template-columns: 1fr; }
}