/* start of common */
html {
	font-size: 62.5%;
	line-height: 1.8;
}

body {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
}

img {
	width: 100%;
}

@media (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
	.sp\:view {
		display: none !important;
	}
}
@media (max-width: 767px) {
	.pc\:view {
		display: none !important;
	}
}
.wrapper {
	position: relative;
	overflow: hidden;
	background: url(../img/common/bg_pattern.svg) repeat #FFF;
}

.header {
	height: 85px;
	width: 100%;
	background: #FFF;
	position: fixed;
	z-index: 99999;
}
.header__inner {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.header__logo {
	width: 310px;
	margin-left: 24px;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.header__logo:hover {
	opacity: 0.7;
}
.header__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	gap: 24px;
	width: 100%;
	height: 100%;
}
.header__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.header__menu--tel {
	position: relative;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.3;
}
.header__menu--tel::before {
	content: "\e905";
	font-family: "icomoon";
	font-weight: 400;
	margin-right: 8px;
	color: #003894;
}
.header__menu--list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
	font-weight: 700;
	font-size: 1.4rem;
}
.header__menu--item {
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	font-size: 1.8rem;
}
.header__menu--item:hover {
	color: #C30013;
}
.header__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 0 0 0 20px;
	overflow: hidden;
}
.header__btn--item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 100%;
	width: 146px;
	padding: 20px;
	font-weight: 700;
	color: #FFF;
	background: #333;
	position: relative;
}
.header__btn--item::after {
	content: "\e900";
	font-family: "icomoon";
	position: absolute;
	font-size: 1rem;
	right: 16px;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.header__btn--item:nth-child(2) {
	background: #C30013;
}
.header__btn--item:nth-child(3) {
	background: #07B53B;
}
.header__btn--item:hover::after {
	right: 12px;
}
.header__btn.-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 500px;
	border-radius: 20px 0 0 0;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
}
.header__btn.-fixed .header__btn--item {
	width: 100%;
	font-size: 2rem;
}
.header {
	/* @media (min-width: 1561px) {
		&__btn {
			&--item {
				&:nth-child(1) {
					width: 200px;
				}
			}
		}
	} */
	/* @media (max-width: 1560px) {
		&__menu {
			&--item {
				font-size: 1.6rem;
			}
		}
	} */
	/* @media (min-width: 1500px) {
		&__toggle {
			display: none;
		}
	} */
	/* @media (max-width: 1499px) {
		&__toggle {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			width: 85px;
			height: 85px;
			background: #C30013;
			padding: 8px 4px;

			&--icon {
				display: block;
				transition: 0.3s all;
				position: relative;
				width: 20px;
				height: 14px;
				margin: 4px 0 0;
			}

			&--line {
				display: inline-block;
				transition: 0.3s all;
				position: absolute;
				left: 0;
				width: 100%;
				height: 2px;
				background: #FFF;

				&:nth-of-type(1) {
					top: 0px;
				}

				&:nth-of-type(2) {
					top: 6px;
				}

				&:nth-of-type(3) {
					bottom: 0;
				}
			}

			&--text {
				color: #FFF;
				font-size: 1.6rem;
				font-weight: 700;
			}

			&.-active {
				.header__toggle--line {
					&:nth-of-type(1) {
						transform: translateY(4px) rotate(-45deg);
					}

					&:nth-of-type(2) {
						opacity: 0;
					}

					&:nth-of-type(3) {
						transform: translateY(-8px) rotate(45deg);
					}
				}
			}
		}

		&__nav {
			background: rgba($color: #FFF, $alpha: 0.9);
			display: none;
			position: fixed;
			height: fit-content;
			left: 50%;
			transform: translate(-50%, 0);
		}

		&__menu {
			flex-direction: column-reverse;
			align-items: center;
			padding: 8px 24px 32px;

			&--tel {
				margin-top: 16px;
				font-size: 3rem;
			}

			&--list {
				width: 100%;
				flex-direction: column;
				align-items: center;
				gap: 0;
			}

			&--item {
				font-size: 1.6rem;
				text-align: center;
				width: 100%;
				border-bottom: 1px solid #E0E0E0;
				position: relative;

				&::after {
					content: "\e902";
					font-family: "icomoon";
					font-size: 0.8rem;
					color: #C30013;
					position: absolute;
					top: 48%;
					right: 10px;
				}

				a {
					display: block;
					width: 100%;
					height: 100%;
					padding: 24px 0 16px;
				}
			}
		}

		&__btn {
			border-radius: 0;
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			width: 100%;

			&--item {
				width: 100%;
			}
		}
	} */
}
.header__toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 85px;
	height: 85px;
	background: #C30013;
	padding: 8px 4px;
}
.header__toggle--icon {
	display: block;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	position: relative;
	width: 20px;
	height: 14px;
	margin: 4px 0 0;
}
.header__toggle--line {
	display: inline-block;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #FFF;
}
.header__toggle--line:nth-of-type(1) {
	top: 0px;
}
.header__toggle--line:nth-of-type(2) {
	top: 6px;
}
.header__toggle--line:nth-of-type(3) {
	bottom: 0;
}
.header__toggle--text {
	color: #FFF;
	font-size: 1.6rem;
	font-weight: 700;
}
.header__toggle.-active .header__toggle--line:nth-of-type(1) {
	-webkit-transform: translateY(4px) rotate(-45deg);
	        transform: translateY(4px) rotate(-45deg);
}
.header__toggle.-active .header__toggle--line:nth-of-type(2) {
	opacity: 0;
}
.header__toggle.-active .header__toggle--line:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	        transform: translateY(-8px) rotate(45deg);
}
.header__nav {
	background: rgba(255, 255, 255, 0.9);
	display: none;
	position: fixed;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
}
.header__menu {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: column-reverse;
	        flex-direction: column-reverse;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 8px 24px 32px;
}
.header__menu--tel {
	margin-top: 16px;
	font-size: 3rem;
}
.header__menu--list {
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0;
}
.header__menu--item {
	font-size: 1.6rem;
	text-align: center;
	width: 100%;
	border-bottom: 1px solid #E0E0E0;
	position: relative;
}
.header__menu--item::after {
	content: "\e902";
	font-family: "icomoon";
	font-size: 0.8rem;
	color: #C30013;
	position: absolute;
	top: 48%;
	right: 10px;
}
.header__menu--item a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 24px 0 16px;
}
.header__btn {
	border-radius: 0;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
}
.header__btn--item {
	width: 100%;
}
@media (max-width: 767px) {
	.header {
		height: 50px;
	}
	.header__toggle {
		width: 50px;
		height: 50px;
	}
	.header__toggle--icon {
		width: 14px;
		height: 10px;
	}
	.header__toggle--line:nth-of-type(1) {
		top: 0px;
	}
	.header__toggle--line:nth-of-type(2) {
		top: 4px;
	}
	.header__toggle--line:nth-of-type(3) {
		bottom: 0;
	}
	.header__toggle--text {
		font-size: 1rem;
	}
	.header__toggle.-active .header__toggle--line:nth-of-type(1) {
		-webkit-transform: translateY(2px) rotate(-45deg);
		        transform: translateY(2px) rotate(-45deg);
	}
	.header__toggle.-active .header__toggle--line:nth-of-type(2) {
		opacity: 0;
	}
	.header__toggle.-active .header__toggle--line:nth-of-type(3) {
		-webkit-transform: translateY(-6px) rotate(45deg);
		        transform: translateY(-6px) rotate(45deg);
	}
	.header__logo {
		width: 175px;
		margin-left: 20px;
	}
	.header__btn.-fixed {
		width: calc(100% - 16px);
	}
	.header__btn.-fixed .header__btn--item {
		padding: 12px;
		font-size: 1.4rem;
	}
	.header__btn.-fixed .header__btn--item::after {
		font-size: 0.8rem;
	}
}

.footer {
	background: #FFF;
	border-top: 2px solid #333;
	padding: 0 60px;
}
.footer__inner {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: 700;
	font-size: 1.4rem;
	padding: 44px 0;
}
@media (max-width: 767px) {
	.footer {
		padding: 0 16px;
	}
	.footer__inner {
		font-size: 1rem;
		padding: 16px 80px 64px 0;
		text-align: left;
	}
}

.pageup {
	right: 56px;
	bottom: 100px;
	position: fixed;
	background: #FFF;
	border: 2px solid #333;
	font-weight: 700;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 4px;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	cursor: pointer;
	z-index: 9999;
}
.pageup i {
	color: #C30013;
	font-size: 1rem;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.pageup:hover {
	color: #FFF;
	background-color: #C30013;
}
.pageup:hover i {
	color: #FFF;
}
@media (max-width: 767px) {
	.pageup {
		width: 64px;
		height: 64px;
		gap: 0;
		right: 8px;
		bottom: 60px;
	}
	.pageup i {
		font-size: 0.8rem;
	}
}

.section {
	padding: 0 60px;
}
.section__inner {
	max-width: 1080px;
	margin: auto;
}
@media (max-width: 767px) {
	.section {
		padding: 0 20px;
	}
}

/* end of common */
/*----------------------------------*/
/*----------------------------------*/
/* start of top page */
.mv {
	position: relative;
	margin-top: 85px;
}
.mv__text {
	position: absolute;
	width: 46vw;
	max-width: 740px;
	left: 34px;
	bottom: 14%;
	z-index: 20;
}
.mv__img {
	margin-right: -14%;
}
@media (max-width: 767px) {
	.mv {
		margin-top: 50px;
	}
	.mv__catch {
		position: absolute;
		left: -12px;
		top: 20%;
		width: 84vw;
	}
	.mv__text {
		width: 72vw;
		right: 20px;
		left: inherit;
	}
	.mv__img {
		margin: 0 -14%;
	}
}

.intro {
	position: relative;
}
.intro__inner {
	padding: 160px 0 120px;
}
.intro-deco {
	position: absolute;
	pointer-events: none;
}
.intro-deco.-object01 {
	width: 23%;
	max-width: 366px;
	top: 62px;
	left: -56px;
}
.intro-deco.-object02 {
	width: 15%;
	max-width: 235px;
	top: 150px;
	right: -30px;
}
.intro-deco.-object03 {
	width: 15%;
	max-width: 235px;
	left: 3%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.intro-deco.-object04 {
	width: 17%;
	max-width: 264px;
	right: 8%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.intro-deco.-object05 {
	width: 18%;
	max-width: 286px;
	left: -56px;
	bottom: 5%;
}
.intro-deco.-object06 {
	width: 20%;
	max-width: 312px;
	right: -28px;
	bottom: 11%;
}
.intro__title {
	margin-bottom: 56px;
}
.intro__subtitle {
	text-align: center;
	margin-bottom: 32px;
	font-size: 3.2rem;
	font-weight: 700;
}
.intro__text {
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 88px;
}
@media (max-width: 767px) {
	.intro__inner {
		padding: 152px 0 120px;
	}
	.intro-deco.-object01 {
		width: 37%;
		max-width: 140px;
		top: 22px;
		left: -26px;
	}
	.intro-deco.-object02 {
		width: 33%;
		max-width: 125px;
		top: 15px;
		right: -11px;
	}
	.intro-deco.-object03 {
		width: 27%;
		max-width: 104px;
		left: -13px;
		top: 546px;
		-webkit-transform: none;
		        transform: none;
	}
	.intro-deco.-object04 {
		width: 31%;
		max-width: 116px;
		right: 9px;
		top: 575px;
		-webkit-transform: none;
		        transform: none;
	}
	.intro-deco.-object05 {
		width: 35%;
		max-width: 133px;
		left: -20px;
		bottom: 14px;
	}
	.intro-deco.-object06 {
		width: 37%;
		max-width: 137px;
		right: -37px;
		bottom: 36%;
	}
	.intro__title {
		max-width: 335px;
		margin: 0 auto 120px;
	}
	.intro__subtitle {
		font-size: 2.4rem;
	}
	.intro__text {
		margin-bottom: 80px;
	}
}

.intro-recommend {
	position: relative;
	z-index: 20;
}
.intro-recommend__heading {
	margin: 0 auto -30px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background: #C30013;
	color: #FFF;
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
	padding: 8px 56px;
	border-radius: 40px;
	position: relative;
	z-index: 30;
}
.intro-recommend__content {
	background: #FFF;
	padding: 62px 12% 40px 40px;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}
.intro-recommend__img {
	position: absolute;
	bottom: -5px;
	right: 0;
	max-width: 182px;
}
.intro-recommend__list {
	max-width: 888px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 44% 3% 52%;
	grid-template-columns: 44% 52%;
	gap: 15px 3%;
	font-weight: 700;
	font-size: 1.8rem;
}
.intro-recommend__list--item {
	position: relative;
	padding: 0 0 7px 28px;
	border-bottom: 1px dashed #333;
}
.intro-recommend__list--item::before {
	content: "\e904";
	font-family: "icomoon";
	position: absolute;
	font-size: 1.4rem;
	color: #C30013;
	left: 2px;
	top: 4px;
}
@media (max-width: 767px) {
	.intro-recommend__heading {
		font-size: 2.4rem;
		padding: 10px 24px;
	}
	.intro-recommend__content {
		padding: 50px 16px 145px;
	}
	.intro-recommend__img {
		max-width: 112px;
	}
	.intro-recommend__list {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		font-size: 1.6rem;
	}
}

.course-navi {
	background: #E3E3E3;
	border-bottom: 2px solid #333;
	padding-top: 80px;
}
.course-navi__heading {
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
}
.course-navi__heading span {
	display: block;
	font-size: 2.4rem;
	color: #C30013;
	margin-top: -8px;
}
.course-navi__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	padding-top: 36px;
}
.course-navi__list--item {
	text-align: center;
	color: #FFF;
	font-size: 2rem;
	font-weight: 700;
	border-radius: 10px 10px 0 0;
	border: 2px solid #333;
	border-bottom: none;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	position: relative;
}
.course-navi__list--item a {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 16px 16px 40px;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	line-height: 1.4;
}
.course-navi__list--item::after {
	content: "\e902";
	font-family: "icomoon";
	font-size: 0.8rem;
	color: #FFF;
	position: absolute;
	bottom: 20px;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.course-navi__list--item.-general {
	background: #78C300;
}
.course-navi__list--item.-general .-text {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	top: -86px;
	width: 280px;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.course-navi__list--item.-esports {
	background: #8E00C3;
}
.course-navi__list--item.-game {
	background: #0061C3;
}
.course-navi__list--item.-talent {
	background: #E09200;
}
.course-navi__list--item.-manga {
	background: #C30013;
}
.course-navi__list--item.-makeup {
	background: #E0008E;
}
.course-navi {
	/* @media (min-width: 768px) {
		&__list {
			&--item {
				&:hover {
					margin-top: -8px;

					a {
						padding-top: 24px;
					}

					&.-general {
						.-text {
							top: -78px;
						}
					}
				}
			}
		}
	} */
	padding: 80px 20px 32px;
}
.course-navi__list {
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
}
.course-navi__list--item {
	border-radius: 10px;
	border-bottom: 2px solid #333;
}
@media (min-width: 768px) {
	.course-navi__list--item:hover::after {
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		bottom: 14px;
	}
}
@media (max-width: 767px) {
	.course-navi {
		padding: 80px 20px 32px;
	}
	.course-navi__heading {
		font-size: 2.4rem;
	}
	.course-navi__list {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		/* grid-template-rows: repeat(3, 1fr);
		grid-template-rows: max-content max-content 1fr auto; */
		padding-top: 20px;
		max-width: 330px;
		margin: auto;
	}
	.course-navi__list--item {
		border-radius: 10px;
		border-bottom: 2px solid #333;
		font-size: 1.6rem;
	}
	.course-navi__list--item a {
		padding: 10px 8px 26px;
		min-height: 80px;
	}
	.course-navi__list--item::after {
		font-size: 0.6rem;
		bottom: 12px;
	}
	.course-navi__list--item {
		/* &.-general {
			grid-area: 3 / 1 / 4 / 3;
			width: 160px;
			margin: 0 auto;
			height: auto;

			.-text {
				width: 240px;
				top: -74px;
			}
		}

		&.-esports {
			grid-area: 1 / 1 / 2 / 2;
		}

		&.-game {
			grid-area: 1 / 2 / 2 / 3;
		}

		&.-manga {
			grid-area: 2 / 1 / 3 / 2;
		}

		&.-talent {
			grid-area: 2 / 2 / 3 / 3;
		} */
	}
}

.course-feature {
	background: #FFF;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.course-feature-deco {
	position: absolute;
	pointer-events: none;
}
.course-feature-deco.-object01 {
	width: 23%;
	max-width: 366px;
	top: 121px;
	right: calc(50% + 347px);
}
.course-feature-deco.-object02 {
	width: 43%;
	max-width: 720px;
	bottom: -3%;
	left: calc(50% + 290px);
}
.course-feature__inner {
	padding: 80px 0;
}
.course-feature__heading {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 32px;
}
.course-feature__heading span {
	color: #C30013;
}
.course-feature__point {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.course-feature__point + .course-feature__point {
	margin-top: 40px;
}
.course-feature__point--num {
	margin-bottom: 2px;
}
.course-feature__point--num.-no1 {
	max-width: 48px;
}
.course-feature__point--num.-no2, .course-feature__point--num.-no3 {
	max-width: 56px;
}
.course-feature__point--title {
	font-size: 3.2rem;
	font-weight: 700;
	margin-bottom: 24px;
}
.course-feature__point--text {
	font-size: 1.8rem;
}
@media (max-width: 767px) {
	.course-feature-deco.-object01 {
		width: 44%;
		max-width: 165px;
		top: 0;
		left: -32px;
		right: inherit;
	}
	.course-feature-deco.-object02 {
		width: 76%;
		max-width: 285px;
		bottom: -14px;
		right: -30px;
		left: inherit;
	}
	.course-feature__inner {
		padding: 80px 0 150px;
	}
	.course-feature__heading {
		font-size: 3.2rem;
	}
	.course-feature__point + .course-feature__point {
		margin-top: 32px;
	}
	.course-feature__point--num.-no1 {
		max-width: 40px;
	}
	.course-feature__point--num.-no2, .course-feature__point--num.-no3 {
		max-width: 48px;
	}
	.course-feature__point--title {
		font-size: 2.4rem;
		line-height: 1.6;
		margin-bottom: 16px;
	}
}

.course-detail {
	border-top: 2px solid #333;
	padding: 0 60px;
}
.course-detail__heading {
	background: #E3E3E3;
	height: 166px;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 0 60px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.course-detail__heading h2 {
	font-size: 4.8rem;
	font-weight: 700;
	max-width: 1080px;
	width: 100%;
	margin: auto;
	position: relative;
}
.course-detail__heading h2 span {
	font-size: 3.2rem;
}
.course-detail__heading h2::before {
	margin-right: 16px;
	font-weight: 400;
}
.course-detail__heading .-label {
	position: absolute;
	display: block;
	right: 100%;
	top: -2px;
	-webkit-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	-webkit-transform-origin: 100% 0;
	        transform-origin: 100% 0;
	padding: 8px 50px 16px 48px;
	border: 2px solid #333;
	border-radius: 0 0 0 70px;
	white-space: nowrap;
}
.course-detail__heading .-label span {
	font-size: 4.8rem;
	opacity: 0.5;
	color: #FFF;
	font-weight: 700;
}
.course-detail__content {
	padding: 64px 0 120px;
}
.course-detail__content--group + .course-detail__content--group:not(.course-detail__point) {
	margin-top: 80px;
}
.course-detail__brief {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 4%;
	margin-bottom: 64px;
}
.course-detail__brief--content {
	width: 100%;
}
.course-detail__brief--heading {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 20px;
	padding: 0 0 0 16px;
	border-left: 4px solid;
	position: relative;
}
.course-detail__brief--list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px 40px;
	font-weight: 700;
	font-size: 1.8rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.course-detail__brief--list.-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
}
.course-detail__brief--img {
	border: 2px solid #333;
	border-radius: 70px 0 0 70px;
	width: 100vw;
	max-width: 640px;
	margin-right: calc(50% - 50vw);
	margin-left: auto;
	overflow: hidden;
	margin-top: -175px;
	position: relative;
	z-index: 50;
}
.course-detail__brief--img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
.course-detail__img {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 5px;
	border: 6px solid #FFF;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.course-detail__title {
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 32px;
}
.course-detail__subtitle {
	margin-bottom: 24px;
}
.course-detail__subtitle .-text {
	-webkit-box-decoration-break: clone;
	        box-decoration-break: clone;
	display: inline;
	padding: 14px;
	line-height: 2.8;
	font-size: 2.4rem;
	font-weight: 700;
	color: #FFF;
}
.course-detail__bold {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 24px;
}
.course-detail__list {
	background: #FFF;
	padding: 32px 6%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 16px 24px;
	border: 2px solid #333;
	border-radius: 10px;
}
.course-detail__list--item {
	padding-left: 24px;
	font-weight: 700;
	position: relative;
}
.course-detail__list--item::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 0;
}
.course-detail__point--list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	gap: 24px;
}
.course-detail__point--item {
	width: 100%;
	font-size: 1.8rem;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.course-detail__point--item .-heading,
.course-detail__point--item .-text {
	padding: 20px 32px;
}
.course-detail__point--item .-heading {
	width: 208px;
	color: #FFF;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.course-detail__point--item .-text {
	background: #FFF;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.course-detail__point--accordion {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.course-detail__point--accordion .-text {
	padding: 20px 110px 20px 32px;
}
.course-detail__point--accordion .-head {
	position: relative;
}
.course-detail__point--accordion .-head span {
	display: block;
	width: 40px;
	height: 40px;
	background: #E3E3E3;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	right: 32px;
}
.course-detail__point--accordion .-head span::before, .course-detail__point--accordion .-head span::after {
	content: "";
	display: block;
	width: 14px;
	height: 2px;
	border-radius: 3px;
	position: absolute;
	top: 50%;
	left: 13px;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.course-detail__point--accordion .-head span::after {
	left: 14px;
	opacity: 1;
	-webkit-transform: rotate(90deg) translate(0, 50%);
	        transform: rotate(90deg) translate(0, 50%);
	-webkit-transform-origin: center center;
	        transform-origin: center center;
}
.course-detail__point--accordion .-head.-active span::after {
	opacity: 0;
	-webkit-transform: rotate(0) translate(0, 50%);
	        transform: rotate(0) translate(0, 50%);
}
.course-detail__point--accordion .-body {
	display: none;
	padding: 32px;
	background: #FFF;
	position: relative;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	border-top: 2px solid #E3E3E3;
}
.course-detail__timetable .course-detail__title {
	margin-bottom: 0;
}
.course-detail__timetable--img {
	margin: 16px 0;
}
.course-detail__timetable span {
	display: block;
	text-align: right;
}
.course-detail__person {
	margin: 64px 0 80px;
}
.course-detail__person--interview {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	gap: 4%;
}
.course-detail__person--interview .-main {
	width: 61%;
}
.course-detail__person--interview .-sub {
	width: 35%;
}
.course-detail__person--img {
	margin-bottom: 16px;
}
.course-detail__person--name {
	font-weight: 700;
	font-size: 1.8rem;
}
.course-detail__person--name span {
	font-size: 2.4rem;
}
.course-detail__person--affiliation {
	font-weight: 700;
}
.course-detail__person--profile {
	background: #E3E3E3;
	padding: 32px;
	border-radius: 10px;
	font-size: 1.4rem;
	margin-top: 24px;
}
.course-detail__person--profile span {
	display: block;
	font-weight: 700;
	font-size: 1.6rem;
	margin-bottom: 8px;
}
.course-detail__branch--heading {
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	color: #FFF;
	padding: 16px 64px;
	border: 2px solid #333;
	border-bottom: none;
	border-radius: 10px 10px 0 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	max-width: 80%;
	margin: auto;
}
.course-detail__message {
	margin-top: 56px;
	display: block;
	width: 100%;
	background: #FFF;
	border: 5px solid #333;
	border-radius: 10px;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	padding: 40px 56px;
	position: relative;
}
.course-detail__message::after {
	content: "\e900";
	font-family: "icomoon";
	font-size: 2.5rem;
	color: #FFF;
	position: absolute;
	right: 20px;
	bottom: 3px;
	z-index: 5;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.course-detail__message--deco {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.course-detail__message--deco::before {
	content: "";
	position: absolute;
	border-style: solid;
	border-right: 35px solid transparent;
	border-left: 35px solid transparent;
	border-bottom: 35px solid #333333;
	border-top: 0;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	left: -23px;
	top: -7px;
	z-index: 3;
}
.course-detail__message--deco::after {
	content: "";
	position: absolute;
	border-style: solid;
	border-right: 70px solid transparent;
	border-left: 70px solid transparent;
	border-bottom: 70px solid #333333;
	border-top: 0;
	-webkit-transform: rotate(135deg);
	        transform: rotate(135deg);
	right: -48px;
	bottom: -12px;
	z-index: 3;
}
.course-detail__message--heading {
	max-width: 274px;
	margin-bottom: 20px;
}
.course-detail__message--text {
	width: 56%;
	max-width: 530px;
}
.course-detail__message--img {
	position: absolute;
	width: 40%;
	max-width: 425px;
	right: 4%;
	bottom: 0;
}
.course-detail__message:hover::after {
	right: 14px;
}
.course-detail__cta {
	border-top: 2px solid #333;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 0 60px;
	color: #FFF;
	overflow: hidden;
	position: relative;
}
.course-detail__cta--deco {
	position: absolute;
}
.course-detail__cta--deco.-object01 {
	width: 255px;
	right: 74%;
	bottom: 0;
}
.course-detail__cta--deco.-object02 {
	width: 380px;
	left: 67%;
	bottom: 0;
}
.course-detail__cta--inner {
	max-width: 1080px;
	width: 100%;
	margin: auto;
	padding: 64px 0;
}
.course-detail__cta--group {
	max-width: 1040px;
	margin: auto;
}
.course-detail__cta--group.-btn {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 24px 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.course-detail__cta--group.-tel {
	margin-top: 40px;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.course-detail__cta--group.-tel span {
	display: block;
	font-weight: 400;
	font-size: 1.6rem;
}
.course-detail__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.course-detail__btn--text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
	margin-bottom: 24px;
	width: 80%;
}
.course-detail__btn--text::before, .course-detail__btn--text::after {
	content: "";
	width: 2px;
	height: 26px;
	border-radius: 10px;
	background-color: #FFF;
}
.course-detail__btn--text::before {
	margin-right: 20px;
	-webkit-transform: rotate(-35deg);
	        transform: rotate(-35deg);
}
.course-detail__btn--text::after {
	margin-left: 20px;
	-webkit-transform: rotate(35deg);
	        transform: rotate(35deg);
}
.course-detail__btn--main {
	display: block;
	width: 100%;
	padding: 24px 90px;
	background: rgba(255, 255, 255, 0.3);
	font-size: 3.2rem;
	font-weight: 700;
	text-align: center;
	border-radius: 10px;
	position: relative;
	border: 2px solid;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
.course-detail__btn--main::before, .course-detail__btn--main::after {
	font-family: "icomoon";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.course-detail__btn--main::after {
	content: "\e900";
	font-family: "icomoon";
	position: absolute;
	right: 43px;
	font-size: 1.4rem;
}
.course-detail__btn:nth-child(1) .course-detail__btn--main::before {
	content: "\e906";
	left: 32px;
}
.course-detail__btn:nth-child(2) .course-detail__btn--main::before {
	content: "\e907";
	left: 32px;
}
.course-detail__btn:hover .course-detail__btn--main {
	border: 2px solid #FFF;
	background: none;
}
.course-detail__tel {
	position: relative;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.6;
}
.course-detail__tel::before {
	content: "\e905";
	font-family: "icomoon";
	font-size: 3rem;
	font-weight: 400;
	margin-right: 16px;
}
@media (max-width: 1366px) {
	.course-detail__heading h2 {
		padding-left: 20px;
	}
	.course-detail__heading .-label {
		padding: 6px 32px 14px 32px;
		border-radius: 0 0 0 40px;
	}
	.course-detail__heading .-label span {
		font-size: 3.2rem;
		line-height: 1;
	}
	.course-detail__brief {
		padding-left: 20px;
	}
	.course-detail__brief--img {
		border-radius: 40px 0 0 40px;
		margin-top: -100px;
	}
}
@media (max-width: 767px) {
	.course-detail {
		padding: 0 20px;
	}
	.course-detail__heading {
		height: 100px;
		padding: 0 20px;
	}
	.course-detail__heading h2 {
		font-size: 2.4rem;
		padding-left: 50px;
	}
	.course-detail__heading h2 span {
		font-size: 1.8rem;
	}
	.course-detail__content {
		padding: 0 0 75px;
	}
	.course-detail__content--group + .course-detail__content--group:not(.course-detail__point) {
		margin-top: 64px;
	}
	.course-detail__brief {
		padding-left: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		gap: 32px;
		margin-bottom: 32px;
	}
	.course-detail__brief--heading {
		font-size: 2rem;
		margin-bottom: 8px;
		border: none;
		padding: 0;
		text-align: center;
	}
	.course-detail__brief--list {
		width: 100%;
		gap: 4px;
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.course-detail__brief--list.-grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.course-detail__brief--list li {
		text-align: center;
	}
	.course-detail__brief--img {
		max-width: 230px;
		border-radius: 30px 0 0 30px;
		margin-top: -16px;
	}
	.course-detail__title {
		margin-bottom: 16px;
	}
	.course-detail__subtitle {
		margin-bottom: 16px;
	}
	.course-detail__subtitle .-text {
		padding: 8px;
		line-height: 2.6;
		font-size: 1.8rem;
	}
	.course-detail__bold {
		font-size: 1.6rem;
		margin-bottom: 16px;
	}
	.course-detail__list {
		padding: 24px 6%;
		gap: 4px 24px;
	}
	.course-detail__point--item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		font-size: 1.6rem;
	}
	.course-detail__point--item .-heading,
	.course-detail__point--item .-text {
		padding: 14px 18px;
	}
	.course-detail__point--item .-heading {
		width: 100%;
	}
	.course-detail__point--item .-text {
		width: 100%;
	}
	.course-detail__point--accordion .-text {
		padding: 14px 60px 14px 18px;
	}
	.course-detail__point--accordion .-head span {
		top: calc((100% - 60px) / 2 + 40px);
		-webkit-transform: none;
		        transform: none;
		right: 12px;
	}
	.course-detail__point--accordion .-body {
		padding: 18px;
	}
	.course-detail__timetable--img {
		margin: 0;
	}
	.course-detail__person {
		margin: 48px 0 64px;
	}
	.course-detail__person--interview {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		gap: 20px;
	}
	.course-detail__person--interview .-main {
		width: 100%;
	}
	.course-detail__person--interview .-sub {
		width: 100%;
	}
	.course-detail__person--img {
		margin-bottom: 10px;
	}
	.course-detail__person--name {
		font-size: 1.4rem;
	}
	.course-detail__person--name span {
		font-size: 2rem;
	}
	.course-detail__person--profile {
		padding: 20px;
		font-size: 1.4rem;
	}
	.course-detail__person--profile span {
		margin-bottom: 4px;
	}
	.course-detail__branch--heading {
		max-width: 88%;
		font-size: 2rem;
		padding: 16px;
		line-height: 1.4;
	}
	.course-detail__message {
		padding: 24px 24px 120px 24px;
	}
	.course-detail__message::after {
		font-size: 1.8rem;
		right: 16px;
	}
	.course-detail__message--deco::before {
		border-right: 32px solid transparent;
		border-left: 32px solid transparent;
		border-bottom: 32px solid #333333;
	}
	.course-detail__message--deco::after {
		border-right: 55px solid transparent;
		border-left: 55px solid transparent;
		border-bottom: 55px solid #333333;
		right: -36px;
		bottom: -10px;
	}
	.course-detail__message--heading {
		max-width: 172px;
		margin-bottom: 12px;
	}
	.course-detail__message--text {
		max-width: none;
		width: 100%;
	}
	.course-detail__message--img {
		width: 70%;
		max-width: 238px;
	}
	.course-detail__cta {
		padding: 0 20px;
	}
	.course-detail__cta--deco.-object01 {
		width: 150px;
		right: inherit;
		left: -18px;
	}
	.course-detail__cta--deco.-object02 {
		width: 250px;
		left: inherit;
		right: -50px;
	}
	.course-detail__cta--inner {
		padding: 64px 0 160px;
	}
	.course-detail__cta--group.-btn {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.course-detail__cta--group.-tel {
		margin-top: 30px;
		font-size: 2rem;
	}
	.course-detail__btn--text {
		margin-bottom: 12px;
		font-size: 1.6rem;
		width: 88%;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
	}
	.course-detail__btn--main {
		font-size: 2.4rem;
		padding: 16px 90px;
	}
	.course-detail__tel {
		line-height: 1.4;
	}
}

.general {
	background: url(../img/common/bg_pattern_general.svg) repeat #FFF;
}
.general .course-detail__heading h2::before {
	content: "\e908";
	font-family: "icomoon";
	color: #78C300;
}
.general .course-detail__heading .-label {
	background: #78C300;
}
.general .course-detail__brief--heading {
	border-color: #78C300;
	color: #78C300;
}
.general .course-detail__title span {
	color: #78C300;
}
.general .course-detail__list--item::before {
	background: #78C300;
}
.general .course-detail__point {
	margin-top: 64px;
}
.general .course-detail__point--item .-heading {
	background: #78C300;
}
.general .course-detail__branch--heading {
	background: #78C300;
}
.general .course-detail__cta {
	background: #64A000;
}
.general .course-detail__btn--main {
	border-color: #64A000;
}
.general__category--img {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 4px 1fr 4px 1fr 4px 1fr;
	grid-template-columns: repeat(4, 1fr);
	-ms-grid-rows: 1fr 4px 1fr 4px 1fr;
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 4px;
	grid-row-gap: 4px;
	margin-bottom: 24px;
}
.general__category--img > *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
.general__category--img > *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
.general__category--img > *:nth-child(3) {
	-ms-grid-row: 1;
	-ms-grid-column: 5;
}
.general__category--img > *:nth-child(4) {
	-ms-grid-row: 1;
	-ms-grid-column: 7;
}
.general__category--img > *:nth-child(5) {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
}
.general__category--img > *:nth-child(6) {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
}
.general__category--img > *:nth-child(7) {
	-ms-grid-row: 3;
	-ms-grid-column: 5;
}
.general__category--img > *:nth-child(8) {
	-ms-grid-row: 3;
	-ms-grid-column: 7;
}
.general__category--img > *:nth-child(9) {
	-ms-grid-row: 5;
	-ms-grid-column: 1;
}
.general__category--img > *:nth-child(10) {
	-ms-grid-row: 5;
	-ms-grid-column: 3;
}
.general__category--img > *:nth-child(11) {
	-ms-grid-row: 5;
	-ms-grid-column: 5;
}
.general__category--img > *:nth-child(12) {
	-ms-grid-row: 5;
	-ms-grid-column: 7;
}
.general__category--img .-img01 {
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 1/1/3/2;
}
.general__category--img .-img02 {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 1/2/2/3;
}
.general__category--img .-img03 {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 3;
	-ms-grid-column-span: 1;
	grid-area: 1/3/2/4;
}
.general__category--img .-img04 {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 2/2/3/3;
}
.general__category--img .-img05 {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 3;
	-ms-grid-column-span: 1;
	grid-area: 2/3/3/4;
}
.general__category--img .-img06 {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 4;
	-ms-grid-column-span: 1;
	grid-area: 1/4/2/5;
}
.general__category--img .-img07 {
	-ms-grid-row: 3;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 3/1/4/2;
}
.general__category--img .-img08 {
	-ms-grid-row: 3;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 3/2/4/3;
}
.general__category--img .-img09 {
	-ms-grid-row: 3;
	-ms-grid-row-span: 1;
	-ms-grid-column: 3;
	-ms-grid-column-span: 1;
	grid-area: 3/3/4/4;
}
.general__category--img .-img10 {
	-ms-grid-row: 2;
	-ms-grid-row-span: 2;
	-ms-grid-column: 4;
	-ms-grid-column-span: 1;
	grid-area: 2/4/4/5;
}
.general__category .course-detail__list--item {
	font-size: 1.8rem;
}
.general__category .course-detail__list--item::before {
	top: 12px;
}
.general__schedule {
	background: #FFF;
	padding: 64px 24px 6px;
	border-radius: 10px;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.general__schedule--list {
	position: relative;
}
.general__schedule--list::before {
	content: "";
	display: block;
	position: absolute;
	width: 3px;
	height: 95%;
	background-image: repeating-linear-gradient(180deg, #78C300, #78C300 10px, transparent 10px, transparent 13px);
	background-position: left top;
	background-repeat: repeat-y;
	background-size: 3px 100%;
	z-index: 5;
	top: 20px;
	left: 84px;
}
.general__schedule--group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 40px 24px;
	position: relative;
	z-index: 10;
}
.general__schedule--group:nth-child(1) {
	padding-top: 0;
}
.general__schedule--group:nth-child(even) {
	background: rgba(120, 195, 0, 0.05);
}
.general__schedule--group.-align-center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.general__schedule--group .-time {
	display: block;
	width: 120px;
	text-align: center;
	background: #78C300;
	color: #FFF;
	font-size: 3.2rem;
	font-weight: 700;
	padding: 0 10px;
	border-radius: 50px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}
.general__schedule--group .-content {
	margin-left: 16px;
	width: 59%;
	max-width: 576px;
}
.general__schedule--group .-title {
	font-size: 2.4rem;
	font-weight: 700;
	padding-top: 6px;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.general__schedule--group .-title span {
	font-size: 1.8rem;
}
.general__schedule--group .-text {
	margin-top: 24px;
}
.general__schedule--group .-img {
	width: 24%;
	max-width: 240px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	margin-left: 32px;
}
@media (max-width: 767px) {
	.general__category--img {
		-ms-grid-columns: 1fr 2px 1fr;
		grid-template-columns: repeat(2, 1fr);
		-ms-grid-rows: 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr 2px 1fr;
		grid-template-rows: repeat(6, 1fr);
		grid-column-gap: 2px;
		grid-row-gap: 2px;
		margin-bottom: 24px;
	}
	.general__category--img > *:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.general__category--img > *:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
	.general__category--img > *:nth-child(3) {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
	.general__category--img > *:nth-child(4) {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
	}
	.general__category--img > *:nth-child(5) {
		-ms-grid-row: 5;
		-ms-grid-column: 1;
	}
	.general__category--img > *:nth-child(6) {
		-ms-grid-row: 5;
		-ms-grid-column: 3;
	}
	.general__category--img > *:nth-child(7) {
		-ms-grid-row: 7;
		-ms-grid-column: 1;
	}
	.general__category--img > *:nth-child(8) {
		-ms-grid-row: 7;
		-ms-grid-column: 3;
	}
	.general__category--img > *:nth-child(9) {
		-ms-grid-row: 9;
		-ms-grid-column: 1;
	}
	.general__category--img > *:nth-child(10) {
		-ms-grid-row: 9;
		-ms-grid-column: 3;
	}
	.general__category--img > *:nth-child(11) {
		-ms-grid-row: 11;
		-ms-grid-column: 1;
	}
	.general__category--img > *:nth-child(12) {
		-ms-grid-row: 11;
		-ms-grid-column: 3;
	}
	.general__category--img .-img01 {
		-ms-grid-row: 1;
		-ms-grid-row-span: 2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 1/1/3/2;
	}
	.general__category--img .-img02 {
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 1/2/2/3;
	}
	.general__category--img .-img03 {
		-ms-grid-row: 4;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 4/1/5/2;
	}
	.general__category--img .-img04 {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 2/2/3/3;
	}
	.general__category--img .-img05 {
		-ms-grid-row: 5;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 5/1/6/2;
	}
	.general__category--img .-img06 {
		-ms-grid-row: 4;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 4/2/5/3;
	}
	.general__category--img .-img07 {
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 3/1/4/2;
	}
	.general__category--img .-img08 {
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 3/2/4/3;
	}
	.general__category--img .-img09 {
		-ms-grid-row: 6;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 6/1/7/2;
	}
	.general__category--img .-img10 {
		-ms-grid-row: 5;
		-ms-grid-row-span: 2;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 5/2/7/3;
	}
	.general__schedule {
		padding: 40px 6px 6px;
	}
	.general__schedule--list::before {
		left: 30px;
	}
	.general__schedule--group {
		padding: 20px 10px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.general__schedule--group.-align-center {
		-webkit-box-align: inherit;
		    -ms-flex-align: inherit;
		        align-items: inherit;
	}
	.general__schedule--group .-time {
		font-size: 2.4rem;
		width: 100px;
	}
	.general__schedule--group .-content {
		margin: 16px 0 0 50px;
		width: inherit;
	}
	.general__schedule--group .-title {
		padding-top: 0;
		font-size: 2rem;
		line-height: 1.6;
	}
	.general__schedule--group .-text {
		margin-top: 10px;
	}
	.general__schedule--group .-img {
		width: 100%;
		margin: 16px 0 0 50px;
	}
}

.esports {
	background: url(../img/common/bg_pattern_esports.svg) repeat #FFF;
}
.esports .course-detail__heading h2::before {
	content: "\e909";
	font-family: "icomoon";
	color: #8E00C3;
}
.esports .course-detail__heading .-label {
	background: #8E00C3;
}
.esports .course-detail__brief--heading {
	border-color: #8E00C3;
	color: #8E00C3;
}
.esports .course-detail__title span {
	color: #8E00C3;
}
.esports .course-detail__subtitle .-text {
	background: #8E00C3;
}
.esports .course-detail__list--item::before {
	background: #8E00C3;
}
.esports .course-detail__point--item .-heading {
	background: #8E00C3;
}
.esports .course-detail__point--accordion .-head span::before, .esports .course-detail__point--accordion .-head span::after {
	background: #8E00C3;
}
.esports .course-detail__person--name {
	color: #8E00C3;
}
.esports .course-detail__branch--heading {
	background: #8E00C3;
}
.esports .course-detail__cta {
	background: #8E00C3;
}
.esports .course-detail__btn--main {
	border-color: #8E00C3;
}
.esports__crestgaming {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 4%;
	margin: 64px 0;
}
.esports__crestgaming .-main {
	width: 53%;
}
.esports__crestgaming .-sub {
	width: 43%;
}
.esports__crestgaming--logo {
	max-width: 300px;
	margin-bottom: 24px;
}
.esports__crestgaming p:not(:last-child) {
	margin-bottom: 40px;
}
.esports__crestgaming--img {
	margin: 30px 0 22px;
}
.esports__crestgaming--bubble {
	background: #333;
	border-radius: 10px;
	padding: 24px;
	text-align: center;
	color: #FFF;
	position: relative;
}
.esports__crestgaming--bubble::before {
	content: url(../img/top/esports_crest_bubble.svg);
	position: absolute;
	left: 50%;
	top: -16px;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 40px;
}
.esports__crestgaming--bubble .-title {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 8px;
}
@media (max-width: 767px) {
	.esports__crestgaming {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 48px 0;
		gap: 20px;
	}
	.esports__crestgaming .-main {
		width: 100%;
	}
	.esports__crestgaming .-sub {
		width: 100%;
	}
	.esports__crestgaming--logo {
		width: 60%;
	}
	.esports__crestgaming p:not(:last-child) {
		margin-bottom: 20px;
	}
	.esports__crestgaming--img {
		margin: 0 0 20px;
	}
	.esports__crestgaming--bubble {
		padding: 20px;
	}
	.esports__crestgaming--bubble .-title {
		font-size: 2rem;
	}
}

.game {
	background: url(../img/common/bg_pattern_game.svg) repeat #FFF;
}
.game .course-detail__heading h2::before {
	content: "\e90a";
	font-family: "icomoon";
	color: #0061C3;
}
.game .course-detail__heading .-label {
	background: #0061C3;
}
.game .course-detail__brief--heading {
	border-color: #0061C3;
	color: #0061C3;
}
.game .course-detail__title span {
	color: #0061C3;
}
.game .course-detail__subtitle .-text {
	background: #0061C3;
}
.game .course-detail__list--item::before {
	background: #0061C3;
}
.game .course-detail__point--item .-heading {
	background: #0061C3;
}
.game .course-detail__point--accordion .-head span::before, .game .course-detail__point--accordion .-head span::after {
	background: #0061C3;
}
.game .course-detail__person--name {
	color: #0061C3;
}
.game .course-detail__branch--heading {
	background: #0061C3;
}
.game .course-detail__cta {
	background: #0061C3;
}
.game .course-detail__btn--main {
	border-color: #0061C3;
}
.game__event {
	margin: 80px 0;
}
.game__event--item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 4%;
}
.game__event--item:nth-of-type(odd) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}
.game__event--item .-main {
	width: 52%;
}
.game__event--item .-main p span {
	display: block;
	font-weight: 700;
	margin-bottom: 16px;
}
.game__event--item .-sub {
	width: 44%;
}
.game__event--item + .game__event--item {
	margin-top: 46px;
}
@media (max-width: 767px) {
	.game__event {
		margin: 64px 0;
	}
	.game__event--item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		gap: 20px;
	}
	.game__event--item:nth-of-type(odd) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	.game__event--item .-main {
		width: 100%;
	}
	.game__event--item .-sub {
		width: 100%;
	}
	.game__event--item + .game__event--item {
		margin-top: 40px;
	}
}

.manga {
	background: url(../img/common/bg_pattern_manga.svg) repeat #FFF;
}
.manga .course-detail__heading h2::before {
	content: "\e90b";
	font-family: "icomoon";
	color: #C30013;
}
.manga .course-detail__heading .-label {
	background: #C30013;
}
.manga .course-detail__brief--heading {
	border-color: #C30013;
	color: #C30013;
}
.manga .course-detail__title span {
	color: #C30013;
}
.manga .course-detail__subtitle .-text {
	background: #C30013;
}
.manga .course-detail__list--item::before {
	background: #C30013;
}
.manga .course-detail__point--item .-heading {
	background: #C30013;
}
.manga .course-detail__point--accordion .-head span::before, .manga .course-detail__point--accordion .-head span::after {
	background: #C30013;
}
.manga .course-detail__branch--heading {
	background: #C30013;
}
.manga .course-detail__cta {
	background: #A50000;
}
.manga .course-detail__btn--main {
	border-color: #A50000;
}
.manga__senior {
	margin: 64px 0;
}
.manga__senior .course-detail__subtitle {
	text-align: center;
	margin: 0 auto 24px;
}
.manga__senior--item + .manga__senior--item {
	margin-top: 64px;
}
.manga__senior--content {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 4% 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 4%;
}
.manga__senior--work {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.manga__senior--work .-title {
	font-weight: 700;
	margin-bottom: 16px;
	text-align: center;
}
.manga__senior--work .-img {
	border-width: 16px;
	max-width: 390px;
	margin-bottom: 16px;
}
.manga__senior--work .-name {
	font-weight: 700;
	font-size: 1.8rem;
}
.manga__senior--work .-name:not(:last-child) {
	margin-bottom: 16px;
}
.manga__corp {
	margin: 64px 0 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: end;
	gap: 4%;
}
.manga__corp .-main {
	width: 40%;
}
.manga__corp .-sub {
	width: 56%;
}
@media (max-width: 767px) {
	.manga__senior--content {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.manga__senior--work .-title {
		margin-bottom: 8px;
	}
	.manga__senior--work .-img {
		border-width: 8px;
		margin-bottom: 8px;
	}
	.manga__senior--work .-name:not(:last-child) {
		margin-bottom: 6px;
	}
	.manga__corp {
		margin: 48px 0 64px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 20px;
	}
	.manga__corp .-main {
		width: 100%;
	}
	.manga__corp .-sub {
		width: 100%;
	}
}

.talent {
	background: url(../img/common/bg_pattern_talent.svg) repeat #FFF;
}
.talent .course-detail__heading h2::before {
	content: "\e90c";
	font-family: "icomoon";
	color: #E09200;
}
.talent .course-detail__heading .-label {
	background: #E09200;
}
.talent .course-detail__brief--heading {
	border-color: #E09200;
	color: #E09200;
}
.talent .course-detail__title span {
	color: #E09200;
}
.talent .course-detail__subtitle .-text {
	background: #E09200;
}
.talent .course-detail__list--item::before {
	background: #E09200;
}
.talent .course-detail__point--item .-heading {
	background: #E09200;
}
.talent .course-detail__point--accordion .-head span::before, .talent .course-detail__point--accordion .-head span::after {
	background: #E09200;
}
.talent .course-detail__branch--heading {
	background: #E09200;
}
.talent .course-detail__cta {
	background: #CC8500;
}
.talent .course-detail__btn--main {
	border-color: #CC8500;
}
.talent__data {
	width: 100vw;
	margin: 120px calc(50% - 50vw);
	position: relative;
	padding: 0 60px;
	background: url(../img/top/talent_data_bg.jpg) no-repeat;
	background-size: cover;
	color: #FFF;
	text-align: center;
}
.talent__data--inner {
	max-width: 1080px;
	width: 100%;
	margin: auto;
	padding: 120px 0;
}
.talent__data--coop {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 24px 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	position: relative;
}
.talent__data--coop::after {
	content: "";
	background: url(../img/top/talent_coop.svg) no-repeat center;
	background-size: contain;
	width: 105px;
	height: 105px;
	display: block;
	position: absolute;
	left: 50%;
	bottom: 34%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.talent__data--school {
	padding: 56px 10% 48px;
	border-radius: 20px;
	position: relative;
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.talent__data--school:first-child {
	background: rgba(255, 255, 255, 0.8);
	border: 4px solid rgba(224, 146, 0, 0.8);
	color: #333;
}
.talent__data--school:first-child .-logo img {
	width: 164px;
}
.talent__data--school:nth-child(2) {
	background: rgba(224, 146, 0, 0.8);
	border: 4px solid rgba(255, 255, 255, 0.8);
}
.talent__data--school .-logo {
	background: #FFF;
	border-radius: 50px;
	width: 330px;
	height: 82px;
	padding: 14px 40px;
	position: absolute;
	top: -40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.talent__data--school .-name {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.talent__data--school span {
	display: block;
	font-size: 2.4rem;
	font-weight: 700;
}
.talent__data--school span + span {
	padding-top: 16px;
	margin-top: 16px;
	border-top: 2px solid rgba(255, 255, 255, 0.8);
}
.talent__data--num {
	margin-bottom: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 32px 0;
	position: relative;
}
.talent__data--num::before {
	content: "";
	display: block;
	background: #FFF;
	width: 84%;
	height: 2px;
	position: absolute;
	top: 53%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.talent__data--block {
	width: 33%;
	padding: 3%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.talent__data--block:nth-child(2) {
	border-left: 2px solid #FFF;
	border-right: 2px solid #FFF;
}
.talent__data--block:nth-child(4) {
	border-right: 2px solid #FFF;
}
.talent__data--block .-title {
	font-size: 1.8rem;
	font-weight: 700;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.talent__data--block .-data {
	margin-top: -30px;
	font-size: 3.2rem;
	font-weight: 700;
}
.talent__data--block .-data span {
	font-size: 10rem;
}
.talent__data--piechart {
	max-width: 740px;
	margin: auto;
	padding: 32px 6%;
	border-radius: 20px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 60% 4% 36%;
	grid-template-columns: 60% 36%;
	gap: 4%;
	background: rgba(255, 255, 255, 0.8);
	color: #333;
	text-align: left;
}
.talent__data--piechart .-title {
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 8px;
}
.talent__data--piechart span {
	font-size: 1.4rem;
	font-weight: 700;
	display: block;
	margin-bottom: 24px;
}
.talent__data--piechart p {
	font-weight: 700;
}
.talent__senior--block .-main {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 36% 4% 60%;
	grid-template-columns: 36% 60%;
	gap: 4%;
}
.talent__senior--block .-img {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}
.talent__senior--block .-name {
	font-size: 1.8rem;
	font-weight: 700;
	color: #E09200;
}
.talent__senior--block .-name span {
	font-size: 2.4rem;
}
.talent__senior--block .-affiliation {
	font-weight: 700;
}
.talent__senior--block .-career {
	background: #E3E3E3;
	padding: 32px;
	border-radius: 10px;
	margin-top: 24px;
}
.talent__senior--block .-career .course-detail__list {
	padding: 0;
	border: none;
	background: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.talent__senior--block .-career .course-detail__list p {
	font-size: 1.4rem;
	font-weight: 400;
}
.talent__senior--block + .talent__senior--block {
	margin-top: 40px;
}
.talent__ha {
	margin: 80px 0;
}
.talent__ha .course-detail__subtitle {
	text-align: center;
	margin: 0 auto 24px;
}
@media (min-width: 768px) and (max-width: 1000px) {
	.talent__data--block:nth-child(1) {
		padding-left: 0;
	}
	.talent__data--block:nth-child(3) {
		padding-right: 0;
	}
	.talent__data--block .-data {
		font-size: 2.8rem;
	}
	.talent__data--block .-data span {
		font-size: 8rem;
	}
}
@media (max-width: 767px) {
	.talent__data {
		margin: 80px calc(50% - 50vw);
		padding: 0 20px;
	}
	.talent__data--inner {
		padding: 106px 0 80px;
	}
	.talent__data--coop {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 44px;
		position: relative;
	}
	.talent__data--coop::after {
		width: 80px;
		height: 80px;
		left: 50%;
		top: 27%;
		bottom: inherit;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
	.talent__data--school {
		padding: 40px 16px 30px;
	}
	.talent__data--school:first-child .-logo img {
		width: 104px;
	}
	.talent__data--school .-logo {
		padding: 8px 26px;
		width: 210px;
		height: 52px;
		top: -28px;
	}
	.talent__data--school span {
		font-size: 1.6rem;
	}
	.talent__data--school span + span {
		padding-top: 8px;
		margin-top: 8px;
	}
	.talent__data .course-detail__bold {
		font-size: 1.8rem;
	}
	.talent__data--num {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 10px 1fr;
		grid-template-columns: repeat(2, 1fr);
		-ms-grid-rows: 1fr 10px 1fr 10px 1fr;
		grid-template-rows: repeat(3, 1fr);
		gap: 10px;
	}
	.talent__data--num > *:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.talent__data--num > *:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
	}
	.talent__data--num > *:nth-child(3) {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
	}
	.talent__data--num > *:nth-child(4) {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
	}
	.talent__data--num > *:nth-child(5) {
		-ms-grid-row: 5;
		-ms-grid-column: 1;
	}
	.talent__data--num > *:nth-child(6) {
		-ms-grid-row: 5;
		-ms-grid-column: 3;
	}
	.talent__data--num::before {
		width: 100%;
		top: 34%;
		left: inherit;
		-webkit-transform: none;
		        transform: none;
	}
	.talent__data--num::after {
		content: "";
		display: block;
		background: #FFF;
		width: 100%;
		height: 2px;
		position: absolute;
		bottom: 34%;
	}
	.talent__data--block {
		width: auto;
		padding: 24px 16px 0;
	}
	.talent__data--block:nth-child(1) {
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 1/1/2/2;
	}
	.talent__data--block:nth-child(2) {
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 1/2/2/3;
		border-right: 0;
	}
	.talent__data--block:nth-child(3) {
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-area: 2/1/3/3;
	}
	.talent__data--block:nth-child(4) {
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
		grid-area: 3/1/4/2;
		border-right: 0;
	}
	.talent__data--block:nth-child(5) {
		-ms-grid-row: 3;
		-ms-grid-row-span: 1;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
		grid-area: 3/2/4/3;
		border-left: 2px solid #FFF;
	}
	.talent__data--block .-title {
		font-size: 1.6rem;
		line-height: 1.4;
	}
	.talent__data--block .-data {
		font-size: 2.4rem;
		margin-top: -20px;
	}
	.talent__data--block .-data span {
		font-size: 6.4rem;
	}
	.talent__data--piechart {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 0;
		padding: 30px 20px;
	}
	.talent__data--piechart .-text {
		display: contents;
	}
	.talent__data--piechart .-title {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
		font-size: 2rem;
		margin-bottom: 0;
	}
	.talent__data--piechart span {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
		margin-bottom: 16px;
	}
	.talent__data--piechart .-img {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
		max-width: 240px;
		margin: 0 auto 16px;
	}
	.talent__data--piechart p {
		-webkit-box-ordinal-group: 5;
		    -ms-flex-order: 4;
		        order: 4;
	}
	.talent__senior--block .-main {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.talent__senior--block .-career {
		padding: 24px;
	}
	.talent__senior .course-detail__subtitle {
		margin-bottom: 6px;
	}
	.talent__ha {
		margin: 64px 0;
	}
}

.makeup {
	background: url(../img/common/bg_pattern_makeup.svg) repeat #FFF;
}
.makeup .course-detail__heading h2::before {
	content: "\e90d";
	font-family: "icomoon";
	color: #E0008E;
}
.makeup .course-detail__heading .-label {
	background: #E0008E;
}
.makeup .course-detail__brief--heading {
	border-color: #E0008E;
	color: #E0008E;
}
.makeup .course-detail__title span {
	color: #E0008E;
}
.makeup .course-detail__subtitle .-text {
	background: #E0008E;
}
.makeup .course-detail__list--item::before {
	background: #E0008E;
}
.makeup .course-detail__point--item .-heading {
	background: #E0008E;
}
.makeup .course-detail__point--accordion .-head span::before, .makeup .course-detail__point--accordion .-head span::after {
	background: #E0008E;
}
.makeup .course-detail__person--name {
	color: #E0008E;
}
.makeup .course-detail__branch--heading {
	background: #E0008E;
}
.makeup .course-detail__cta {
	background: #E0008E;
}
.makeup .course-detail__btn--main {
	border-color: #E0008E;
}
.makeup__senior .course-detail__subtitle {
	text-align: center;
	margin: 0 auto 24px;
}
.makeup__senior--brief .-title {
	font-weight: 700;
	margin-bottom: 16px;
}
.makeup__senior--content {
	margin-top: 24px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 4% 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 4%;
}
.makeup__senior--work {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.makeup__senior--work .-img {
	border-width: 16px;
	max-width: 300px;
	margin-bottom: 16px;
}
.makeup__senior--work .-name {
	font-weight: 700;
	font-size: 1.8rem;
}
.makeup__senior--work .-name:not(:last-child) {
	margin-bottom: 16px;
}
@media (max-width: 767px) {
	.makeup__senior--content {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.makeup__senior--work .-img {
		border-width: 8px;
		margin-bottom: 8px;
	}
	.makeup__senior--work .-name:not(:last-child) {
		margin-bottom: 6px;
	}
}

/* end of top page */
/*----------------------------------*/
/*----------------------------------*/
/* start of sub page */
.pagetitle {
	background: #E3E3E3;
	height: 210px;
	margin-top: 85px;
}
.pagetitle__inner {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.pagetitle__text {
	font-weight: 700;
	font-size: 3.2rem;
}
.pagetitle__text span {
	display: block;
	font-size: 2.4rem;
	margin-top: -8px;
	color: #C30013;
}
@media (max-width: 767px) {
	.pagetitle {
		height: 160px;
		margin-top: 50px;
	}
	.pagetitle__text {
		font-size: 2.8rem;
	}
	.pagetitle__text span {
		font-size: 2rem;
	}
}

.breadcrumb {
	width: 100%;
	position: relative;
	z-index: 20;
	padding: 0 60px;
}
.breadcrumb__inner {
	max-width: 1080px;
	margin: auto;
	padding: 16px 0 0;
	position: relative;
}
.breadcrumb__list {
	overflow-x: auto;
	padding: 0 0 3px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	white-space: nowrap;
}
.breadcrumb__item {
	font-weight: 700;
	position: relative;
}
.breadcrumb__item:not(:first-child) {
	margin-left: 15px;
	padding-left: 15px;
}
.breadcrumb__item:not(:first-child)::before {
	content: "\e900";
	font-family: "icomoon";
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	left: 0;
	color: #333;
	font-size: 0.8rem;
}
.breadcrumb a {
	font-weight: 400;
	text-decoration: underline;
	color: #C30013;
}
.breadcrumb a:hover {
	text-decoration: none;
}
@media (max-width: 767px) {
	.breadcrumb {
		padding: 0 20px;
	}
	.breadcrumb__inner {
		padding: 8px 0 0;
	}
	.breadcrumb__item {
		font-size: 1.4rem;
	}
}

.message__inner {
	padding: 48px 0 64px;
}
.message__list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 32px 1fr 32px 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 32px;
}
@media (max-width: 1024px) {
	.message__list {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.message__list {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 50px;
	}
}

.message-block__img {
	margin-bottom: 16px;
	overflow: hidden;
	border: 2px solid #333;
	border-radius: 20px;
}
.message-block__course {
	display: block;
	margin: auto;
	border-radius: 50px;
	padding: 8px 24px;
	font-weight: 700;
	text-align: center;
	color: #FFF;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-bottom: 8px;
}
.message-block__course.-esports {
	background: #8E00C3;
}
.message-block__course.-game {
	background: #0061C3;
}
.message-block__course.-talent {
	background: #E09200;
}
.message-block__course.-manga {
	background: #C30013;
}
.message-block__course.-makeup {
	background: #E0008E;
}
.message-block__title {
	font-weight: 700;
	text-align: center;
	margin-bottom: 8px;
}
.message-block__title::after {
	content: "";
	display: block;
	background: #E3E3E3;
	width: 100%;
	height: 2px;
	margin-top: 14px;
}
.message-block__name {
	font-weight: 700;
	font-size: 1.8rem;
	text-align: center;
	margin-bottom: 16px;
}
.message-block__subtitle {
	font-weight: 700;
	display: block;
}
@media (max-width: 767px) {
	.message-block__course {
		font-size: 1.4rem;
		padding: 6px 18px;
	}
	.message-block__title {
		margin-bottom: 6px;
	}
	.message-block__title::after {
		margin-top: 8px;
	}
	.message-block__name {
		margin-bottom: 8px;
	}
	.message-block__text {
		font-size: 1.4rem;
	}
}

/* end of sub page */
/*----------------------------------*/