/* ------------------------------------------------------------------------
    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");
    }
}

/* ------------------------------------------------------------------------
    NEW / Japan only
------------------------------------------------------------------------  */
.New {
    position: relative;
}
.New:before ,
.New:after {
    position: absolute;
}
.New:before{
    right: 0;
    top: 0;
    content: '';
    
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--main-color) transparent transparent;
    z-index: 1;
}
.New:after{
    right: 2px;
    top: 2px;
    content: 'New';
    font-size: .75em;
    color: #fff;
    transform: rotate(45deg);
    z-index: 2;
}

.JP_Only {
    display: inline-block;
    font-size: .75em;
    line-height: 1.8em;
    color: #fff;
    padding: 0 1.5em;
    background: #a00000;
    margin-bottom: .5em;
}

/* New Tag */
.New_Tag:before {
    position: absolute;
    left: -1em;
    top: -2em;
    content: 'New';
    font-size: 12px;
    color: #fff;
    background: var(--main-color);
    padding: 0 2em;
    line-height: 1.8em;
}

/* ------------------------------------------------------------------------
    Categories (index.php)
------------------------------------------------------------------------  */
.Categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.Categories .Item{
    width: 100%;
}
.Categories .Item.Main{
}
.Categories .Item.Contents{
}

/* Main */
.Categories .Item.Main .Image{
    border-radius: 7px;
    overflow: hidden;
}
@media screen and (max-width:768px){
    .Categories .Item.Main .Image{
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
}
@media screen and (max-width:460px){
    .Categories .Item.Main .Image{
        max-width: 250px;
    }
}
/* Contents */
.Categories .Item.Contents .List{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap:15px;
}
.Categories .Item.Contents .List li{
    width: 100%;
    border:1px solid var(--sub2-color);
    border-radius: 5px;
    overflow: hidden;
    box-sizing: border-box;
}
.Categories .Item.Contents .List li a{
    display: flex;
    align-items: center;
}


.Categories .Item.Contents .List li a div{
    width: 40px;
}
.Categories .Item.Contents .List li a p{
    margin-left: 1em;
    line-height: 1.5em;
    padding-top: 5px;
    padding-bottom: 5px;
}
@media screen and (min-width:769px){
    .Categories .Item.Main{
        max-width: 300px;
    }
    .Categories .Item.Contents{
        max-width: calc(100% - 350px);
    }
    
    /* Contents */
    .Categories .Item.Contents .List li{
        max-width: 48%;
    }
    .Categories .Item.Contents .List li a div{
        width: 60px;
    }
    .Categories .Item.Contents .List li a p{
        margin-left: 1.5em;
    }
}

/* ------------------------------------------------------------------------
    PRODUCTS TITLE (products / detail)
------------------------------------------------------------------------  */
.Products_Title {
    position: relative;
    margin-bottom: var(--space-30);
}
.Products_Title > *{
    line-height: 1.5em;
}
.Products_Title h3{
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}
@media screen and (min-width:769px){
    .Products_Title h3{
        font-size: 30px;
    }
}

/* ------------------------------------------------------------------------
    Categories Main / Products Main (products / detail)
------------------------------------------------------------------------  */
#CATEGORY_MAIN ,
#PRODUCTS_MAIN {
    border-bottom: 1px solid var(--sub3-color);
}
#PRODUCTS_MAIN {
    overflow: hidden;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
}
#CATEGORY_MAIN .container,
#PRODUCTS_MAIN .container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap:30px;
    
    margin-bottom: var(--space-30);
}
/* ITEM */
#CATEGORY_MAIN .Item,
#PRODUCTS_MAIN .Item{
    width: 100%;
}
#CATEGORY_MAIN .Item.Image,
#PRODUCTS_MAIN .Item.Image{
    display: flex;
    justify-content: center;
}
#CATEGORY_MAIN .Item.Image img,
#PRODUCTS_MAIN .Item.Image img{
    max-width: 60%;
}
/* Btn */
#CATEGORY_MAIN .Btn_Area,
#PRODUCTS_MAIN .Btn_Area{
    margin-top: var(--space-20);
}
#PRODUCTS_MAIN .Btn_Area .Btn:not(:hover){
    background: #fff;
}
@media screen and (max-width:768px){
    #CATEGORY_MAIN .Item.Image,
    #PRODUCTS_MAIN .Item.Image{
        order: 1;
    }
    #CATEGORY_MAIN .Item.Name,
    #PRODUCTS_MAIN .Item.Name{
        order: 2;
    }
    
    /* PRODUCTS */
    #PRODUCTS_MAIN .Item.Name{
        position: relative;
    }
    #PRODUCTS_MAIN .Item.Name:before{
        position: absolute;
        left: 0;
        top: 50%;
        content: '';
        width: 100vw;
        height: calc(100% + 40px);
        transform-origin: left;
        transform: translateX(-30%) translateY(-50%) scale(0,1) skewX(-20deg);
        background: var(--sub4-color);
        z-index: -2;
        transition: all 1s;
    }
    #PRODUCTS_MAIN .Item.Name.active:before{
        transform: translateX(-30%) translateY(-50%) scale(1,1) skewX(-20deg);
    }
}
@media screen and (min-width:769px){
    #CATEGORY_MAIN .Item,
    #PRODUCTS_MAIN .Item{
        max-width: 48%;
    }
    #CATEGORY_MAIN .Item.Image img,
    #PRODUCTS_MAIN .Item.Image img{
        max-width: 400px;
    }
    /* Btn */
    #CATEGORY_MAIN .Btn_Area,
    #PRODUCTS_MAIN .Btn_Area{
        justify-content:flex-start;
    }
    
    /* PRODUCTS */
    #PRODUCTS_MAIN:before {
        position: absolute;
        left: 0%;
        top: 0;
        content: '';
        width: 50%;
        height: 100%;
        background: var(--sub4-color);
        z-index: -2;
        transition: all 1s;
        transform-origin: left;
        transform: skewX(-20deg) scale(0,1) translateX(-20%);
    }
    #PRODUCTS_MAIN.active:before {
        transform: skewX(-20deg) scale(1,1) translateX(-20%);
    }
}

/* ------------------------------------------------------------------------
    Categories LINEUP
------------------------------------------------------------------------  */
#CATEGORY_LINEUP {
}
#CATEGORY_LINEUP .Btn_Area{
    margin-top: var(--space-20);
}
/* List */
#CATEGORY_LINEUP .List{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap:20px;
}
#CATEGORY_LINEUP .List .Item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Item */
#CATEGORY_LINEUP .List .Item .Image{
    width: 100px;
}
#CATEGORY_LINEUP .List .Item .Name{
    width: calc(100% - 130px);
}
#CATEGORY_LINEUP .List .Item .Name .Sub,
#CATEGORY_LINEUP .List .Item .Name .Type{
    font-size: .875em;
    line-height: 1.3em;
}
#CATEGORY_LINEUP .List .Item .Name .Title{
    font-weight: 500;
    margin-bottom: 10px;
}
@media screen and (min-width:769px){
    #CATEGORY_LINEUP .List .Item{
        max-width: 48%;
    }
    /* Item */
    #CATEGORY_LINEUP .List .Item .Image{
        width: 140px;
    }
    #CATEGORY_LINEUP .List .Item .Name{
        width: calc(100% - 170px);
    }
}

/****** SCENE *****/
#CATEGORY_LINEUP .List.Scene .Name .Title{
    position: relative;
    padding-left: 2em;
}
#CATEGORY_LINEUP .List.Scene .Name .Title:before{
    position: absolute;
    left: 0;
    top: .25em;
    content: '';
    width: 1.5em;
    height: 1.5em;
    background: var(--main-color);
    border-radius: 5px;
}
#CATEGORY_LINEUP .List.Scene .Name .Title:after{
    position: absolute;
    left: .3em;
    top: .6em;
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("../../asset/images/icon_search_wh.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* ------------------------------------------------------------------------
    Categories OTHER
------------------------------------------------------------------------  */
#CATEGORY_OTHER {
    padding-top: var(--space-30);
    padding-bottom: var(--space-30);
    margin-top: 0;
    margin-bottom: 0;
    background: var(--sub4-color);
}
#CATEGORY_OTHER .List{
    display: flex;
    flex-wrap: wrap;
    row-gap:20px;
    column-gap: 20px;
}
#CATEGORY_OTHER .List .Item{
    width: 100%;
    box-sizing: border-box;
    padding: .75em 1em;
    line-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    border-radius: 5px;
    border:1px solid var(--sub2-color);
    background: #fff;
    overflow: hidden;
}
@media screen and (min-width:769px){
    #CATEGORY_OTHER .List .Item{
        max-width: calc((100% - 40px ) / 3);
    }
}



/* ------------------------------------------------------------------------
    Products Detail
------------------------------------------------------------------------  */
#DETAIL {
}
#DETAIL .List {
    display: flex;
    flex-wrap: wrap;
    row-gap:30px;
}
#DETAIL .Item {
    width: 100%;
}
#DETAIL .Item .container{
}
#DETAIL .Item .Image{
    width: 100%;
}
#DETAIL .Item .Image img{
    border-radius: 5px;
    overflow: hidden;
}
#DETAIL .Item .Text_Area{
    width: 100%;
}
#DETAIL .Item .Text_Area .Title{
    font-weight: 500;
    margin-bottom: 1em;
    line-height: 1.5em;
    font-size: 15px;
}
@media screen and (max-width:768px){
    #DETAIL .Item .Image{
        box-sizing: border-box;
        padding-left: 1.5em;
        padding-right: 1.5em;
        margin-bottom: 1.5em;
    }
}
@media screen and (min-width:769px){
    #DETAIL .Item .container{
        display: flex;
        column-gap:30px;
    }
    /* even */
    #DETAIL .List .Item:nth-child(even) {
        background: var(--sub4-color);
        padding: 40px 0;
    }
    #DETAIL .List .Item:nth-child(even) .Image{
        order: 2;
    }
    #DETAIL .List .Item:nth-child(even) .Text_Area{
        order: 1;
    }
      #DETAIL .List .Item:nth-child(even) .Text_Area > *{
          display: flex;
          justify-content: flex-end;
    }
    #DETAIL .List {
        row-gap:40px;
    }
    #DETAIL .Item .container{
        align-items: center;
    }
    #DETAIL .Item .Image{
        max-width: 340px;
    }
    #DETAIL .Item .Text_Area{
    }
    #DETAIL .Item .Text_Area .Title{
        font-size: 18px;
    }
}

/* ------------------------------------------------------------------------
    SPECIFICATIONS
------------------------------------------------------------------------  */
#SPECIFICATIONS {}
#SPECIFICATIONS .Spec_Title{
    padding: .5em 1em;
    background: var(--sub3-color);
}
#SPECIFICATIONS .Btn_Area{
    margin-top: var(--space-20);
}

/* ------------------------------------------------------------------------
    PRODUCTS_VIDEO
------------------------------------------------------------------------  */
#PRODUCTS_VIDEO {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
    background: var(--sub4-color);
}
#PRODUCTS_VIDEO .container .Movie_wrap{
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    
    margin-bottom: var(--space-20);
}
#PRODUCTS_VIDEO .Btn_Area .Btn:not(:hover){
    background: #fff;
}

/* ------------------------------------------------------------------------
    SEARCH
------------------------------------------------------------------------  */
#SEARCH_AREA {
    background: var(--main-color);
    padding-top: var(--space-30);
    padding-bottom: var(--space-30);
    margin-bottom: 0 !important;
    margin-top: 0;
}
#SEARCH_AREA .Message{
    color: #fff;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-20);
    line-height: 1.5em;
}
#SEARCH_AREA .Search_Type{
    display: flex;
    flex-wrap: wrap;
    column-gap:var(--space-20);
    row-gap: var(--space-20);
}
#SEARCH_AREA .Search_Type .Item{
    width: 100%;
}
@media screen and (min-width:769px){
    #SEARCH_AREA .Search_Type .Item{
        width: auto;
        flex: 1;
    }
}


/* ------------------------------------------------------------------------
    PICKUP
------------------------------------------------------------------------  */
#PICKUP { position: relative;}
.Pickup_List {
    width: 100%;
    margin: 0 auto;
}
.Pickup_List .Item {
    margin-left: 10px;
    margin-right: 10px;
}


/* ------------------------------------------------------------------------
    FAQ
------------------------------------------------------------------------  */
#FAQ {}
.Faq_List .Item:not(:last-child){
    margin-bottom: 1em;
}
.Faq_List .Item .Category{
    position: relative;
    width: 180px;
    border: 1px solid var(--main-color);
    padding-left: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    background: #fff;
    color: var(--main-color);
}
.Faq_List .Item .Category:before{
    position: absolute;
    left: 0;
    top: 0;
    content: 'Q';
    width: 40px;
    height: 100%;
    font-size: 1.125em;
    line-height: 1em;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    color: #fff;
}
.Faq_List .Item .Title{
    box-sizing: border-box;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 1em;
    color: var(--main-color);
    line-height: 1.5em;
}
#FAQ .Btn_Area{
    margin-top: var(--space-20);
}
@media screen and (min-width:769px){
    .Faq_List .Item{
        display: flex;
    }
    .Faq_List .Item .Category:before{
        font-size: 1.25em;
    }
    .Faq_List .Item .Name{
        width: calc(100% - 40px);
    }
    .Faq_List .Item .Title{
        
    }
}

/* ------------------------------------------------------------------------
    DOWNLOAD
------------------------------------------------------------------------  */
#DOWNLOAD {
}
.Download_List {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 1em;
}
.Download_List .Item{
    width: 100%;
}
.Download_List .Item .Category{
    width: 125px;
    background: var(--main-color);
    color: #fff;
    font-size: 12px;
    text-align: center;
}
.Download_List .Item .Title{
    padding-left: 1em;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 1.5em;
}
@media screen and (min-width:769px){
    .Download_List .Item{
        max-width: 48%;
        display: flex;
        align-items: flex-start;
    }
    .Download_List .Item .Title{
        width: calc(100% - 125px);
    }
}
#DOWNLOAD .Btn_Area{
    margin-top: var(--space-20);
}



