main .frame {
    display: flex;
    align-items: center;
    max-width: 90vw;
    margin: 50px auto;
}
figure {
    width: 25%;
    height: auto;
    margin-left: 6%;
    margin-right: 10%;
    text-align: center;
}
figure p {
    text-align: right;
    font-size: 1rem;
}
figcaption .break {
    display: block;
    font-size: 1rem;
}
table {
    margin: 2% 0;
}
th {
    padding: 10px 0;
    vertical-align: top;
}
td {
    padding: 10px 30px;
}
/* モーダル全体 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(119, 55, 44, 0.5);
    justify-content: center;
    align-items: center;
}
/* モーダル内の画像 */
.modal img {
    max-width: 80%;
    max-height: 80%;
}
/* 閉じるボタン */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
@media (max-width:1245px) {
    main .frame {
        display: block;
    }
    figure {
        margin: 0 auto;
        padding: 8% 0% 3% 0%;
    }
    table {
        width: 85%;
        margin: 0 auto;
        padding-bottom: 8%;
    }
}