@charset "UTF-8";
/* CSS Document */
.p-box {
	display: flex;
	gap: 20px;
	text-align: center;
}
.p-item {
	border: 1px solid var(--ncb-orange);
	border-radius: 10px;
	position: relative;
	width: calc((100% - 40px) / 3);
	background: var(--lt-beige);
}
.p-title--num {
	width: fit-content;
	position: absolute;
	background: var(--ncb-orange);
	top: -15px;
	right: 0;
	left: 0;
	margin: auto;
	color: var(--white);
	border-radius: 40px;
	font-size: 18px;
	font-weight: 500;
	padding: 2px 18px;
	letter-spacing: 0.12em;
}
.p-item__wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 36px 1em 23px;
}
.p-title {
	margin-bottom: 1em;
	font-size: 18px;
	font-weight: 500;
}
.p-text {
	flex: 1;
}
.p-item figure {
	text-align: center;
}
.p-outline1 {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 30px;
	font-size: 0.9em;
}
.p-outline1 li {
	overflow: hidden;
	flex: 1;
	border: solid 1px #000d39;
	border-radius: 3px;
	text-align: center;
}
.p-outline1__head {
	padding: 0.25em;
	background: #000d39;
	color: #fff;
}
.p-outline1__body {
	padding: 0.25em;
	color: #000d39;
}
.p-outline1__body span {
	display: block;
	font-size: 0.8em;
}
.p-outline1__body span.-large {
	font-size: 1.2em;
}
.p-outline2 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
	font-size: 0.9em;
}
.p-outline2 dt {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(30% - 7px);
	padding: 10px;
	border: solid 1px #000d39;
	text-align: center;
}
.p-outline2 dd {
	width: calc(70% - 5px);
}

@media screen and (max-width: 767.9px) {

	.p-box {
			flex-direction: column;
			gap: 40px;
	}
	.p-item {
			width: 100%;
	}
	.p-item__wrap {
			padding: 30px 0 23px;
	}
	.p-item__text {
			min-height: auto;
			gap: 8px;
	}
	.p-outline1 {
		gap: 10px;
	}
	.p-outline1 li {
		flex: auto;
		width: calc(50% - 5px);

	}

}
