@charset "utf-8";
main {
    text-align: center; /* インライン要素（img）を中央寄せ */
}

main img {
    display: block;
    margin: 0 auto; /* ブロック要素として中央寄せ */
    margin-top: 30px;
    margin-bottom: 30px;
}
main p {
    font-size: 30px;
    padding-bottom: 30px;
}
main p a {
    color: #0f9c89;
}
.framed-section {
    border: 2px solid #2c3e50;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%; /* 全体を少し広げる */
    margin-left: auto;
    margin-right: auto;
}

.framed-section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}

.info-table th {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    width: 30%; /* th の幅を広くする */
    font-weight: 600;
}

.info-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.info-table tr:nth-child(even) {
    background-color: #f9f9f9;
}