@charset "utf-8";
/* CSS Document */


/*----------------------------------------------------
	☆PC
----------------------------------------------------*/

/*--- mv ---*/
#mv{
    display: flex;
    position: relative;
    height: 47vw;
    color: #fff;
}
#mv .mv01{
    width: 41%;
    background: #f0442a;
}

#mv .mv02{
    width: 59%;
    background: url("../images/mv.jpg") center top / cover no-repeat;
}

#mv .titleBox{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 41%;
}

#mv .titleBox .subCopy{
    font-size: 1.4vw;
    text-align: center;
    font-weight: 500;
    margin-top: 26px;
}


/*--- message ---*/
#message{
    position: relative;
    padding: 120px 0 180px;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}
#message .title{
    text-align: center;
    font-size: 37px;
    color:  #f0442a;
    font-weight: 400;
    margin-bottom: 70px;
}
#message .text{
    text-align: center;
    font-size: 16px;
    line-height: 2.8;
}
#message .deco01{
    width: 20%;
    left: 0;
    top: 275px;
}
#message .deco02{
    width: 20%;
    right: -5%;
    left: auto;
    top: 344px;
}
#message .deco03{
    width: 20%;
    right: 5%;
    left: auto;
    top: 724px;
}


/*--- business ---*/
#business .image01{
    width: 70%;
    margin: 0 auto 70px;
    max-width: 780px;
}
#business .companyList {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}
#business .companyList ul{
    display: flex;
    flex-wrap: wrap;  
    margin-left: 3%;
}
#business .companyList li{
    width: 30.333%;
    margin-left: 3%;
    margin-bottom: 60px;
    position: relative;
    padding-left: 40px;
}
#business .companyList li .categoryName{
    writing-mode: vertical-rl;
    position: absolute;
    right: 91%;
    top: 0;
    line-height: 1.3;
    white-space: nowrap;
}
#business .companyList li .categoryName .jp{
    font-size: 12px;
    font-weight: bold;
}
#business .companyList li .categoryName .en{
    font-size: 11px;
    margin-right: 2px;
    font-family: 'Cormorant', serif;
}
#business .companyList li.category01 .categoryName{ color: #feb800;}
#business .companyList li.category02 .categoryName{ color: #f5804c;}
#business .companyList li.category03 .categoryName{ color: #0090c4;}
#business .companyList li.category04 .categoryName{ color: #2abdc0;}

#business .companyList li .name{
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

/*--- entryBtn ---*/
.entryBtn{
    width: 80%;
    max-width: 640px;
    margin: 80px auto 120px;
}
.entryBtn a{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 42px;
    color: #fff;
    background: #f0442a;
    padding: 40px 0;
    position: relative;
    line-height: 1;
    font-family: 'Cormorant', serif;
    letter-spacing: 0.15em;
    transition: .5s;
}

.entryBtn a::after{
    content: "";
    display: block;
    width: 40px;
    height: 6px;
    background: url("../images/arrow_01.svg") center center / contain no-repeat;
    position: absolute;
    top: calc(50% - 3px);
    right: 30px;
    transition: .5s;
}

/*----------------------------------------------------
	☆Animation
----------------------------------------------------*/

#mv{
    animation: fadein 2000ms ease forwards;
}

/*----------------------------------------------------
	☆Hover
----------------------------------------------------*/
@media screen and (min-width:901px) {
    
    .entryBtn a:hover{
        transform: scale(1.05);
    }
    .entryBtn a:hover::after{
        transform: translateX(10px);
    }
    
}

/*----------------------------------------------------
	☆Tablet
----------------------------------------------------*/
@media screen and (max-width:900px) {
    
    #mv .titleBox {
        width: 48%;
    }
    
    #mv .titleBox .subCopy {
        font-size: 1.5vw;
        margin-top: 16px;
    }
    
    #message .title {
        font-size: 27px;
        margin-bottom: 50px;
    }
    #message .text{
        font-size: 15px;
        line-height: 2.5;
    }
    
    #business .companyList li{
        width: 47%;
    }
    
}

/*----------------------------------------------------
	☆SP
----------------------------------------------------*/
@media screen and (max-width:600px) {
    
    /*--- mv ---*/
    #mv{
        flex-direction: column-reverse;
        height: 150vw;
    }
    #mv .mv01,
    #mv .mv02{
        width: 100%;
        height: 50%;
    }
    #mv .titleBox {
        width: 78%;
        top: 75%;
        left: 10%;
    }
    #mv .titleBox .subCopy {
        font-size: 3.5vw;
    }
    
    /*--- message ---*/
    #message {
        padding: 60px 0 90px;
    }
    #message .title {
        font-size: 27px;
        margin-bottom: 20px;
    }
    #message .text {
        font-size: 14px;
        line-height: 2;
    }
    #message .deco{
        position: relative;
        width: 40%;
        top: 0;
        left: auto;
        right: auto;
    }
    #message .deco01{
        margin: 50px 0 0 15%;
    }
    #message .deco02{
        margin: -130px 0 0 48%;
    }
    #message .deco03{
        margin: -18px 0 0 25%;
    }
    
    
    /*--- business ---*/
    #business .image01 {
        width: 90%;
        margin-bottom: 40px;
    }
	
    #business .companyList li{
        width: 97%;
        margin-bottom: 30px;
    }
    #business .companyList li .name{
        font-size: 15px;
    }
    
    .entryBtn {
        margin: 80px auto 80px;
    }
    .entryBtn a {
        font-size: 32px;
        padding: 26px 0;
    }
	
}
