/* ------------------------------------------------------------------------
    TOP AREA
------------------------------------------------------------------------  */
#TOP_TOPAREA {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 40px;
}
#TOP_TOPAREA > *{
    width: 100%;
}
#TOP_TOPAREA #NEWS_AREA{
}
#TOP_TOPAREA #REX_GROUP{
}
@media screen and (min-width:1024px){
    #TOP_TOPAREA #NEWS_AREA{
        max-width: calc(70% - 20px);
    }
    #TOP_TOPAREA #REX_GROUP{
        max-width: calc(30% - 20px);
    }
}

/* ------------------------------------------------------------------------
    MESSAGE
------------------------------------------------------------------------  */
#MESSAGE {
    margin-top: var(--space-20);
    margin-bottom: var(--space-20);
}
#MESSAGE .Message_Area{
    border-radius: 5px;
    padding: var(--space-20) var(--space-15);
}
#MESSAGE .Title,
#MESSAGE .Message{
    display: flex;
    justify-content: center;
}
#MESSAGE .Title{
    margin-bottom: .75em;
}
#MESSAGE .Message{
    font-size: .875em;
}
#MESSAGE .Message p a{
    text-decoration: underline;
}

/* ------------------------------------------------------------------------
    REX CLUB
------------------------------------------------------------------------  */
#REX_CLUB{}
.Rex_Club_Button {
    position: relative;
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
    margin-top: var(--space-20);
    background: rgba(255,255,255,.8);
}
.Rex_Club_Button:before ,
.Rex_Club_Button:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
}
.Rex_Club_Button:before{
    background-image: url("asset/images/rexclub_bg.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    z-index: -3;
}
.Rex_Club_Button:after{
    background: #fff;
    transform: scale(1,1);
    transform-origin: right;
    transition: all 1s;
    z-index: -2;
}
.Rex_Club_Button.active:after {
    transform: scale(0,1);
}

/* ------------------------------------------------------------------------
    TOPICS
------------------------------------------------------------------------  */
.Topics_Area { position: relative;}
.Topics_List {
    width: 100%;
    margin: 0 auto;
}
.Topics_List .Item {
    margin-left: 10px;
    margin-right: 10px;
}
@media screen and (min-width:769px){
    /*
    .Topics_List {
        max-width: calc(100% - 60px);
    }
    */
}
/***** Topics Slider *****/
.Topics_Area button {
    display: none !important;
}
.Topics_Area .Topics_Arrow {
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% + 24px);
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-end;
}
@media screen and (min-width:769px){
    .Topics_Area .Topics_Arrow {
        top: 50%;
        justify-content: space-between;
    }
}
/***** Arrow *****/
.Topics_Arrow.Arr > *:first-child {
    margin-right: 15px;
}
@media screen and (min-width:769px){
    .Topics_Arrow.Arr > *:first-child {
        margin-right: 0;
    }
}



/* ------------------------------------------------------------------------
    PRODUCTS
------------------------------------------------------------------------  */
#PRODUCTS .Products_Area{
    position: relative;
    padding-top: var(--space-20);
}
#PRODUCTS .Products_Area:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: var(--sub4-color);
    width: 0;
    height: 80%;
    z-index: -2;
    
    transition: all 1s;
}
#PRODUCTS .Products_Area.active:before {
    width: 100%;
}
#PRODUCTS .Products_List{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap:10px;
    column-gap: 10px;
}
#PRODUCTS .Products_List .Item{
    box-sizing: border-box;
    background: #fff;
    border-radius: 5px;
    
    max-width: calc( (100% - (10px * 1) ) / 2);
}
#PRODUCTS .Products_List .Item .Image{
    margin-left: auto;
    margin-right: auto;
}
#PRODUCTS .Products_List .Item .Name{
    padding: 1em 1em;
    display: flex;
    justify-content: center;
    line-height: 1.3em;
}
@media screen and (min-width:769px){
    #PRODUCTS .Products_Area{
        padding-bottom: 0;
    }
    #PRODUCTS .Products_Area:before {
        height: 70%;
    }
    #PRODUCTS .Products_List{
        column-gap: 35px;
        row-gap:35px;
    }
    #PRODUCTS .Products_List .Item{
        max-width: calc( (100% - (35px * 4) ) / 5);
    }
    #PRODUCTS .Products_List .Item .Image{
        overflow: hidden;
    }
    #PRODUCTS .Products_List .Item .Image img{
        transition: all .6s;
        transform-origin: center;
    }
    #PRODUCTS .Products_List .Item:hover .Image img{
        transform: scale(1.1,1.1);
    }
    
    /* hover */
    #PRODUCTS .Products_List .Item .Image img{
        transition: all .6s;
    }
    #PRODUCTS .Products_List .Item:hover .Image img{
        opacity: .5;
    }
    #PRODUCTS .Products_List .Item .Name{
        padding: 20px 1em;
        transition: color .6s;
    }
    #PRODUCTS .Products_List .Item:hover .Name{
        color: var(--main-color);
    }
}

/***** Button *****/
#PRODUCTS .Btn_Area {
    margin-top: var(--space-30);
    margin-bottom: var(--space-30);
}


/* ------------------------------------------------------------------------
    SOLUTION
------------------------------------------------------------------------  */
#SOLUTION {
    position: relative;
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}
#SOLUTION:before,
#SOLUTION:after{
    position: absolute;
    right: 0;
    top: 40%;
    content: '';
    width: 60%;
    height: 60%;
    transition: opacity 1s, transform .6s;
	transition-delay: .3s;
	opacity: 0;
	transform: translateY(30px);
}
#SOLUTION:before {
    background-image: url("asset/images/solution_image.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -3;
}
#SOLUTION:after {
    background: rgba(255,255,255,.8);
    z-index: -2;
}
#SOLUTION.active:before,
#SOLUTION.active:after{
    opacity: 1;
	transform: translateY(0);
}

#SOLUTION .container:before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100vw;
    height: 70%;
    background: var(--sub4-color);
    z-index: -4;
    transform: scale(0,1);
    transform-origin: left;
    transition: all 1s;
}
#SOLUTION.active .container:before{
    transform: scale(1,1);
}
@media screen and (min-width:769px){
    #SOLUTION:before,
    #SOLUTION:after{
        top: 0;
        width: 50%;
        content: '';
        height: 100%;
    }
    #SOLUTION:after {
        background: rgba(0,0,0,.3);
    }
}
/* Contents */
#SOLUTION .Contents{
    width: 100%;
}
#SOLUTION .Contents .Btn_Area{
    margin-top: var(--space-30);
}
#SOLUTION .Btn_Area .Btn:not(:hover){
    background: #fff;
}
@media screen and (min-width:769px){
    #SOLUTION .Contents{
        max-width: 48%;
    }
    #SOLUTION .Contents .Title_Area .Title {
        text-align: left;
    }
    #SOLUTION .Contents .Title_Area .Title:after {
        left: 40px;
    }
}

/* ------------------------------------------------------------------------
    VISIT
------------------------------------------------------------------------  */
#VISIT {}
.Visit_Image {
    display: flex;
    justify-content: center;
}
.Visit_Image img{
    width: auto;
}

.Visit_Contents{
    position: relative;
    margin-top: var(--space-20);
    padding-bottom: 80px;
}

/* BG */
.Visit_BG {
    display: flex;
    height: 200px;
}
.Visit_BG > div{
    flex: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.Visit_BG > div:nth-child(1){
    background-image: url("asset/images/visit_image01.png");
}
.Visit_BG > div:nth-child(2){
    background-image: url("asset/images/visit_image02.png");
}
.Visit_BG > div:nth-child(3){
    background-image: url("asset/images/visit_image03.png");
}

/* Message */
.Visit_Contents .Message_Area {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.Visit_Contents .Message_Area > div{
    background: rgba(255,255,255,.9);
    padding: var(--space-20);
    border-radius: 5px;
}
.Visit_Contents .Message_Area .Btn_Area{
    margin-top: var(--space-20);
}
.Visit_Contents .Message_Area .Btn_Area .Btn:not(:hover){
    background: #fff;
}
@media screen and (min-width:769px){
    /* BG */
    .Visit_BG{
        height: 430px;
    }
    
    .Visit_Contents {
        padding-bottom: var(--space-40);
    }
    .Visit_Contents .Message_Area {
        text-align: center;
    }
}

/* ------------------------------------------------------------------------
    Movie
------------------------------------------------------------------------  */
#MOVIE {}
.Movie_Area{
    position: relative;
    padding-top: var(--space-20);
}
.Movie_Area:before{
    position: absolute;
    left: 0;
    top: 0;
    transition: all 1s;
    content: '';
    width: 100%;
    height: 70%;
    background: var(--sub4-color);
    transform: scale(0,1);
    transform-origin: left;
}
.Movie_Area.active:before{
    transform: scale(1,1);
}
.Movie_List {
    width: 100%;
    margin: 0 auto;
}
.Movie_List .Item {
    margin-left: 10px;
    margin-right: 10px;
}
#MOVIE .Btn_Area{
    margin-top: var(--space-20);
}
/* Modal */
#MOVIE_BOX .modal-content{
    max-width: 750px;
    margin: 0 auto;
    padding-top: var(--space-30);
    padding-left: var(--space-20);
    padding-right: var(--space-20);
    padding-bottom: var(--space-20);
}

/* ------------------------------------------------------------------------
    FAQ
------------------------------------------------------------------------  */
#FAQ {}
.Faq_List .Item{
    display: flex;
}
.Faq_List .Item:not(:last-child){
    margin-bottom: 1em;
}
.Faq_List .Item .Category{
    position: relative;
    width: 40px;
    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%;
    max-height: 2.5em;
    font-size: 1.125em;
    line-height: 1.5em;
    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 .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);
}

/* ------------------------------------------------------------------------
    NEWS_RELEASE
------------------------------------------------------------------------  */
#TOP_TOPAREA #NEWS_AREA{}
#TOP_TOPAREA #NEWS_AREA .News_Release{
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
/* Title */
#NEWS_AREA .Sub_Title {
    width: 100%;
}

/* News List */
#NEWS_AREA .News_Release .News_List{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
@media screen and (min-width:769px){
    #NEWS_AREA .News_Release .News_List{
    }
}
.News_List .Item:not(:last-child){
    margin-bottom: 1em;
}
.News_List,
.News_List .Item,
.News_List .Item .Contents{
    width: 100%;
}
.News_List .Item .Contents{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
@media screen and (min-width:769px){
    .News_List .Item .Contents{
        padding-left: 1em;
        padding-right: 1em;
    }
}

.News_List .Item .Contents > *{
    box-sizing: border-box;
}
.News_List .Item .Contents .Date{
    width: 100px;
    font-size: 12px;
}
.News_List .Item .Contents .Category{
    width: 120px;
    font-size: 12px;
    text-align: center;
    background: var(--main-color);
    color: #fff;
}
.News_List .Item .Contents .News{
    width: 100%;
    line-height: 1.5em;
    margin-top: 1em;
}
@media screen and (min-width:769px){
    .News_List .Item .Contents .Date,
    .News_List .Item .Contents .Category{
        font-size: 14px;
    }
    .News_List .Item .Contents .News{
        width: calc(100% - 220px);
        padding: 0 1em;
        margin-top: 0;
    }
}
/***** Category *****/
.Category{
    width: 120px;
    font-size: 12px;
    text-align: center;
}
.Category.No1{
    background: #800000 !important;
}
.Category.No2{
    background: var(--main-color) !important;
}
.Category.No3{
    background: #eea683 !important;
}
.Category.No4{
    background: #e8a2c1 !important;
}
.Category.No5{
    background: #72acee !important;
}
.Category.No6{
    background: var(--sub-color) !important;
}

/***** Button *****/
#NEWS_AREA .Btn_Area {
    margin-top: var(--space-30);
    margin-bottom: var(--space-30);
}
@media screen and (min-width:769px){
    #NEWS_AREA .Btn_Area {
        margin-top: var(--space-20);
        margin-bottom: var(--space-20);
    }
}


/* ------------------------------------------------------------------------
    CONTACT US
------------------------------------------------------------------------  */
#CONTACT_US {
    position: relative;
}
#CONTACT_US .container > *{
    width: 100%;
    box-sizing: border-box;
}

/* contents */
#CONTACT_US .Com_Name {
    font-size: 20px;
    font-weight: 300;
    color: var(--main-color);
    margin-bottom: 1em;
}
#CONTACT_US .Message {
    line-height: 1.5em;
}
#CONTACT_US .Link {
    margin-top: var(--space-20);
    margin-bottom: var(--space-20);
}
#CONTACT_US .Link a{
    padding-bottom: .5em;
    line-height: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid var(--sub-color);
    box-sizing: border-box;
}
/* Button */
#CONTACT_US .Btn_Area {
    margin-top: var(--space-20);
}
@media screen and (max-width:768px){
    #NEWS_AREA {
        margin-bottom: 0;
    }
    #CONTACT_US {
        margin-top: 0;
    }
    #CONTACT_US .container{
        padding-left: 0;
        padding-right: 0;
    }
    #CONTACT_US .Contents {
        margin-top: var(--space-20);
        padding-left: var(--container-side);
        padding-right: var(--container-side);
    }
    #CONTACT_US .Link a{
        display: block;
    }
}
@media screen and (min-width:769px){
    #CONTACT_US:before {
        position: absolute;
        left: 0;
        top: 0;
        content: '';
        width: 50%;
        height: 100%;
        background-image: url("../asset/images/contactus_image.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    #CONTACT_US .container{
        display: flex;
        justify-content: space-between;
    }
    #CONTACT_US .container > *{
        max-width: 48%;
    }
    /* Image */
    #CONTACT_US .Image {
        visibility: hidden;
    }
    /* Contents */
    #CONTACT_US .Com_Name {
        font-size: 30px;
    }
    
    #CONTACT_US .Link {
        display: flex;
        justify-content: space-between;
        column-gap:20px;
    }
    #CONTACT_US .Link a{
        flex: 1;
    }
}

