@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;
}

/*メイン部分*/
.contents h2{
	letter-spacing: 30px; /*文字と文字の間隔*/
	font-size: 35px;
}
/*h2タイトル下線部分*/
.contents h2{
	position: relative;
	padding: 0.25em 0;
}
h2:after{
	content: "";
	display: block;
	height: 4px;
	background: -webkit-linear-gradient(left, #c3b825 50%,#FFF);
	background: linear-gradient(to right, #c3b825 50%, #FFF);
}
/*文字配置（左マージンからの距離）*/
.contents h2{
	text-indent: 0.5in;
}

/*画像配置*/
img.float_left{
	width: 50%;
	height: 30%;
	object-fit: cover;
}
img.float_left2{
	width: 50%;
	height: 30%;
	object-fit: cover;
}
img.float_left{
	margin: 10px;
}
img.float_left2{
	margin: 10px;
}
/*画像の角をとる*/
img.float_left{
	border-radius: 10px;
}
img.float_left2{
	border-radius: 10px;
}
/*本文部分*/
.survey-title{
	font-size: 30px;
}
.survey{
	font-size: 1.4rem;
}
.note{
	font-size: 1.3rem;
}
/*サイズ切替（パソコンのみ適用）*/
@media screen and (min-width: 768px) {
	.survey note {
		font-size: 1.4rem;
	}	
}

/*現在不要になった部分をメモ帳に移動*/

/*メインコンテンツの幅*/
.contents{
	background-color: #fff;
}
.contents{
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}
/* ウィンドウ幅が広い時のCSS */
@media screen and (min-width: 768px) {
	/* 画像部分 */
	.contents {
		overflow: hidden;
		padding: 30px;
		text-align: left;
	}
	img.float_left {
		float: left;
		object-fit: cover;
		margin-right: 20px;
		width: 200px;
	}
	img.float_left2 {
		float: left;
		object-fit: cover;
		margin-right: 20px;
		width: 200px;
	}
}