@charset "UTF-8";
body{
    background-color: #000;
}
#wrapper-bg{
    width: 100%;
    min-height: 100vh;
    position: relative;
    animation: fade 3s ease 0.5s 1 forwards;
    opacity: 0;
}
@media (max-width: 767px) {
    .container_basic .title_wrap{
        background-image: url(../images/message_bg_sp.png);
    }
}
@media (min-width: 767px) {
    #wrapper-bg{
        background-image: url("../images/message_bg.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top left;
        background-attachment: fixed;
    }
}
.text_box{
    width: 80%;
    max-width: 1000px;
    margin: 5% auto 0;
    padding-left: 8%;
    box-sizing: border-box;
    animation: fade 3s ease 1.5s 1 forwards;
    opacity: 0;
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.text_box p{
    letter-spacing: 0.3px;
    line-height: 2;
    word-break: break-all;
    white-space: pre-line;
}
.text_box dl{
    margin-top: 2.5em;
}
.text_box dt{
    float: left;
    line-height: 2;
}
.text_box dd{
    margin-left: 10em;
    padding-top: 20px;
}
.text_box dd > img{
    width: 100%;
    max-width: 277px;
}
@media (max-width: 767px) {
    .container_basic .contents_wrap{
        background-image: url(../images/message_bg_sp2.png);
        background-size: 100%;
    }
    .container_basic > div {
        padding-top: 23px;
    }
    .text_box{
        margin: 0 auto 50px;
        padding: 0;
    }
    .text_box p{
        font-size: 1.2rem;
    }
    .text_box dl{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .text_box dt,.text_box dd{
        width: 50%;
        max-width: 186px;
    }
}
@media (min-width: 768px) {
    .text_box p{
        font-size: 1.5rem;
    }
}