
/*clairvoyance2020*/

/**************************
基本設定
**************************/

html{
	font-size: 100%;
	font-family: Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #444;
	background: #FFF;
}

body {
	-webkit-text-size-adjust: 100%;
	line-height: 1.5;
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

img{
	border: 0;
	vertical-align: middle;
	max-width: 100%;
}

ul,ol{
	list-style: none;
}

a{
	text-decoration: none;
	color: #444;
}

a:hover,
a:active{
	opacity: 0.7;
}

.Clear{clear: both;}

.Center{
	width: 100%;
	text-align: center;
}

/**************************
メインパーツ
**************************/

#wrapper{

}

.inner_wrapper{
	width: 960px;
	margin: 0 auto 0 auto;
}

section{
	width: 100%;
	padding: 80px 0;
	text-align: center;
}

section h2{
	position: relative;
	width: 100%;
	text-align: center;
	margin-bottom: 60px;
}

section h2::after{
	position: absolute;
	left: 50%;
	bottom: -20px;
	display: block;
	width: 210px;
	content: "";
	height: 2px;
	margin-left: -105px;
	background: #444;
}

.install{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.install img{
	width: 350px;
	margin: 10px;
}


/**************************
footer
**************************/

footer{
	padding: 30px;
	display: flex;
	justify-content: space-between;
	font-size: 0.9em;
	color: #888;
	background: #EFEEF5;
}

footer a{
	display: block;
	color: #888;
}

footer a:hover{
	color: #444;
	opacity: 1;
}

footer ul{
	display: flex;
}

footer ul li{
	margin-left: 15px;
	border-bottom: 1px solid #FFF;
	padding-bottom: 5px;
}

footer ul li:hover{
	border-bottom: 1px solid #444;
}


/**************************
form
**************************/

form{
	width: 540px;
	margin: 10px auto;
}

form input[type="text"],
form select,
form textarea{
	width: 100%;
	display: block;
	outline: 0;
	border: 1px solid #9F9F9F;
	background: #FFF;
	padding: 10px;
	margin-bottom: 10px;
}

form input[type="text"]:focus,
form select:focus,
form textarea:focus {
	border: 1px solid #00A4B8;
}

input[type="button"],
input[type="submit"]{
	background: #00A4B8;
	color: #FFF;
	border: none;
	padding: 10px 20px;
	margin-top: 10px;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="button"]:active,
input[type="submit"]:active{
	opacity: 0.8;
}

/**************************
dialog
**************************/

.featherlight_box {
	display: none;
}

.featherlight_box p{
	font-weight: bold;
}


/**************************************************
mobile screen
**************************************************/

@media screen and (max-width: 960px) {


	/**************************
	メインパーツ
	**************************/

	.inner_wrapper{
		width: 100%;
		padding: 0 20px;
	}

	section{
		padding: 30px 0;
	}

	section h2{
		margin-bottom: 40px;
	}

	section h2::after{
		position: absolute;
		left: 50%;
		bottom: -10px;
		width: 50%;
		margin-left: -25%;
	}

	.install{
		flex-direction: column;
	}

	.install img{
		width: 200px;
	}

	/**************************
	footer
	**************************/

	footer{
		padding: 10px;
		display: flex;
		flex-wrap: wrap-reverse;
		justify-content: flex-start;
		color: #888;
		text-align: left;
	}

	footer a{
		color: #444;
	}

	footer a:active{
		color: #444;
		opacity: 1;
	}

	footer ul{
		display: flex;
		flex-wrap: wrap;
		margin-right: 0;
		width: 100%;
	}

	footer ul li{
		margin-left: 0;
		border-bottom: 1px solid #FFF;
		padding-bottom: 0;
		margin-bottom: 5px;
		margin-right: 40px;
		width: 100%;
	}

	footer ul li:active{
		border-bottom: 1px solid #444;
	}

	footer p{
		font-size: 0.8em;
	}

	/**************************
	form
	**************************/

	form{
		width: 100%;
		margin: 10px 0;
		padding: 0 10px;
	}

	form input[type="text"],
	form select,
	form textarea{
		width: 100%;
		display: block;
		outline: 0;
		border: 1px solid #9F9F9F;
		background: #FFF;
		padding: 7px;
		margin-bottom: 7px;
	}

	/**************************
	dialog
	**************************/

	.featherlight-content {
		max-width: 92%;
	}

	.featherlight_box p{
		font-weight: bold;
	}


}




