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

.eachTextAnime{
    opacity: 0;
}
.eachTextAnime.appeartext{
    opacity: 1;
}
.eachTextAnime.appeartext span{ display: inline-block; animation:1s text_anime_on  ease-out both; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}

/*section_company_profile*/
.company_profile_key_visial{
    height: 80vh;
    background-image: url(../images/company_profile/company_profile_key_visial.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.company_profile_key_visial_filter{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(0,0,0, 0.1);  
    height: 100%;
    width: 100%;
}
.company_profile_key_visial_title{
    color: #fff;
    width: 100%;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.section_company_profile{
    padding-top: 130px;
}
.section_company_profile h1{
    font-family: 'EB Garamond', serif;
    font-size: 4.8rem;
    font-weight:200;
    margin-bottom: 40px;
    
}
.section_company_profile p{
    font-size: 2.8rem;
}/*section_company_profile*/

.company_information{
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    padding: 200px 0;
}
.company_information h2{
    margin-bottom: 100px;
    font-weight: 200;
}
.company_information_list{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.company_information_list dl{
display: flex;
padding-left: 20%;
padding-bottom: 50px;
}
.company_information_list dt{
    width: 50%;
    text-align: left;
}
.company_information_list dd{
    width: 50%;
    text-align: left;
}
.company_information_list li + li {
    margin-top: 25px;
}
.c-btn{
    position: relative;
}
.c-btn::after{
    position: absolute;
    content: "";
    display: block;
    width: 90px;
    height: 1px;
    background-color: #333;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
}
.sp_br{
    display: none;
}

/*banner_link*/
.bannerlink{
    padding-bottom: 200px;
}
.bannerlink img{
    vertical-align: bottom;
}
.img_bannerlink_unit{
    display: flex;
    justify-content:space-between;
    overflow: hidden;
  background: #000;
}
.img_bannerlink_unit li{
  width: 33.333%;
  overflow: hidden;
  height: 25vw;
  position: relative;
}
.bannerlink_txt{
    position: absolute;
    left: 50%;
    z-index: 2;
    color: #000;
    transform: translateX(-50%);
    bottom: 20px;
    line-height: 2.0;
    color: #fff;
    width: 100%;
}
.img_bannerlink_unit h2{
    position: absolute;
    left: 50%;
    z-index: 2;
    color: #000;
    transform: translateX(-50%);
    bottom: 45px;
    line-height: 2.0;
    color: #fff;
    width: 100%;
}
.ImgBox-Img{
  width: 100%;
  height: 25vw;
  transition-duration: .3s;
}
@media(min-width:1200px){
    .ImgBox-Img:hover{
        transition-duration: .3s;
        transform: scale(1.2);
        opacity: .6;
    }
}/*banner_link*/

/*tablet*/
@media(max-width:768px){
    .section_company_profile{
        padding-top: 80px;
    }
    .company_profile_key_visial{
        height: 50vh;
    }
    .company_information{
        padding: 100px 0;
    }
    .company_information h2{
        margin-bottom: 80px;
    }
    .company_information_list dl{
        display: block;
        padding-left: 0;
        padding-bottom: 60px;
    }
    .company_information_list dt{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        font-size: 2.0rem;
    }
    .company_information_list dd{
        width: 100%;
        text-align: center;
    }
    .bannerlink{
        padding-bottom: 100px;
    }
}/*tablet*/

/*sp*/
@media(max-width:480px){
    .sp_br{
        display: block;
    }
    .section_company_profile{
        padding-top: 60px;
    }
    .company_profile_key_visial{
        height: 60vh;
    }
    .section_company_profile h1{
        font-size: 3.2rem;
        margin-bottom: 20px;
    }
    .section_company_profile p{
        font-size: 2.0rem;
    }
    .company_profile_key_visial_title{
        top: 70%;
        left: 0;
        transform: translate(0,0);
    }
    .company_information{
        padding: 80px 18px 40px;
    }
    .company_information h2{
        font-size: 2.0rem;
        margin-bottom: 60px;
    }
    .company_information_list dl{
        padding-bottom: 40px;
    }
    .company_information_list dt{
        font-size: 1.6rem;
    }
    .company_information_list dd{
        font-size: 1.4rem;
    }
    .company_information_list li + li{
        margin-top: 10px;
    }
    .c-btn::after{
        width: 80px;
    }
    .bannerlink{
        padding-bottom: 80px;
     }
    .img_bannerlink_unit{
        display: block;
    }
    .el_img_banner_link {
        position: relative;
        display: block;
    }
    .el_img_banner_link ::before{
        position: relative;
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: black;
        z-index: 3;
        opacity: 0.2;
    }
    .img_bannerlink_unit li{
        width: 100%;
        height: 60vw;
    }
    .ImgBox-Img{
        height: 60vw;
    }    
    .img_bannerlink_unit h2 {
        bottom: 45px;
        z-index: 3;
    }
    .bannerlink_txt{
        bottom: 15px;
        z-index: 3;
    }
}