/**
 * お問い合わせサンクスページ スタイル
 */

/* ページヘッダーの調整 */
.page-header {
    margin-top: 80px; /* ヘッダーとの間隔を確保 */
    text-align: center;
}

/* サンクスページセクション */
.thanks-page-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* サンクスアイコン */
.thanks-icon {
    margin-bottom: 40px;
}

.thanks-icon svg {
    color: #28a745;
    width: 80px;
    height: 80px;
}

/* サンクスメッセージ */
.thanks-message {
    margin-bottom: 50px;
}

.thanks-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.thanks-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 20px;
}

.thanks-note {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* サンクス情報 */
.thanks-info {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    text-align: center;
}

.thanks-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thanks-info-list li {
    position: relative;
    padding: 8px 0 8px 20px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.thanks-info-list li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* サンクスアクション */
.thanks-actions {
    text-align: center;
}

.thanks-actions .btn {
    min-width: 200px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .thanks-page-section {
        padding: 60px 0;
    }
    
    .thanks-content {
        padding: 0 20px;
    }
    
    .thanks-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .thanks-title {
        font-size: 24px;
    }
    
    .thanks-description {
        font-size: 16px;
    }
    
    .thanks-info {
        padding: 20px;
    }
    
    .thanks-info-title {
        font-size: 18px;
    }
    
    .thanks-actions .btn {
        width: 100%;
        min-width: auto;
    }
}