@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap');


/*

使用フォント

日本語

明朝
font-family: "Noto Serif JP", serif;

ゴシック
font-family: "Noto Sans JP", sans-serif;

*/

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

/*マージン*/

.mt10{
	margin-top:10px;
}

.mt20{
	margin-top:20px;
}

.mt30{
	margin-top:30px;
}

.mt40{
	margin-top:40px;
}

.mt50{
	margin-top:50px;
}

.mt60{
	margin-top:60px;
}

.mt70{
	margin-top:70px;
}

.mt80{
	margin-top:80px;
}

.mt90{
	margin-top:90px;
}

.mt100{
	margin-top:100px;
}

.mb10{
	margin-bottom:10px;
}

.mb20{
	margin-bottom:20px;
}

.mb30{
	margin-bottom:30px;
}

.mb40{
	margin-bottom:40px;
}

.mb50{
	margin-bottom:50px;
}

.mb60{
	margin-bottom:60px;
}

.mb70{
	margin-bottom:70px;
}

.mb80{
	margin-bottom:80px;
}

.mb90{
	margin-bottom:90px;
}

.mb100{
	margin-bottom:100px;
}

/*マージン*/

/*IMG*/

.img_ma{
	margin-right:auto;
	margin-left:auto;
	display:block;
	max-width: 100%;
}

img{
	max-width: 100%;
	height:auto;
}

/*IMG*/

a{
	transition:.2s;
}

body{
	font-family: "Noto Serif JP", serif;
	font-size:16px;
	line-height:170%;
	font-weight: 400;
	background: #000;
	color:#fff;
	letter-spacing: 1px;
}

@media screen and (max-width:600px) {
	body{
		font-size: 14px;
	}
}

.first_img_wrap{
	width:100%;
	height: 100dvh;
	position: fixed;
	top:0;
	left: 0;
	right: 0;
	bottom:0;
	z-index: 999;
	overflow: hidden;
	background: #000;
}

.first_img{
	width:120%;
	height: 100dvh;
	transition: 5s;
	position: absolute;
	top:0;
	left: 0;
	background: url("images/first.webp") no-repeat center/cover;
	display: none;
}

.first_img_logo{
	width:100%;
	height: 100dvh;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 1s;
	transition-delay: 3s;
	opacity: 0;
}

.first_img_logo img{
	display: block;
	width:210px;
}

.first_img_open .first_img{
	left: -20%;
}

.first_img_open .first_img_logo{
	opacity: 1;
}

@media screen and (max-width:600px) {
	.first_img{
		width:140%;
		background: url("images/first_sp.webp") no-repeat center/cover;
	}
	
	.first_img_open .first_img{
		left:-40%;
	}
	
	.first_img_logo img{
		width:150px;
	}
}

header{
	width:100%;
	position: fixed;
	top:0;
	left: 0;
	z-index: 10;
	padding:60px 50px 15px;
	background: rgba(0,0,0,0);
	transition: .4s;
}

.header{
	width:100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.h_logo{
	width:280px;
	transition: .4s;
}

.h_nav > ul{
	display: flex;
}

.h_nav > ul > li{
	margin-left: 30px;
}

.h_nav > ul > li > a{
	color:#fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	position: relative;
}

.h_nav > ul > li > a::after{
	display: block;
	content:"";
	width:100%;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom:0;
	left: 0;
	transform: scaleX(0);
	transition: .3s;
}

.h_nav > ul > li > a:hover::after{
	transform: scaleX(1);
}

.header_scr{
	padding-top: 15px !important;
	background: rgba(0,0,0,1);
}

@media screen and (max-width:1050px) {
	header{
		padding:40px 15px 15px;
	}
	
	.h_logo{
		width:240px;
	}
	
	.h_nav > ul > li > a{
		font-size: 16px;
	}
}

@media screen and (max-width:900px) {
	.header{
		justify-content: center;
	}
	
	.h_nav{
		width:100%;
		margin-top: 10px;
	}
	
	.h_nav > ul{
		justify-content: center;
	}
	
	.h_nav > ul > li:first-of-type{
		margin-left: 0;
	}
	
	.header_scr .h_logo{
		width:200px;
	}
	
	.header_scr .h_nav{
		margin-top: 5px;
	}
	
	.header_scr .h_nav > ul > li > a{
		font-size: 14px;
	}
}

@media screen and (max-width:600px) {
	header{
		padding:40px 0 20px;
	}
	
	.h_nav{
		margin-top: 10px;
	}
	
	.h_nav > ul > li{
		margin-left: 20px;
	}
	
	.h_nav > ul > li > a{
		font-size: 14px;
	}
}

@media screen and (max-width:500px) {
	.h_logo{
		width:180px;
	}
	
	.h_nav > ul > li{
		margin-left: 0;
		padding:0 1.5vw;
		line-height: 3vw;
	}
	
	.h_nav > ul > li > a{
		font-size: 3vw !important;
		line-height: 3vw;
	}
	
	.header_scr .h_logo{
		width:150px;
	}
}

.top_slider , .top_slide{
	width:100%;
	height:100svh !important;
}

.top_slide1{
	background: url("images/top_slider_1.webp") no-repeat 70% center;
	background-size: cover;
}

.top_slide2{
	background: url("images/top_slider_2.webp") no-repeat 40% center;
	background-size: cover;
}

.top_slide3{
	background: url("images/top_slider_3.webp") no-repeat 90% center;
	background-size: cover;
}

.top_slide4{
	background: url("images/top_slider_4.webp") no-repeat center center;
	background-size: cover;
}

.otoko{
	padding:0 0 150px;
}

.heading1{
	max-width: 400px;
	margin:0 auto 60px;
	padding-bottom: 20px;
	border-bottom: 1px solid #fff;
}

.heading1_p1{
	font-size: 50px;
	line-height: 100%;
	font-weight: 300;
	text-align: center;
	margin-bottom: 20px;
}

.heading1_p2{
	font-size: 16px;
	line-height: 100%;
	font-weight: 300;
	text-align: center;
	letter-spacing: 1px;
}

.heading1_img1{
	display: block;
	height: 30px;
	margin:0 auto;
}

.heading1_img2{
	display: block;
	height: 50px;
	margin:0 auto 12px;
}

.heading1_acs .heading1_img2{
	height: 36px;
}

.otoko_text > p{
	font-size: 19px;
	font-weight: 400;
	text-align: center;
	letter-spacing: 2px;
}

.otoko_text > p + p{
	margin-top: 60px;
}

@media screen and (max-width:600px) {
	.otoko{
		padding-bottom:120px;
	}
	
	.heading1{
		max-width: 300px;
		padding-bottom: 20px;
		margin-bottom: 40px;
	}
	
	.heading1_p1{
		font-size: 32px;
	}
	
	.heading1_p2{
		font-size: 14px;
	}
	
	.heading1_img1{
		height: 22px;
	}
	
	.heading1_img2{
		height: 32px;
	}
	
	.heading1_acs .heading1_img2{
		height: 26px;
	}
	
	.otoko_text > p{
		font-size: 3vw;
	}
	
	.otoko_text > p + p{
		margin-top: 8vw;
	}
}

.img1{
	width:100%;
	height: 500px;
	position: relative;
	background: url("images/img1.webp") no-repeat center/cover;
	overflow: hidden;
}

.img1::before{
	content:"";
	display: block;
	width:50%;
	height: 100%;
	background: #000;
	position: absolute;
	left: 0;
	top:0;
	transition: .6s;
}

.img1::after{
	content:"";
	display: block;
	width:50%;
	height: 100%;
	background: #000;
	position: absolute;
	right: 0;
	top:0;
	transition: .6s;
}

.img1_open::before{
	left: -50%;
}

.img1_open::after{
	right: -50%;
}

@media screen and (max-width:1000px) {
	.img1{
		height: 400px;
	}
}

@media screen and (max-width:700px) {
	.img1{
		height: 300px;
	}
}

@media screen and (max-width:500px) {
	.img1{
		height: 240px;
	}
}

.ol{
	padding:120px 20px 100px;
}

.ol_tbl{
	width: 100%;
	max-width: 660px;
	margin:0 auto;
}

.ol_tbl th{
	width:170px;
	padding:15px 20px;
	border-right: 1px solid #727171;
	border-bottom: 1px solid #727171;
	background: #dcdddd;
	color:#231815;
	font-family: "Noto Sans JP", sans-serif;
}

.ol_tbl th p{
	text-align: justify;
	text-align-last: justify;
}

.ol_tbl td{
	padding:15px 20px;
	border-bottom: 1px solid #727171;
	background: #f7f8f8;
	color:#231815;
	font-family: "Noto Sans JP", sans-serif;
}

.ol_tbl td span{
	display: inline-block;
}

.ol_tbl tr:last-of-type th , .ol_tbl tr:last-of-type td{
	border-bottom: 0;
}

@media screen and (max-width:600px) {
	.ol{
		padding:100px 20px 80px;
	}
	
	.ol_tbl th{
		padding-left: 12px;
		padding-right: 12px;
		width:150px;
	}
	
	.ol_tbl td{
		padding-left: 12px;
		padding-right: 12px;
	}
}

.img2{
	margin-bottom: 200px
}

.img2_slider1{
	width:100%;
	height: 600px;
}

.img2_slider1_slide{
	width:100%;
	height: 600px;
}

.img2_slider1_slide1{
	background: url("images/img2_slider1_slide1.webp") no-repeat center/cover;
}

.img2_slider1_slide2{
	background: url("images/img2_slider1_slide2.webp") no-repeat center/cover;
}

.img2_slider2{
	width:100%;
	height: 400px;
}

.img2_slider2_slide{
	width:100%;
	height: 400px;
}

.img2_slider2_slide1{
	background: url("images/img2_slider2_slide1.webp") no-repeat center/cover;
}

.img2_slider2_slide2{
	background: url("images/img2_slider2_slide2.webp") no-repeat center/cover;
}

.img2_slider3_wrap{
	display: flex;
}

.img2_slider3_1{
	width:55%;
	height: 400px;
}

.img2_slider3_1_slide{
	width:100%;
	height: 400px;
}

.img2_slider3_1_slide1{
	background: url("images/img2_slider3_1_slide1.webp") no-repeat center/cover;
}

.img2_slider3_1_slide2{
	background: url("images/img2_slider3_1_slide2.webp") no-repeat center/cover;
}

.img2_slider3_2{
	width:45%;
	height: 400px;
}

.img2_slider3_2_slide{
	width:100%;
	height: 400px;
}

.img2_slider3_2_slide1{
	background: url("images/img2_slider3_2_slide1.webp") no-repeat center/cover;
}

.img2_slider3_2_slide2{
	background: url("images/img2_slider3_2_slide2.webp") no-repeat center/cover;
}

@media screen and (max-width:1000px) {
	.img2_slider1 , .img2_slider1_slide{
		height: 500px;
	}
	
	.img2_slider2 , .img2_slider2_slide , .img2_slider3_1 , .img2_slider3_1_slide , .img2_slider3_2 , .img2_slider3_2_slide{
		height: 300px;
	}
}

@media screen and (max-width:700px) {
	.img2{
		margin-bottom: 120px;
	}
	
	.img2_slider1 , .img2_slider1_slide{
		height: 400px;
	}
	
	.img2_slider2 , .img2_slider2_slide , .img2_slider3_1 , .img2_slider3_1_slide , .img2_slider3_2 , .img2_slider3_2_slide{
		height: 250px;
	}
}

@media screen and (max-width:500px) {
	.img2_slider1 , .img2_slider1_slide{
		height: 300px;
	}
	
	.img2_slider2 , .img2_slider2_slide , .img2_slider3_1 , .img2_slider3_1_slide , .img2_slider3_2 , .img2_slider3_2_slide{
		height: 200px;
	}
}

.bus{
	padding:150px 0;
}


@media screen and (max-width:750px) {
	.bus{
		padding:100px 0;
	}
	
	.bus_text p span{
		display: block;
		margin-top: 30px;
	}
}


@media screen and (max-width:600px) {
	.bus_text p span{
		margin-top: 8vw;
	}
}

.img3_slider1{
	clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
}

.img3_slider1 , .img3_slider1_slide{
	width:100%;
	height: 800px;
}

.img3_slider1_slide1{
	background: url("images/img3_slider1_slide1.webp") no-repeat center/cover;
}

.img3_slider2{
	clip-path: polygon(0 0%, 100% 30%, 100% 100%, 0 70%);
	margin-top: -200px;
}

.img3_slider3{
	clip-path: polygon(0 0%, 100% 30%, 100% 100%, 0 70%);
	margin-top: -120px;
}

.img3_slider2 , .img3_slider2_slide , .img3_slider3 , .img3_slider3_slide{
	width:100%;
	height: 500px;
}

.img3_slider2_slide1{
	background: url("images/img3_slider2_slide1.webp") no-repeat center/cover;
}

.img3_slider2_slide2{
	background: url("images/img3_slider2_slide2.webp") no-repeat center/cover;
}

.img3_slider2_slide3{
	background: url("images/img3_slider2_slide3.webp") no-repeat center/cover;
}

.img3_slider2_slide4{
	background: url("images/img3_slider2_slide4.webp") no-repeat center/cover;
}

.img3_slider2_slide5{
	background: url("images/img3_slider2_slide5.webp") no-repeat center/cover;
}

.img3_slider3_slide1{
	background: url("images/img3_slider3_slide1.webp") no-repeat center/cover;
}

.img3_slider3_slide2{
	background: url("images/img3_slider3_slide2.webp") no-repeat center/cover;
}

.img3_slider3_slide3{
	background: url("images/img3_slider3_slide3.webp") no-repeat center/cover;
}

.img3_slider3_slide4{
	background: url("images/img3_slider3_slide4.webp") no-repeat center/cover;
}

.img3_slider3_slide5{
	background: url("images/img3_slider3_slide5.webp") no-repeat center/cover;
}

@media screen and (max-width:1000px) {
	.img3_slider1 , .img3_slider1_slide{
		height: 600px;
	}
	
	.img3_slider2{
		margin-top: -150px;
	}
	
	.img3_slider3{
		margin-top: -80px;
	}
	
	.img3_slider2 , .img3_slider2_slide , .img3_slider3 , .img3_slider3_slide{
		height: 350px;
	}
}

@media screen and (max-width:750px) {
	.img3_slider1 , .img3_slider1_slide{
		height: 500px;
	}
	
	.img3_slider2{
		margin-top: -120px;
	}
	
	.img3_slider3{
		margin-top: -60px;
	}
	
	.img3_slider2 , .img3_slider2_slide , .img3_slider3 , .img3_slider3_slide{
		height: 280px;
	}
}

@media screen and (max-width:600px) {
	.img3_slider1 , .img3_slider1_slide{
		height: 400px;
	}
	
	.img3_slider2{
		margin-top: -100px;
	}
	
	.img3_slider3{
		margin-top: -70px;
	}
	
	.img3_slider2 , .img3_slider2_slide , .img3_slider3 , .img3_slider3_slide{
		height: 260px;
	}
}

.csr{
	padding:150px 0 200px;
}

.csr_list{
	max-width: 1040px;
	padding:0 20px;
	margin:120px auto 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.csr_list > li{
	width:48%;
	position: relative;
	margin-top: 60px;
}

.csr_list > li:nth-of-type(1) , .csr_list > li:nth-of-type(2){
	margin-top: 0;
}

.csr_list > li > p{
	position: absolute;
	top:calc( 100% - 10px );
	line-height: 1.2;
	left: 50%;
	letter-spacing: 1px;
}

@media screen and (max-width:950px) {
	.csr_list{
		margin-top: 80px;
	}
	
	.csr_list > li > p{
		width:100%;
		left: 0;
		top:100%;
		text-align: right;
	}
}

@media screen and (max-width:600px) {
	.csr{
		padding:80px 0 100px;
	}
	
	.csr_list{
		justify-content: center;
	}
	
	.csr_list > li{
		width:100%;
		max-width: 450px;
	}
	
	.csr_list > li + li{
		margin-top: 60px !important;
	}
	
	.csr_list > li > p{
		width:auto;
		left: 50%;
	}
}

@media screen and (max-width:450px) {
	.csr_list > li > p{
		left: 0;
		width:100%;
	}
}

.access{
	margin-bottom: 150px;
}

.google-maps {
	position: relative;
	padding-bottom: 500px;
	height: 0;
	overflow: hidden;
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.access > p{
	font-size: 18px;
	text-align: center;
	margin-top: 40px;
}

@media screen and (max-width:600px) {
	.access{
		margin-bottom: 100px;
	}
	
	.google-maps {
		padding-bottom: 450px;
	}
	
	.access > p{
		font-size: 14px;
		margin-top: 30px;
	}
}

footer{
	padding-bottom: 30px;
}

.ft_logo{
	width:210px;
	display: block;
	margin:0 auto 50px;
}

.copy_r{
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width:600px) {
	footer{
		padding-bottom: 20px;
	}
	
	.ft_logo{
		width:180px;
		margin-bottom: 30px;
	}
	
	.copy_r{
		font-size: 10px;
	}
}

.page_link{
	margin-top: -110px;
	padding-top: 110px;
	pointer-events:none;
}

.ol_wrap{
	position: relative;
	overflow: hidden;
}

.ol_h{
	width:100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom:0;
	z-index: 2;
	padding-top: 50dvh;
	background: #000;
}

.ol_h .heading1{
	width:100%;
	min-width: 200px;
	position: fixed;
	top:50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
	margin-bottom: 0;
	opacity: 0 !important;
	white-space: nowrap;
}

.ol_bg{
	width:100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom:0;
	z-index: 1;
	background: url("images/ol_bg.webp") no-repeat center/cover;
}

.ol_text{
	position: relative;
	z-index: 3;
	width:50%;
	/*width:100%;
	max-width: 630px;*/
	background: rgba(0,0,0,0.8);
	padding:150px 20px;
}

.ol_text_box{
	text-align: center;
	margin-bottom: 40px;
	font-family: "Noto Sans JP", sans-serif;
}

.ol_text_box:last-of-type{
	margin-bottom: 0;
}

.ol_text_box_h_wrap{
	margin-bottom: 24px;
}

.ol_text_box_h{
	width:100%;
	max-width:280px;
	margin:0 auto;
	font-size: 16px;
	line-height: 1;
	color:#231815;
	background: #dcdddd;
}

.ol_text_box_h > p{
	display: flex;
	justify-content: space-between;
	width:140px;
	margin: 0 auto;
}

.ol_text_box_p{
	margin:0 auto;
	max-width: 500px;
	text-align: center;
}

.ol_text_box_p span{
	display: inline-block;
}

.ol_map_wrap{
	width:50%;
	/*width:calc( 100% - 630px );*/
	height: 100%;
	position: absolute;
	top:0;
	right: 0;
	bottom:0;
	z-index: 2;
	background: rgba(0,0,0,0.8);
}

.ol_map {
	position: relative;
	padding-bottom: 100%;
	height: 0;
	overflow: hidden;
	width:100%;
	height: 100%;
}

.ol_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.ol_map_sp {
	width:calc( 100% + 40px );
	position: relative;
	left: -20px;
	padding-bottom: 100%;
	height: 0;
	overflow: hidden;
	margin-top: 60px;
	display: none;
}

.ol_map_sp iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

@media screen and (max-width:1200px) {
	.ol_text{
		width:50%;
	}
	
	.ol_map_wrap{
		width: 50%;
	}
}

@media screen and (max-width:750px) {
	.ol_text{
		width:100%;
		max-width: 630px;
		margin:0 auto;
		padding-bottom: 0;
	}
	
	.ol_map_wrap{
		display: none;
	}
	
	.ol_map_sp{
		display: block;
	}
}

@media screen and (max-width:600px) {
	.ol_text{
		padding:80px 20px;
	}
}

/* move */

.main_contents{
	overflow: hidden;
}

.heading1{
	opacity: 0;
	transition: .5s;
}

.otoko_text > p span{
	position: relative;
	top:50px;
	opacity: 0;
	transition: .5s;
}

.ol_tbl{
	position: relative;
	top:50px;
	opacity: 0;
	transition: .5s;
}

.img2_slider1_wrap{
	position: relative;
	left: -100px;
	opacity: 0;
	transition: .5s;
}

.img2_slider2_wrap{
	position: relative;
	left: 100px;
	opacity: 0;
	transition: .5s;
}

.img2_slider3_1{
	position: relative;
	left: -100px;
	opacity: 0;
	transition: .5s;
}

.img2_slider3_2{
	position: relative;
	left: 100px;
	opacity: 0;
	transition: .5s;
}

.img3_slider1_wrap{
	position: relative;
	left: -100px;
	opacity: 0;
	transition: .5s;
}

.img3_slider2_wrap{
	position: relative;
	left: 100px;
	opacity: 0;
	transition: .5s;
}

.img3_slider3_wrap{
	position: relative;
	left: -100px;
	opacity: 0;
	transition: .5s;
}

.csr_list > li{
	position: relative;
	top:50px;
	opacity: 0;
	transition: .5s;
}

.csr_list > li:nth-of-type(2){
	transition-delay: .3s;
}

.csr_list > li:nth-of-type(3){
	transition-delay: .6s;
}

.csr_list > li:nth-of-type(4){
	transition-delay: .9s;
}

.csr_list > li:nth-of-type(5){
	transition-delay: 1.2s;
}

.csr_list > li:nth-of-type(6){
	transition-delay: 1.5s;
}

.google-maps{
	position: relative;
	top:50px;
	opacity: 0;
	transition: .5s;
}

.access > p{
	position: relative;
	left: -100px;
	opacity: 0;
	transition: .5s;
}

.of_h{
	overflow: hidden;
}

.ol_open .ol_h .heading1{
	opacity: 1 !important;
}

.ol_open .ol_h .heading1_hide{
	left: 150%;
	transition: .9s;
}

/*
.ol_bg{
	transform: translateX(-100%);
	transition: .7s;
	transition-delay: 1s;
	opacity: 0;
}

.ol_open .ol_bg{
	transform: translateX(0);
	opacity: 1;
}
*/

.ol_h{
	transition: .9s;
	transition-delay: 1s;
}

.ol_open .ol_h{
	left: 100%;
}

.ol_text{
	transform: scaleX(0);
	transition: .5s;
	transition-delay: 2s;
}

.ol_open .ol_text{
	transform: scaleX(1);
}

.ol_text_box_h_wrap , .ol_text_box_p_wrap{
	overflow: hidden;
}

.ol_text_box_h , .ol_text_box_p{
	transition: .3s;
	transform: translateY(100%);
	opacity: 0;
}

.ol_open .ol_text_box_h , .ol_open .ol_text_box_p{
	transform: translateY(0);
	opacity: 1;
}

.ol_text_box:nth-of-type(1) .ol_text_box_h{
	transition-delay: 2.8s;
}

.ol_text_box:nth-of-type(1) .ol_text_box_p{
	transition-delay: 3s;
}

.ol_text_box:nth-of-type(2) .ol_text_box_h{
	transition-delay: 3.1s;
}

.ol_text_box:nth-of-type(2) .ol_text_box_p{
	transition-delay: 3.2s;
}

.ol_text_box:nth-of-type(3) .ol_text_box_h{
	transition-delay: 3.3s;
}

.ol_text_box:nth-of-type(3) .ol_text_box_p{
	transition-delay: 3.4s;
}

.ol_text_box:nth-of-type(4) .ol_text_box_h{
	transition-delay: 3.5s;
}

.ol_text_box:nth-of-type(4) .ol_text_box_p{
	transition-delay: 3.6s;
}

.ol_text_box:nth-of-type(5) .ol_text_box_h{
	transition-delay: 3.7s;
}

.ol_text_box:nth-of-type(5) .ol_text_box_p{
	transition-delay: 3.8s;
}

.ol_text_box:nth-of-type(6) .ol_text_box_h{
	transition-delay: 3.9s;
}

.ol_text_box:nth-of-type(6) .ol_text_box_p{
	transition-delay: 4s;
}

.ol_text_box:nth-of-type(7) .ol_text_box_h{
	transition-delay: 4.1s;
}

.ol_text_box:nth-of-type(7) .ol_text_box_p{
	transition-delay: 4.2s;
}

.ol_map_wrap{
	transform: scaleX(0);
	transition: .5s;
	transition-delay: 4.5s;
	transform-origin: left;
}

.ol_map{
	opacity: 0;
	transition: .8s;
	transition-delay: 5.5s;
}

.ol_open .ol_map_wrap{
	transform: scaleX(1);
}

.ol_open .ol_map{
	opacity: 1;
}

.ol_map_sp{
	transition: .6s;
	opacity: 0;
	transition-delay: 4.5s;
}

.ol_open .ol_map_sp{
	opacity: 1;
}

/* move end */









