/* CSS Document */
section h3
{
	font-size: 30px;
	line-height: 1.2;
}


section .head
{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

section .head .text
{
	width: 48%;
}

section .head .photo
{
	width: 48%;
	position: relative;
}

section .head .photo a
{
	display: block;
}

section .head .photo a img
{
	width:100%;
	height:auto;
	transition: 1s all;
}

section .head .photo a:hover img
{
	transform:scale(1.04,1.04);
	transition:1s all;

}

section .head .photo big
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


section .head .photo span
{
	position: absolute;
	left: 0px;
	top: 0px;
}

section .head h2
{
	font-size: 30px;
	line-height: 1.2;
	font-weight: bold;
}

section .head h2 strong
{
	font-size: 21px;
	color: #F00;
	display: block;
}



section .head .address
{
	display: block;
	margin: 0px;
	padding: 0px;
}

section .head .address li
{
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	list-style-type: none;
}

section .head .address li:before
{
	font-family: "Font Awesome 6 Free";
	content: '\f02b';
	color: var(--base-color);
	font-weight: 900;
	margin-right: 10px;
}

section .head .address li:nth-child(2):before
{
	content: '\f5a0';
}


section .photo_box
{
	margin-bottom: 30px;

}

section .photo_box ul
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 20px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
	align-items: stretch; /* 子要素をセルの高さに合わせて引き伸ばす */
	margin: 0px;
	padding: 0px;
}

section .photo_box ul li
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

section .photo_box ul li img
{
	width: 100%;
	height:auto;
	object-fit: cover;
	aspect-ratio: 4 / 4;
	transition: 1s all;
}

section .photo_box ul li img:hover
{
	transform:scale(1.04,1.04);
	transition:1s all;
}

#info table
{
	width: 100%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #b1b1b1;
	border-right-color: #b1b1b1;
	border-left-color: #b1b1b1;
}

#info table th
{
	font-weight: normal;
	background-color: #eaf4eb;
	padding: 10px;
	text-align: left;
	vertical-align: middle;
	width: 180px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b1b1b1;
}

#info table td
{
	padding: 10px;
	text-align: left;
	vertical-align: middle;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b1b1b1;
}

#map
{
	margin: 0px;
	padding: 0px;
}

#map iframe
{
	width: 100% !important;
	height: 460px;
}


#link ul
{
	text-align: center;
	display: block;
	margin: 0px;
	padding: 0px;
}

#link ul li
{
	display: inline-block;
	padding: 0px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	list-style-type: none;
}

/* PCのみ設定  768 以上*/
@media screen and (min-width:768px)
{


}

/* タブレットレイアウト : 768 px 〜 959 px*/
@media screen and (max-width:1200px)
{


section .head .kakaku
{
	font-size: 32px;
	line-height: 1.2;
	padding-right: 10px;
	padding-left: 10px;
}

section .head .kakaku:before
{
	font-size: 24px;
	line-height: 1.2;

}

section .head .kakaku small
{
	font-size: 24px;
	line-height: 1.2;
}

#info table th
{
	width: 160px;
}



}



/* スマホ設定  768 以下*/
@media screen and (max-width:767px)
{




}

/* スマホ設定  599 以下*/
@media screen and (max-width:599px)
{
section .head
{
	display: block;
}

section .head .text,
section .head .photo
{
	width: auto;
	margin-bottom: 10px;
}

section .photo_box ul
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 10px; /* 横のスペース */
	row-gap: 10px; /* 縦のスペース */
	align-items: stretch; /* 子要素をセルの高さに合わせて引き伸ばす */
	margin: 0px;
	padding: 0px;
}

#info table th
{
	display: block;
	width: auto;
	border-bottom-style: none;
}

#info table td
{
	display:block;
	width: auto;
}


}