@charset "UTF-8";

.staffing {
	margin: -10px auto 20px;
}

.staffing th {
	padding: 1rem 0;
	border-bottom: 1px solid #c9c2bc;
}

.staffing td {
	text-align: right;
	padding: 1rem 0 1rem 1rem;
	border-bottom: 1px solid #c9c2bc;
}

.th01 {
	padding: 50px;
	text-align: center;
	border-bottom: none !important;
}

.capacity {
	border-top: 1px solid #c9c2bc;
}

.photo {
	display: flex;
	align-items: center;
	width: 350px;
	margin: 40px auto;
}

.photo img {
	filter: saturate(150%);	
	box-shadow: 0px 0px 10px 2px #FFFF00;
}

.company {
	margin: 20px auto;
}

.company th,
.company td {
	border-bottom: 1px solid #c9c2bc;
}

.th02 {
	text-align-last: justify;
	padding: 1rem 1rem 1rem 0;
}

.th03 {
	text-align-last: justify;
	padding: 1rem 1.5rem 1rem 0.5rem;
}

.company td {
	padding: 1rem 0 1rem 1rem;
}

.information01,
.information02 {
	margin: 70px auto 10px;
}

.information01 th,
.information02 th {
	padding: 1rem 1rem;
	border: 1px solid #c9c2bc;
}

.information02 th {
	width: 100px;
}

.information01 td,
.information02 td {
	padding: 1rem 1rem;
	border: 1px solid #c9c2bc;
}

.th04 {
	text-align: center;
	border: none !important;
} 

.th05 {
	text-align-last: justify;
}

.information02 {
	display: none;
}

.bear-img {
	position: relative;
	width: 220px;
	margin: 60px auto 30px;
	overflow: hidden; /* はみ出る部分を隠す */
	aspect-ratio: 1 / 1; /* アスペクト比 */
	border-radius: 100vh; /* 丸型にする */
}

.bear-img::after {
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	box-shadow:
		inset 0 0 50px #fff,
		inset 0 0 50px #fff,
		inset 0 0 50px #fff,
		inset 0 0 50px #fff;
}

.photo2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.photo2 img {
	width: 250px;
	margin: 30px;
	border: 1px solid tomato;
}


@media screen and (max-width: 376px){
	.photo {
		width: 300px;
	}
}

@media screen and (min-width: 550px){
	.postcode {
		display: none;
	}
}


@media screen and (min-width: 700px){
	.staffing {
		margin: 5px auto 20px;
	}

	.overview-container {
		margin: 0 auto;
		display: grid;
		grid-template-columns: auto auto;
	}

	.company {
		grid-row: 2;
		grid-column: 1 / 3;
	}

	.photo {
		margin: 20px auto;
	}

	.information01 {
		display: none;
	}

	.information02 {
		display: table;
	}
}


@media screen and (min-width: 768px){
	#overview {
		font-size: 2.2rem;
	}
}


@media screen and (min-width: 900px){
	.photo {
		width: 400px;
	}
}


@media screen and (min-width: 1000px){
	.overview-container {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.staffing {
		margin: 20px auto;
	}

	.company {
		grid-row: initial;
		grid-column: initial;
	}

	.postcode {
		display: inline;
	}

	.photo {
		width: 300px;
	}
}


@media screen and (min-width: 1080px){
	.photo {
		width: 350px;
	}
}


@media screen and (min-width: 1160px){
	.photo {
		width: 400px;
	}

	.photo2 img {
		width: 220px;
	}
}


@media screen and (min-width: 1240px){
	.photo2 img {
		width: 250px;
	}
}


@media screen and (min-width: 1300px){
	.postcode {
		display: none;
	}
}


@media screen and (min-width: 1400px){
	.staffing,
	.company,
	.information02 {
		font-size: 1.1rem;
	}

	.information02 th {
		width: 105px;
	}
}