@charset "utf-8";
#mainimg{
	margin: 0 auto;
	width: 100%;
	position: relative;
	overflow: hidden;
}
#mainimg video{
	width: 100%;
	overflow: hidden;
}

/*スクロールダウン全体の場所*/
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:10px;
	right:50%;
    /*マウスの動き1.6秒かけて動く永遠にループ*/
	animation:mousemove 1.6s ease-in-out infinite;
}

/*下からの距離が変化して上から下に動く*/
@keyframes mousemove{
      0%{bottom:10px;}
      50%{bottom:5px;}
     100%{bottom:10px;}
 }

/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	bottom:45px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
}

/*マウスの中の線描写 */
.scrolldown span::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top:10px;
	left:17px;
    /*線の形状*/
	width: 1px;
	height: 15px;
	background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: mousepathmove 1.4s linear infinite;
	opacity:0;
}
.s_rec_bnr{
	position: absolute;
	width: 70px;
	top:10vw;
	right:-7px;
}
.s_rec_bnr img:hover{
	-webkit-transform: translateY(-3px);
	        transform: translateY(-3px);
}

/*上からの距離・不透明度・高さが変化して上から下に流れる*/
@keyframes mousepathmove{
	0%{
		height:0;
		top:10px;
		opacity: 0;
	}
	50%{
		height:15px;
		opacity: 1;
	}
	100%{
		height:0;
		top:30px;
		opacity: 0;
	}
}

/*マウスの描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-10px;
    /*マウスの形状*/
	width:25px;
	height:37px;
	border-radius: 10px;
	border:1px solid #eee;
}


/*マウスの中の丸の描写*/
.scrolldown:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:26px;
	left:0;
    /*丸の形状*/
	width:5px;
	height: 5px;
	border-radius: 50%;
	border:1px solid #eee;
}



/*トップsubttl*/
.top_ttl {
	width: 18rem;
	padding:15px 0 ;
	text-align: center;	/*内容をセンタリング*/
	font-size:1.5rem;
	font-weight: 400;
	color: #323232;
	border: 1px solid #323232;
	border-radius:40px;
	line-height: 25px;	/*高さ*/
	background-color: #fff;
	margin:30px auto 40px;
}
/*-------------------------トップニュース設定----------------------------------------*/
.topnews_area{
	width: 90%;
	display: flex;
	justify-content: center;
	margin: 40px auto;
	flex-wrap: wrap;
	max-width: 1200px;
	height: 280px;
	overflow: hidden;
	
}

/*ボックス１個あたりの設定*/

.topnews_item{
	position: relative;
	top:0;
	width: 20%;		/*幅*/
	padding: 0 20px 0 100px;
	background: #fff;	/*背景色*/
	border: 1px solid #d4d4d4;/*枠線の幅、線種、色*/
	border-radius: 8px;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
	background-position: left;
	background-size: contain;
	background-repeat: no-repeat;
	height: 96px;
	margin: 14px 1%;
}
.topnews_time{
	width: 100%;
	font-size: 0.9rem;
	color: #826c4f;
	font-weight: 400;
	text-align: left;
	padding-top: 10px;
}
.topnews_item a{
	text-decoration: none;
	color: #323232; 
}
.topnews_cont{
	width: 100%;
	font-size: 1.0rem;
	color: #323232;
	font-weight: 400;
	text-align: left;
	line-height: 1.4rem;
}
.topnews_item:hover {
	top:-3px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.cat_1{
	background-image: url("../images/news_icon/i_news.png");
}
.cat_2{
	background-image: url("../images/news_icon/g_news.png");
}
.cat_3{
	background-image: url("../images/news_icon/g_news2.png");
}
.cat_4{
	background-image: url("../images/news_icon/g_news3.png");
}
.cat_5{
	background-image: url("../images/news_icon/w_news.png");
}
/*ボタンの形状*/
.btn_area{
	width:80%;
	margin: 0 auto 50px;
	display: flex;
	justify-content: center;
}
.to_news_btn{
	font-size: 1.3rem;
	font-weight: 300;
	width: 200px;
	position:relative;
	top:0;
    padding:10px 70px 10px 20px;
    display: inline-block;
    background-color: #323232;
	border-radius: 5px;
    color: #fff;
    text-decoration: none;
	background-image: url("../images/news_icon/btn_bg.png");
	background-position: right;
	background-size: contain;
	background-repeat: no-repeat;
    outline: none;
    /*アニメーションの設定*/
    transition: all .3s;
	margin: 10px 20px;
}
.to_news_btn a{
	text-decoration: none;
	color: #fff;
}
/*hoverをしたらボックスに影がつき、上に上がる*/
.to_news_btn:hover{
	top:-3px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

/*コンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
.list_box{
	display: flex;
	justify-content: space-between;
	margin: 40px auto;

}
/*ボックス１個あたりの設定*/

.list {
	width: 31.33%;		/*幅*/
	background: #fff;	/*背景色*/
	border: 1px solid #d4d4d4;/*枠線の幅、線種、色*/
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	
}

.list a{
	display: block;
	text-decoration: none;
	color: #333;
}
.list a:hover {
	background: #EBF7FF;	/*マウスオン時の背景色*/
	color: #000;		/*マウスオン時の文字色*/
}
.list img{
	width: 100%;
}

.scale {
    width: 100%;
    overflow: hidden;
}
.scale img {
    -moz-transition: -moz-transform 0.3s linear;
    -webkit-transition: -webkit-transform 0.3s linear;
    -o-transition: -o-transform 0.3s linear;
    -ms-transition: -ms-transform 0.3s linear;
    transition: transform 0.3s linear;
}
.scale img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
/*ボックス内のh4（見出し）タグ設定*/
.list h4 {
	padding: 10px 15px;
	font-size: 1.1rem;	/*文字サイズ*/
	font-weight: 500;
	text-align:left;
	color:#fff;
	background-color: #6381B1;
	margin: 0;
}
/*ボックス内のp（段落）タグ設定*/
.list p {
	font-size: 14px;	/*文字サイズを少し小さく*/
	text-align:left;
	margin: 0;
	padding: 15px;
}

/*----------バナ------------*/

.top_bnr{
	display: flex;
	justify-content: space-between;
	margin: 40px auto;
}
.top_bnr img{
	width: 100%;
}
.top_bnr_item{
	width: 48%;
	position: relative;
}
.top_bnr_btn{
	position: absolute;
	width: 48%;
	bottom:30px;
	left:26%;
	z-index: 2;
}

.top_bnr_btn img{
 transition:0.5s all;
}
.top_bnr_btn img:hover{
  transform:scale(1.05,1.05);
  transition:0.5s all;
}
.recruit_bnr{
	width: 84%;
	margin: 40px auto;
	display: flex;
	justify-content: center;
}
@media screen and (max-width:1020px){
	.recruit_bnr{
	width: 90%;
}
}
.recruit_bnr_item1{
	width: 60%;
}
.recruit_bnr_item1 img{
	width: 100%;
}
.recruit_bnr_item2{
	width: 50%;
	background-color: #FFF2ED;
	padding: 40px 5%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	line-height: 1.6em;
	position: relative;font-size: 15px;
	font-size: 1.3vw;
}

.recruit_bnr_item2_ttl{
	width: 50%;
}
.recruit_bnr_item2_ttl img{
	width: 100%;
}
.recruit_bnr_btn{
	position: absolute;
	bottom:2vw;
	right:25%;
	width: 45%;
}
.recruit_bnr_btn a{
	display: block;
}
.recruit_bnr_btn a:hover{
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
filter: drop-shadow(0px 5px 5px rgba(0,0,0,0.2));
}
/*インスタグラム設定*/

.inst {
	clear:both;
	width: 80%;		/*幅*/
	background: #fff;	/*背景色*/
	margin: 60px auto 40px ;
	padding: 20px;
	border:1px solid #ccc;
	height: auto;
}
.inst_ttl{
	width: 60%;
	margin: 0 auto 10px;
}

.inst_ttl img{
	width: 100%;
}



/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){
.s_rec_bnr{
	position: absolute;
	width: 55px;
	top:10vw;
	right:-7px;
}

	
/*トップsubttl*/
.top_ttl {
	width: 18rem;
	padding:12px 0 ;
	text-align: center;	/*内容をセンタリング*/
	font-size:1.2rem;
	font-weight: 400;
	color: #323232;
	border: 1px solid #323232;
	border-radius:40px;
	line-height: 25px;	/*高さ*/
	background-color: #fff;
	margin:30px auto 40px;
}
	/*-------------------------トップニュース設定----------------------------------------*/
.topnews_area{
	width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin: 40px auto;
	flex-wrap: wrap;
	max-width: 900px;
	height: auto;
	overflow: auto;
	
}

/*ボックス１個あたりの設定*/

.topnews_item{
	position: relative;
	top:0;
	width: 70%;		/*幅*/
	padding: 0 20px 0 100px;
	background: #fff;	/*背景色*/
	border: 1px solid #d4d4d4;/*枠線の幅、線種、色*/
	border-radius: 8px;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
	background-position: left;
	background-size: contain;
	background-repeat: no-repeat;
	height: 96px;
	margin: 14px auto;
}
.topnews_time{
	width: 100%;
	font-size: 0.9rem;
	color: #826c4f;
	font-weight: 400;
	text-align: left;
	padding-top: 10px;
}
.topnews_item a{
	text-decoration: none;
	color: #323232; 
}
.topnews_cont{
	width: 100%;
	font-size: 1.0rem;
	color: #323232;
	font-weight: 400;
	text-align: left;
	line-height: 1.4rem;
}
.topnews_item:hover {
	top:-3px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.cat_1{
	background-image: url("../images/news_icon/i_news.png");
}
.cat_2{
	background-image: url("../images/news_icon/g_news.png");
}
.cat_3{
	background-image: url("../images/news_icon/g_news2.png");
}
.cat_4{
	background-image: url("../images/news_icon/g_news3.png");
}
.cat_5{
	background-image: url("../images/news_icon/w_news.png");
}
/*ボタンの形状*/
.btn_area{
	width:80%;
	margin: 0 auto 50px;
	display: flex;
	justify-content: center;
}
.to_news_btn{
	font-size: 1.1rem;
	font-weight: 300;
	width: 150px;
	position:relative;
	top:0;
    padding:8px 50px 8px 20px;
    display: inline-block;
    background-color: #323232;
	border-radius: 5px;
    color: #fff;
    text-decoration: none;
	background-image: url("../images/news_icon/btn_bg.png");
	background-position: right;
	background-size: contain;
	background-repeat: no-repeat;
    outline: none;
    /*アニメーションの設定*/
    transition: all .3s;
	margin: 10px 20px;
}
.to_news_btn a{
	text-decoration: none;
	color: #fff;
}
/*hoverをしたらボックスに影がつき、上に上がる*/
.to_news_btn:hover{
	top:-3px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

/*コンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
.list_box{
	display: flex;
	justify-content: space-between;
	margin: 40px auto;

}
/*ボックス１個あたりの設定*/

.list {
	width: 31.33%;		/*幅*/
	background: #fff;	/*背景色*/
	border: 1px solid #d4d4d4;/*枠線の幅、線種、色*/
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	
}

.list a{
	display: block;
	text-decoration: none;
	color: #333;
}
.list a:hover {
	background: #EBF7FF;	/*マウスオン時の背景色*/
	color: #000;		/*マウスオン時の文字色*/
}
.list img{
	width: 100%;
}

.scale {
    width: 100%;
    overflow: hidden;
}
.scale img {
    -moz-transition: -moz-transform 0.3s linear;
    -webkit-transition: -webkit-transform 0.3s linear;
    -o-transition: -o-transform 0.3s linear;
    -ms-transition: -ms-transform 0.3s linear;
    transition: transform 0.3s linear;
}
.scale img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
/*ボックス内のh4（見出し）タグ設定*/
.list h4 {
	padding: 10px 15px;
	font-size: 1.1rem;	/*文字サイズ*/
	font-weight: 500;
	text-align:left;
	color:#fff;
	background-color: #6381B1;
	margin: 0;
}
/*ボックス内のp（段落）タグ設定*/
.list p {
	font-size: 14px;	/*文字サイズを少し小さく*/
	text-align:left;
	margin: 0;
	padding: 15px;
}

/*----------バナ------------*/

.top_bnr{
	display: flex;
	justify-content: space-between;
	margin: 40px auto;
}
.top_bnr_item{
	width: 48%;
	position: relative;
}
.top_bnr_btn{
	position: absolute;
	width: 48%;
	bottom:30px;
	left:26%;
	z-index: 2;
}

.top_bnr_btn img{
 transition:0.5s all;
}
.top_bnr_btn img:hover{
  transform:scale(1.05,1.05);
  transition:0.5s all;
}
/*------------recruit_bnr------------*/
.recruit_bnr{
	width: 70%;
	margin: 40px auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.recruit_bnr_item1{
	width: 100%;
}
.recruit_bnr_item1 img{
	width: 100%;
}
.recruit_bnr_item2{
	width: 90%;
	background-color: #FFF2ED;
	padding: 5%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	line-height: 1.6em;
	position: relative;font-size: 15px;
}

.recruit_bnr_item2_ttl{
	width: 50%;
}
.recruit_bnr_item2_ttl img{
	width: 100%;
}
.recruit_bnr_btn{
	position: relative;
	bottom:0;
	right:0;
	width: 45%;
}
/*インスタグラム設定*/

.inst {
	clear:both;
	width: 80%;		/*幅*/
	background: #fff;	/*背景色*/
	margin: 60px auto 40px ;
	padding: 20px;
	border:1px solid #ccc;
	height: auto;
}
.inst_ttl{
	width: 60%;
	margin: 0 auto 10px;
}

.inst_ttl img{
	width: 100%;
}

}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){
.s_rec_bnr{
	position: absolute;
	width: 55px;
	top:10%;
	right:-7px;
}
/*スクロールダウン全体の場所*/
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:10px;
	right:10%;
	z-index: 101;
    /*マウスの動き1.6秒かけて動く永遠にループ*/
	animation:mousemove 1.6s ease-in-out infinite;
}
/*-------------------------トップニュース設定----------------------------------------*/
/*トップsubttl*/
.top_ttl {
	width: 15rem;
	padding:11px 0 ;
	text-align: center;	/*内容をセンタリング*/
	font-size:1.2rem;
	font-weight: 400;
	color: #323232;
	border: 1px solid #323232;
	border-radius:40px;
	line-height: 25px;	/*高さ*/
	background-color: #fff;
	margin:40px auto 0;
}
.topnews_area{
	width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin: 40px auto;
	flex-wrap: wrap;
	max-width: 480px;
	height: auto;
}

/*ボックス１個あたりの設定*/

.topnews_item{
	position: relative;
	top:0;
	width: 60%;		/*幅*/
	padding: 0 20px 0 100px;
	background: #fff;	/*背景色*/
	border: 1px solid #d4d4d4;/*枠線の幅、線種、色*/
	border-radius: 8px;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
	background-position: left;
	background-size: contain;
	background-repeat: no-repeat;
	height: 96px;
	margin: 14px auto;
}
.topnews_time{
	width: 100%;
	font-size: 0.9rem;
	color: #826c4f;
	font-weight: 400;
	text-align: left;
	padding-top: 10px;
}
.topnews_item a{
	text-decoration: none;
	color: #323232; 
}
.topnews_cont{
	width: 100%;
	font-size: 1.0rem;
	color: #323232;
	font-weight: 400;
	text-align: left;
	line-height: 1.4rem;
}
.topnews_item:hover {
	top:-3px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
.cat_1{
	background-image: url("../images/news_icon/i_news.png");
}
.cat_2{
	background-image: url("../images/news_icon/g_news.png");
}
.cat_3{
	background-image: url("../images/news_icon/g_news2.png");
}
.cat_4{
	background-image: url("../images/news_icon/g_news3.png");
}
.cat_5{
	background-image: url("../images/news_icon/w_news.png");
}
/*ボタンの形状*/
.btn_area{
	width:80%;
	margin: 0 auto 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.to_news_btn{
	font-size: 1.1rem;
	font-weight: 300;
	width: 150px;
	position:relative;
	top:0;
    padding:5px 50px 5px 20px;
    display: inline-block;
    background-color: #323232;
	border-radius: 5px;
    color: #fff;
    text-decoration: none;
	background-image: url("../images/news_icon/btn_bg.png");
	background-position: right;
	background-size: 20%;
	background-repeat: no-repeat;
    outline: none;
    /*アニメーションの設定*/
    transition: all .3s;
	margin: 10px auto;
}

.list_box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 20px auto 0;

}
/*ボックス１個あたりの設定*/

.list {
	width: 90%;		/*幅*/
	background: #fff;	/*背景色*/
	border: 1px solid #d4d4d4;/*枠線の幅、線種、色*/
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
	margin:10px auto 20px
}

.list a{
	display: block;
	text-decoration: none;
	color: #333;
}
.list a:hover {
	background: #EBF7FF;	/*マウスオン時の背景色*/
	color: #000;		/*マウスオン時の文字色*/
}
.list img{
	width: 100%;
}

.scale {
    width: 100%;
    overflow: hidden;
}
.scale img {
    -moz-transition: -moz-transform 0.3s linear;
    -webkit-transition: -webkit-transform 0.3s linear;
    -o-transition: -o-transform 0.3s linear;
    -ms-transition: -ms-transform 0.3s linear;
    transition: transform 0.3s linear;
}
.scale img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
/*ボックス内のh4（見出し）タグ設定*/
.list h4 {
	padding: 10px 15px;
	font-size: 1.1rem;	/*文字サイズ*/
	font-weight: 500;
	text-align:left;
	color:#fff;
	background-color: #6381B1;
	margin: 0;
}
/*ボックス内のp（段落）タグ設定*/
.list p {
	font-size: 14px;	/*文字サイズを少し小さく*/
	text-align:left;
	margin: 0;
	padding: 15px;
}
	
.inst {
	clear:both;
	width: 80%;		/*幅*/
	background: #fff;	/*背景色*/
	margin: 20px auto 30px ;
	padding: 20px;
	border:1px solid #ccc;
	height: auto;
}
/*----------バナ------------*/

.top_bnr{
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 40px auto;
}
.top_bnr_item{
	width: 92%;
	position: relative;
	margin: 10px auto;
	
}
.top_bnr_btn{
	position: absolute;
	width: 48%;
	bottom:20px;
	left:26%;
	z-index: 2;
}

.recruit_bnr{
	width: 100%;
	margin: 40px auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.recruit_bnr_item2{
	width: 84%;
	background-color: #FFF2ED;
	padding: 8%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	line-height: 1.6em;
	position: relative;font-size: 15px;
}
.recruit_bnr_item2_ttl{
	width: 60%;
}

.recruit_bnr_btn{
	position: relative;
	bottom:0;
	right:0;
	width: 55%;
}

}
