@charset "UTF-8";

/*================================================
 *  盆提灯を知る（learn）
 ================================================*/

/*******メインエリア*******/
section#main_area {
	height: 1000px;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding-bottom: 80px;
}
section#main_area .box {
	text-align: center;
}
section#main_area .box .border {
	width: 1px;
	height: 80px;
	position: relative;
	margin: 60px auto 30px;
	overflow: hidden;
}
section#main_area .box .border::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: #2e86a4;
	animation: scrollAnime 2s cubic-bezier(1, 0, 0, 1) infinite;
	z-index: 1;
}



/*******学ぶ*******/
section#point_area [class*="point_box"] {
	position: relative;
	height: 800px;
	background-size: cover;
	background-position: center center;
}
section#point_area [class*="point_box"] h3,
section#point_area [class*="point_box"] .txt {
	position: absolute;
	right: 50%;
}
section#point_area [class*="point_box"] h3 {
	top: 140px;
	margin-right: 70px;
}
section#point_area [class*="point_box"] .txt {
	top: 200px;
	margin-right: 300px;
	font-size: 20px;
	line-height: 2.5;
	animation-delay: 0.6s;
}











/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:500px) {

/*******メインエリア*******/
section#main_area {
	height: 154vw;
	padding-bottom: 14vw;
}
section#main_area .box h2 img {
	width: 38vw;
}
section#main_area .box .border {
	height: 13vw;
	margin: 10vw auto 5vw;
}
section#main_area .box .lantern img {
	width: 11vw;
}

/*******学ぶ*******/
section#point_area [class*="point_box"] {
	height: auto;
	background: none!important;
}
section#point_area [class*="point_box"] h3 {
	top: 9.3vw;
	right: 10vw;
	margin-right: 0;
}
section#point_area [class*="point_box"] h3 img {
	width: 30vw;
}
section#point_area [class*="point_box"] .txt {
	position: static;
	top: 0;
	right: 0;
	margin: 0 auto;
	font-size: 3.6vw;
	animation-delay: 0s;
	padding: 13vw 0;
}
	
}