/* 全体設定 */

* {
	margin:0;
	padding: 0;
}

/* 基本デザイン */

html {font-size: 90%;}

body {
	color: #4a4843;
	background-color: #fffdf9;
	font-size: 1rem;
	font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	line-height: 1.5;
}

h1 {font-size: 2rem;}

h2 {
	margin: 2rem 0 1rem;
	font-size: 1.5rem;}

h3 {
	margin: 1.5rem 0 1rem;
	padding-left: 0.5rem;
	border-left: 5px solid #ff6f61;
	font-size: 1rem;
	}

h4 {
	margin: 1.5rem 0 1rem;
	font-size: 1rem;
	}

header {
	margin: 0 auto;
	padding: 12% 0 5%;
	text-align: center;
}

header,article,footer {
	width: 80%;
	max-width: 900px;
	clear: both;
}

article {margin: 0 auto 5%;}

article:last-child {margin-bottom: 20%}

article div {
	margin-bottom: 8%;
	display: block;
	float: left;
}

article div img {width: 100%;} /* 各ボックス内の画像の大きさ設定 */

/* リンクの基本設定 */

a {
	color: #ff6f61;
	transition: all .3s;
}

a:visited {color: #a79b82;}

a:hover {
	color: #4a4843;
}

h1 a {text-decoration: none;}

a img:hover {
	box-shadow: 0px 0px 30px 0px #ccc;
	transition: all .5s}

/* 段落 */

p {margin:1rem 0;}

/* 通常リスト */

ul {margin:0 0 1rem 2rem;}

/* サブメニューデザイン */

ul.subMenu {margin: 1rem 0;}

ul.subMenu li {
	margin: 0 0.5rem;
	display: inline-block;
	list-style-type: none;
}

/* ナビゲーション用ボタンリスト */

nav {margin: 1rem 0 0.5rem;}

nav ul.mainMenu {margin: 0;}

nav ul.mainMenu li {
	display: inline-block;
	list-style-type: none;
}

nav ul.mainMenu li a {
	width: 8rem;
	padding: 0.5rem 0;
	margin:0 0.1rem 0.6rem;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	background-color: #ff6f61;
	font-size: 0.9rem;
	font-weight: bold;
	border: solid 2px #ff6f61;
	border-radius: 4px;
}

nav ul.mainMenu li a:visited {color: #fffdf9;}

nav ul.mainMenu li a:hover {
	color: #ff6f61;
	background-color: #fffdf9;
}

/* 注意コメントなど */

.point {
	font-weight: bold;
	color: #ff6f61;
	}

/* どうしても自動改行を入れたい時のみ */

.wordBreak {word-break: break-all;}

/* ボタン型リンクデザイン */

a.linkBt {
	padding: 0.5rem;
	margin:0 0.1rem 0.6rem;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	background-color: #ff6f61;
	font-weight: bold;
	border: solid 2px #ff6f61;
	border-radius: 4px;
}

a:visited.linkBt {color: #fffdf9;}

a:hover.linkBt {
	color: #ff6f61;
	background-color: #fffdf9;
}

/* トップに戻る画像ボタンのデザイン */

article.topScroll {
	display: block;
	height: 120px;
	width: 60px;
	bottom: 15px;
	right: 15px;
	position: fixed;
}

article.topScroll img {box-shadow: none;}

/* フッター */

footer {
	margin:5% auto 0;
	padding: 10% 0;
	text-align: center;
	font-size: 0.9rem;
}
/* 問い合わせ埋め込みフォーム */

article div.formArea {
	width: 100%;
	margin:1rem 0 0;
	clear: both;}

/* PC表示デザイン用 */

@media only screen and (min-width: 768px) {
	article.topContents div:first-child ~ div {max-width: 45%;}
	article.topContents div:first-child ~ div:nth-child(2n+1) {margin-left: 10%;}
	article.catalog div {max-width: 45%;}
	article.catalog div:nth-child(2n) {margin-right: 10%;}
}



