@charset "utf-8";

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */
#shopWrap {
	padding-bottom: 100px;
}

.shop {
	padding-bottom: 60px;
}

.shop h2 {
	padding: 15px 30px;
	margin-bottom: 20px;
	background: #007b43;
	font-size: 2.6rem;
	color: #FFF;
	font-weight: bold;
}

.shopIntro {
	padding-bottom: 30px;
	font-size: 1.8rem;
}

.shopDetail {
	display: flex;
	flex-wrap: wrap;
	gap: 4%;
}

.shopImg {
	flex: 1;
	border-radius: 30px;
	overflow: hidden;
}

.shopImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shopInfo {
	width: 600px;
}

.addressWrap {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.addressTit {
	padding-right: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #007b43;
}

.address {
	padding-left: 10px;
	border-left: 3px solid #007b43;
	font-size: 1.8rem;
}

.telWrap {
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.tel {
	font-size: 2.2rem;
	font-weight: bold;
	color: #000;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.tel::before {
	content: "";
	width: 18px;
	height: 18px;
	background: url(../../img/common/icon_tel.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.fax {
	font-size: 2.2rem;
	font-weight: bold;
	color: #000;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.fax::before {
	content: "";
	width: 20px;
	height: 18px;
	background: url(../../img/common/icon_fax.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
}

.gMap {
	margin-bottom: 20px;
	width: 100%;
}

.gMap iframe {
	width: 100%;
	height: 330px;
}

.accessWrap {
	padding: 20px;
	background: #f6f5f3;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.accessTit {
	padding-right: 20px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #007b43;
}

.access {
	padding-left: 20px;
	font-size: 1.6rem;
	border-left: 3px solid #007b43;
}


/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	.shopDetail {
		display: flex;
		flex-wrap: wrap;
		gap: 30px 4%;
		flex-direction: column;
	}

	.shopInfo {
		width: 100%;
	}
}


/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}
/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	#shopWrap {
		padding-bottom: 20px;
	}
	
	.shopIntro {
		padding-bottom: 30px;
		font-size: 1.6rem;
	}

	.shop h2 {
		padding: 12px 20px;
		font-size: 2rem;
	}

	.shopImg {
		flex: auto;
		height: 350px;
	}

	.address {
		font-size: 1.6rem;
	}

	.addressTit {
		font-size: 1.6rem;
	}

	.telWrap {
		align-items: flex-start;
		gap: 0px;
		flex-direction: column;
	}

	.tel {
		font-size: 3.2rem;
	}

	.fax {
		font-size: 3.2rem;
	}

	.accessWrap {
		flex-direction: column;
		align-items: flex-start;
	}

	.accessTit {
		padding-right: 0;
		padding-bottom: 10px;
		font-size: 1.6rem;
	}

	.access {
		width: 100%;
		padding-left: 0;
		padding-top: 10px;
		font-size: 1.4rem;
		border-left: none;
		border-top: 3px solid #007b43;
	}
}