/* ------------------------------------------------------------------------
    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");
    }
}

/* ------------------------------------------------------------------------
    Catalogue
------------------------------------------------------------------------  */
#CATALOGUE{}
#CATALOGUE .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap:30px;
}
#CATALOGUE .container > *{
    width: 100%;
}
#CATALOGUE .Image{
}
#CATALOGUE .Detail{
}
#CATALOGUE .Detail .SubTitle {
    font-size: 1.125em;
    font-weight: 500;
    margin-bottom: var(--space-20);
}

#CATALOGUE .Detail .Caution {
    color: red;
    font-size: .875em;
    margin-top: var(--space-20);
    margin-bottom: var(--space-20);
}
/* Btn */
#CATALOGUE .Detail .Btn:after {
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
}
#CATALOGUE .Detail .Btn.Catalogue:after {
    background-image: url("../../asset/images/icon_catalog_cl.png");
}
#CATALOGUE .Detail .Btn.Pdf:after {
    background-image: url("../../asset/images/icon_file_cl.png");
}
@media screen and (min-width:769px){
    /* hover */
    #CATALOGUE .Detail .Btn.Catalogue:hover:after {
        background-image: url("../../asset/images/icon_catalog_wh.png");
    }
    #CATALOGUE .Detail .Btn.Pdf:hover:after {
        background-image: url("../../asset/images/icon_file_wh.png");
    }
}
@media screen and (max-width:1023px){
    #CATALOGUE .Image{
        display: flex;
        justify-content: center;
    }
    #CATALOGUE .Image img{
        width: 90%;
        max-width: 600px;
    }
}
@media screen and (min-width:1024px){
    #CATALOGUE .container > *{
        max-width: 47.5%;
    }
}

/* ------------------------------------------------------------------------
    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;
}

/* ------------------------------------------------------------------------
    SPLIT
------------------------------------------------------------------------  */
/* index */
#SPLIT.none {
    display: none;
}
#SPLIT #Button{
}
#SPLIT #Button .Split_Title{
    margin: var(--space-15) 0;
    align-items: center;
    display: flex;
    color: var(--main-color);
    font-size: .875em;
}
#SPLIT #Button .Split_Title::before,
#SPLIT #Button .Split_Title::after {
    background-color: var(--main-color);
    content: '';
    flex-grow: 1;
    height: 1px;
}
#SPLIT #Button .Split_Title::before {
    margin-right: 1.5em;
}
#SPLIT #Button .Split_Title::after {
    margin-left: 1.5em;
}
/* Button */
.Btn_Area .Btn {
    padding-left: 1em;
    box-sizing: border-box;
    padding-right: 2.5em;
    line-height: 1.3em;
}