@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 h1{
	font-size: 35px;
	text-align: center;
}
/*メインコンテンツの幅*/
.contents{
	background-color: #fff;
}
.contents{
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

/*削除部分*/

.tel{
	margin: 0;
	padding: 40px 20px 0 20px;
	font-size: 1.5rem;
}
.img{
	margin: 0;
	padding: 0 40px 0 40px;
}
