@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%);
	}
}
.staff_wrap:nth-of-type(1) {
	margin-bottom: clamp(25px, 5vw, 50px);;
}
.staff_wrap {
	margin-top: clamp(25px, 5vw, 50px);
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px);
	.staff_img {
		width: calc((100% - clamp(15px, 3vw, 30px)) / 2);
	}
	.staff_txt {
		width: calc((100% - clamp(15px, 3vw, 30px)) / 2);
	}
}
.staff_txt {
	h4 {
		font-size: clamp(1.1rem,2vw,1.35rem);
		padding-bottom: .5rem;
		border-bottom: 1px dotted #333;
		margin-bottom: .5rem;
	}
}


.profile_list {
	word-break: break-all;
	width: 100%;
	background-color: #fff;
	padding: clamp(15px, 3vw, 30px);
	border-radius: 8px;
	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;
	}
}
.profile_list dl:not(:last-of-type) {
	dt { border-bottom: 1px dashed #fff;}
	dd { border-bottom: 1px dashed #ddd;}
}

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















