@charset "utf-8";
@import url("../com/css/reset.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body{
	margin:5px 0;
	font-size:1rem;
	line-height: normal;
	background-color: #fff;
	font-family: 'Noto Sans JP', "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color:#111111;
	font-weight: 500;
	text-align: center;
}

#wrap{
	width:100%;
	height:calc(100dvh - 16px);
	margin:0 auto;
	padding:30px 5px 5px 5px;
	border:1px solid #ccc;
	border-radius: 3px;
	display: flex;
	flex-direction: column;
	gap:20px;
}

h1{
	font-size:30px;
	font-weight: 700;
	margin-bottom:0;
	font-family: 'Noto Serif JP', serif;
	line-height: normal;
}

#access{
	margin-top:20px;
	display: inline-block;
	font-weight: 1.15rem;
}

h2{
	font-family: 'Noto Serif JP', serif;
	font-size:1.3rem;
	font-weight: 700;
	margin-bottom:20px;
	width:100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap:10px;
	letter-spacing: 5px;
}

h2::before,
h2::after{
	content:'';
	flex:1;
	height: 1px;
	display: block;
	background-color: #ccc;
}

#access span{
	background-color: #BBBBBB;
	border-radius: 5px;
	color:#fff;
	font-size:12px;
	font-weight: bold;
	padding:0 5px;
	margin-right:10px;
}

#google-map{
	width:100%;
	flex:1;
	border-radius: 5px;
	border:none;
}

#google-map iframe{
	width:100%;
	height: 100%;
	border-radius: 10px;
}

/*------------------------------

	レスポンシブ

------------------------------*/
@media screen and (min-width: 431px){
	body{
		height: calc(100vh - 10px);
	}
}
@media screen and (max-width: 430px){
	#wrap{
		height: calc(100vh - 10px);
		min-height:calc(100vh - 10px);
		/*display: block;*/
	}
	
	#google-map{
		/*height: 350px;*/
		flex:1;
		position: static;
		/**margin-bottom:5px;*/
	}
	
	#google-map iframe{
		/*width:100%;
		height: 330px;
		border: none;*/
	}
}
