@charset "utf-8";

.main{
	width: 100%;
}

.map-title{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
}

.map-title h2 {
	font-size: 26px;
	font-weight: bold;
	line-height: 20px;
}

.map-title h2::after {
	content: "";
	display: block;
	width: 4em;
	height: 2px;
	background-color: black;
	margin-top: 10px;
}

.map-detail{
	max-width: 80%;
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	column-gap: 20px;
}

.map{
	width: 65%;
	margin-left: auto;
	margin-right: auto;
}

.map iframe{
	display: block;
	width: 100%;
	height: 500px;
	margin-top: 25px;
}

.detail {
	width: 35%;
	margin-left: auto;
	margin-right: auto;
}

.address {
	display: flex;
	flex-flow: row;
	width: 100%;
	min-width: 300px;
	text-align: left;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
}

.address img{
	width: 50px;
	height: 50px;
}

.address p{
	font-size: 14px;
	font-wight: bold;
	line-height: 20px;
	margin-left: 20px;
}

.transport{
	margin-left: 1em;
	text-indent: -1em;
}

.footer{
	margin-top: 100px;
}

@media (max-width: 800px){
	.map-detail{
		flex-direction: column;
		margin-left: auto;
		margin-right: auto;
		column-gap: 0px;
	}
	
	.map {
		width: 100%;
	}
	
	.detail {
		display: flex;
		flex-flow: column;
		justify-content: center;
		width: 100%;
		margin-top: 0px;
		margin-bottom: 60px;
	}
	
	.address {
		width: 60%;
	}
	
	.footer {
		margin-top: 50px;
	}
	
}