@charset "utf-8";

#main_contents {
	background-color: #f5f3ec;
	.page_description {
	}
	.page_description::after {
		content: "";
		display: block;
		margin: clamp(25px, 5vw, 50px) auto;
		width: auto;
		height: 2rem;
		aspect-ratio: 10/1;
		background: url(../img/greeting_line.webp) no-repeat center center / contain;
		filter: brightness(0) saturate(100%) invert(36%) sepia(12%) saturate(1946%) hue-rotate(351deg) brightness(92%) contrast(89%);
	}
}
.philosophy_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(15px, 3vw, 30px) clamp(25px, 5vw, 50px);
}

.philosophy_img {
	order: 2;
	width: calc((100% - clamp(25px, 5vw, 50px)) / 2);
}
.philosophy_txt {
	order: 1;
	width: calc((100% - clamp(25px, 5vw, 50px)) / 2);
	h3 {
		line-height: 1.0;
	}
}
@media (max-width: 599px) {
	.philosophy_txt {
		order:2;
		width: 100%;
	}
	.philosophy_img {
		order:1;
		width: 100%;
	}
}

.information_wrap {
	margin-top: clamp(50px, 10vw, 100px);
	h3 {
		width: 100%;
		font-size: clamp(1.3rem,2vw,1.75rem);
		padding-bottom: .5rem;
		color: var(--base-color01);
		border-bottom: 2px solid var(--base-color01);
		margin-bottom: 1rem;
		text-align: center;
	}
}
.table_wrap {
	width: 100%;
	background-color: #fff;
	margin-top: clamp(15px, 3vw, 30px);
	padding: clamp(15px, 3vw, 30px);
	border-radius: 8px;
}
.table_wrap {
	word-break: break-all;
	dl {
		display: flex;
		gap: 0 clamp(10px, 2vw, 20px);
	}
	dt {
		width: clamp(100px, 20%, 200px);
		flex-shrink: 0;
		background: var(--base-color01);
		padding: .5em 1em;
		color: #fff;
	}
	dd {
		padding: .5em 1em;
		flex-grow: 1;
	}
	a {
		font-size: inherit;
		font-weight: 500;
		text-decoration: underline;
	}
	a:hover {
		color: var(--base-color01);
		text-decoration: underline;
	}
}
.table_wrap dl:not(:last-of-type) {
	dt { border-bottom: 1px dashed #fff;}
	dd { border-bottom: 1px dashed #ddd;}
}

@media (max-width: 599px) {
	.table_wrap {
		dl { flex-wrap: wrap; }
		dt,dd { width: 100%; }
	}
	.table_wrap dl:not(:last-of-type) {
		dt { border-bottom: none;}
		dd { border-bottom: none;}
	}
}

section.googlemap {
	width: 100%;
	max-height: 500px;
	aspect-ratio: 4/3;
	padding: 0;
	iframe {
		width: 100%;
		height: 100%;
		vertical-align: bottom;
	}
}











