
@charset "UTF-8";

html{
	font-size: 10px;
}

body{
	padding: 0;
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.6;
	overflow-x: hidden;
	/*letter-spacing: 1.5px;*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%; /* iPhoneだけ文字が大きくなる現象を防ぐ */
	/*font-feature-settings: "palt";*/ /* 文字詰め（フォントにカーニング情報が含まれる場合） */
}
html.sp body{
	padding: 0 30px;
}

h1{
	margin: 50px 0;
}

h2{
	font-size: 1.8rem;
	margin: 0;
}

h3{
	font-size: 1.5rem;
	font-weight: normal;
	margin: 20px 0;
}

h4{
	font-size: 1.2rem;
	font-weight: normal;
	margin: 15px 0;
}

img{
	vertical-align: middle;
	max-width: 100%;
}

a{
	color: #7A6357;
}

a,
a:link,
a:visited{
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

/* IE6,7 対策 */
a img{
	border-style: none;
}

a.fade{
	display: inline-block;
	text-decoration: none;
	-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;
}

a.fade:hover{
	opacity: 0.6;
	filter: alpha(opacity=60);
	text-decoration:none;
}

header{
	position: fixed;
	width: 100%;
	left: 0;
	background-color: rgba(255,255,255,0.8);
}
header .page_width{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 100%;
}
header .title{
	margin: 0 0 0 30px;
}
header .tel,
header .mail{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 72px;
	height: 72px;
}
header .tel_mail{
	display: flex;
}
header .tel_mail a{
	transition: opacity 0.1s linear;
}
header .tel_mail a:hover{
	opacity: 0.7;
}
header .tel{
	background-color: #fff349;
}
header .mail{
	background-color: #000;
}

nav.global{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
nav.global a{
	margin: 0 10px;
}
nav.global a:hover{
	border-bottom: 1px solid #000;
}

.header_height{
	height: 72px;
}

footer{
	padding: 80px 0 0;
}
footer .copyright{
	text-align: center;
	background-color: #fff;
	padding: 10px 0 10px;
	margin: 150px 0 0;
}

.page_width{
	max-width: 90%;
	width: 1000px;
	margin: 0 auto;
}

.contents{
}



/* PC用 ******************************************************************************************* */

@media (min-width: 741px) {

}


/* スマホ用 */
@media (max-width: 740px) {
	header{
	}

	nav.global{
	}

	footer{
	}
}

/* スマホ用 縦向 */
@media (max-width: 420px) and (orientation: portrait) {
}

/* スマホ用 横向 */
@media (max-width: 740px) and (orientation: landscape) {
}





