
@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だけ文字が大きくなる現象を防ぐ */
}

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;
}

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;
}

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

hr.dash{
	border: 0;
	border-top: 1px dashed #000;
	margin: 30px 0;
}

#goto_top{
	cursor: pointer;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	opacity: 0;
	transition: 0.1s linear;
	filter: brightness(1);
}
#goto_top:hover{
	filter: brightness(1.2);
}
#goto_top.show{
	opacity: 1;
}

header{
	
}
header .top{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 5px auto 0;
}
header .red{
	text-align: center;
	color: #fff;
	background-color: #be0811;
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
	padding: 25px 0;
	margin: 30px 0;
}
header .red small{
	font-size: 22px;
}
header a{
	transition: 0.1s linear;
}
header a:hover{
	opacity: 0.7;
}
html.sp header .top{
	flex-wrap: wrap;
}
html.sp header .top a:nth-of-type(1){
	order: 2;
}
html.sp header .top a:nth-of-type(2){
	order: 1;
}
html.sp header .top a:nth-of-type(3){
	order: 3;
}
html.sp header .top a:nth-of-type(2) img{
	margin: 30px 0;
}
html.sp header .red{
	font-size: 27px;
}
html.sp header .red small{
	font-size: 17px;
}

nav.global{
	
}

footer{
	text-align: center;
	margin: 80px auto 0;
}
footer img[src*="/2."]{
	width: 550px;
}
footer .map_row{
	display: flex;
	width: 100%;
	margin: 60px 0 0;
}
footer .map_row div{
	flex-basis: 50%;
	padding: 0 0 0 10px;
}
footer .map_row div:first-child{
	border-right: 1px solid #000;
	padding: 0 10px 0 0;
}
footer .map_row iframe{
	width: 100%;
	margin-top: 30px;
}
html.sp footer img[src*="/2."]{
	width: 450px;
}
html.sp footer .map_row{
	flex-wrap: wrap;
	margin-top: 10px;
}
html.sp footer .map_row div{
	flex-basis: 100%;
	padding: 0;
	margin-top: 60px;
}
html.sp footer .map_row div:first-child{
	padding: 0;
}

.page_width{
	max-width: 100vw;
	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) {
}





