@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');
/* font-family: 'Noto Sans JP', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap');
/* font-family: 'Noto Serif JP', serif; */

/******** body ********/
body{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.5;
}
img{
	width: 100%;
}

/******** header ********/
header{
	width: 85%;
	margin: 15px auto 20px;
}
header h1{
	text-align: center;
}
header h1 img{
	width: 200px;
}
header h2{
	text-align: center;
	font-size: 20px;
	font-family: 'Noto Serif JP', serif;
	color: #333;
}
@media screen and (min-width:480px){
	header h1 img{
		width: 280px;
	}
	header h2{
		font-size: 28px;
	}
}
@media screen and (min-width:768px){
	header{
		margin: 30px auto 20px;
	}
		header h2{
		font-size: 42px;
	}
}

/******** main ********/
#main{
	width: 100%;
	margin: 0 auto 38px auto;
}

/******** container ********/
.container{
	width: 100%;
	padding: 36px 0;
}
@media screen and (min-width:768px){
	.container{
		padding: 60px 0;
	}
}

/******** content article section 共通********/
.content, article, section{
	width: 85%;
	margin: 0 auto;
}
.content h3, article h3, section h3{
	font-family: 'Noto Serif JP', serif;
	font-size: 20px;
	font-weight: 700;
	color: #ba8b4e;
	margin-bottom: 9px;
	letter-spacing: 0.048rem;
}
.content p, article p, section p{
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 18px;
	text-align: justify;
}
@media screen and (min-width:768px){
	.content h3, article h3, section h3{
		font-size: 32px;
		margin-bottom: 12px;
	}
	.content p, article p, section p{
		font-size: 16px;
	}
}
@media screen and (min-width:860px){
	.content, article, section{
		width: 860px;
	}
}


/******** footer ********/

footer{
	width: 85%;
	margin: 15px auto 20px;
}
footer .container{
	border-bottom: 0;
	padding: 0 36px;
}
.footer-logo{
	display: flex;
	justify-content: space-between;
}
footer h3 img{
	width: 150px;
}
footer a.page-top{
	font-size: 14px;
	color: #000;
	text-decoration: none;
}
footer small{
	text-align: center;
	font-size: 12px;
	color: #666;
}
@media screen and (min-width:768px){
	footer h3 img{
	width: 200px;
	}
}

/******** ボタン類(btn) ********/

/* 四角い枠のみのボタン デフォルトはグレー線・文字*/
a.btn-01{
	display: block;
	box-sizing: border-box;
	border: solid 1px #666;
	border-radius: 3px;
	text-align: center;
	width: 50%;
	padding: 8px;
	margin: 36px auto 0 auto;
	text-decoration: none;
	color: #666;
	position: relative; /* ボタン内アイコン用 */
}
a.btn-01:hover{
	background: #ccc;
	border: solid 1px #fff;
	color: #fff;
}
a i.fa-chevron-right{
	position: absolute;
	right: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 1rem;
}