@charset "utf-8";

* {
	margin: 0px;
	padding: 0px;
}

body{
	/*background-color: #b50005;*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333;
	-webkit-text-size-adjust: none;
	background-color: #b50005;
	background: repeating-linear-gradient( -45deg, #a9070d, #a9070d 2px, #b50005 2px, #b50005 10px );
}

img {
    image-rendering: -webkit-optimize-contrast;
}

/* header  */

#h1_wrap {
	height: 530px;
	width: auto;
	margin: auto;
	/*background-color: #8ed8f6;*/
	/*background: linear-gradient(to right, #e2f4fc, #8ed8f6);*/
	/*background-image: linear-gradient(#43d4ff 25%, #416fd5);*/
	background-color: #1ccaff;
	background: repeating-linear-gradient( -45deg, #4fd6ff, #4fd6ff 2px, #1ccaff 2px, #1ccaff 10px );
}


h1 {
	width: 960px;
	height: 530px;
	margin: auto;
}

/* contents */

#wrap {
	margin: auto;
	height: auto;
	width: 960px;
}
#contents {
	clear: none;
	float: left;
	height: auto;
	width: 960px;
	/*background-color: #FFF;*/
	margin-top: 20px;
}
.text {
	clear: none;
	float: left;
	width: 900px;
	margin:40px 0 20px 0;
	padding:50px 30px 30px 30px;
	background-color: #FFF;
	border-radius:10px;
	text-align: center;
}
.text p {
	font-size: 25px;
	line-height: 44px;
	margin-bottom: 10px;
	color: #b50005;
}
.summary {
	clear: none;
	float: left;
	width: 900px;
	margin-top: 60px;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 30px;
	height: auto;
}
.summary dl {
	clear: none;
	float: left;
	height: auto;
	width: 900px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #fff;
	margin-bottom: 20px;
	padding-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}

.summary dl:last-child {
	border-bottom: none;
}

.summary dt {
	width: 150px;
	margin-right: 20px;
	height: auto;
	clear: none;
	float: left;
	font-size: 16px;
	margin-left: 20px;
}
.summary dd {
	width: 690px;
	height: auto;
	float: left;
	clear: none;
	font-size: 15px;
	line-height: 26px;
	margin-right: 20px;
}
.map {
	clear: none;
	float: left;
	height: 300px;
	width: 960px;
	background-color: #CCC;
}
#foot {
	clear:both;

}

h2 {
	font-weight: normal;
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	font-size: 35px;
	letter-spacing: 0.1em;
	margin-bottom: 50px;
	padding-bottom: 5px;
	color: #fff;
}

/*summary LINK*/

.summary a {
	color: #fff; /*リンクの色*/
	text-decoration: none; /*下線無し*/
}

.summary a:visited {
	color: #fff;/*リンクの色*/
}

.summary a:hover {
	color: #FFFD9A; /*リンクの色*/
	text-decoration: underline; /*下線あり*/
}

/*font option*/
.t1 {
	color: #FFFD9A;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFF;
	font-weight: 600;
}

/* 店舗リスト */

.tenpo_area {
	clear: none;
	float: left;
	width: 960px;
	height: auto;
	margin:60px 0 20px 0;

}

.tenpo_list{
	margin: 0 auto;
	/* 子要素を横並びにする */
	display: flex;
	/* .boxが幅の端まで来たら折り返し */
	flex-wrap: wrap;
}

/* 992px以下は.wrapperの幅を変えます */
@media screen and (max-width: 991.9px) {
	.tenpo_list{
		/* .boxがちょうど4つ収まるように幅を計算 */
		width: 768px;
	}
}

/* 768px以下は.wrapperの幅を変えます */
@media screen and (max-width: 767.9px){
	.tenpo_list{
		width: 512px;
	}
}

/* .boxの共通CSS */
.box{
	/* box本体のCSS */
	width: 300px;
	height: 200px;
	/* boxどうしの間隔を開ける */
	margin: 10px;
}

/* 画像ファイル */
img.tenpo {
	margin: 4px auto;
	padding: 6px;
	width: 180px;
}


