@charset "utf-8";
/* CSS Document */

.box_contents dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
}
.box_contents dt {
    display: inline;
    padding: 0;
    width: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
.box_contents dt.faq_q {
    color: #66b2d8;
}
.box_contents dt.faq_a {
    color: #ed8abe;
}
.box_contents dd {
    padding: 0;
    width: calc(100% - 30px);
    margin-bottom: 20px;
    padding-left: 10px;
}
.box_contents dd.faq_a_dd {
    margin-bottom: 35px;
}
/* スマホ横～ */
@media screen and (min-width:480px) {
}
/* Kindle縦～ */
@media screen and (min-width:550px) {
}
/* タブレット縦～ */
@media screen and (min-width:750px) {
}
/* PC */
@media screen and (min-width:1024px) {
    .box_contents dt {
        width: 22px;
        text-align: center;
        font-weight: bold;
        font-size: 22px;
    }
    .box_contents dd {
        width: calc(100% - 37px);
        margin-bottom: 30px;
        padding-left: 15px;
    }
    .box_contents dd.faq_a_dd {
        margin-bottom: 40px;
    }
}
/* PC */
@media screen and (min-width:1366px) {
}