@CHARSET "UTF-8";
/* List */
.list {
	margin: 20px 0;
	display: flex;
	flex-direction: column;
}
.list li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	cursor: pointer;
}
.list li a:after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0.75em;
	width: 0.7em;
	height: 0.7em;
	border-top: 2px solid #514f4e;
	border-right: 2px solid #514f4e;
	content: '';
	transform: translateY(-50%) rotate(45deg);
}
.list li .img {
	width: 250px;
	height: 250px;
	overflow: hidden;
}
.list li .store-detail {
	text-align: left;
	margin-left: 30px;
}
.list li .store-detail p {
	font-size: 1.0rem;
	font-weight: 600;
}
.list li .store-detail p.title {
	font-size: 1.3rem;
	margin-bottom: 15px;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	.list li a {
		align-items: flex-start;
	}
	.list li .img {
		width: 30%;
		height: auto;
	}
	.list li .store-detail {
		width: 60%;
		margin-left: 10px;
	}
	.list li .store-detail p {
		font-size: 0.7rem;
	}
	.list li .store-detail p.title {
		font-size: 0.9rem;
		margin-bottom: 8px;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* Detail */
#detail .box {
	margin: 50px 0 0;
	display: flex;
	justify-content: center;
}
#detail .box div {
	width: 250px;
}
#detail .box ul.info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 0;
}
#detail .box ul.info li {
	display: flex;
	align-items: center;
	padding: 10px;
	text-align: left;
}
#detail .box ul.info li p,
#detail .box ul.info li a {
	font-weight: 600;
	word-break: break-all;
}
#detail .box ul.info li p.item-name {
	width: 100px;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	#detail .box {
		margin: 30px 0 0;
		flex-direction: column;
		align-items: center;
	}
	#detail .box ul.info {
		width: 90%;
		margin: 0 10px;
		padding-bottom: 0;
	}
	#detail .box ul.info li {
		align-items: flex-start;
		padding: 10px 0;
	}
	#detail .box ul.info li p,
	#detail .box ul.info li a {
		font-size: 0.9rem;
	}
	#detail .box ul.info li p.item-name {
		width: 80px;
		min-width: 80px;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* Googlemap */
.googlemap {
	margin: 30px auto;
}
.googlemap iframe {
	width: 95%;
	min-height: 400px;
	margin: 0;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 428px) {
	.googlemap {
		width: 100%;
		margin: 0 auto;
	}
}
