
@charset "UTF-8";

html{
	font-size: 10px;
}

body{
	padding: 0;
	margin: 0;
	font-size: 1.2rem;
	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";*/ /* 文字詰め（フォントにカーニング情報が含まれる場合） */
}

h1{
	margin: 50px 0;
}

h2{
	text-align: center;
	font-size: 1.8rem;
	margin: 120px 0 35px;
}
h2 small{
	display: block;
	margin: 7px 0 0;
}

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

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

figure{
	margin: 0;
}

img{
	vertical-align: bottom;
	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;
	top: 0;
	width: 100%;
	padding-top: 5px;
	z-index: 1000;
}
header > div{
	display: flex;
}

nav.global{
	
}

footer{
	text-align: center;
	margin: 50px auto 40px;
}
footer .row1{
	align-items: center;
}
footer .row1 a{
	display: block;
	box-sizing: border-box;
	width: 245px;
	height: 50px;
	padding: 14px 0 0;
	margin: 0 0 5px 20px;
	border: 1px solid #000;
}
footer .sns{
	margin: 0 0 30px;
}
footer .sns img{
	width: 32px;
	height: auto;
	margin: 0 5px;
}

#goto_top{
	cursor: pointer;
	position: fixed;
	right: 30px;
	bottom: 30px;
	opacity: 0;
	user-select: none;
	transition: opacity 0.3s linear;
	z-index: 1000;
}
#goto_top.show{
	opacity: 1;
	user-select: auto;
}

.page_width{
	max-width: 95%;
	width: 1024px;
	margin: 0 auto;
}

.page_width2{
	max-width: 95%;
	width: 870px;
	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) {
}





