/* css/tokushoho.css */

.tokushoho-container {
    width: 95%;
    max-width: 900px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
}

.page-title {
    color: #2c3e50;
    font-size: 2em;
    border-bottom: 3px solid #ddd;
    padding-bottom: 15px;
    margin-top: 0;
    margin-bottom: 30px;
}

.summary-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 40px;
    padding: 15px;
    border: 1px solid #e0f2f1;
    background-color: #f0f7f4;
    border-radius: 6px;
    line-height: 1.6;
}

/* 情報セクション */
.info-section {
    margin-bottom: 30px;
}

.info-section h2 {
    font-size: 1.3em;
    color: #34495e;
    border-left: 4px solid #3498db;
    padding-left: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
}

.content-text {
    font-size: 1.05em;
    margin: 5px 0 5px 15px;
    font-weight: bold;
    color: #333;
}

.note {
    font-size: 0.85em;
    color: #999;
    margin-top: 10px;
    margin-left: 15px;
    font-style: italic;
}

/* 戻るボタン */
.back-link {
    text-align: center;
    margin-top: 50px;
}
.main-button.back-button {
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}
.main-button.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* モバイル対応 */
@media (max-width: 600px) {
    .tokushoho-container {
        padding: 20px 15px;
    }
    .page-title {
        font-size: 1.8em;
    }
    .content-text {
        margin-left: 0;
        font-size: 1em;
    }
}