/* ============================================
   style_service.css
   特長とサービス ページ専用スタイル
   ============================================ */

/* ============================================
   現在地ナビリンクのスタイル
   ============================================ */
.gnav__link--current {
	color: var(--color-main);
}

/* ============================================
   ケアハウスとは
   ============================================ */
.about-carehouse__inner {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}
.about-carehouse__text {
	flex: 1 1 0;
	min-width: 0;
	max-width: 540px;
}
.about-carehouse__text p {
	margin-bottom: 20px;
}
.about-carehouse__text p:last-child {
	margin-bottom: 0;
}
.about-carehouse__img-wrap {
	flex: 1 1 0;
	min-width: 0;
	max-width: 560px;
	margin: 0 auto;
}
.about-carehouse__img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

@media (max-width: 768px) {
	.about-carehouse__inner {
		flex-direction: column;
	}
	.about-carehouse__img-wrap {
		max-width: 100%;
		order: -1;
	}
	.about-carehouse__text {
		max-width: 100%;
	}
}

/* ============================================
   光の郷の特長
   ============================================ */
.feature__inner {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}
.feature__images {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex: 1 1 0;
	min-width: 0;
	max-width: 576px;
	margin: 0 auto;
}
.feature__img {
	flex: 1 1 0;
	min-width: 0;
	width: 100%;
	max-width: 280px;
	height: auto;
	border-radius: 12px;
	display: block;
}
/* 右の画像を60px下にずらす */
.feature__img--02 {
	margin-top: 60px;
}
.feature__text {
	flex: 1 1 0;
	min-width: 0;
	max-width: 540px;
}
.feature__text-list {
	list-style: disc;
	margin-top: 20px;
	padding-left: 22px;
}
.feature__text-list li:not(:last-of-type) {
	margin-bottom: 12px;
}

@media (max-width: 768px) {
	.feature__inner {
		flex-direction: column;
	}
	.feature__images {
		width: 100%;
		order: -1;
		/* gap はそのまま。2枚を均等幅にするため flex を使う */
		flex: none;
	}
	.feature__img {
		/* 親の半分から gap 分を引いた幅に自動フィット */
		width: calc(50% - 8px);
		max-width: none;
	}
	/* スマホ：ズレを解除 */
	.feature__img--02 {
		margin-top: 0;
	}
	.feature__text {
		max-width: 100%;
	}
}

/* ============================================
   光の郷のサービス
   ============================================ */
.service-list__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 30px;
}
.service-list__item {
	display: flex;
	flex-direction: column;
}
.service-list__img {
	width: 100%;
	max-width: 360px;
	height: auto;
	border-radius: 12px;
	margin-bottom: 10px;
}
.service-list__caption {
	font-size: 1rem;
	color: var(--color-text);
	text-align: center;
}

.service-list__note {
	margin-top: 50px;
}
.service-list__note > p {
	margin-bottom: 20px;
}
.service-list__note-list {
	list-style: disc;
	padding-left: 22px;
}
.service-list__note-list li {
	margin-bottom: 8px;
}
.service-list__note-list li:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.service-list__grid {
		grid-template-columns: 1fr;
		gap: 30px 0;
	}
	.service-list__img {
		max-width: 100%;
	}
	.service-list__note {
		margin-top: 30px;
	}
}

/* ============================================
   介護関係者様向け見学会
   ============================================ */
.tour .section-heading {
	display: flex;
	align-items: center;
}
.tour__inner {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}
.tour__img-wrap {
	flex: 1 1 0;
	min-width: 0;
	max-width: 560px;
	margin: 0 auto;
}
.tour__img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}
.tour__text {
	flex: 1 1 0;
	min-width: 0;
	max-width: 540px;
}
.tour__text p {
	margin-bottom: 20px;
}
.tour__text p:last-child {
	margin-bottom: 0;
}
.tour__text a {
	color: var(--color-main);
	text-decoration: underline;
}

/* 施設長からのごあいさつ */
.greeting {
	margin-top: 80px;
	padding: 40px 60px;
	width: 100%;
	max-width: 1000px;
	background-color: #FAF3F5;
	border-radius: 12px;
	margin-left: auto;
	margin-right: auto;
}
.greeting__title {
	font-size: 24px;
	font-weight: 700;
	color: #A61C4B;
	margin-bottom: 30px;
	text-align: center;
}
.greeting p {
	margin-bottom: 20px;
}
.greeting p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.tour__inner {
		flex-direction: column;
	}
	.tour__img-wrap {
		max-width: 100%;
		order: -1;
	}
	.tour__text {
		max-width: 100%;
	}
	.greeting {
		padding: 30px 24px;
		margin-top: 50px;
	}
}
@media (max-width: 480px) {
	.tour .section-heading {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	.tour .section-heading span {
		margin-left: 0;
	}
}

/* ============================================
   お問い合わせ：上余白
   ============================================ */
.contact {
	margin-top: 80px;
}

@media (max-width: 768px) {
	.contact {
		margin-top: 40px;
	}
}
