@charset "UTF-8";
/* CSS Document */

.map {
	position: relative;
	width: 100%;
	height: 0;
	
	box-sizing:border-box;
	padding-top: 75%; /* 比率を4:3に固定 */
	
	margin-bottom:20px;
}
 
/* Google Mapのiframe */
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	border:none;
}

.information{
	margin-bottom:20px;
}

.information div.row{
	margin-bottom:5px;
	
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
}

.information div.row p.que{
	width:120px;
	
	box-sizing: border-box;
	padding:10px;
	
	background-color:#f0f0f0;
	color:#000;
}

.information div.row p.ans{
	width:calc(100% - 120px);
	
	box-sizing: border-box;
	padding:10px;
	border-left:solid 5px #fff;
	
	background-color:#f0f0f0;
	color:#000;
}

@media only screen and (min-width: 760px){
	
	.information div.row p.que{
		width:180px;
	}
	
	.information div.row p.ans{
		width:calc(100% - 180px);
	}
	
}

.route{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
}

.route div.row{
	width:100%;
	
	margin-bottom:15px;
	position: relative;
}

.route div.row:last-child{
	margin-bottom:0;
}

.route div.row div.inner{
	box-sizing: border-box;
	padding:10px;
	border:solid 5px #f0f0f0;
}

.route div.row p.thumbnail{
	width:100%;
	position: relative;
	
	margin-bottom:10px;
}

.route div.row p.thumbnail:before{
	display:block;
	content:"";
	
	box-sizing: border-box;
	padding-top:75%;
}

.route div.row p.thumbnail img{
	width:100%;
	height:100%;
	
	position: absolute;
	top:0;
	left:0;
	
	object-fit: cover;
	object-position: center;
}

.route div.row div.text{
	font-size:0.8rem;
	line-height:1.75em;
}

.route div.row p.number{
	display:block;
	
	width:40px;
	height:40px;
	
	font-size:1.0rem;
	line-height:40px;
	
	text-align: center;
	
	background-color:#444;
	color:#fff;
	
	border-radius:2.5px;
	
	position: absolute;
	top:10px;
	left:10px;
}

@media only screen and (min-width: 760px){
	
	.route div.row{
		width:50%;
		margin-bottom:0;
		
		box-sizing: border-box;
		padding:5px;
	}
	
}