@charset "UTF-8";


/*----------------------------------------------------------
各コースページ用　共通css
----------------------------------------------------------*/
main {
	max-width: 100%;
	padding: 20px 0 0;
}
.first_viwe h3 {
	position: absolute;
	width: 50%;
	right: 0;
	bottom: 2em;
	margin: 0 0 1em;
}
.first_viwe .messeage {
	position: absolute;
}
.first_viwe .messeage h4 {
	font-size: 1.2em;
	margin: 0em auto 0.3em;
}
.first_viwe .messeage p {
	margin: 0;
}
.first_viwe .messeage p span.name {
	display: none;
}
@media screen and (max-width: 999px) {
	.first_viwe .messeage p span.name {
		display: inline-block;
	}
	.first_viwe .messeage {
		position: relative;
	}
	.first_viwe .messeage p {
		font-size: 14px;
	}
	section.temp_section.top_content {
		padding: 20px;
	}
}

/* コースの特徴 */
.cource_flow {
	display: flex;
	max-width: 1200px;
	margin: auto;
	position: relative;
	top: -3em;
	padding: 20px;
}
.cource_flow > div {
	width: calc(100% / 4);
	position: relative;
}
.cource_flow > div::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 100%;
	background-image: url(ts-cource/images/flow01.png);
	position: absolute;
	top: 0;
	right: -20px;
	background-size: 100% 100%;
	z-index: 1;
}
.top_content p.temp_text {
	text-align: center;
}
.cource_flow .cource_feature {
	padding: 1em;
	box-sizing: border-box;
	width: 30%;
}
.cource_flow .cource_feature h4 {margin: 0.5em auto;}
.cource_flow .cource_feature ul {padding: 0;}
.cource_flow .cource_feature ul li {
	list-style: none;
	margin: 0.5em 0;
}
.cource_flow .cource_feature ul li::before {
	content: "";
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url(images/check.png);
	background-size: contain;
	vertical-align: middle;
}
.cource_flow .cource_grade {
	padding: 4.5em 1em 2em 4em;
	font-size: 0.8em;
	box-sizing: border-box;
}
.cource_flow .cource_grade p {margin: 0;}
.cource_flow .cource_grade.grade1 h5 {
	margin: 0;
	position: absolute;
	background-color: #295BA7;
	padding: 0.5em 0.5em 0.5em 3em;
	color: #fff;
	font-weight: normal;
	width: 290%;
	left: 0;
	font-size: 1.2em;
	top: 0.8em;
	z-index: 2;
	box-sizing: border-box;
}
@media screen and (max-width: 999px) {
	.top_content p.temp_text {
		text-align: left;
	}
	.cource_flow {
		flex-direction: column;
		padding: 0;
		top: 0;
	}
	.cource_flow > div {
		width: 100%;
	}
	.cource_flow .cource_feature {
		padding: 1em;
	}
	.bg_color {
		padding: 0; 
	}
	.cource_flow .cource_grade.grade1 h5 {
		width: 100%;
		left: 0;
		font-size: 1.2em;
		top: 0;
		padding-left: 20px;
	}
	.cource_flow > div::after {
		width: 100%;
		top: auto;
		height: 20px;
		bottom: -20px;
		right: auto;
		left: 0;
	}
	.cource_flow .cource_feature {
		padding: 1em 1.6em;
		width: 100%;
	}
	.cource_flow .cource_grade {
		padding: 20px; 
	}
	.cource_flow .cource_grade.grade1 {
		padding-top: 50px; 
	}
}


/* 先輩のせなか */
section.elder {
	max-width: 1000px;
	margin: auto;
	padding: 0 20px 20px;
}
section.elder .elder_content {
	display: flex;
	align-items: flex-end;
	margin: 3em 0;
	justify-content: space-evenly;
}
section.elder .elder_text {
	width: 65%;
}
section.elder .elder_content:nth-child(even) .elder_text {
}
section.elder .elder_text h4 {
	font-size: 1.4em;
	margin: 0;
}
section.elder .elder_img {
	width: 25%;
	position: relative;
}
section.elder .elder_content:nth-child(even) .elder_img {
}
section.elder .elder_img::after {
	position: absolute;
	content: "";
	display: block;
	width: 120px;
	height: 120px;
	background-image: url(ts-cource/images/fukidashi01.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: -10%;
	right: -21%;
}
section.elder .elder_content:nth-child(even) .elder_img::after {
	background-image: url(ts-cource/images/fukidashi02.png);
	right: auto;
	left: -21%;
}
section.elder .elder_main {
	position: relative;
	margin-bottom: 1.5em;
}
section.elder .elder_main h5 {
	position: absolute;
	bottom: 0;
	width: 70%;
	left: 50%;
	transform: translateX(-50%);
}
section.elder .elder_text_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
section.elder .elder_text_flex .elder_text {
	width: 32%;
	margin: 1em 0px;
}
@media screen and (max-width: 999px) {
	section.elder .elder_content {flex-direction: column-reverse;}
	section.elder .elder_content:nth-child(even) {flex-direction: column;}
	section.elder .elder_text {
		width: 100%;
		margin: 1.5em auto;
	} 
	section.elder .elder_text p {
		margin: 0.5em auto;
	}
	section.elder .elder_img {
		width: 60%;
		max-width: 400px;
		margin: auto;
	}
	section.elder .elder_img::after {
		top: -5%;
		right: -10%;
		width: 30%;
		height: 30%;
	}
	section.elder .elder_content:nth-child(even) .elder_img::after {
		left: -10%;
	}
	section.elder .elder_text_flex .elder_text {
		width: 100%;
	}
	section.elder .elder_main {
		width: 98vw;
		margin: 0 -20px 0 -20px;
	}
}


/* そのさきのわたし */
.destination {
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 50px auto;
	padding: 6em 50px 2em;
	border: 20px solid #FFF;
	position: relative;
	/*
	background-color: transparent;
	background-image: none;
	background-repeat: repeat;
	background-origin: padding-box;
	background-position: 0% 0%;
	background-size: auto auto;
	background-attachment: scroll;
	background-clip: border-box;
	background: #EEEEF3 url(images/bg_arrow.png) no-repeat border-box right 20px bottom 20px / 20% auto fixed content-box;
	*/
	background: #EEEEF3 url(images/bg_arrow.png) no-repeat right 20px bottom 20px / 20% auto;
}
.destination h4 {
	width: 500px;
	margin: 0;
	padding: 0.5em;
	padding-left: calc(50px + 0.5em);
	background-color: #112244;
	font-size: 1.2em;
	color: #fff;
	/* text-align: center; */
	position: absolute;
	left: -0.5em;
	top: 2em;
}
.destination h4::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 100%;
	background-image: url(ts-cource/images/desutination.png);
	position: absolute;
	right: -10px;
	top: 0;
	background-size: cover;
}
.destination dl {
	line-height: 1.8;
}
.destination dl dt {
	width: 10em;
	font-weight: bold;
}
.destination dl dd {
	margin: -1.8em 0 1em 10em;
}
@media screen and (max-width: 999px) {
	.destination {
		padding: 7em 20px 2em;
	}
	.destination h4 {
		width: 98%;
		box-sizing: border-box;
		padding-left: 30px;
	}
	.destination dl {
	}
	.destination dl dt {
	}
	.destination dl dd {
		margin: 0 0 1em 0;
	}
}


.pc {display: block;}
.sp {display: none;}
@media screen and (max-width: 999px) {
	.pc {display: none;}
	.sp {display: block;}
}
section.temp_section {
	margin: 0;
	padding: 0 0 5em;
}
























































