:root {
	--main-color: #437CBC;
}
.contents_wrap * {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.5;
	letter-spacing: .5px;
}
.contents_wrap .bold {
	font-weight: 700;
}
.contents_wrap .title__wrap {
	background: var(--main-color);
	padding: 1rem;
	position: relative;
	margin-bottom: 40px;
}
.contents_wrap .title__wrap::before {
	content: "";
	width: calc(100% + 1rem);
	height: calc(100% + 1rem);
	border: 2px solid var(--main-color);
	position: absolute;
	top: -.5rem;
	left: -.5rem
}
.contents_wrap .title__wrap h1 {
	display: flex;
	flex-direction: column;
	gap: .25rem
}
.contents_wrap .title__wrap h1 span,
.contents_wrap .title__wrap h1 p {
	font-size: min(6.923vw, 40px);
	font-weight: 600;
	color: #fff;
}

.detail__list .detail_inner:not(.detali__list .detail_inner:last-child) {
	margin-bottom: 40px;
}
.detail__list .detail_inner  {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.detail__list .title {
	font-size: 18px;
	font-weight: 600;
	position: relative;
	padding-left: .5rem;
	border-left: .5rem solid #90c4ff;
	height: fit-content;
}

.detail__list .text {
	font-size: 1rem;
	line-height: 1.7;
}
.detail__list ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.detail__list .schedule__list li{
	border: 2px solid var(--main-color);
	/* display: flex; */
}
.detail__list .schedule__list p {
	font-size: 17px;
	font-weight: 600;
	padding: 1rem;
	border-bottom: 2px solid var(--main-color);
	background: #e4f2ff;
	line-height: 1;
}
.detail__list .text .schedule {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.detail__list .text .schedule dt {
	font-weight: 500;
	padding-bottom: .5rem;
	
}
.detail__list .text .info {
	margin-top: .5rem;
}
.btn__wrap {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	/* max-width: 80%; */
	margin: 56px auto;
	max-width: 500px;
}
.btn__wrap a {
	display: flex;
	color: #fff;
	font-weight: 600;
	/* padding: 2rem; */
	font-size: 18px;
	justify-content: center;
	letter-spacing: .5px;
	/* max-width: 390px; */
	border-radius: 999px;
	text-align: center;
	height: 6.5rem;
	align-items: center;
}
.btn__wrap .move-to-document {
	background: var(--main-color);
	border: 2px solid var(--main-color);
}
.btn__wrap .get-document {
	background: #ffffff;
	color: var(--main-color);
	border: 2px solid var(--main-color);
}
.btn__wrap .inner {
	display: grid;
	gap: 1rem;
}
.btn__wrap a:hover {
	opacity: 1;
}
@media (hover: hover) {
	.btn__wrap a:hover {
		transition: .3s all;
	}
	.btn__wrap .move-to-document:hover {
		background: #fff;
		color: var(--main-color);
	}
	.btn__wrap .get-document:hover {
		background: var(--main-color);
		color: #fff;
		border: 2px solid var(--main-color);
	}
}
@media(min-width: 768px) {
	.contents_wrap .title__wrap {
		margin-bottom: 56px;
		padding: 1.5rem;
	}
	.contents_wrap .title__wrap h1 {
		flex-direction: row;
		justify-content: center;
		gap: 1rem;
	}
	.detail__list .detail_inner:not(.detali__list .detail_inner:last-child) {
		margin-bottom: 48px;
	}
	.detail__list .detail_inner  {
		flex-direction: row;
	}
	.detail__list .title {
		width: 20%
	}
	.detail__list .text {
		width:80%
	}
	.detail__list .schedule__list li {
		display: flex;
	
	}
	.detail__list .schedule__list p {
		border-bottom: none;
		border-right: 2px solid var(--main-color);
		width: 15%;
		display: grid;
		place-items: center;
	}
	.detail__list .text .schedule {
		width: 85%;
	}
	.btn__wrap {
		margin: 72px auto;
		gap: min(3vw, 2rem);
		max-width: 85%;
	}
	.btn__wrap .inner {
		grid-template-columns: 1fr 1fr;
		gap: min(3vw, 2rem);
	}
}