@charset "utf-8";

/* cover */
#cover {
    width: 100%;
}
.swiper-wrapper .swiper-slide {
    width: 100%;
    height: 600px;
    max-height: 100%;
    overflow: hidden;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* main */
.intro {
    padding: 0 4rem;
}

.movie_box {
    position: relative;
    width: 100%;
}
.movie_box img {
    width: 100%;
}
.movie_box i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 77px;
    color: #fff;
}

.link_box {
    padding: 85.5px 0;
    background: rgba(0,0,0,.5);
    color: #fff;
}
.link_box_item01 {
    width: 62.857%;
    margin: 0 auto;
    font-size: 44px;
    font-weight: 600;
    border-bottom: 1px solid #fff;
}
.link_box_item02 {
    font-size: 28px;
}
.link_box_bg {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 280px;
}
.link_box_bg[img01] {
    background-image: url(../images/btnmenu_img01.jpg);
}
.link_box_bg[img02] {
    background-image: url(../images/btnmenu_img02.jpg);
}
.link_box_bg[img03] {
    background-image: url(../images/btnmenu_img03.jpg);
}
.link_box_bg a {
    background-color: rgba(0,0,0,0.6);
    height: 280px;
}

.news {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 55px 40px;
    text-align: left;
}
.news h2 {
    font-size: 25px;
    padding-bottom: 8px;
    border-bottom: 1px solid #b2b2b2;
    margin-bottom: 16px;
}
.news_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 1rem;
    padding-left: 1rem;
}
.news_inner dt {
    width: 20%;
    padding: 1rem 0;
    margin-right: 2rem;
}
.news_inner dd {
    width: 70%;
    padding: 1rem 0;
}

.info_box .corp_name {
    font-size: 57px;
    font-weight: 800;
    line-height: 1.2;
}
.info_box .corp_name span {
    font-size: 43px;
    font-weight: 800;
    margin-right: 8px;
}
.info_box .phone_no {
    font-size: 41px;
    font-weight: 800;
    color: #006834;
}
.to_form_btn {
    width: 50%;
    margin: 0 auto 16px;
    color: #fff;
    padding: 10px;
    font-size: 23px;
    border-radius: 2px;
}
/*きらっと光る*/
.btnshine{
    /*キラッと光る基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/	
	display:inline-block;
    background: #006834;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    outline: none;
    overflow: hidden;
}
/*キラッと光る*/
.btnshine::before {
	content: '';
    /*絶対配置でキラッと光るの位置を決める*/
	position: absolute;
	top: 0;
	left: -75%;
    /*キラッと光る形状*/
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(0,105,52,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}
/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
	animation: shine 0.7s;
}
@keyframes shine {
	100% {
		left: 125%;
	}
}