
/*===============================================================*/
/* 1.リセット
/*===============================================================*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, acronym, address, big, cite, code, del,
dfn, em, font, ins, kbd, q, s, samp, small, strike,
strong, tt, var, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
 table, caption, tbody, tfoot, thead, tr, th, td{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
}

body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

/* inline-block --> block */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

/*===============================================================*/
/* 2.変数定義
/*===============================================================*/

:root{
	/*色：無彩色*/
	--color-gray:#F4F4F4;
	--color-black:#323232;

	/*色：赤系*/
	--color-red:#E50012;
	--color-pink:#DF6078;
	--color-lightPink:#FFE6EA;

	/*色：青系*/
	--color-blue:#3399CC;
	--color-blue__pale:#DFEDF4;
	--color-blue__light:#66BBDD;
	--color-blue__vivid:#0066CC;

	/*色：黄色系*/
	--color-yellow:#FFF800;
	--color-yellow__pale:#FFF7D7;

	/*色：グラデーション：青系*/
	--color-grad-blue:linear-gradient(0deg, rgba(24,152,173,1) 0%, rgba(26,40,170,1) 100%);

	/*フォント定義*/
	--font-default:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	}


/*===============================================================*/
/* 3.レイアウト定義
/*===============================================================*/
/*----------------------------*/
/*全要素
/*----------------------------*/
*{
	box-sizing: border-box;
}

/*----------------------------*/
/*構造
/*----------------------------*/
html {
	font-size: 62.5%;/* rem単位基準値 : 1rem = 10px 換算 */
}

body{
	font-family:var(--font-default);
	font-size: 1.6rem;
	position: relative;
	line-height: 1.5;
	margin: 0;
	background-color: var(--color-black);
}

header,
main{
	background: #fff;
}

@media screen and (max-width:814px){
	html {
		font-size: 56.25%;/* rem単位基準値 : 1rem = 9px 換算 */
	}
}

footer{
	padding: 10px 0 20px 0;
	border-top: 5px solid var(--color-red);
	color: #fff;
	text-align: center;
}

footer a{
	color: #fff;
	font-size: 1.4rem;
}

footer p{
	margin: 20px 0 0 10px;
	font-size: 1.0rem;
}

/*----------------------------*/
/*見出し
/*----------------------------*/
h1{
	text-align: center;
}

h1 img{
	height: 55px;
	margin: 10px;
}

h2{
	padding: 15px 10px;
	background-color: var(--color-gray);
	border-bottom: 2px solid var(--color-red);
	color: var(--color-red);
	font-weight: bold;
	font-size: 2.0rem;
}

h3{
	padding: 10px 10px;
	background-color: var(--color-gray);
	border-bottom: 2px solid var(--color-red);
	color: var(--color-red);
	font-weight: bold;
	font-size: 1.6rem;
}



/*----------------------------*/
/*レイアウト
/*----------------------------*/
.l-contents{
	padding: 10px;
}

.l-form{
	margin-bottom: 30px;
}

.l-search_mapIcon{
	padding: 10px;
	text-align: center;
}

.l-search_mapIcon img,
.l-search_mapIcon span{
	display: inline-block;
	vertical-align: bottom;
	margin: 3px;
}

.l-search_mapIcon img{
	width: 15px;
}

.l-search_mapIcon span{
	margin-right: 15px;
}

.l-tenpo_list{
	list-style: none;
}

.l-tenpo_list li{
	border-bottom: 1px solid #ddd;
}

.l-tenpo_list a{
	display: block;
	padding: 15px 30px 15px 10px;
	text-decoration: none;
	color: var(--color-black);
	background: linear-gradient(#FFF, var(--color-gray));
	position: relative;
}

.l-tenpo_list a:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	width: 10px;
	height: 10px;
	border: 3px solid var(--color-red);
	border-bottom: none;
	border-left: none;
	transform: rotate(45deg);
}

.l-tenpo_list a strong{
	display: block;
	font-weight: bold;
}

.l-tenpo_list a span{
	display: block;
}

.l-tenpo_list a span.this-distance{
	display: inline-block;
	padding: 3px 15px;
	margin: 5px;
	background-color: var(--color-lightPink);
	border-radius: 15px;
	font-weight: bold;
	font-size: 1.4rem;
}

.l-tenpoTable{
	width: 90%;
	margin: 0px auto 30px auto;
	border-collapse: collapse;
	border-spacing: 0;
}

.l-tenpoTable th,
.l-tenpoTable td{
	padding: 10px 10px;
	border-bottom: 1px solid #aaa;
	cellpadding:0
}

.l-tenpoTable th{
	width: 80px;
	border-bottom: 1px solid var(--color-red);
	font-weight: bold;
	vertical-align: middle;
	color: var(--color-red);
}

#map_canvas{
	width: 90%;
	height: 300px;
	margin: 0 auto 30px auto;
	background-color: #eee;
}



/*===============================================================*/
/* 4.コンポーネントスタイル定義（c-）
/*===============================================================*/
.c-focus{
	padding: 15px;
	margin: 10px 0;
	border-radius: 10px;
	background-color: var(--color-gray);
}

.c-btn{
	display: block;
	padding: 18px;
	margin: 20px 0;
	/*テキスト*/
	font-weight: bold;
	text-decoration: none;

	/*装飾*/
	background-color: var(--color-red);
	border-radius: 8px;
	box-shadow: 0 5px 0 0 rgba(183, 0, 31, 1);
	margin-bottom: 5px; /*box-shadow分*/

	/*アニメーション設定*/
	transition: background-color 0.3s;
}

.c-btn a{
	display: block;
	color: #fff;
	text-decoration: none;
	text-align: center;
}


.c-btn:hover{
	background-color: #bd000f;
	box-shadow: 0 5px 0 0 rgba(153, 0, 12, 1);
}

.c-btn:active{
	transform: translateY(5px);
	box-shadow: 0 0px 0 0 rgba(153,153,153,0.6);
}

/*===============================================================*/
/* 5.Utility CSS
 ・1つのタグで完結させる・ちょっとしたスタイルを適用したいときのもの
 ・!importantの上書き
/*===============================================================*/

.u-text__small{
	font-size: 1.4rem;
}

.u-color__both{
	color: var(--color-red);
}

.u-color__atm{
	color: var(--color-blue);
}