/* ------------------------------------------------------------------------
    PAGE TITLE
------------------------------------------------------------------------  */
/* BG */
#PAGE_TITLE:before {
    background-image: url("../../images/page_title_sp.jpg");
}
@media screen and (min-width:769px){
    #PAGE_TITLE:before {
        background-image: url("../../images/page_title_pc.jpg");
    }
}

.Message {
    margin-bottom: var(--space-20);
}
.Detail a {
    display: inline;
    text-decoration: underline;
}

/* ------------------------------------------------------------------------
    License
------------------------------------------------------------------------  */
.License_Area {
    overflow-y: auto;
    height: 15em;
    padding: 1em;
    background: #fff;
}
.License_Area > *{
    margin-bottom: 1em;
}

/* ------------------------------------------------------------------------
    Manuals
------------------------------------------------------------------------  */
.Download_List {
    margin-bottom: var(--space-20);
}
.Download_List .Item{
    padding-top: .5em;
    padding-bottom: .5em;
    display: flex;
    align-items: center;
}
.Download_List .Item.Head{
    background: var(--sub2-color);
    margin-bottom: 15px;
}
.Download_List .Item.Head > *{
    text-align: center;
    font-size: .875em;
}
.Download_List .Item > *{
    width: 100%;
    box-sizing: border-box;
    line-height: 1.5em;
}
.Download_List .Item:not(.Head):not(:first-child):not(:nth-child(2)){
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px dotted var(--sub2-color);
}
.Download_List .Item > *:nth-child(1){
    padding-left: .5em;
}
.DownloadBtn {
    text-decoration: underline;
}

@media screen and (max-width:768px){
    .Download_List .Item.Head{
        display: none;
    }
    /* Width */
    .Download_List .Item > *:nth-child(1){
        width: calc(100% - 130px);
        border-right: 1px solid #fff;
    }
    .Download_List .Item > *:nth-child(2){
        width: 80px;
        text-align: center;
    }
    .Download_List .Item > *:nth-child(3){
        width: 50px;
    }
}
@media screen and (min-width:769px){
    /* Width */
    .Download_List .Item > *:nth-child(1){
        width: calc(100% - 320px);
        border-right: 1px solid #fff;
    }
    .Download_List .Item > *:nth-child(2){
        width: 120px;
        border-right: 1px solid #fff;
        text-align: center;
    }
    .Download_List .Item > *:nth-child(3){
        width: 200px;
    }
}

/* DL BTN */
.DL_Btn{
    text-align: center;
}
.DL_Btn .Btn{
    position: relative;
    width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 2em;
    
    border-radius: 5px;
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}
.DL_Btn .Btn:after{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("../../../../asset/images/icon_file_cl.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.DL_Btn .Btn,
.DL_Btn .Btn:after{
    transition: all .6s;
}
.DL_Btn .Btn span{
    font-size: .875em;
}
@media screen and (max-width:768px){
    .DL_Btn .Btn{
        height: 40px;
        width: 40px;
    }
    .DL_Btn .Btn span{
        display: none;
    }
    .DL_Btn .Btn{
        background: var(--main-color);
    }
    .DL_Btn .Btn:after{
        left: 50%;
        right: 0;
        transform: translateY(-50%) translateX(-50%);
        background-image: url("../../../../asset/images/icon_file_wh.png");
    }
}
@media screen and (min-width:769px){
    /* hover */
    .DL_Btn .Btn:hover{
        color: #fff;
        background: var(--main-color);
    }
    .DL_Btn .Btn:hover:after{
        background-image: url("../../../../asset/images/icon_file_wh.png");
    }
}


.Btn_Area{
    margin-bottom: var(--space-40);
}