@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; /*文字幅*/
}

/*メインコンテンツ*/
/*h2タイトル下線部分*/
.service 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);
}
/*文字配置（左マージンからの距離）*/
.service h2{
	text-indent: 0.5in;
}

/*行間*/
.service p{
	line-height: 2;
}
.service p{
	margin-left: 1.2em;
	margin-right: 1.2em;
}
/*地図配置*/
.iframe-wrap{
	margin: 20px;
	background-color: #ffffff; /*背景色*/
}

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

/*メインコンテンツの幅*/
.service{
	background-color: #fff;
}
.service{
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}
.iframe-wrap{
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}
/*mapサイズ*/
.map {
	width: 80%;
	height: 400px;
	margin: 0 auto; /* 要素を左右中央に */
}
 
/* ここで.mapの枠いっぱいに地図を広げる */
iframe {
	width: 100%;
	height: 100%;
}

/*本文の文字サイズ*/
.service p{
	font-size: 19px;
}
/*サイズ切替（パソコンのみ適用）*/
@media screen and (min-width: 768px) {
	.survey p{
		font-size: 1.4rem;
	}	
}
