@charset "utf-8";
/* 私たちが大切にしていく考え */


/*---------------
 コンテンツ部分
-----------------*/
.contentArea{
 margin: 100px 0 150px;
 text-align: center;
}
.contentArea p{
 font-size: 1.4rem;
 line-height: 2.7rem;
}
.contentArea h2{
 font-size: 2.6rem;
 letter-spacing: 0.1em;
 margin-bottom: 35px;
}

.contentArea a{
 position: relative;
 display: inline-block;
 background-color: #000;
 overflow: hidden;/*Edge IEの崩れ防止*/
}
.contentArea a img{
 display: block;
 opacity: 0.6;
 transition: opacity 0.3s;
}
.contentArea a:hover img{ opacity: 0.4;}
.contentArea a::after{
 content: "";
 background-repeat: no-repeat;
 background-position: center;
 background-size: contain;
 width: 44px;
 height: 44px;
 position: absolute;
 top: calc(50% - 22px);
 left: calc(50% - 22px);
}
.contentArea a.mindImg::after{ background-image: url("/company/images/mind/icon_plus.png");}
.contentArea a.conceptMovie::after{ background-image: url("/company/images/mind/icon_play.png");}
.contentArea a.mindImg{ margin: 90px 0 109px;}
.contentArea a.conceptMovie{ margin-top: 45px;}



