@charset "utf-8";
/* CSS Document */
html * {
	box-sizing: border-box;
}
body{
	margin: 0;
	font-family:sans-serif;
	font-size: 16px;
	background-color: antiquewhite; /*背景色*/
}
/*ヘッダー*/
header{
	background-color: antiquewhite;
}
.header-container{
	padding: 10px 10px 10px 10px;
}
.header-logo{
    margin: 0 auto;
    width: 220px;
    height: 80px;
    background: url("images/TOPアイコン.png") no-repeat;
    background-size: 220px 80px;
    text-indent: -9999px;
}
/*サイズ切替（パソコンのみ適用）*/
@media screen and (min-width: 768px) {
	/*ヘッダー*/
	.header-logo {
		width: 500px;
		height: 100px;
		background-size: 500px 100px;
	}
}
/*ヘッダーとナビゲーションの部分を固定配置*/
.header-nav-wrapper{
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	background: #ffffff;
}
/*スクロールする部分は固定した要素よりも下に配置する*/
.main-wrapper{
	position: absolute;
	z-index: 0;
	left: 0;
	top: 128px;
	width: 100%;
}
/*ナビゲーション*/
nav{
	text-align: center;
	background-color: antiquewhite; /*背景色*/
}
nav ul{
	margin: 0;
	padding: 0;
}
nav li{
	list-style: none;
	display: inline-block;
	width: 10%;
	min-width: 90px;
}
nav li:not(:last-child){
	border-right: 2px solid #ddd;
}
nav a{
	text-decoration: none;
	color: #333;
}
nav a.gloalnav{
	color: #00B0F0;
	border-bottom: 2px solid #00B0F0;
}
nav a:hover{
	color: #F7CB4D;
	border-bottom: 2px solid #F7CB4D;
}
nav li{
	font-size: 15px;
	font-weight: bold;
	word-break: keep-all; /*文字幅*/
}

/*フッター*/
footer{}
.footer-container{
	padding: 20px;
	border-radius: 0 0 10px 10px;
	background-color: antiquewhite; /*背景色*/
}
.copyright {
	margin: 0;
	font-size: 0.8rem;
	color: #000000;
}

/*メイン部分*/
.main-contents{ }
.main-contents-container{
	padding: 0 0 40px 0;
	background: #ffffff;
}
.survey{
	margin: 0;
	padding: 40px 20px 0 20px;
	/*text-align: center;*/
	font-size: 1.1rem;	
}
.main-contents h1{
	letter-spacing: 30px; /*文字と文字の間隔*/
	text-align: center;
	font-size: 30px;
}
.photo photo2 photo3 photo4 photo5{
	font-size: 0;
}
/*文章の文字サイズ*/
.survey{
	font-size: 20px;
}
/*サイズ切替（パソコンのみ適用）*/
@media screen and (min-width: 768px) {
	.survey {
		font-size: 1.4rem;
	}	
}
img.css_position_relative{
	position : relative;
	width: 40%;
	height: 15%;
	top:5px;
	left: 450px;
}

/*行間*/
.main-contents p{
	line-height: 1.7;
}
/*フッター固定部分*/
.main-contents{
	min-height: calc(100vh - 70px);
}

