.pamphlet-text{
    line-height: 1.75;
    margin-block-end: 2rem;
}

.subpage-container section .subpage-content-title {
    margin-bottom: 1rem;
}

.pamphlet-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    margin-block-end:2rem;
}

.pamphlet-grid:last-child{
    margin-block-end:0;
}

.thumbnail-wrapper picture {
    display: flex;
    aspect-ratio: 1/1;
    padding: 3rem;
    background-color: var(--c-white);

    img {
        object-fit: contain;
        aspect-ratio: 1/1;
    }
}


.pamphlet-wrapper p {
    margin-block-start: 0.75rem;
    line-height: 1;
    display: flex;
    align-items: center;
    border-bottom: 0.5px solid var(--c-gray-120);
    width: fit-content;
}

/*デスクトップサイズ以下ここから*/
@media only screen and (max-width: 991.98px) {
    .thumbnail-wrapper picture {
        padding: 2rem;
    }
}

/*タブレットサイズ以下ここから*/
@media screen and (max-width: 767.98px) {

    .thumbnail-wrapper picture {
        padding: 2rem;
    }
}

/*スマホサイズ以下ここから*/
@media only screen and (max-width: 575.98px) {

    .pamphlet-grid {
        grid-template-columns: 1fr;
    }

    .pamphlet-grid a {
        margin-block-end: 2rem;
    }

    .pamphlet-grid a:last-child {
        margin-block-end: 0;
    }
}
