/* ------------------------------------------------------------------------
    SAMPLE
------------------------------------------------------------------------  */
.SAMPLE {
    font-weight: 500;
    font-size: .875em;
    color: red;
    margin-top: 5px;
    line-height: 1.5em;
}

/* ------------------------------------------------------------------------
    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");
    }
}

/* ------------------------------------------------------------------------
    Categories (index.php)
------------------------------------------------------------------------  */
/* Base */
.Category {
    margin-top: var(--space-20);
    margin-bottom: var(--space-20);
}
#DOWNLOAD .Category:nth-child(even){
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
    background: var(--sub4-color);
}
#DOWNLOAD .Category .Btn_Area{
    margin-top: 0!important;
    margin-bottom: 0!important;
}
#DOWNLOAD .Category .Text {
    font-size: .875em;
    color: red;
}
/* PDF */
#DOWNLOAD .Category h3 span{
    font-size: .75em;
    margin-left: .5em;
}
#DOWNLOAD .Category .Btn_Area .Btn.pdf {
    position: relative;
}
#DOWNLOAD .Category .Btn_Area .Btn.pdf: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;
}
@media screen and (min-width:769px){
    #DOWNLOAD .Category .Btn_Area .Btn.pdf:hover:after{
        background-image: url("../../asset/images/icon_file_wh.png");
    }
}

/* TOP */
#DOWNLOAD.top .Category .container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
#DOWNLOAD.top .Category .container >*{
    width: 100%;
}
@media screen and (min-width:1024px){
    /* top */
    #DOWNLOAD.top .Category .container >*{
        max-width: 47.5%;
    }
    .top .Category .Sub_Title {
        margin-bottom: 0;
    }
}

/* List */
.Category .List {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap:15px;
}
.Category .List .Item{
    width: 100%;
    border: 1px solid var(--sub2-color);
    line-height: 1.5em;
    border-radius: 5px;
    background: #fff;
}
.Category .List .Item a{
    width: 100%;
    padding-top: .75em;
    padding-bottom: .75em;
    padding-left: .75em;
}
@media screen and (min-width:769px){
    .Category .List .Item{
        max-width: 47.5%;
    }
    /* top */
    .top .Category .List {
        display: block;
    }
    .top .Category .List .Item{
        max-width: 100%;
    }
}

/* ------------------------------------------------------------------------
    Message
------------------------------------------------------------------------  */
.Message {
    margin-top: 0;
    margin-bottom: var(--space-20);
    line-height: 1.5em;
}
@media screen and (min-width:769px){
    .Message {
        margin-top: -15px;
    }
}

/* ------------------------------------------------------------------------
    Manuals
------------------------------------------------------------------------  */
.Manual_List {}
.Manual_List .Item{
    padding-top: .5em;
    padding-bottom: .5em;
    display: flex;
    align-items: center;
}
.Manual_List .Item.Head{
    background: var(--sub2-color);
    margin-bottom: 15px;
}
.Manual_List .Item.Head > *{
    text-align: center;
    font-size: .875em;
}
.Manual_List .Item > *{
    width: 100%;
    box-sizing: border-box;
    line-height: 1.5em;
}
.Manual_List .Item:not(.Head):not(:first-child):not(:nth-child(2)){
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px dotted var(--sub2-color);
}
.Manual_List .Item > *:nth-child(1){
    padding-left: .5em;
}

/* 生産終了 */
.Tag {
    display: flex;
    column-gap:1em;
}
.EOP,
.RC{
    display: inline-block;
    border-radius: 3px;
    color: #fff;
    font-size: .875em;
    padding: 0 5px;
}
.EOP{
    background: var(--main-color);
}
/* 修理終了 */
.RC{
    background: var(--color-blue);
}
.DownloadBtn {
    text-decoration: underline;
}
@media screen and (min-width:769px){
    .Tag {
        display: inline-flex;
        margin-left: 1em;
    }
}


/* OLD LIST */
.Manual_List.Old_List {
    margin-top: var(--space-20);
}
.Manual_List .Old_Title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.Manual_List .Old_Title span{
    font-weight: 500;
    padding-right: 1em;
}
.Manual_List .Old_Title:after{
    content: '';
    flex-grow: 1;
    background: var(--sub-color);
    height: 1px;
}

@media screen and (max-width:768px){
    .Manual_List .Item.Head{
        display: none;
    }
    /* Width */
    .Manual_List .Item > *:nth-child(1){
        width: calc(100% - 130px);
        border-right: 1px solid #fff;
    }
    .Manual_List .Item > *:nth-child(2){
        width: 80px;
        text-align: center;
    }
    .Manual_List .Item > *:nth-child(3){
        width: 50px;
    }
}
@media screen and (min-width:769px){
    /* Width */
    .Manual_List .Item > *:nth-child(1){
        width: calc(100% - 320px);
        border-right: 1px solid #fff;
    }
    .Manual_List .Item > *:nth-child(2){
        width: 120px;
        border-right: 1px solid #fff;
        text-align: center;
    }
    .Manual_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.Catalog:after{
    background-image: url("../../asset/images/icon_catalog_cl.png");
}
.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");
    }
    .DL_Btn .Btn.Catalog:after{
        background-image: url("../../asset/images/icon_catalog_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");
    }
    .DL_Btn .Btn.Catalog:hover:after{
        background-image: url("../../asset/images/icon_catalog_wh.png");
    }
}


.Btn_Area{
    margin-bottom: var(--space-40);
}

/* ------------------------------------------------------------------------
    Modal window
------------------------------------------------------------------------  */
#Accept_BOX ul.Accept {
    counter-reset: count 0;
    margin-bottom: var(--space-30);
}
#Accept_BOX ul.Accept li {
    padding-left: 1.5em;
	text-indent: -1.5em;
    line-height: 1.5em;
    margin-bottom: 1em;
}
#Accept_BOX ul.Accept li:before {
    content: counter(count) "). ";
	counter-increment: count 1;
}

