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




/*----------------------

	mainvisual

-----------------------*/


#mainvisual{
	width: 100%;
	height: 100vh;
	position: relative;
	background: url(../img/mainvisual02.jpg) no-repeat center;
	background-size: cover;
}

.main-text img{
	display: block;
	position: absolute;
	bottom: 20%;
	right: 10%;
	width: 350px;
}

h3.main-title{
	white-space: nowrap;
	color: #fff;
    font-size: 300%;
    position: absolute;
    bottom: 48%;
    left: 10%;
	text-shadow: -1px 2px 3px #333;
}

@media screen and (max-width:1000px) { 
    /*　画面サイズが480pxからはここを読み込む　*/
	h3.main-title{
		font-size: 260%;
		left: 5%;	
	}
}

.bg01{
	width: 100%;
	height: 40px;
	background: url(../img/nav_back.gif);	
}

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

.scrolldown4 a{
	width:5px;
	height: 20px;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:3%;}
      50%{bottom:4%;}
     100%{bottom:3%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-20px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #eee;
    transform: skewX(-31deg);
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	right:0;
    /*矢印の形状*/
	width:1px;
	height: 50px;
	background:#eee;
}


/*--------------------------------

			   news
		
----------------------------------*/



.news01{
	display: flex;
	justify-content: center;
}

.news01 img{
	object-fit: contain;
	width: 20%;	
}

.news-title{
	width: 80%;
	height: 80%;
	padding-top: 8%;
	padding-left: 20px;
	font-size: 190%;
	border-bottom: 1px solid #000;
}


.news-posts{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
}


.news-posts{
	margin: 2% auto;
}

.news-posts > li{
	width: 360px;
	padding: 2%;
}

.news-posts li a{
	color: #333;	
}

.news-posts > li > ul >li img{
	width: 98.5%;
	height: 274px;
	border-radius: 10px;
	border: 3px solid #060;
	object-fit: cover;
}

.news-posts > li > ul >li:first-of-type{
	width: 100%;
	
	border-radius: 10px;
}

.news-posts > li > ul >li:first-of-type:hover{
	opacity: 0.6;
}

.news-posts > li > ul >li:nth-of-type(2){
	font-size: 110%;
	border-bottom: 1px solid #060;
	padding-left: 15px;
	width: 97%;
}

.news-posts > li > ul >li:last-of-type {
	font-size: 100%;
	padding-top: 5px;
	padding-left: 10px;
}

.btn-center{
	width: 60%;
	margin: 3% auto 10%;	
}

.news-btn{
	text-align: center;
}

.news-btn a{
	position: relative;
	background: #060;
	color: #fff;
	border-radius: 5px;
	padding: 10px 20%;
	font-size: 120%;
	letter-spacing: 2px;
}

.news-btn a::before{
	content: '';
    /*絶対配置でキラッと光るの位置を決める*/
	position: absolute;
	top: 0;
	left: -75%;
    /*キラッと光る形状*/
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}

.news-btn a:hover::before{
	animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}
.news-footer-img{
	width: 100%;
	height: 50%;
	vertical-align: bottom;	
}















