
@charset "utf-8";
/* ページ全体の設定 */

body {
	.webkit-text-size-sdjust:none;/*テキストの自動拡大防止*/
	text-size-adjust:none;
	margin:0;
	background-color:;
	box-sizing:border-box;
}


/* 画像 */
img {
	width:100%;
	height:auto;
}

figure {
	margim:0;
}


/* ヘッダ－：ブロック*/
header {
	padding:25px 0;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:auto;
	padding-left:0;
	background-color:#FFF;
}

figure {
	margin:0;
}


/* ナビゲーションメニュー */
ul {
	list-style-type:none;
	padding:0;
	color:#FFF;
	font-size:13px;
	display:flex;
	justify-content:center;
	margin:0;
}
li:not(:last-child) {
	margin-right:20px;
}

li {
	font-size:14px;
}


/* リンク */
a {
	color:#F96;
	text-decoration:none;
}
a:visited {
	color:#FC0;
}

	



/* コンテンツ：ブロック */
.container {
	padding:20px 15px;
	padding-top:160px;
	max-width:800px;
}




/* フッター：ーブロック */
footer {
	color:#FFF;
	text-align:center;
	padding:25px 15px;
}

/* お問い合わせのページ */
h1 {
	text-align:center;
}


input, textarea {
	width:100%;
	box-sizing:border-box;
	padding:10px;
}

textarea {
	height:120px;
}

input[type="submit"] {
	background-color:#ffaa00;
	border:none;
}




@media (min-width:800px) {
/*=== pc版 ===*/

/* pc版：コンテナ*/
.container {
	max-width:800px;
	margin-right:auto;
	margin-left:auto;
	padding-top:130px;
}

li {
	font-size:18px;
}

/* pc版　ヘッダーブロック */
section {
	display:flex;
	justify-content:space-between;
}


/* pc版　ナビゲーションメニュー */

.item {
	position:absolute;
	left:auto;
	right: 30px;
	bottom: 40px;
}

section img {
	padding-left:10px;
}

/* pc版　お問い合わせページ */
input[type="submit"] {
	width:250px;
}

}

