@charset "UTF-8";
/* root */
:root {
	--primary: #1d4ed8;
	--primaryBright: #3b82f6;
	--primaryUltraLight: #93c5fd;

	--base1: #020617;
	--base2: #64748b;
	--base3: #94a3b8;
	--base4: #cbd5e1;
	--base5: #e2e8f0;
	--base6: #f1f5f9;
	--base7: #f8fafc;
	--base8: #ffffff;

	--alert: #dc2626;
	--amber: #d97706;
	--success: #16a34a;

	--text-summary: clamp(1rem, 1.406vw, 2rem);
	--fv-discription: clamp(0.8rem, 0.833vw, 1.2rem);
	--text-size-10: clamp(0.6rem, 0.52vw, 0.7rem);
	--textsize-12: clamp(0.7rem, 0.625vw, 0.8rem);
	--text-size-14: clamp(0.75rem, 0.729vw, 0.9rem);
	--text-size-15: clamp(0.92rem, 0.8vw, 0.15rem);
	--text-size-16: clamp(1rem, 0.833vw, 1.2rem);
	--text-size-20: clamp(1.15rem, 1.04vw, 1.3rem);
	--text-size-22: clamp(1.2rem, 1.105vw, 1.4rem);
	--text-size-24: clamp(1.3rem, 1.25vw, 1.5rem);
	--text-size-32: clamp(1.4rem, 1.666vw, 2rem);
	--text-size-40: clamp(2.5rem, 2.999vw, 3rem);
	--text-size-48: clamp(2.8rem, 3.1vw, 3.5rem);
	--text-size-64: clamp(3.6rem, 3.332vw, 4rem);
	--text-size-80: clamp(4.3rem, 4.061vw, 4.9rem);

	--text-move: clamp(0.8rem, 2.3vw, 3rem);
	--section-blanksp: 15vw 2vw 8vw;
	--section-blankpc: 10vw 0 0;
}

/* body */

.section__img {
	width: 80%;
	transform: translate(0%, 50%);
}
.gakusyu-jikan-kanri__wrap--inner .section__img {
	position: absolute;
	top: 50%;
	width: 80%;
	transform: translate(0%, -50%);
}
.i-trainingandtest-kaito-kakunin__wrap--inner {
	position: relative;
	/* height: -webkit-fill-available; */
	height: 100%;
}
.i-trainingandtest-kaito-kakunin__wrap--inner .section__img {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translate(0%, -50%);
}
.eizo-kougi-saisei__wrap--inner .section__img {
	width: 80%;
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
}
@media screen and (max-width: 1023px) {
	.section__img {
		position: static;
		top: 0%;
		left: 0%;
		transform: translate(0%, 0%);
		width: 100%;
		margin: auto;
		margin-top: 16px;
	}
	.i-trainingandtest-kaito-kakunin__wrap--inner {
		position: relative;
		display: flex;
		flex-direction: column-reverse;
		height: auto;
	}
}
/********************************
logo 
 ********************************/
.logo {
	background: var(--base8);
	position: fixed;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 18%;
	z-index: 1000;
	padding: 0.6% 2.2% 0.2%;
	box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: 0.4s;
	border-radius: 100vh;
}
@media screen and (max-width: 1023px) {
	.logo {
		left: auto;
		right: 2vw;
		transform: translateX(0%);
		width: 160px;
		top: 10px;
		padding: 0.6% 2.2% 0.2%;
	}
}
/*************************************
nav 
 *************************************/
.nav {
	background: var(--primary);
	position: fixed;
	top: 10px;
	left: 1vw;
	z-index: 1000;
	padding: 0.5vw;
	box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: 0.4s;
	border: solid 1px var(--base8);
}

.nav.is-show {
	background: var(--base8);
	top: 20px;
	left: 2vw;
	padding: 2vw;
	cursor: default;
}
.nav__button--row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.closeTxt {
	font-weight: bold;
	font-size: var(--text-size-32);
	cursor: pointer;
	transition: 0.4s;
	color: var(--base8);
	line-height: 1;
	margin: 16px 16px 18px;
}
.nav.is-show .closeTxt {
	color: var(--primary);
}
.closeTxt:hover {
	color: var(--base4);
}
.closeTxt.is-show {
	content: "CLOSE";
}
.nav__closeBtn {
	display: none;
	transition: 0.4s;
}
.nav__closeBtn.is-show {
	display: block;
	background: var(--base8);
	height: 48px;
	width: 48px;
	border-radius: 100vh;
	border: var(--base1) solid 1px;
	position: relative;
	cursor: pointer;
	transition: 0.4s;
}

.nav__closeBtn::before,
.nav__closeBtn::after {
	content: "";
	width: 2px;
	height: 24px;
	background: var(--base1);
	position: absolute;
	right: 50%;
	top: 25%;
	transition: 0.4s;
}
.nav__closeBtn::before {
	transform: rotate(-45deg);
	transition: 0.4s;
}
.nav__closeBtn::after {
	transform: rotate(45deg);
	transition: 0.4s;
}
.nav__closeBtn:hover {
	background: var(--amber);
	border: var(--base8) solid 1px;
}
.nav__closeBtn:hover::before,
.nav__closeBtn:hover::after {
	background: var(--base8);
}
.nav__closeBtn:hover::before {
	transform: rotate(-135deg);
}
.nav__closeBtn:hover::after {
	transform: rotate(135deg);
}
nav ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;

	margin-top: 24px;
}
nav ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	background: var(--base7);
	align-items: center;
	border-radius: 6px;
	padding: 15px;
	cursor: pointer;
}
nav ul li a {
	display: block;
	text-align: center;
	align-items: center;
	transition: 0.4s;
}

nav ul li:hover a {
	scale: 0.9;
}
nav ul li a img {
	display: block;
	height: 24px;
	width: auto;
	margin: auto auto 4px;
}
nav ul li a p {
	display: block;
	width: fit-content;
	margin: auto;
	line-height: 1;
	text-align: center;
	color: var(--primary);
	font-weight: 500;
}

.nav__smalltext {
	display: none;
	transition: 0.4s;
}
.nav__smalltext.is-show {
	font-size: var(--textsize-12);
	display: block;
	margin: 16px auto 0;
	text-align: center;
}
.nav__bg--blur {
	opacity: 0;
	transition: 0.4s;
}
.nav__bg--blur.is-show {
	opacity: 1;
	position: fixed;
	height: 100vh;
	width: 100vw;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	z-index: 100;
}
.nav__ul {
	display: none;
	transition: 0.4s;
}
.nav__ul.is-show {
	display: grid;
}
@media screen and (max-width: 1023px) {
	.nav {
		top: 10px;
	}
	.nav__wrap img:hover {
		opacity: 1;
	}
	.closeTxt {
		margin: 6px 6px 8px;
	}
}
/*******************************************
firstView 
 *******************************************/
.firstView {
	padding: 8vw 0 0;
	margin: auto;
	align-items: start;
	box-shadow: 0px 0px 10px 5px var(--base4);

	background: linear-gradient(
		-2deg,
		rgb(29, 78, 216) 20%,
		rgb(38, 86, 218) 32%,
		rgb(24, 72, 204) 50%
	);
	background-size: 200% 200%;

	animation: fvAnime 8s ease infinite;
}

.firstView__contentWrap {
	display: flex;
	align-items: start;
	justify-content: center;
	margin: 0 10vw 2vw;
}
.firstView__title {
	font-size: var(--text-size-80);
	font-weight: bold;
	color: var(--base8);
	line-height: 1;
	width: 24vw;
	margin-bottom: 2vw;
}
.firstView__subtitle {
	display: block;
	font-size: var(--text-summary);
	color: var(--base8);
	font-weight: bold;
	line-height: 2;
	white-space: nowrap;
}

.firstView__wrap {
	bottom: 10%;
	left: 5vw;
	width: 25vw;
}
.firstView__summary--textWrap {
	display: flex;
	flex-direction: column;
}
.firstView__summary--text {
	color: var(--base8);
	font-weight: 500;
	font-size: var(--fv-discription);
	margin-top: 0.75rem;
}
.firstView__summary--title {
	display: block;
}
.news_title {
	display: inline-block;
	font-size: var(--text-size-32);
	font-weight: 800;
	padding: 1.3vw;
	text-align: center;
	line-height: 1;
	vertical-align: super;
	color: var(--amber);
	letter-spacing: 0.1em;
}
.firstView_button {
	background-color: var(--base6);
	color: var(--primary);
	padding: 12px 20px;
	border-radius: 100vh;
	height: fit-content;
	text-align: center;
	font-size: var(--text-size-20);
	transition: 0.4s;
	margin-top: 4vw;
	font-weight: 500;
}

.firstView_button:hover {
	background-color: var(--base8);
	filter: brightness(1.2);
}
.fv_imgWrap {
	position: relative;
	width: 47vw;
	text-align: center;
	margin: auto 0 0 auto;
	aspect-ratio: 4 / 3;
}
.fv_imgWrap img {
	position: absolute;
}
.fv_imgWrap img:nth-child(1) {
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	animation: shadowTb 6s infinite ease-in-out;
}
.fv_imgWrap img:nth-child(2) {
	bottom: 0;
	right: 0;
	width: 100%;
	z-index: 1;
	animation: shadowSp 5s infinite ease-in-out;
}
.fv_imgWrap img:nth-child(3) {
	top: 0;
	left: 0;
	width: 90%;
	animation: fvTb 6s infinite ease-in-out;
}
.fv_imgWrap img:nth-child(4) {
	top: 10%;
	right: 0;
	height: 80%;
	animation: fvTb 5s infinite ease-in-out;
}
@keyframes shadowTb {
	0% {
		opacity: 0.4;
	}
	50% {
		opacity: 0.7;
	}
	100% {
		opacity: 0.4;
	}
}
@keyframes shadowSp {
	0% {
		opacity: 0.4;
	}
	50% {
		opacity: 0.7;
	}
	100% {
		opacity: 0.4;
	}
}
@keyframes fvTb {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(2%);
	}
	100% {
		transform: translateY(0px);
	}
}
@keyframes fvSp {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(1%);
	}
	100% {
		transform: translateY(0px);
	}
}

.fv__gold {
	background-color: var(--base6);
	padding: 1.5rem;
	text-align: center;
	-webkit-clip-path: polygon(
		50% 15%,
		52% 0%,
		100% 0,
		100% 100%,
		0 100%,
		0 0,
		48% 0
	);
	clip-path: polygon(50% 15%, 52% 0%, 100% 0, 100% 100%, 0 100%, 0 0, 48% 0);
}
@media screen and (max-width: 1023px) {
	.firstView {
		flex-direction: column;
		padding: 5vw 0vw 0vw 0vw;
		align-items: center;
		gap: 0;
	}
	.firstView__wrap {
		position: static;
		width: 100%;
	}
	.firstView__summary {
		padding: 0vw 0vw 0vw;
		margin: auto;
	}
	.firstView__summary--title {
		font-size: var(--text-size-24);
	}
	.firstView__summary--text {
		font-size: var(--text-size-15);
		margin: 4vw 0 4vw;
	}
	.firstView__summary--textWrap {
		flex-direction: column;
	}
	.firstView__img {
		position: static;
		width: auto;
	}
	.firstView__title {
		font-size: var(--text-size-48);
		text-align: center;
		line-height: 1;
		margin: auto;
		margin-top: 50px;
		width: 100%;
	}

	.firstView__subtitle {
		font-size: var(--text-size-24);
		color: var(--base8);
		font-weight: bold;
		margin-top: 5vw;
		text-align: center;
		white-space: normal;
	}
	.firstView_button {
		width: 100%;
		margin-top: 0;
		font-weight: 600;
		margin-bottom: 8%;
	}
	.fv_imgWrap {
		margin-top: 7%;
		width: 100%;
		height: 100%;
		text-align: center;
		flex: 1;
	}

	.news_title {
		display: block;
		font-size: var(--text-size-32);
		line-height: 1.45;
	}
	.news_day {
		display: block;
		font-size: var(--text-size-40);
		line-height: 1;
		padding: 0px;
		background: none;
		color: var(--base8);
	}

	.firstView__contentWrap {
		flex-direction: column;
		align-items: center;
	}
	.fv__gold {
		background-color: var(--base6);
		padding: 1.5rem;
		text-align: center;
		-webkit-clip-path: polygon(
			50% 11%,
			54% 0%,
			100% 0,
			100% 100%,
			0 100%,
			0 0,
			46% 0
		);
		clip-path: polygon(
			50% 11%,
			54% 0%,
			100% 0,
			100% 100%,
			0 100%,
			0 0,
			46% 0
		);
	}
}

/* summary */
.summary {
	position: relative;
	padding: 7vw 5vw 5vw;
}
.summary__title {
	text-align: center;
	font-size: var(--text-size-32);
}
.summary__textWrap {
	display: block;
	max-width: 800px;
	margin: 3vw auto 0;
	line-height: 2.5;
}
.summary_img {
	position: absolute;
	filter: blur(16px);
	opacity: 0.08;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

	display: block;
	width: auto;
	height: auto;
	margin: 1vw auto 0;
	z-index: -1;
}
.emphasis {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 60%,
		rgb(255, 253, 110) 0%
	);
	background-blend-mode: overlay;
}
.summary_box {
	display: block;
	padding: 1vw;
	line-height: 1.5;
	margin: 1vw 0;
	font-size: var(--text-size-15);
	font-weight: 400;
	border-left: var(--primary) 1px solid;
	border-right: var(--primary) 1px solid;
	background: rgba(255, 255, 255, 0.5);
}
.summary__small {
	font-size: var(--text-size-15);
	font-weight: 400;
}
.summary__list {
	display: grid;
	grid-template-columns: repeat(3, 33%);
	gap: 1% 3%;
	list-style: none;
	padding: 0;
	overflow: visible;
}
.summary__listWrap p {
	display: block;
	width: 33%;
	text-align: center;
	margin: 8% auto 2%;
	border-right: var(--primary) 2px solid;
	border-left: var(--primary) 2px solid;
	color: var(--base1);
}
.summary__list li {
	margin: 0;
	white-space: nowrap;
	list-style: none;
	list-style-position: inside;
}
.summary__list li::before {
	content: "\25BE";
}
.summary__list li a {
	border-bottom: 1px solid rgba(0, 0, 0, 0);
	transition: 0.15s;
}
.summary__list li:hover a {
	border-bottom: 1px solid var(--base1);
}
@media screen and (max-width: 1023px) {
	.summary__list {
		width: 180px;
		transform: translateX(calc((90vw - 180px) / 2));
		position: relative;
	}
	.summary__list li {
	}
	.summary__textWrap {
		max-width: 100%;
	}
}
@media screen and (max-width: 1023px) {
	.summary__text {
		margin: 10vw auto 0;
		line-height: 2.5;
		font-size: var(--text-size-15);
	}
	.summary_img {
		width: 100%;
		bottom: 100px;
		text-align: center;
	}
	.summary {
		position: relative;
		padding: 16vw 5vw 8rem;
	}
	.summary_box {
		padding: 4vw;
		margin: 4vw 0;
	}
	.summary__listWrap {
		width: 100%;
		margin: auto;
	}
	.summary__listWrap p {
		padding: 0.3rem 1rem;
		width: fit-content;
		white-space: nowrap;
		margin: 5rem auto 2rem;
	}
	.summary__list {
		display: grid;
		grid-template-columns: repeat(1, 100%);
		gap: 1%;
	}
	.summary__list li {
		white-space: normal;
	}
}

/* small */

.syoukai {
	margin: 2vw auto;
	width: fit-content;
	text-align: center;
	font-size: var(--text-size-32);
}

@media screen and (max-width: 1023px) {
	.syoukai {
		margin: 60px auto;
		width: fit-content;
		text-align: center;
		font-size: var(--text-size-32);
	}
}
/* 01gakusyu-jikan-kanri */
.gakusyu-jikan-kanri {
	position: relative;
	padding: 5vw;
}
.gakusyu-jikan-kanri__bgimg {
	position: absolute;
	z-index: -1;
	animation: sectionAnimetion 3.7s infinite ease-in-out;
}
.gakusyu-jikan-kanri__bgimg:nth-child(1) {
	bottom: 20%;
	right: -20%;
	width: 70vw;
	animation-delay: 1s;
}
.gakusyu-jikan-kanri__bgimg:nth-child(2) {
	top: 30%;
	left: 37%;
	width: 40vw;
}
@keyframes sectionAnimetion {
	0% {
		transform: translate(0%, -6%);
	}
	50% {
		transform: translate(0%, -12%);
	}

	100% {
		transform: translate(0%, -6%);
	}
}
.gakusyu-jikan-kanri__wrap {
	display: grid;
	align-items: center;
	width: 40vw;
	grid-template-columns: 50% 50%;

	grid-template-rows: 50% 50%;
	direction: rtl;
	text-align: center;
}
.gakusyu-jikan-kanri__card--inner {
	text-align: left;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.gakusyu-jikan-kanri__cardWrap {
	background: var(--primary);
	color: var(--base8);
	/* height: -webkit-fill-available; */
	padding: 2vw;
	direction: ltr;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.gakusyu-jikan-kanri__cardWrap img {
	width: 60%;
	height: auto;
	flex-shrink: 0;
	margin: auto;
}
.gakusyu-jikan-kanri__wrap--right {
	position: absolute;
	right: 0;
	width: 50vw;
	height: 100%;
}
.gakusyu-jikan-kanri__wrap--inner {
	position: relative;
	/* height: -webkit-fill-available; */
	height: 100%;
}
.gakusyu-jikan-kanri__wrap--righ img {
	position: absolute;
}
.gakusyu-jikan-kanri__benefit {
	position: absolute;
	top: 8%;
	right: 20%;
}
.benefit--move {
	display: inline-block;
	position: relative;
	background: rgba(255, 255, 255, 0.9);
	color: var(--base1);
	font-size: var(--text-move);
	z-index: 1;
	padding: 5px;
	line-height: 1.7;
}

.benefit--move::before {
	content: "";
	display: block;
	background: var(--primary);
	position: absolute;
	inset: 0;
	clip-path: inset(0 0 0 0);
}

.benefit--move.active {
	animation: clip-text 0.5s ease-in-out forwards;
}

.benefit--move.active::before {
	animation: clip-cover 0.6s ease-in-out forwards;
	animation-delay: 0.4s;
}

@keyframes clip-text {
	from {
		clip-path: inset(0 100% 0 0);
	}
	to {
		clip-path: inset(0 0 0 0);
	}
}

@keyframes clip-cover {
	from {
		clip-path: inset(0 0 0 0);
	}
	to {
		clip-path: inset(0 0 0 100%);
	}
}

.gakusyu-jikan-kanri__card--title {
	margin-bottom: 16px;
}
.gakusyu-jikan-kanri__card--description {
	font-size: var(--text-size-16);
	margin-bottom: 1vw;
	text-align: left;
}
@media screen and (max-width: 1023px) {
	.gakusyu-jikan-kanri {
		position: relative;
		padding: 50px 5vw 100px;
	}

	.gakusyu-jikan-kanri__bgimg:nth-child(1) {
		top: 10%;
		right: -18%;
		width: 100%;
		animation-delay: 1s;
	}
	.gakusyu-jikan-kanri__bgimg:nth-child(2) {
		top: 2%;
		left: -2%;
		width: 50%;
	}
	.gakusyu-jikan-kanri__benefit {
		position: static;
		text-align: left;
		background: none;
		color: var(--base1);
		margin-bottom: 16px;
	}
	.gakusyu-jikan-kanri__benefit span {
		font-size: var(--text-size-20);
	}
	.gakusyu-jikan-kanri__cardWrap {
		flex-direction: row;
		padding: 1vw;
		border-radius: 8px;
		height: auto;
		background: var(--base6);
	}
	.gakusyu-jikan-kanri__cardWrap img {
		width: 30%;
		height: 30%;
	}
	.gakusyu-jikan-kanri__wrap {
		display: flex;
		flex-direction: column;
		direction: ltr;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto auto;
		width: auto;
		height: fit-content;
		gap: 2vw;
	}

	.gakusyu-jikan-kanri__card--inner {
		padding: 2vw;
	}
	.gakusyu-jikan-kanri__wrap--right {
		position: static;
		bottom: 0;
		right: 0;
		width: 100%;
		z-index: 0;
		margin-bottom: 40px;
		height: auto;
	}
	.gakusyu-jikan-kanri__wrap--inner {
		position: relative;
		display: flex;
		flex-direction: column-reverse;
		height: auto;
	}
	.gakusyu-jikan-kanri__wrap--righ img {
		position: absolute;
	}

	.gakusyu-jikan-kanri__cardWrap:nth-child(1) {
		margin-top: 12vw;
	}
	.gakusyu-jikan-kanri__card--description {
		color: var(--base1);
		font-size: var(--text-size-15);
	}
}
/* 02i-trainingandtest-kaito-kakunin */
#i-trainingandtest-kaito-kakunin {
	background: var(--base6);
}
.i-trainingandtest-kaito-kakunin {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
}
.feature__bg {
	background-color: var(--primary);
	width: 55vw;
	/* height: -webkit-fill-available; */
	height: auto;
	padding: 5vw 5vw;
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.feature__bg--inner {
	display: flex;
	gap: 3vw;
}

.i-trainingandtest-kaito-kakunin__wrap--right {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 45vw;
	height: 100%;
}

.itratest__benefit {
	position: absolute;
	top: 8%;
	left: 8%;
}
.i-trainingandtest-kaito-kakunin__p {
	color: var(--base8);
	width: auto;
	flex: 1;
}
.itretest__textWrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
}
.itretest_textBenefitWrap {
	display: flex;
	flex-direction: row;
	gap: 12px;
	text-align: center;
	flex: 1;
	align-items: end;
}
.itretest_textBenefitWrap--inner {
	flex: 1;
	color: var(--base8);
}
.itretest_textBenefitWrap--inner img {
	width: 100%;
	margin: 0 auto;
}
.line {
	height: 1px;
	width: 100%;
	background: var(--base8);
}
.itretest_textBenefitWrap--inner p {
	font-size: var(--text-size-14);
	padding: 0 0vw;
	text-align: left;
	line-height: 1.5;
	margin-bottom: 8px;
}
@media screen and (max-width: 1023px) {
	.itretest__textWrap {
		flex-direction: column;
	}
	.i-trainingandtest-kaito-kakunin__p {
		width: auto;
		color: var(--base1);
		margin-bottom: 3vw;
		font-size: var(--text-size-15);
	}
	.feature__bg--inner {
		flex-direction: column;
	}
	.itretest_textBenefitWrap--inner img {
		width: 70%;
	}
	.line {
		background: var(--primary);
	}
}
@media screen and (max-width: 1023px) {
	.i-trainingandtest-kaito-kakunin {
		position: relative;
		display: flex;
		flex-direction: column;
		padding: 50px 5vw 100px;
	}

	.feature__bg {
		background-color: var(--base8);
		position: static;
		width: auto;
		height: auto;
		padding: 12vw 8vw;
		border-radius: 8px;
	}
	.i-trainingandtest-kaito-kakunin__wrap--right {
		position: static;
		bottom: 0;
		right: 0;
		width: 100%;
		z-index: 0;
		margin-bottom: 30px;
		height: auto;
	}
	.itratest__benefit {
		position: static;
		font-size: var(--text-size-32);
		text-align: center;
		margin-bottom: 0px;
		background: none;
		color: var(--base1);
		margin-top: 30px;
	}
	.itretest_textBenefitWrap--inner p {
		color: var(--base1);
	}
	.itretest_textBenefitWrap {
		border: solid 1px var(--primary);
		border-radius: 8px;
		padding: 3vw;
	}
}
/* 03eizo-kougi-saisei */
#test-kaito-kakunin {
	scroll-margin-top: 50vh;
}
.eizo-kougi-saisei {
	position: relative;
	background: linear-gradient(
		-26deg,
		var(--primary) 20%,
		white 20%,
		white 91%,
		var(--primary) 91%,
		var(--primary) 92%,
		white 92%,
		white 94%,
		var(--primary) 94%
	);
}

.eizo-kougi-saisei_wrap--bg {
	margin: 5vw;
	background: var(--base6);
	padding: 100px 3vw;
	width: 40vw;
	border-radius: 8px;
}
.eizo-kougi-saisei__cardWrap {
	display: flex;
	gap: 1vw;
	margin-top: 20px;
}
.eizo-kougi-saisei__card {
	background: var(--primary);
	max-width: 300px;
	border-radius: 8px;
}
.eizo-kougi-saisei__card img {
	width: 90%;
	margin: 5%;
}
.eizo-kougi-saisei__wrap--right {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50vw;
	height: 100%;
}
.eizo-kougi-saisei__wrap--inner {
	position: relative;
	height: 100%;
}
.eizo-kougi-saisei__wrap--righ img {
	position: absolute;
}
.eizo-kougi-saisei__benefit {
	position: absolute;
	top: 14%;
	right: 7%;
}
.eizo-kougi-saisei__card--p {
	font-size: var(--text-size-14);
	color: var(--base8);
	padding: 0px;
	text-align: center;
	padding-bottom: 18px;
}
@media screen and (max-width: 1023px) {
	#test-kaito-kakunin {
		scroll-margin-top: 10vh;
	}
	.eizo-kougi-saisei {
		background: linear-gradient(
			-14deg,
			var(--primary) 20%,
			white 20%,
			white 95%,
			var(--primary) 95%,
			var(--primary) 96%,
			white 96%,
			white 97%,
			var(--primary) 97%
		);
		padding: 50px 5vw 100px;
	}

	.eizo-kougi-saisei_wrap--bg {
		width: auto;
		margin: 0;
		padding: 12vw 8vw;
	}
	.eizo-kougi-saisei__rightLine {
		display: none;
	}
	.eizo-kougi-saisei__cardWrap {
		display: flex;
		flex-direction: column;
		gap: 0.808vw;
		margin-top: 32px;
	}

	.eizo-kougi-saisei__card {
		background: var(--base8);
		width: auto;
		padding: 1vw;
		display: flex;
		align-items: center;
		margin: auto;
	}

	.eizo-kougi-saisei__card img {
		flex-shrink: 0;
		width: 30%;
		margin: 0;
	}
	.eizo-kougi-saisei__card p {
		flex: 1;
	}
	.eizo-kougi-saisei__benefit {
		position: static;
		font-size: var(--text-size-32);
		text-align: center;
		margin-bottom: 0px;
		background: none;
		color: var(--base1);
		margin-top: 30px;
	}
	.eizo-kougi-saisei__wrap--right {
		position: static;
		bottom: 0;
		right: 0;
		width: 100%;
		z-index: 0;
		margin-bottom: 8vw;
		height: auto;
	}
	.eizo-kougi-saisei__wrap--inner {
		position: relative;
		display: flex;
		flex-direction: column-reverse;
		height: auto;
	}
	.eizo-kougi-saisei__wrap--righ img {
		position: absolute;
	}
	.eizo-kougi-saisei__card--p {
		font-size: var(--text-size-14);
		padding: 6px;
		text-align: center;
		padding-bottom: 6px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		color: var(--primary);
	}
	.eizo-kougi-saisei_wrap--bg p {
		font-size: var(--text-size-15);
	}
}
/* 05kougi-ichiran */
.kougi-ichiran {
	background: url(../images/top/schedule.jpg);
	background-position: center;
	padding: 5vw;
}
.kougi-ichiran__p {
	text-align: center;
	margin-bottom: 64px;
	text-align: left;
	width: 900px;
	margin: 0 auto;
	margin-bottom: 2vw;
}
@media screen and (max-width: 1023px) {
	.kougi-ichiran {
		padding: 50px 5vw 100px;
	}
	.kougi-ichiran_p {
		font-size: var(--text-size-15);
	}
}

/* 06reportandGradeReport */
.reportandGradeReport {
	display: flex;
	gap: 0.81vw;
	background: var(--base6);
	padding: 5vw;
}

.section_serif_title {
	font-size: var(--text-size-32);
	text-align: center;
	margin-bottom: 40px;
}
.wrap_position {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
	gap: 1vw;
}
.text_sectioon6 {
	color: var(--base8);
	width: 50%;
	text-align: left;
}

.reportandGradeReport_bg:last-of-type {
	text-align: right;
}

.reportandGradeReport_bg {
	background: var(--primary);
	flex: 1;
	padding: 4%;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.reportandGradeReport_bg img:last-child {
	height: calc(100px, 100%, 250px);
	margin: auto;
}
@media screen and (max-width: 1023px) {
	.reportandGradeReport {
		flex-direction: column;
		gap: 6vw;
		padding: 50px 5vw 100px;
	}

	.wrap_position {
		display: block;
	}

	.reportandGradeReport_bg {
		padding: 12vw 8vw;
		background: none;
		border: solid 1px var(--primaryBright);
	}
	.reportandGradeReport_bg:last-of-type {
		text-align: center;
	}
	.kougi-ichiran__p {
		width: auto;
		font-size: var(--text-size-15);
	}
	.text_sectioon6 {
		width: 100%;
		margin-bottom: 40px;
		font-size: var(--text-size-15);
		color: var(--base1);
	}
}
/* 07booth-yoyakuandoshiraseandKarte */
.booth-yoyakuandoshiraseandKarte {
	padding: 5vw;
}

.booth-yoyakuandoshiraseandKarteWrap {
	display: flex;
	gap: 0.81vw;
}

.booth-yoyakuandoshiraseandKarte_bg {
	background: var(--base6);
	flex: 1;
	padding: 5%;
	text-align: center;
	border-radius: 8px;
}
.booth-yoyakuandoshiraseandKarte_bg img:last-child {
	height: calc(100px, 100%, 250px);
	margin: auto;
}
.text_sectioon7 {
	margin-bottom: 40px;
	text-align: left;
}
@media screen and (max-width: 1023px) {
	.booth-yoyakuandoshiraseandKarte {
		padding: 50px 5vw 100px;
	}

	.booth-yoyakuandoshiraseandKarteWrap {
		flex-direction: column;
		gap: 6vw;
	}
	.booth-yoyakuandoshiraseandKarte_bg {
		padding: 12vw 8vw;
	}
	.text_sectioon7 {
		font-size: var(--text-size-15);
	}
}

/* 08List */
#List {
	background: var(--primaryBright);
	padding: 8vw;
}
.list__small {
	margin: 5vw auto 0vw;
	padding: 2vw;

	width: clamp(270px, 80vw, 500px);
	background: rgba(255, 255, 255, 0.7);
	border: var(--primary) 1px solid;
}
.list__smallTitle {
	padding: 0 1vw;
	font-size: var(--text-size-24);
}
.list__smallText {
	margin-top: 2vw;
	text-align: left;
}
.list__title {
	text-align: center;
	color: var(--base8);
	font-size: var(--text-size-32);
}
.kouzaichiranBtn {
	display: block;
	background: rgba(255, 255, 255, 0.3);
	color: var(--base8);
	border: var(--base8) solid 1px;
	border-radius: 100vh;
	width: 223px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	margin: 20px auto;
}
.current {
	text-align: right;
}
.kouzaList__pdf {
	display: block;
	color: var(--base8);
	width: fit-content;
	margin: 1vw auto;
	margin-right: 2vw;
	position: relative;
}
.kouzaList__pdf::after {
	position: absolute;
	content: url(../images/top/betupage_white.svg);
	margin-left: 0.5vw;
	top: 50%;
	transform: translateY(-35%);
}
@media screen and (max-width: 1023px) {
	.list__smallText {
		margin: 5vw 2vw 2vw;
	}
	.list__small {
		margin: 11vw auto 11vw;
	}

	#List {
		padding: 50px 5vw 100px;
	}
}
/* topArrow */
.topArrow {
	display: block;
	background: var(--base8);
	height: 80px;
	width: 80px;
	border-radius: 100vh;
	box-shadow: 0 9px 24px rgba(0, 0, 0, 0.16);
	position: fixed;
	bottom: 3.2vw;
	right: 3.2vw;
	z-index: 1000;
	transform: rotate(57deg);
	scale: 0.7;
}

.topArrow::before {
	content: "";
	width: 30px;
	height: 27px;
	border-top: 2px solid var(--base1);
	border-left: 2px solid var(--base1);
	transform: skewX(25deg);
	position: absolute;
	bottom: 25%;
	right: 21%;
	transition: 0.5s;
}
.topArrow:hover::before {
	bottom: 28%;
	right: 25%;
}
@media screen and (max-width: 1023px) {
	.topArrow {
		scale: 0.5;
	}
}
/* recommend */

.recommend {
	background: var(--primaryBright);

	padding: 5vw;
}
.recommend__Wrap {
	width: fit-content;
	margin: auto;
}
.recommend__innerWrap {
	margin-top: 5vw;
	display: flex;
	gap: 4vw;
}
.recommend__small {
	display: block;
	color: var(--base8);
	text-align: left;
	margin: auto;
	margin-top: 3vw;
}

.courseWrap {
	border: var(--base8) 1px solid;
	padding: 2vw;
	background: rgba(255, 255, 255, 0.7);
	display: flex;
	flex-direction: column;
	gap: 2vw;
	text-align: center;
	flex: 1;
	justify-content: space-between;
}
.course__title {
	font-size: var(--text-size-22);
	font-weight: 600;

	color: var(--primary);
}
.course__discription {
	font-size: var(--text-size-15);
	font-weight: 400;
	text-align: left;
	color: var(--base2);
}
.forcourse__button {
	display: block;
	border: var(--primary) 1px solid;
	border-radius: 100vh;
	background: rgba(255, 255, 255, 0.5);
	text-align: center;
	padding: 4px 16px;
	color: var(--primary);
	font-weight: bold;
	transition: 0.6s;
}
.forcourse__button:hover {
	filter: brightness(1.2);
	background: rgba(255, 255, 255, 1);
}
@media screen and (max-width: 1023px) {
	.recommend {
		padding: 50px 5vw 100px;
	}
	.courseWrap {
		gap: 12vw;
		padding: 11vw 4vw;
	}
	.recommend__innerWrap {
		flex-direction: column;
	}
	.forcourse__button {
		transition: 0.6s;
		filter: brightness(1.2);
		background: rgba(255, 255, 255, 0.6);
	}
	.recommend__small {
		text-align: left;
		margin: auto;
		margin-top: 12vw;
		margin-bottom: 12vw;
	}
}
/* footer */
#footer {
	background: var(--primaryBright);
	text-align: center;
	padding: 5vw auto 1vw;
}
#footer small {
	color: var(--base8);
}

.spShow {
	display: none;
}
@media screen and (max-width: 1023px) {
	.spHide {
		display: none;
	}
	.spShow {
		display: block;
	}
}
