@charset "utf-8";

/*download*/
.download {}

.list_download {
    display: flex;
    flex-wrap: wrap;
}

.list_download .list_item {
    width: 32%;
    margin-right: 2%;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border: 1px solid #efefef;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list_download .list_item .btn {
    max-width: unset;
    width: 80%;
    margin-top: auto;
}

.list_download .list_item:nth-child(3n) {
    margin-right: 0%;
}

@media screen and (max-width: 767px) {
    .list_download .list_item {
        width: 48.7%;
        margin-right: 2%;
    }

    .list_download .list_item:nth-child(3n) {
        margin-right: 2%;
    }

    .list_download .list_item:nth-child(2n) {
        margin-right: 0%;
    }
}

@media screen and (max-width: 540px) {
    .list_download .list_item {
        width: 100%;
        margin-right: 0%;
    }

    .list_download .list_item:nth-child(3n) {
        margin-right: 0%;
    }
}


.list_download .list_item figure {
    width: 100%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-color: #efefef;
    overflow: hidden;
}

.list_download .list_item figure img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.list_download .list_item h4,
.list_download .list_item p,
.list_download .list_item .c_btn {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.list_download .list_item h4 span {
    font-size: 15px;
    display: block;
}

.list_download .list_item p {
    font-size: 14px;
}

.list_download .list_item>p:last-of-type {
    margin-bottom: 10px;
}

.list_download .list_item .c_btn {
    margin-top: auto;
}


/* faq */

.faq {
    padding-bottom: 20px;
    padding-top: 15px;
}

.faq dt {
    min-height: 2em;
    padding-left: 35px;
    padding-bottom: 10px;
    font-weight: bold;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    position: relative;
}

.faq dd {
    margin-bottom: 25px;
    padding-left: 35px;
    line-height: 1.6;
    min-height: 2em;
    position: relative;
}

.faq dt::before,
.faq dd::before {
    position: absolute;
    display: block;
    content: "Q";
    color: #fff;
    top: 0;
    left: 0;
    z-index: 5;
    text-align: center;
    width: 25px;
    line-height: 20px;
    font-size: 16px;
}

.faq dt::after,
.faq dd::after {
    content: "";
    position: absolute;
    display: block;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: #00A7E8;
    top: 0;
    left: 0;
}

.faq dd::before {
    content: "A";
    color: #000;
}

.faq dd::after {
    background-color: #E2D925;
}

.faq dd p {
    margin: 5px 0 0 0;
}

/*inquiry*/

.blue_btn {
    max-width: 450px;
    background: #00B1EB;
}

.blue_btn:hover {
    background: #FFF626;
}


/*inquiry_for_registration*/

.inquiry_for_registration .font_red.font_bold {
    line-height: 1.5;
}

#faq #main h4 {
    margin-bottom: 0.5rem;
}

#faq .page_block dl.faq:last-of-type{
    padding-bottom: 0;
}


