@charset "utf-8";

/***********************************************************************

------------------------------------------------------------------------
当院の特長
***********************************************************************/

.about-point {
	background: #C97D60 url(../img/about/bg_point.svg) no-repeat right 50px top 50px;
}
.about-point .about-point-tit {
	padding-top: 78px;
}
.about-point .about-point-tit * {
	color: #fff;
}
.about-point .about-point-tit > h2 {}
.about-point .about-point-tit > h2::after {
	background: #fff;
}
@media only screen and (max-width: 767px) {
	.about-point .about-point-tit {
		padding-top: 0;
	}
}

/* 7つの特長
========================================== */

.about-point .about-point-flex {
	display: grid;
	/* grid-template-columns: 1fr 1fr; */
	gap: 0 30px; /* 縦間隔のみ */
	margin: 80px auto 0;
	justify-content: start;
}
.about-point-item:nth-child(odd) {
	grid-column: 1 / 2;
}
.about-point-item:nth-child(even) {
	grid-column: 2 / 3;
}
.about-point-item:nth-child(even) {
	margin-top: 120px;
}
@media only screen and (max-width: 767px) {
	.about-point .about-point-flex {
		grid-template-columns: 1fr ;
		gap: 30px;
		margin-top: 40px;
	}
	.about-point-item:nth-child(odd),
	.about-point-item:nth-child(even) {
		grid-column: 1 / 2;
		margin-top: 0;
	}
}

/* 7つの特長－内容
========================================== */

.about-point .about-point-item {
	background: #fff;
	border-radius: 16px;
	padding: 40px;
	height: fit-content;
}
@media only screen and (max-width: 767px) {
	.about-point .about-point-item {
		padding: 15px 15px 30px;
		border-radius: 8px;
	}
}

.about-point .about-point-item dl {}
.about-point .about-point-item dl dt {
	display: flex;
	gap: 15px;
	align-items: center;
}
.about-point .about-point-item dl dt em.number {
	background: #F1DDD6;
	color: #C97D60;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	font-size: 28px;
	border-radius: 58px;
	line-height: 58px;
}
.about-point .about-point-item dl dt h3 {
	color: #C97D60;
	font-weight: bold;
	font-size: 30px;
}
.about-point .about-point-item dl dt h3 small {
	font-size: 20px;
	font-weight: bold;
}
@media only screen and (max-width: 767px) {
	.about-point .about-point-item dl dt {
	}
	.about-point .about-point-item dl dt em.number {
		font-size: 20px;
	}
	.about-point .about-point-item dl dt h3 {
		font-size: 22px;
	}
	.about-point .about-point-item dl dt h3 small {
		font-size: 20px;
	}
}

.about-point .about-point-item dl dd {
	margin-top: 20px;
	font-size: 18px;
}
.about-point .about-point-item dl dd picture {
	text-align: center;
	display: block;
	margin-bottom: 20px;
}
.about-point .about-point-item dl dd picture img {
	width: 100%;
}

@media only screen and (max-width: 767px) {
	.about-point .about-point-item dl dd {
		font-size: 14px;
	}
	.about-point .about-point-item dl dd picture {
	}
	.about-point .about-point-item dl dd picture img {
		width: 80%;
	}
}

/*-----------------------------------------------------
院内設備
-------------------------------------------------------*/

.about-facility {}
.about-facility .about-facility-flex {
	display: flex;
	gap: 35px;
	margin-top: 50px;
}
@media only screen and (max-width: 767px) {
	.about-facility .about-facility-flex {
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 20px;
	}
}

/* 院内設備の詳細
========================================== */

.about-facility .about-facility-item {
	width: fit-content;
	max-width: 460px;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}

.about-facility .about-facility-item picture {
	display: block;
}
.about-facility .about-facility-item picture img {
	max-height: 260px;
}
.about-facility .about-facility-item dl {
	margin-top: 26px;
}
.about-facility .about-facility-item dl dt {}
.about-facility .about-facility-item dl dt h3 {
	font-size: 18px;
	font-weight: bold;
}
.about-facility .about-facility-item dl dd {
	margin-top: 1em;
	font-size: 16px;
}
@media only screen and (max-width: 767px) {
	.about-facility .about-facility-item {
		max-width: 100%;
		width: 100%;
		display: flex;
		flex-wrap: nowrap;
		align-items: flex-start;
		gap: 20px;
	}
	.about-facility .about-facility-item picture {
		display: block;
		width: 160px;
		flex-shrink: 0;
	}
	.about-facility .about-facility-item dl {
		margin-top: 0;}
	.about-facility .about-facility-item dl dd {
		font-size: 14px;
		margin-top: 10px;
	}
}

/*-----------------------------------------------------
院内設備-安全
-------------------------------------------------------*/

.about-safety {
	background: #F9F8F3;
	padding: 40px 40px 50px 40px;
	margin-top: 72px;
	width: fit-content;
}
.about-safety > h3 {
	font-weight: bold;
	font-size: 18px;
	display: block;
	padding-bottom: 10px;
}
.about-safety ol {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 20px;
}
.about-safety ol li {
	max-width: 240px;
	text-align: center;
}
.about-safety ol li > h4 {
	font-weight: bold;
	text-align: center;
	margin-top: 1em;
}

@media only screen and (max-width: 767px) {
	.about-safety {
		margin-top: 20px;
		padding: 20px;
	}
	.about-safety ol {
		flex-wrap: wrap;
	}
	.about-safety ol li {
		width: calc(48% - 10px);
	}
	.about-safety ol li > h4 {
		font-size: 12px;
	}
}
