/*Home[index.html]　Ver.1.0.0 */

/*=================================
オープニング画面設定
=================================*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: rgba(252, 196, 0, 1.0);
	background-image:
	radial-gradient(#770 30%, transparent 30%),
	radial-gradient(#770 30%, transparent 30%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
	text-align: center;
	color: rgba(255, 255, 255, 1.0);
}
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo img {
	width: 400px;
}
.bigtosmall{
	animation-name: bigtosmallAnime;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes bigtosmallAnime{
	from {
		opacity: 0.2;
		transform: scale(8.0);
	}
	to {
		opacity: 1;
		transform: scale(1.0);
	}
}

/*=================================
ヘッダー（index.htmlのみ）設定
=================================*/
#site-top-header {
	transition: .6s;
	-webkit-transition: .6s;
	visibility: hidden;
	opacity: 0;
}
#site-top-header.fade {
	transition: .3s;
	-webkit-transition: .3s;
	visibility: visible;
	opacity: 1;
}

/*=================================
コンテンツ設定
=================================*/
/*
body {
	background-image: url("../img/sample3.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
*/
#introduction {
	width: 100%;
	height: 85vh;
	max-height: 700px;
	position: relative;
	/*
	background-color: rgba(0, 0, 0, 0.15);
	background-image:
	radial-gradient(#000 40%, transparent 20%),
	radial-gradient(#000 40%, transparent 20%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
	border-bottom: 3px solid rgba(234, 75, 12, 1.0);
	*/
}
#introduction .mask {
	position: absolute;
	top: 0;
	right: 0;
}
#introduction .logo {
	width: 85%;
	max-width: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#introduction h2 {
	width: 100%;
	padding: 0 2%;
	color: #222;
	font-size: 2.5rem;
	font-weight: 900;
	text-shadow: 2px 2px 6px rgba(220, 220, 220, 0.8);
	text-align: center;
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#introduction h2 span {
	margin: 10px 0 0;
	padding: 0 6px 3px;
	line-height: 1.35;
	display: inline-block;
	/*background-color: rgba(255, 255, 255, 0.5);*/
	background-color: rgba(252, 196, 0, 0.8);
}
#introduction .btn-scroll-wrap {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: rgba(252, 196, 0, 1.0);
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation-name: flashAnime;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	opacity: 100%;
}
@keyframes flashAnime {
	0% {
		opacity: 50%;
	}
	50% {
		opacity: 5%;
	}
	100% {
		opacity: 50%;
	}
}
#introduction .btn-scroll {
	width: 80px;
	height: 80px;
	display: inline-block;
	font-size: 15px;
	line-height: 80px;
	color: rgba(252, 196, 0, 1.0);
	text-align: center;
	border: 2px solid rgba(252, 196, 0, 1.0);
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 1.0);
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
}
.top-bnr {
	margin-top: 20px;
}
.top-bnr a, 
.top-bnr a:visited {
	width: 100%;
	display: block;
	transition: all 0.5s 0s ease;
}
.top-bnr a:hover {
	opacity: 0.7;
}
.top-bnr a img {
	width: 100%;
	height: auto;
}
.information {
	width: 48%;
	margin-bottom: 30px;
	padding: 36px 30px 30px;
	background-color: rgba(255, 255, 255, 1.0);
	border-radius: 3px;
	box-shadow: 1px 1px 8px rgba(0,0,0,0.2);
	position: relative;
}
.information span.information-update {
	padding: 1px 6px;
	font-size: 11px;
	color: rgba(240, 240, 2440, 1.0);
	background-color: rgba(45, 45, 45, 1.0);
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 0;
}
.information dl dt {
	font-size: 1.15rem;
	line-height: 1.5;
}
.information dl dd {
	margin-top: 10px;
	font-size: 0.9rem;
}
.information dl dd.kome {
	font-size: 11px;
	line-height: 1.5;
}
.information a, 
.information a:visited {
	color: darkblue;
	text-decoration: underline;
}





/*=================================
タブレット設定（768px〜1024px）
=================================*/
@media only screen and (max-width: 1024px) {

	

}


/*=================================
タブレット設定（600px〜767px）
=================================*/
@media only screen and (max-width: 768px) {

	.information-wrap {
		width: 85%;
		margin-left: auto;
		margin-right: auto;
	}
	.information {
		width: 100%;
	}

}


/*=================================
スマホ設定（〜599px）
=================================*/
@media only screen and (max-width: 600px) {

	#splash_logo img,
	#introduction .logo {
		width: 280px;
	}
	#introduction {
		width: 100%;
		height: 50vh;
		margin-top: 67px;
	}
	#introduction h2 {
		width: 100%;
		padding: 0 2%;
		color: #222;
		font-size: 1.35rem;
		font-weight: 800;
		text-align: center;
		position: absolute;
		top: 60px;
		left: 50%;
		transform: translate(-50%, 0);
	}
	.top-bnr {
		margin-top: 15px;
	}
	.information-wrap {
		width: 100%;
	}

}
