@charset "utf-8";
.pdfSection {
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #dbdbdb;
    color: #363947;
}
.pdfWrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}
.pdfList {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.pdfWrap > .pdfList:only-child {
    grid-column: 1 / -1;
}
.pdfWrapTitle {
    margin: 15px 0 0;

    color: #363947;
    font-size: 1.3em;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
}
.pdfWrap .desc {
    margin: 5px 0 0;

    color: #363947;
    font-size: 1em;
    line-height: 1.7;
    text-align: center;
}
.pdfWrap .btn-area {
    width: 360px;
    max-width: 100%;
    margin: auto auto 20px;
    padding-top: 20px;
    box-sizing: border-box;
}
.pdfWrap .btn-area .button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 0.8em 1.5em;
    box-sizing: border-box;
    background-color: transparent;
    border: 2px solid #7c858e;
    border-radius: 5px;
    color: #7c858e;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, letter-spacing 0.3s;
}
.pdfWrap .btn-area .button::after {
    content: "\f56d";
    display: inline-block;
    right: 15px;
    top: 35%;
    border: none;
    color: #7c858e;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: color 0.1s;
}
.pdfWrap .btn-area .button:hover {
    background-color: #7c858e;
    color: #ffffff;
    letter-spacing: 0.1rem;
    opacity: 1;
}
.pdfWrap .btn-area .button:hover::after {
    color: #ffffff;
}

/* ========================================
   タブレット・スマートフォン
======================================== */
@media screen and (max-width: 768px) {
    .pdfWrap {
        grid-template-columns: 1fr;
        row-gap: 0;
        width: calc(100% - 30px);
    }
    .pdfWrap > .pdfList:only-child {
        grid-column: auto;
    }
    .pdfWrapTitle {
        font-size: 1.2em;
    }
    .pdfWrap .desc {
        font-size: 0.95em;
    }
    .pdfWrap .btn-area {
        width: min(365px, 96%);
    }
}