@charset "utf-8";
/**********************************************
* 
* post
*
************************************************/

.Heading {
	padding: 35px 0;
	text-align: center;
	font-size: 4rem;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	background: url(../../images/bg_heading.png) no-repeat right / auto 100% ,#cf0010;
}

@media (max-width: 767px) {
	.Heading {
		padding: 32px 0;
		font-size: 3rem;
		background: url(../../images/bg_heading_sp.png) no-repeat bottom right ,#cf0010;
	}
}


.BtnArea {
	padding: 50px 0 0;
	border-top: 1px solid #ccc;
	text-align: center;
	margin-top: 80px;
}

.BtnArea_btn {
	position: relative;
    display: inline-block;
    padding: 10px;
    background: #efefef;
    font-size: 2rem;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    width: 370px;
    color: #000;
}

.BtnArea_btn::before {
	position: absolute;
    content: "";
    width: 20px;
    height: 10px;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../../images/icon/arrow.svg) no-repeat center / contain;
    transition: left .5s;
	transform: scale(-1,1);
}

.BtnArea_btn:hover::before {
	left: 5px;
}

@media (max-width: 767px) {
	.BtnArea {
		padding: 40px 0;
		margin-top: 50px;
	}
	
	.BtnArea_btn {
		font-size: 1.6rem;
		width: 80%;
	}
}

.CvArea {
	border-top: 1px solid #ccc;
	padding-top: 80px;
	margin-top: 60px;
}

@media (max-width: 767px) {
	.CvArea {
		padding-top: 70px;
	}
}



.CvBtn {
	display: flex;
    justify-content: center;
    margin: 0 -15px ;
	padding: 0 100px 10px;
}

.CvBtn_column {
	width: 50%;
    padding: 0 15px;
}

.CvBtn_btn {
	position: relative;
    display: block;
    text-align: center;
    box-shadow: 10px 12px 0 #bfbfbf;
    padding: 22px 100px 22px 140px;
    background: #efefef;
    font-size: 2.4rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
    transition: box-shadow .3s, transform .5s, opacity .3s;
    opacity: 1;
}

.CvBtn_btn:hover {
	box-shadow: 0 0 0 #bfbfbf;
    transform: translate3d(0, 5px, 0);
    opacity: 0.8;
}

.CvBtn_btn::after {
	position: absolute;
    content: "";
    width: 20px;
    height: 10px;
    right: 35px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../../images/icon/arrow.svg) no-repeat center / contain;
    transition: right .5s;
}

.CvBtn_btn:hover::after {
	right: 25px;
}

.CvBtn_btn_icon {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 36px;
    margin: auto;
    width: 55px;
    height: 55px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 1;
}

.CvBtn_btnIconImg {
	position: relative;
	width: 21px;
    height: 28px;
}

@media (max-width: 767px) {
	.CvBtn {
		display: block;
		margin: 0;
		padding: 0 0 10px;
	}
	
	.CvBtn_column {
		width: 100%;
		padding: 0;
	}

	.CvBtn_column + .CvBtn_column {
		margin-top: 35px;
	}

	.CvBtn_btn {
		font-size: 1.4rem;
		padding: 31px 20px 28px 20px;
		box-shadow: 6px 6px 0 #bfbfbf;
	}

	.CvBtn_btn::after {
		width: 15px;
		height: 5px;
	}
}








.CvLinkList {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 100px;
}

.CvLinkList_item {
	position: relative;
	width: calc( 50% - 10px );
}

.CvLinkList_item::before,
.CvLinkList_item::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background: #000;
	left: 0;
	right: 0;
	margin: auto;
}

.CvLinkList_item::before {
	top: -1px;
}

.CvLinkList_item::after {
	bottom: 0;
}

.CvLinkList_link {
	display: flex;
	align-items: center;
	height: 100%;
	color: #000;
	font-size: 2rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	padding: 15px 35px 15px 15px;
}

.CvLinkList_link:hover {
	opacity: 0.6;
}

.CvLinkList_link::after {
	position: absolute;
	content: "";
	width: 20px;
	height: 10px;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url(../../images/icon/arrow.svg) no-repeat center / contain;
	transition: right .5s;
}

.CvLinkList_link:hover::after {
	right: 0;
}

@media (max-width: 767px) {
	.CvLinkList {
		margin-top: 30px;
		display: block;
		padding: 0;
	}
	
	.CvLinkList_item {
		width: 100%;
	}

	.CvLinkList_link {
		font-size: 1.6rem;
		padding: 18px 35px 18px 15px;
	}
}







.CvPamphlet {
	display: flex;
	margin-top: 60px;
}

.CvPamphlet_imgArea {
	width: 48%;
}

.CvPamphlet_img {
	width: 100%;
	height: auto;
}

.CvPamphlet_textArea {
	width: 52%;
	position: relative;
    margin-left: auto;
    background: url(../../images/top/bg_pamphlet_text.png) no-repeat bottom right / cover;
    padding: 28px 40px 38px;
}

.CvPamphlet_title {
	position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3.2rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.CvPamphlet_titleIcon {
	width: 34px;
    height: 34px;
	margin-right: 5px;
	margin-top: 2px;
}

.CvPamphlet_btnWrap {
	text-align: center;
}

.CvPamphlet_btn {
    position: relative;
    display: inline-block;
    padding: 10px;
    background: #fff;
    font-size: 2rem;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    width: 370px;
    color: #000;
}

.CvPamphlet_btn::after {
	position: absolute;
    content: "";
    width: 20px;
    height: 10px;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../../images/icon/arrow.svg) no-repeat center / contain;
    transition: right .5s;
}

.CvPamphlet_btn:hover::after {
	right: 5px;
}

@media (max-width: 767px) {
	.CvPamphlet {
		position: relative;
		flex-direction: column-reverse;
		margin-top: 40px;
	}

	.CvPamphlet::before {
		position: absolute;
		content: "";
		width: calc( 100% + 30px);
		height: calc( 100% + 30px);
		background: url(../../images/p_footer_cv_pamphlet.png) repeat;
		z-index: -1;
    top: -15px;
    left: -15px;
	}
	
	.CvPamphlet_imgArea {
		width: 100%;
		border-radius: 0 0 8px 8px;
		overflow: hidden;
	}
	
	.CvPamphlet_textArea {
		width: 100%;
		padding: 25px 20px 30px;
	}

	.CvPamphlet_title {
		font-size: 2.8rem;
		margin-bottom: 10px;
	}

	.CvPamphlet_btn {
		font-size: 1.6rem;
		width: 100%;
	}
}







.Breadcrumb {
	background: url(../../images/bg_breadcrumb.png) repeat-x;
	overflow: hidden;
}

.Breadcrumb_list::after {
	position: absolute;
	content: "";
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background: #fff;
}

.Breadcrumb_list::before {
	position: absolute;
	content: "";
	right: -34px;
    top: 46px;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
    border: 34px solid transparent;
    border-left: 34px solid #fff;
	transform: rotate(45deg);
}

.Breadcrumb_list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	padding: 13px 0;
	font-size: 1.4rem;
}

.Breadcrumb_item {
	position: relative;
	display: flex;
	align-items: center;
}

/*
.Breadcrumb_item:not(:first-of-type)::before {
	position: relative;
	content: "";
	margin: 0 12px 0 8px;
	top: -1px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
}
*/

.Breadcrumb_item:last-of-type {
	font-weight: bold;
}

.Breadcrumb_link {
	text-decoration: underline;
	color: #333;
	height: 100%;
	display: flex;
	align-items: center;
}

.Breadcrumb_link:hover {
	opacity: 0.6;
}

@media (max-width: 767px) {
	.Breadcrumb {
		padding: 0;
		background: none;
	}
}




.NewsList_item + .NewsList_item {
	margin-top: 20px;
}

.NewsList_link {
	display: block;
}

.NewsList_time {
	color: #000;
	font-family: 'Barlow', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	padding: 5px 0;
}

.NewsList_title {
	border-top: 1px solid #ccc;
	font-size: 1.6rem;
	font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 5px 0;
	color: #333;
	position: relative;
	padding-right: 40px;
}

.NewsList_title::after {
	position: absolute;
    content: "";
    width: 20px;
    height: 10px;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../../images/icon/arrow_red.svg) no-repeat center / contain;
	transition: right .5s;
}

.NewsList_title:hover {
	color: #cf0010;
}

.NewsList_title:hover::after {
	right: 0;
}

@media (max-width: 767px) {
	.NewsList_item + .NewsList_item {
		margin-top: 15px;
	}

	.NewsList_title {
		font-size: 1.4rem;
		line-height: 1.8;
	}

	.NewsList_title::after {
		top: 10px;
		bottom: auto;
	}
}


.SingleHeader {
	padding-bottom: 10px;
	border-bottom: 1px solid #cccccc;
	margin-bottom: 60px;
}

.SingleHeader_title {
	font-size: 2.8rem;
	font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
}

.SingleHeader_time {
	text-align: right;
}

@media (max-width: 767px) {
	.SingleHeader_title {
		font-size: 2rem;
	}
}



.Wysiwyg {
	width: 970px;
	margin: auto;
}

.Wysiwyg.-full {
	width: 100%;
}

.Wysiwyg img {
	display: block;
	max-width: 100%;
	max-height: 950px;
	height: auto;
	object-fit: contain;
	font-family: 'object-fit: contain;';
	margin: 40px auto;
}

.Wysiwyg a {
	position: relative;
	color: #e70012;
	text-decoration: underline;
}

.Wysiwyg a:hover {
	opacity: 0.6;
}

.Wysiwyg a[target="_blank"] {
	padding: 0 3px;
}

.Wysiwyg a[target="_blank"]::after {
	position: relative;
	content: "\f360";
	padding-left: 3px;
	margin: auto;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	color: #666666;
}

.Wysiwyg h1 {
	margin: 60px 0 20px;
	font-size: 2rem;
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 10px 20px;
	background: #efefef;
}

/* .Wysiwyg h2 {
	margin: 35px 0 15px;
	font-size: 1.8rem;
	font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
	color: #e70012;
	border-left: 3px solid #e70012;
	padding-left: 10px;
} */

.Wysiwyg h2 {
	z-index: 0;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 80px 0 60px;
	padding-top: 24px;
	font-weight: 500;
	font-size: 2.8rem;
	color: #000;
}

.Wysiwyg h2::before {
	content: '';
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #efefef;
}

.Wysiwyg h2::after {
	content: '';
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
	height: 3px;
	background: #e70012;
}

.Wysiwyg h3 {
	z-index: 0;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 60px 0 50px;
	padding-top: 28px;
	font-weight: 700;
	font-size: 2.2rem;
	color: #e70012;
}

.Wysiwyg h3::before {
	content: '';
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #e70012;
}

.Wysiwyg h4 {
	z-index: 0;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 60px 0 30px;
	padding: 10px 20px;
	font-weight: 700;
	font-size: 2rem;
	color: #000;
	background: #efefef;
}

.Wysiwyg h5 {
	z-index: 0;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 30px 0 20px;
	padding-left: 15px;
	font-weight: 400;
	font-size: 1.8rem;
	color: #e70012;
	border-left: 3px solid #e70012;
}

.Wysiwyg p {
	line-height: 1.8;
	font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
}

.Wysiwyg ul {
	margin: 20px 0;
}

.Wysiwyg ul li {
	position: relative;
	padding-left: 20px;
	margin: 5px 0;
}

.Wysiwyg ul li::before {
	position: absolute;
	content: "";
	width: 7px;
	height: 7px;
	top: 0.7rem;
	background: #e70012;
	border-radius: 100%;
	left: 3px;
}

.Wysiwyg ol {
	list-style: decimal;
	padding-left: 20px;
}

.Wysiwyg ol li {
	margin: 5px 0;
}

@media (max-width: 767px) {
	.Wysiwyg {
		width: 100%;
	}

	.Wysiwyg h2 {
		margin: 60px 0 40px;
    font-size: 2.2rem;
	}

	.Wysiwyg h3 {
		margin: 40px 0 20px;
    font-size: 1.8rem;
	}

	.Wysiwyg h4 {
		margin: 40px 0 30px;
    font-size: 1.6rem;
	}

	.Wysiwyg h5 {
		margin: 20px 0;
    font-size: 1.6rem;
	}

	.Wysiwyg img {
		margin: 20px auto;
		max-width: 100%;
		height: auto;
	}
}












.CoursesCard_cards {
	display: flex;
	flex-wrap: wrap;
}

.CoursesCard_item {
	padding: 20px;
	width: 50%;
}

.CoursesCard_itemInner {
	position: relative;
	background: #efefef;
}

.CoursesCard_thumb {
	margin-bottom: -25px;
}

.CoursesCard_img {
	width: 100%;
	height: auto;
}

.CoursesCard_title {
	position: relative;
	font-size: 1.5vw;
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 10px 20px;
	background: #fff;
	display: inline-block;
	width: 74%;
}

.CoursesCard_title::after {
	position: absolute;
	content: "";
	width: 0;
    height: 0;
	border: 5px solid transparent;
    border-left: 5px solid #cf0010;
    right: -5px;
    bottom: -5px;
    transform: rotate(45deg);
}

.CoursesCard_textArea {
	padding: 20px 30px 30px;
}

.CoursesCard_text {
	font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.7;
}

/*.Courses_list */
.Courses_listWrap {
	background: #fff;
	padding: 20px;
	margin-top: 20px;
}

.CoursesCard_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.CoursesCard_listItem {
	position: relative;
	width: calc( 50% - 10px );
}

.CoursesCard_listItem::before,
.CoursesCard_listItem::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background: #000;
	left: 0;
	right: 0;
	margin: auto;
}

.CoursesCard_listItem::before {
	top: -1px;
}

.CoursesCard_listItem::after {
	bottom: 0;
}

.CoursesCard_listLink {
	display: flex;
	align-items: center;
	height: 100%;
	color: #000;
	font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	padding: 10px 35px 10px 10px;
}

.CoursesCard_listLink:hover {
	opacity: 0.6;
}

.CoursesCard_listLink::after {
	position: absolute;
	content: "";
	width: 20px;
	height: 10px;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url(../../images/icon/arrow.svg) no-repeat center / contain;
	transition: right .5s;
}

.CoursesCard_listLink:hover::after {
	right: 0;
}

@media (max-width: 767px) {
	.CoursesCard {
		margin-top: 40px;
	}

	.CoursesCard_cards {
		display: block;
	}
	
	.CoursesCard_item {
		padding: 0;
		width: 100%;
	}

	.CoursesCard_item + .CoursesCard_item {
		margin-top: 30px;
	}
	
	.CoursesCard_thumb {
		margin-bottom: -45px;
	}
	
	.CoursesCard_title {
		font-size: 1.6rem;
	}
	
	.CoursesCard_textArea {
		padding: 20px;
	}
	
	.CoursesCard_text {
		font-size: 1.4rem;
		line-height: 2;
	}

	/*.Courses_list */
	.Courses_listWrap {
		padding: 0;
		margin-top: 20px;
	}

	.CoursesCard_list {
		padding: 20px;
		display: block;
	}

	.CoursesCard_listItem {
		width: 100%
	}

	.CoursesCard_listLink {
		font-size: 1.4rem;
		padding: 10px 35px 10px 10px;
	}
}



.course-Title01 {
	font-size: 3.2rem;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	margin-bottom: 15px;
}

@media (max-width: 767px) {
	.course-Title01 {
		font-size: 3rem;
	}
}

.course-Title02 {
	position: relative;
	font-size: 2.8rem;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	margin-bottom: 45px;
	padding-top: 20px;
}

.course-Title02::before,
.course-Title02::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 3px;
	top: 0;
	left: 0;
	background: #e70012;
}

.course-Title02::after {
	background: #efefef;
	right: 0;
	left: auto;
	width: 87%;
}

@media (max-width: 767px) {
	.course-Title02 {
		font-size: 2.2rem;
		margin-bottom: 35px;
		padding-top: 15px;
	}

	.course-Title02::after {
		width: 78%;
	}

}

.course-title03 {
	margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 10px 20px;
    background: #efefef;
}

@media (max-width: 767px) {
	.course-title03 {
		font-size: 1.6rem;
	}
}




.course-Annuals {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.course-Annuals_item {
	margin: 0 5px;
	font-size: 1.8rem;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	color: #e70012;
	border: 1px solid #e70012;
	padding: 2px 15px;
	border-radius: 8px;
}

@media (max-width: 767px) {
	.course-Annuals_item {
		font-size: 1.6rem;
	}
}



.course-Thumnb {
	margin-top: 30px;
}

.course-Thumn_img {
	max-width: 100%;
	max-height: 450px;
	object-fit: contain;
	font-family: 'object-fit: contain;';
}



.course-CourseName {
	margin-top: 40px;
	text-align: center;
	padding: 0 100px;
}

.course-CourseName_inner {
	position: relative;
	border-bottom: 1px solid #e70012;
	padding-bottom: 20px;
}

.course-CourseName_inner::before {
	position: absolute;
	content: "";
	top: 20px;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #e70012;
	z-index: -1;
}

.course-CourseName_title {
	display: inline-block;
	background: #e70012;
	color: #fff;
	padding: 1px 43px 2px 43px;
	font-size: 2.2rem;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	border-radius: 8px;
	margin-bottom: 15px;
}

.course-CourseName_text + .course-CourseName_text {
	margin-top: 10px;
}

@media (max-width: 767px) {
	.course-CourseName {
		margin-top: 30px;
		padding: 0;
	}

	.course-CourseName_title {
		font-size: 1.8rem;
	}
}





.course-Explanation {
	display: flex;
	margin: 35px -15px 0;
	padding: 0 100px;
}

.course-Explanation_item {
	padding: 0 15px;
	width: 100%;
}

.course-Explanation_title {
	font-size: 2.2rem;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	color: #e70012;
	padding: 0 50px;
	text-align: center;
	margin-bottom: 15px;
}

.course-Explanation_titleInner {
	position: relative;
}

.course-Explanation_titleInner::before,
.course-Explanation_titleInner::after {
	position: absolute;
	content: "……";
	top: 5px;
	bottom: 0;
	left: -40px;
	margin: auto;
	transform: rotate(70deg);
	font-size: 1.2rem;
}

.course-Explanation_titleInner::after {
	left: auto;
	right: -40px;
	transform: rotate(-70deg);
}

.course-Explanation_box {
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
	background: #fde5e7;
	line-height: 1.8;
	padding: 15px 20px;
}

@media (max-width: 767px) {
	.course-Explanation {
		display: block;
		margin: 25px 0 0;
		padding: 0;
	}

	.course-Explanation_item {
		padding: 0;
	}

	.course-Explanation_item + .course-Explanation_item {
		margin-top: 30px;
	}

	.course-Explanation_title {
		font-size: 1.8rem;
	}

	.course-Explanation_box {
		font-size: 1.4rem;
	}
	
}



.course-Features {
	margin-top: 80px;
}

.course-Features_list {
	padding: 0 100px;
}

.course-Features_item {
	display: flex;
	margin: 0 -15px;
}

.course-Features_item:nth-of-type(even) {
	flex-direction: row-reverse;
}

.course-Features_item + .course-Features_item {
	margin-top: 80px;
}

.course-Features_thumb {
	width: 50%;
	padding: 0 35px 0 15px;
}

.course-Features_imgWrap {
	position: relative;
	display: block;
}

.course-Features_imgWrap::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 20px;
	left: 20px;
	background: url(../../images/course/bg_course_features.png) no-repeat right bottom / cover;
    z-index: -1;
}

.course-Features_img {
	position: relative;
	width: 100%;
	height: auto;
}

.course-Features_textArea {
	width: 50%;
	padding: 0 15px;
}

.course-Features_title {
	font-size: 2.2rem;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
	line-height: 1.8;
	margin-bottom: 30px;
}

.course-Features_titleInner {
	display: inline;
	background: linear-gradient(transparent 50%, #fbd9dc 0%);
	padding-right: 10px;
}

.course-Features_text {
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
	line-height: 1.8;
}

@media (max-width: 767px) {
	.course-Features {
		margin-top: 60px;
	}

	.course-Features_list {
		padding: 0;
	}

	.course-Features_item {
		display: block;
		margin: 0;
	}

	.course-Features_item + .course-Features_item {
		margin-top: 40px;
	}

	.course-Features_thumb {
		width: 100%;
		padding: 0 25px 0 0;
	}

	.course-Features_thumb::after {
		top: 10px;
		left: 10px;
	}

	.course-Features_textArea {
		width: 100%;
		padding: 0;
		margin-top: 40px;
	}

	.course-Features_title {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}

}




.course-Student {
	margin-top: 80px;
}

.course-Student_list {
	padding: 0 100px;
}

.course-Student_item {
	border-top: 1px solid #e70012;
	padding-top: 25px;
}

.course-Student_item + .course-Student_item {
	margin-top: 50px;
}

.course-Student_title {
	font-size: 2.2rem;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
	line-height: 1.8;
	margin-bottom: 30px;
	color: #e70012;
}

.course-Student_itemInner {
	display: flex;
	margin: 0 -15px;
}

.course-Student_item:nth-of-type(even) .course-Student_itemInner {
	flex-direction: row-reverse;
}

.course-Student_thumb {
	position: relative;
	width: 40%;
	padding: 0 35px 0 15px;
}

.course-Student_imgWrap {
	position: relative;
	display: block;
	margin-bottom: 20px;
}

.course-Student_imgWrap::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 20px;
	left: 20px;
	background: url(../../images/course/bg_course_student.png) no-repeat right bottom / cover;
	z-index: -1;
}

.course-Student_img {
	width: 100%;
	height: auto;
}

.course-Student_job {
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
	margin-top: 30px;
}

.course-Student_job.-sp {
	display: none;
}

.course-Student_textArea {
	width: 60%;
	padding: 0 15px;
}

.course-Student_text {
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
	line-height: 1.8;
}

.course-Student_person {
	margin-top: 25px;
}

.course-Student_personTitle {
	margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    color: #e70012;
    border-left: 3px solid #e70012;
    padding-left: 10px;
}

.course-Student_name {
	font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 5px;
}

.course-Student_profile {
	font-size: 1.4rem;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.8;
}

.course-Student_accordion {
	display: none;
}

@media (max-width: 767px) {
	.course-Student {
		margin-top: 60px;
	}

	.course-Student_list {
		padding: 0;
	}

	.course-Student_item {
		padding-top: 10px;
	}

	.course-Student_itemInner {
		margin: 0;
	}

	.course-Student_title {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}

	.course-Student_thumb {
		padding: 0 25px 0 0;
	}

	.course-Student_imgWrap {
		margin-bottom: 10px;
	}

	.course-Student_imgWrap::after {
		top: 10px;
		left: 10px;
		border-radius: 10px;
	}

	.course-Student_job.-pc {
		display: none;
	}

	.course-Student_job.-sp {
		display: block;
		margin-top: 10px;
		font-size: 1.4rem;
	}

	.course-Student_textArea {
		padding: 0;
	}

	.course-Student_text {
		display: none;
	}

	.course-Student_person {
		margin-top: 0;
	}

	.course-Student_personTitle {
		font-size: 1.6rem;
		margin-bottom: 10px;
	}

	.course-Student_name {
		font-size: 1.4rem;
		margin-bottom: 0;
	}

	.course-Student_profile {
		font-size: 1.2rem;
	}
	
	.course-Student_accordion {
		display: block;
		margin-top: 15px;
	}

	.course-Student_accordionBody {
		padding-bottom: 20px;
		font-size: 1.4rem;
		font-weight: 400;
		font-family: 'Noto Sans JP', sans-serif;
		line-height: 1.8;
	}

	.course-Student_accordionBtn {
		position: relative;
		display: block;
		padding: 7px;
		background: #efefef;
		font-size: 1.4rem;
		font-weight: 500;
		font-family: 'Noto Sans JP', sans-serif;
		color: #000;
		width: 80%;
		margin: auto;
		text-align: center;
	}

	.course-Student_accordionBtn::before,
	.course-Student_accordionBtn::after {
		position: absolute;
		content: "";
		width: 12px;
		height: 2px;
		right: 15px;
		top: 0;
		bottom: 0;
		margin: auto;
		background: #000;
	}

	.course-Student_accordionBtn::after {
		transform: rotate(90deg);
	}

	.course-Student_accordionCloseText {
		display: none;
	}

	.course-Student_accordionBtn.is-active::after {
		display: none;
	}
	
	.course-Student_accordionBtn.is-active .course-Student_accordionCloseText {
		display: block;
	}

	.course-Student_accordionBtn.is-active .course-Student_accordionOpenText {
		display: none;
	}
}

.course-Company {
	margin-top: 60px;
}

.course-Company_text {
	line-height: 1.8;
}

.course-Content {
	margin-top: 70px;
}

.Item-Result {
	background: #cf0010;
	height: auto !important;
	color: #fff;
	position: relative;
	padding: 40px;
	border-radius: 10px;
	text-align: center;
}
.Item-Result.Images_Item + .Images_Item {
	margin-left: 40px;
}
.Item-Result::after {
	content: "";
	position: absolute;
	background: url(../../images/nobs/bg_motif.png) no-repeat;
	width: 85px;
	height: 85px;
	background-size: contain;
	bottom: 0;
	right: 0;
}
.Item-Result.-findwork::before {
	content: "";
	position: absolute;
	background: url(../../images/model/p_operator01.png) no-repeat;
	width: 105px;
	height: 294px;
	background-size: contain;
	bottom: -20px;
	left: -50px;
	z-index: 3;
}
.Item-Result.-pass::before {
	content: "";
	position: absolute;
	background: url(../../images/model/p_operator02.png) no-repeat;
	width: 116px;
	height: 310px;
	background-size: contain;
	bottom: -30px;
	right: -30px;
	z-index: 3;
}
.Item-Result dt {
	font-size: 3rem;
	font-family: 'Noto Sans JP', sans-serif;
}
.Item-Result dd.rate {
	font-size: 14rem;
	font-family: 'Barlow', sans-serif;
	font-weight: bolder;
	line-height: 1;
	position: relative;
	margin-bottom: 50px;
}

.Item-Result dd.rate::after {
	content: "";
	position: absolute;
	background: #dd7b84;
	width: 80%;
	height: 10px;
	background-size: contain;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
}

.Item-Result dd.rate span {
	font-size: 6rem;
}

@media (max-width: 767px) {
	.Images_Wrap.-col2 > .Images_Item.Item-Result {
		width: 85%;
		margin: 0 0 40px auto;
		padding: 25px 10px;
	}

	.Item-Result.Images_Item + .Images_Item {
		margin-left: 0;
	}
	
	.Item-Result::after {
		width: 65px;
		height: 65px;
	}
	.Images_Wrap.-col2 > .Images_Item.Item-Result.-pass {
		margin: 50px auto 40px 0;
	}
	.Item-Result.-findwork::before {
		width: 85px;
		height: 234px;
	}
	
	.Item-Result.-pass::before {
		width: 116px;
		height: 240px;
    right: -70px;
	}
	.Item-Result dt {
		font-size: 2rem;
	}
	.Item-Result dd.rate {
		font-size: 9rem;
		margin-bottom: 30px;
	}
	.Item-Result dd.rate::after {
		width: 70%;
		height: 8px;
	}
	.Item-Result dd.rate span {
		font-size: 3.8rem;
	}
}
.Images_Wrap.-col2.Access > .Images_Item {
	height: auto;
}

#access {
	padding-top: 120px;
	margin-top: -120px;
}