@charset "utf-8";
/*
nolla.info
style.css
Last Updated: 2018-05-13
Author: Kazuo Yonezawa
*/

/*======BASIC======*/

body {
	font-size: 15px;
	line-height: 2;
}

header {
	width: 960px;
	height: 100px;
	margin: 0 auto;
}

a {
	text-decoration: none;
	color: #3583aa;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: #788d98;
}

.logo {
	float: left;
	margin-left: 100px;
}

/*======グローバルナビ（global-nav）======*/

.global-nav {
	float: right;
	margin-top: 30px;

}

.global-nav li {
	float: left;
	margin: 0 10px;
	font-family: 'Volkhov', serif;
	font-size: 24px;
	text-shadow: 2px 2px 0px #000;
}

.global-nav a {
	color: #fff;
}

/* .global-nav a:hover {
	border-bottom: 2px solid #fff;
} */

/*======ラップ（wrap〉======*/

#wrap {
	clear: both;
}

/*======コンテンツ（content）======*/

.content {
	width: 960px;
	margin: 0 auto;
}

#index .content {
	margin-top: 50px;
	height: 650px;
}

.bf-square::before {
	content: "\25A0";
}

/*======フッター（footer）-======*/

footer {
	text-align: center;
	padding: 20px 0;
	color: #fff;
	margin-top: 50px;
}

footer small {
	font-size: 12px;
}

/*======インデックス（#index）======*/

#index {
	background-image: url(../images/index/bg-index.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: fixed;
	background-size: cover;
}

h1 {
	font-size: 100px;
	color: #e60033;
	font-family: 'Volkhov', serif;
	margin: 0 0 30px 100px;
	line-height: 1;
	text-shadow: 1px 1px 20px rgba(0, 0, 0, .1);
}

.read {
	font-size: 16px;
	color: #fff;
	margin-left: 100px;
	text-shadow: 1px 1px 3px #000;
}

/*======ボタン（btn）======*/

.btn a {
	background-color: #e60033;
	color: #fff;
	font-size: 25px;
	font-family: 'Volkhov', serif;
	display: block;
	width: 150px;
	line-height: 40px;
	text-align: center;
	margin: 190px 0 0 100px;
	border-radius: 5px;
	border: 2px solid #e60033;
}

.btn a:hover {
	background-color: #fff;
	color: #e60033;
	text-decoration: none;
}

/*======レスポンシブ======*/

@media screen and (max-width:960px) {
	body {
		font-size: 3.5vw;
	}

	h1 {
		font-size: 12vw;
		margin: 0 0 5.5vw 0;
		text-align: center;
	}

	h2 {
		font-size: 6vw;
		margin: 0;
		text-align: center;
	}

	header {
		width: auto;
		margin: 0;
	}

	.logo {
		float: none;
		text-align: center;
		margin: 0;
	}

	.logo img {
		width: 95%;
	}

	.global-nav {
		float: none;
		text-align: center;
		margin: 0;
	}

	.global-nav li {
		display: inline;
		float: none;
		font-size: 5vw;
	}

	#wrap {
		margin-top: 10vw;
		padding: 15vw 0 0;
	}

	.content {
		width: 100%;
	}

	#index {
		background-image: url(../images/index/sp-index.jpg);
		background-repeat: no-repeat;
		background-position: center top;
		background-attachment: fixed;
		background-size: cover;
	}

	.read {
		margin: 0;
		text-align: center;
	}

	.btn a {
		margin: 25vw auto 10vw auto;
	}

	.content {
		margin: 0;
		height: auto;
	}

	footer {
		position: fixed;
		bottom: 0%;
		width: 100%;
		text-align: center;
		padding: 1.5vw 0;
		margin: 0;
		background-color: #767671;
	}

}