section.panel {
	> div {
		max-width: 1920px;
		margin-inline: auto;
		> figure {
			> img {
				max-width: 100%;
			}
		}
	}
}
section.title {
	padding: 60px 5% 60px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> h1 {
			font-size: 2.0rem;
			line-height: 1.5;
			color: #333;
			text-align: center;
			font-weight: 600;
		}
		> p {
			padding-top: 30px;
			font-size: 1.1rem;
			line-height: 2;
			color: #333;
			text-align: justify;
			@media (width < 630px) {
				font-size: min(0.9rem,4.5vw);
			}
		}
	}
}
section.message {
	background-color: #143282;
	max-width: 1920px;
	margin-inline: auto;
	display: grid;
	@media (width < 760px) {
		display: block;
	}
	> picture {
		grid-area: 1/1/2/2;
		> img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}
	> div {
		width: 100%;
		padding-block: 20px;
		grid-area: 1/1/2/2;
		justify-self: start;
		align-self: center;
		max-width: 1000px;
		margin-inline: auto;
		@media (width < 1100px) {
			padding-left: 5vw;
			padding-right: 5vw;
		}
		> p {
			font-size: 1.0rem;
			line-height: 1.8;
			color: #fff;
			text-align: justify;
			letter-spacing: 2px;
			&:nth-of-type(2) {
				padding-top: 20px;
			}
			&:last-of-type {
				padding-top: 20px;
			}
			@media (width < 760px) {
				max-width: 100%;
			}
			> span {
				&.wave {
					font-size: 1.3rem;
					color: #fcee21;
					text-decoration: #fcee21 wavy underline;
				}
				&.blue {
					color: #0ff;
					line-height: 2;
					text-indent: -1em;
					padding-left: 1em;
				}
			}
		}
	}
}
section.empty {
	padding: 70px 5% 0px 5%;
	background-color: #fff;
	&.hidden {
		display: none;
	}
	> div {
		max-width: 600px;
		margin-inline: auto;
		background-color: #eef;
		> p {
			padding-block: 40px;
			padding-inline: 5px;
			font-size: 1rem;
			line-height: 1.5;
			color: #000;
			text-align: center;
		}
	}
}
section.jobs {
	padding: 0px 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		> article {
			padding-top: 50px;
			> h2 {
				padding-top: 40px;
				font-size: 1.4rem;
				line-height: 1.5;
				color: #000;
				font-weight: 600;
				text-align: center;
			}
			> dl {
				padding-top: 20px;
				> div {
					display: grid;
					grid-template-columns: 200px 1fr;
					&:first-child {
						> dt {
							border-top: 1px solid #b3b3b3;
						}
						> dd {
							border-top: 1px solid #b3b3b3;
							@media (width < 630px) {
								border-top: none;
							}
						}
					}
					@media (width < 630px) {
						grid-template-columns: 1fr;
						height: auto;
					}
					> dt {
						background-color: #e7e6e6;
						align-content: center;
						font-size: 1rem;
						line-height: 1.3;
						color: #333;
						font-weight: 500;
						padding: 10px 10px 10px 30px;
						border-bottom: 1px solid #b3b3b3;
						@media (width < 630px) {
							border-top: 1px solid #b3b3b3;
							line-height: 1.1;
							font-size: min(0.9rem,4.5vw);
						}
					}
					> dd {
						align-content: center;
						border-bottom: 1px solid #b3b3b3;
						color: #333;
						font-size: 1rem;
						line-height: 1.8;
						padding: 10px 40px 10px 40px;
						> span {
							padding-left: -1em;
						}
						@media (width < 630px) {
							border: none;
							padding: 10px 0px 40px 0px;
							font-size: min(0.9rem,4.5vw);
						}
					}
				}
			}
		}
	}
}
section.link {
	padding: min(100px,15vw) 5% 0px 5%;
	> div {
		max-width: 1000px;
		margin-inline: auto;
		display: flex;
		flex-direction: column;
		row-gap: 40px;
		> div {
			&:nth-of-type(1) {
				> a {
					background-color: #143282;
				}
			}
			&:nth-of-type(2) {
				> a {
					background-color: #e95756;
				}
			}
			> a {
				display: block;
				text-decoration: none;
				text-align: center;
				&:hover {
					opacity: 0.8;
				}
				> p {
					display: inline-block;
					text-align: center;
					padding-block: 30px;
					font-size: min(1.3rem, 5.5vw);
					line-height: 1;
					color: #fff;
					background-image: url(../../common/image/link_mark.svg);
					background-size: 20px;
					background-repeat: no-repeat;
					background-position: 100% 52%;
					padding-right: 30px;
				}
			}
		}
	}
}
section.bottom {
	padding-top: min(120px,17vw);
	border-bottom: solid 1px #143282;
}
