@charset "UTF-8";

.table--entry {
	width: 100%;
	margin-bottom: 10rem;
}
.table--entry tr {
	display: flex;
}
.table--entry tr:first-child th {
	border-radius: 1rem 0 0 0;
	padding: 3rem 4% 2rem;
}
.table--entry tr:first-child td {
	border-radius: 0 1rem 0 0;
	padding: 3rem 4% 2rem;
}
.table--entry tr:last-child th {
	border-radius: 0 0 0 1rem;
	padding: 2rem 4% 3rem;
}
.table--entry tr:last-child td {
	border-radius: 0 0 1rem 0;
	padding: 2rem 4% 3rem;
}
.table--entry tr:not(:last-child) th {
	border-bottom: .2rem solid var(--color-blueGreen);
}
.table--entry tr:not(:last-child) td {
	border-bottom: .2rem solid var(--color-darkBeige);
}
.table--entry tr th {
	padding: 2rem 4%;
	background-color: #FFF
}
.table--entry tr td {
	flex: 1;
	padding: 2rem 4%;
	background-color: #FFF
}
.table--entry tr th p {
	display: inline-block;
	width: 7em;
	font-weight: 600;
}
.table--entry tr td p {
	line-height: var(--lineHeight-text);
}
.table--entry tr td p span {
	font-size: 1.4rem;
}
.table--entry tr td p + p {
	margin-top: 1rem;
}
@media (max-width: 767px) {
	.table--entry {
		margin-bottom: min(100 / 750 * 100vw, 5rem);
	}
	.table--entry tr {
		display: block;
	}
	.table--entry tr:first-child th,
	.table--entry tr:last-child th {
		border-radius: 0;
		padding: min(40 / 750 * 100vw, 2rem) min(50 / 750 * 100vw, 2.5rem) min(15 / 750 * 100vw, .75rem) min(50 / 750 * 100vw, 2.5rem);
	}
	.table--entry tr:first-child td,
	.table--entry tr:last-child td {
		border-radius: 0;
		padding: 0 min(50 / 750 * 100vw, 2.5rem) min(40 / 750 * 100vw, 2rem) min(50 / 750 * 100vw, 2.5rem);
	}
	.table--entry tr:not(:last-child) th {
		border-bottom: none;
	}
	.table--entry tr:not(:last-child) td {
		border-bottom: .1rem solid var(--color-darkBeige);
	}
	.table--entry tr th {
		display: block;
		padding: min(40 / 750 * 100vw, 2rem) min(50 / 750 * 100vw, 2.5rem) min(15 / 750 * 100vw, .75rem) min(50 / 750 * 100vw, 2.5rem);
	}
	.table--entry tr td {
		display: block;
		padding: 0 min(50 / 750 * 100vw, 2.5rem) min(40 / 750 * 100vw, 2rem) min(50 / 750 * 100vw, 2.5rem);
	}
	.table--entry tr th p {
		width: 100%;
		line-height: var(--lineHeight-text);
	}
	.table--entry tr td p span {
		font-size: 1.2rem;
	}
	.table--entry tr td p + p {
		margin-top: min(15 / 750 * 100vw, .75rem);
	}
}

.flow {
	display: flex;
	margin-bottom: 1.5rem;
}
.flow__item {
	display: flex;
}
.flow__item:not(:last-child) {
	width: 26%;
}
.flow__item:last-child {
	width: calc(100% - (26% * 3));
}
.flow__item:not(:last-child) dl {
	width: 84.615%;
}
.flow__item:not(:last-child)::after {
	content: "";
	width: 15.385%;
	background: url("../../images/icon_arrow_02.svg") no-repeat center center / 40%;
	pointer-events: none;
}
.flow__header {
	flex-direction: column;
	justify-content: flex-start !important;
	gap: 1rem 0;
	height: 100%;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	background-color: var(--color-yellow);
}
.flow__header p {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	line-height: var(--lineHeight-titleText);
}
.flow__number.number--02::after {
	background-color: var(--color-blue);
}
.flow__number.number--04::after {
	background-color: #efebe4;
}
.text--small {
	font-size: 1.4rem;
	text-align: right;
	margin-bottom: 10rem;
}
@media (max-width: 767px) {
	.flow {
		flex-direction: column;
		margin-bottom: min(30 / 750 * 100vw, 1.5rem);
	}
	.flow__item {
		flex-direction: column;
	}
	.flow__item:not(:last-child),
	.flow__item:last-child,
	.flow__item:not(:last-child) dl {
		width: 100%;
	}
	.flow__item:not(:last-child)::after {
		width: 100%;
		height: min(80 / 750 * 100vw, 4rem);
		background: url("../../images/icon_arrow_02.svg") no-repeat center center / min(40 / 750 * 100vw, 2rem);
		transform: rotate(90deg);
	}
	.flow__header {
		flex-direction: unset;
		gap: 0;
		border-radius: 0 !important;
		height: auto;
		min-height: min(146 / 750 * 100vw, 7.3rem);
		padding: min(30 / 750 * 100vw, 1.5rem) min(50 / 750 * 100vw, 2.5rem);
	}
	.flow__header p {
		flex: 1;
		font-size: 1.8rem;
		padding-right: min(115 / 750 * 100vw, 5.75rem);
	}
	.flow__description {
		border-radius: 0 !important;
	}
	.text--small {
		font-size: 1.2rem;
		margin-bottom: min(100 / 750 * 100vw, 5rem);
	}
}

.revolution--entry {
	width: 100% !important;
	background-color: rgba(31, 28, 43, 1) !important;
	margin: 0 auto 10rem !important;
	padding: 3.5rem 7% !important;
}
@media (max-width: 1023px) {
	.revolution--entry {
		padding: 3.5rem 5% !important;
	}
}
@media (max-width: 767px) {
	.revolution--entry {
		margin-bottom: min(100 / 750 * 100vw, 5rem) !important;
		padding: min(60 / 750 * 100vw, 3rem) min(50 / 750 * 100vw, 2.5rem) !important;
	}
}

.entry__btn {
	width: min(100%, 47.5rem);
	margin: 0 auto;
}
@media (max-width: 767px) {
	.entry__btn {
		width: min(650 / 750 * 100vw, 32.5rem);
	}
}