@charset "utf-8";
html{
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size:15px;
	font-weight:500;
	text-align:center;
	color:#333;
	line-height:1.9;
}

@media screen and (max-width:768px){
	body {
		font-size:3.2vw;
	}
}

.en{
	font-family: "Jost", sans-serif;
}

.gothic{
	font-family: "Noto Sans JP", sans-serif;
}

a {
	color:#333;
	-webkit-transition : opacity 0.4s;
	transition : opacity 0.4s;
	opacity:1;
	outline:none;
}
a:hover {
	opacity: 0.8;
}

img{
	max-width:100%;
	vertical-align:bottom;
}

.only_smart,
.only_smart_i,
.only_smart_f{
	display:none !important;
}

@media screen and (max-width:768px){
	.only_pc{
		display:none !important;
	}

	.only_smart{
		display:block !important;
	}
	.only_smart_i{
		display:inline-block !important;
	}
	.only_smart_f{
		display: -webkit-flex !important;
		display: flex !important;
	}
}


#wrapper{
	overflow:hidden;
}

.inner{
	max-width:1280px;
	width:94%;
	margin:auto;
}

@media screen and (max-width:768px){
	.inner{
		width:86%;
	}
}


/* 色関係 */
.white{
	color:#fff;
}
.bg_white{
	background-color:#fff;
}
.gold{
	color:#c69a1e !important;
}
.bg_gold{
	color:#fff;
	background-color:#c69a1e;
}
.blue{
	color:#0b81c4 !important;
}

.blue_g{
	background: radial-gradient(circle, #5bb7e6, #0b81c4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.bg_blue_g{
	background:linear-gradient(90deg,#5bb7e6,#0b81c4);
}
.orange{
	color:#f49c00 !important;
}
.bg_orange{
	background-color:#f49c00;
}
.green{
	color:#005431 !important;
}
.green_g{
	background: radial-gradient(circle, #009245, #005431);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.bg_green_g{
	background:linear-gradient(90deg,#009245,#005431);
}
.bg_gray{
	background-color:#faf9f5;
}


/* 書式 */
.text_left{
	text-align:left !important;
}
.text_right{
	text-align:right !important;
}
.bold{
	font-weight:bold;
}
.black{
	font-weight:900;
}


/* .btn */
.btn{
	display:block;
}



/* .more */
.more{
	width:18em;
	line-height:4;
	display:inline-block;
	margin-top:min(5%,50px);
	font-size:17px;
	text-align:center;
	letter-spacing:0.14em;
	text-indent:0.14em;
	border:2px solid;
	border-radius:100px;
	color:#fff;
	position:relative;
}
.more:after{
	content:'';
	display:inline-block;
	vertical-align:0.25em;
	width:1em;
	height:0.25em;
	border-right:2px solid;
	border-bottom:1px solid;
	position:absolute;
	right:1em;
	top:calc(50% - 0.12em);
	transform:translate(-50%) skewX(45deg);
}

@media screen and (max-width:768px){
	.more{
		line-height:4;
		margin-top:9%;
		font-size:3vw;
	}
}


/* header */
header{
	width:100%;
	height:80px;
	padding:0 30px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	position:fixed;
	top:0;
	left:0;
	z-index:100;
	background-color:#fff;
	box-shadow:0 0 30px rgba(0,0,0,0.08);
}
header .head_logo{
	width:205px;
	line-height:0;
}
header .head_nav > ul{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
header .head_nav > ul > li{
	position:relative;
	-webkit-transition : opacity 0.4s;
	transition : opacity 0.4s;
}
header .head_nav > ul > li:nth-child(n+2){
	margin-left:2em;
}
header .head_nav > ul > li a{
	display:block;
	font-size:14px;
	letter-spacing:0.1em;
	text-indent:0.1em;
}
header .head_nav > ul > li:hover > a{
	color:#c69a1e;
	opacity:1;
}
header .head_nav > ul > li .more{
	width:14.5em;
	line-height:3;
	letter-spacing:0.05em;
	text-indent:0.05em;
	margin-top:0;
}
header .head_nav > ul > li .more:hover{
	color:#fff;
	opacity:0.8;
}

@media screen and (max-width:1024px){
	header{
		padding:0 20px;
	}
	header .head_logo{
		width:150px;
	}
	header .head_nav > ul > li:nth-child(n+2){
		margin-left:1em;
	}
	header .head_nav > ul > li .more{
		width:13em;
		font-size:12px;
	}
}

@media screen and (max-width:768px){
	header{
		height:60px;
		padding:0 0 0 15px;
		box-shadow:0 0 5px rgba(0,0,0,0.3);
	}
	header .head_logo{
		width:130px;
	}
	header .head_nav{
		width:100%;
		height:100dvh;
		position:fixed;
		top:0;
		left:0;
		z-index:100;
		display:none;
		background-color:#c69a1e;
	}
	header .head_nav .smenu_header{
		height:60px;
		padding:0 0 0 15px;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		-webkit-align-items: center;
		align-items: center;
		z-index:100;
		position:relative;
	}
	header .head_nav > ul{
		width:100%;
		min-height:calc(100dvh - 60px);
		margin-top:-1px;
		padding:30px 9% 0;
		display: block;
		padding-bottom:100px;
	}
	header .head_nav > ul > li{
		max-width:350px;
		margin:auto;
		padding:20px 0;
		position:static;
		-webkit-transition : unset;
		transition : unset;
	}
	header .head_nav > ul > li:nth-child(n+2){
		margin:auto;
		border-top:1px solid rgba(255,255,255,0.2);
	}
	header .head_nav > ul > li a{
		line-height:1.5;
		display:inline-block;
		font-size:16px;
		color:#fff;
		text-shadow:none;
	}
	header .head_nav > ul > li:hover > a{
		color:#fff;
	}
	header .head_nav > ul > li .more{
		width:80% !important;
		line-height:3.4;
		margin-top:20px;
		color:#fff !important;
		position:relative;
	}
	header .head_nav > ul > li .more:hover{
		opacity:1;
	}
	header .head_nav > ul > li .more:after{
		content:'';
		display:block;
		width:1em;
		height:0.25em;
		border-right:2px solid #fff;
		border-bottom:1px solid #fff;
		position:absolute;
		right:1em;
		top:50%;
		transform:translateY(-50%) skewX(45deg);
	}
}


/* #btnmenu */
#btnmenu{
	display:none;
}
@media screen and (max-width:768px){
	#btnmenu{
		display:block;
		width:60px;
		height:60px;
		cursor:pointer;
		position:relative;
		z-index:100;
	}
	#btnmenu span{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform:translate(-50%,-50%);
		width: 24px;
		height: 2px;
		border-radius:100px;
		background: #c69a1e;
		-webkit-transition: .2s;
		transition: .2s;
	}
	#btnmenu span:before,
	#btnmenu span:after{
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		width: 24px;
		height: 2px;
		background: #c69a1e;
		border-radius:100px;
		-webkit-transition: .3s;
		transition: .3s;
	}
	#btnmenu span:before{
		margin-top: -10px;
	}
	#btnmenu span:after{
		margin-top: 8px;
	}
	#btnmenu.close{
		width:60px;
		height:60px;
		background-color:transparent;
	}
	#btnmenu.close span{
		background-color:transparent;
	}
	#btnmenu.close span:before,
	#btnmenu.close span:after{
		margin-top: 0;
		background-color:#fff;
	}
	#btnmenu.close span:before{
		width: 24px;
		height: 2px;
		margin: -2px 0 0 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#btnmenu.close span:after{
		width: 24px;
		height: 2px;
		margin: -2px 0 0 0;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}



/* main */
main{
	padding-top:80px;
}

@media screen and (max-width:1024px){
	main{
		padding-top:80px;
	}
}

@media screen and (max-width:768px){
	main{
		padding-top:60px;
	}
}



/* .mv_low */
.mv_low{
	position:relative;
}
.mv_low h1{
	line-height:1.3;
	text-align:left;
	position:absolute;
	top:25%;
	left:7%;
}
.mv_low h1 .en{
	line-height:1;
	font-size:4.9vw;
	font-weight:500;
	letter-spacing:0.1em;
}
.mv_low h1 .jp{
	margin-top:0.5em;
	display:block;
	font-size:1.4vw;
	letter-spacing:0.1em;
}

@media screen and (max-width:768px){
	.mv_low h1{
		top:auto;
		bottom:9%;
		left:7%;
	}
	.mv_low h1 .en{
		font-size:11.8vw;
	}
	.mv_low h1 .jp{
		font-size:3.4vw;
	}
}


/* .bread */
.bread{
	margin-bottom:-1px;
}
.bread .inner{
	padding:1.5em 0;
	line-height:1.5;
	font-size:15px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.bread .inner li{
	line-height:1.4;
	padding-left:2em;
	text-indent:-2em;
	text-align:right;
	letter-spacing:0.08em;
}
.bread .inner li:nth-child(-n+2){
	white-space:nowrap;
}
.bread .inner li:nth-child(n+2):before{
	content:'';
	display:inline-block;
	vertical-align:0.15em;
	width:0.5em;
	height:0.5em;
	margin:0 1em 0 0.5em;
	border-top:1px solid #333;
	border-right:1px solid #333;
	transform:rotate(45deg);
}
.bread .inner li a{
	color:#c69a1e;
	white-space:nowrap;
}

@media screen and (max-width:768px){
	.bread .inner{
		width:94%;
		font-size:2.3vw;
	}
}


/* .cont */
.cont{
	padding:min(9%,90px) 0 min(12%,120px);
	overflow:hidden;
}
.cont .tit{
	line-height:1.3;
	font-size:min(4.8vw,62px);
	text-align:left;
	letter-spacing:0.07em;
}
.cont .tit .en{
	display:inline-block;
	font-weight:500;
	position:relative;
}
.cont .tit .en:before{
	content:'';
	display:block;
	width:100px;
	height:2px;
	background-color:#c69a1e;
	position:absolute;
	right:calc(100% + 0.15em);
	top:50%;
	transform:translateY(-50%);
}
.cont .tit .jp{
	display:inline-block;
	font-size:min(1.5vw,19px);
	letter-spacing:0.05em;
}
.cont .tit + .lead{
	margin-top:min(2%,20px);
	text-align:left;
	letter-spacing:0.1em;
}

.cont .tit2{
	line-height:1.3;
	font-size:min(4.8vw,62px);
}
.cont .tit2:before{
	content:'';
	display:block;
	width:1.6em;
	height:1px;
	margin:0 auto 0.3em;
	border-top:2px solid #c69a1e;
}
.cont .tit2 .en{
	display:block;
	font-weight:500;
	letter-spacing:0.1em;
	text-indent:0.1em;
}
.cont .tit2 .jp{
	display:block;
	font-size:min(1.6vw,21px);
	letter-spacing:0.1em;
	text-indent:0.1em;
}

@media screen and (max-width:768px){
	.cont{
		padding:15% 0 12%;
	}
	
	.cont .tit{
		font-size:11vw;
	}
.cont .tit .en:before{
		width:100vw;
		height:1px;
		right:auto;
		left:calc(100% + 0.5em);
	}
	.cont .tit .jp{
		display:block;
		font-size:3.7vw;
	}
	.cont .tit + .lead{
		margin-top:7%;
	}
	
	.cont .tit2{
		line-height:1.1;
		font-size:9.3vw;
	}
	.cont .tit2:before{
		content:'';
		display:block;
		width:1.6em;
		height:1px;
		margin:0 auto 0.3em;
		border-top:2px solid #c69a1e;
	}
	.cont .tit2 .jp{
		margin-top:0.3em;
		font-size:3.4vw;
	}
}





/* ページャー(Wp-PageNavi) */
.wp-pagenavi {
	margin: min(10%,140px) auto 0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.wp-pagenavi a {
	display:block;
	width:3.4em;
	line-height:calc(3.4em - 2px);
	font-family: "Noto Sans JP", sans-serif;
	color:#c69a1e;
	background-color:#fff;
	letter-spacing:0;
	text-indent:0;
	transition: color .4s, background-color .4s, border .4s;
	border:1px solid;
}
.wp-pagenavi a:hover {
	opacity:1;
	color: #fff;
	background-color:#c69a1e;
}
.wp-pagenavi span.current,
.wp-pagenavi a.page {
	margin: 5px;
	display: block;
}
.wp-pagenavi span.current {
	width:3.6em;
	line-height:calc(3.6em - 2px);
	color:#fff;
	background-color:#c69a1e;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
	margin:-0.8em 0 0;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	display:block;
	margin: 5px;
	text-indent:-9999px;
}
.wp-pagenavi .previouspostslink{
	background:#fff url(../img/pager_left.png)no-repeat center center;
	background-size:100% 100%;
}
.wp-pagenavi .previouspostslink:hover{
	background:#c69a1e url(../img/pager_left_active.png)no-repeat center center;
	background-size:100% 100%;
}

.wp-pagenavi .nextpostslink {
	background:#fff url(../img/pager_right.png)no-repeat center center;
	background-size:100% 100%;
}
.wp-pagenavi .nextpostslink:hover {
	background:#c69a1e url(../img/pager_right_active.png)no-repeat center center;
	background-size:100% 100%;
}


.wp-pagenavi .first,
.wp-pagenavi .last {
	display: none;
}
.wp-pagenavi .extend{
	width:3.4em;
	color:#c69a1e;
}

@media screen and (max-width:768px){
	.wp-pagenavi {
		margin: 18% auto 0;
		font-size:2.4vw;
	}
	.wp-pagenavi span.current,
	.wp-pagenavi a.page,
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .nextpostslink {
		margin: 1%;
	}
}


/* ページャー(お知らせ詳細ページ) */
.pager{
	width:560px;
	margin:min(9%,90px) auto 0;
	position:relative;
}
.pager li{
	display:inline-block;
}
.pager li .more{
	width:10em;
	line-height:2.8;
	font-size:15px;
}
.pager .previous{
	position:absolute;
	left:0;
	top:0;
}
.pager .next{
	position:absolute;
	right:0;
	top:0;
}
.pager .previous .more:after{
	border-right:none;
	border-left:2px solid;
	position:absolute;
	right:auto;
	left:1em;
	top:calc(50% - 0.12em);
	transform:translateY(-50%) skewX(-45deg);
}
.pager .back .more:after{
	content:none;
}
.pager .next .more:after{
	right:1em;
	top:calc(50% - 0.12em);
	transform:translateY(-50%) skewX(45deg);
}

@media screen and (max-width:768px){
	.pager{
		width:84%;
	}
	.pager li .more{
		width:8.6em;
		font-size:3vw;
	}
}


/* footer */
footer{
}
footer .foot_contact{
	padding:min(12%,120px) 0;
	background:url(../img/foot_contact_bg.webp)no-repeat center center;
	background-size:cover;
}
footer .foot_contact .inner{
	padding:min(5%,50px) 0;
	background-color:rgba(255,255,255,0.8);
	box-shadow:0 8px 12px rgba(0,0,0,0.12);
}
footer .foot_contact .inner .tit{
	text-align:center;
}
footer .foot_contact .inner .tit .en{
	text-indent:0.07em;
}
footer .foot_contact .inner .tit .en:before{
	content:none;
}
footer .foot_contact .inner .tit .jp{
	display:block;
	text-indent:0.05em;
}

footer .foot_link{
	padding:min(9%,90px) 0;
	color:#fff;
}
footer .foot_link .inner{
	max-width:1200px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	line-height:2.1;
	text-align:left;
	letter-spacing:0.08em;
}
footer .foot_link .inner .cont_left{
	width:400px;
}
footer .foot_link .inner .cont_left figure img{
	width:245px;
}
footer .foot_link .inner .cont_left figure figcaption{
	margin-top:2em;
}

footer .foot_link .inner dl{
	margin-top:2em;
}
footer .foot_link .inner .cont_left dl dt{
}
footer .foot_link .inner .cont_left dl dd a{
	color:#fff;
}

footer .foot_link .inner .cont_left dl dd img{
	width:0.8em;
	margin-left:0.5em;
	vertical-align:-0.1em;
}

footer .foot_link .inner .foot_nav{
	width:min(40%,350px);
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	font-weight:normal;
}
footer .foot_link .inner .foot_nav > ul > li{
	padding-left:1.8em;
}
footer .foot_link .inner .foot_nav > ul > li{
	background:url(../img/foot_arrow.png)no-repeat left 0.4em;
	background-size:1.2em auto;
}
footer .foot_link .inner .foot_nav ul li a{
	color:#fff;
}
footer .foot_bottom{
	padding:40px 0;
	border-top:1px solid rgba(255,255,255,0.3);
}
footer .foot_bottom ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
footer .foot_bottom ul li{
	line-height:1;
	padding:0 1.5em;
}
footer .foot_bottom ul li:nth-child(n+2){
	border-left:1px solid #fff;
}
footer .foot_bottom ul li a{
	color:#fff;
}
footer .foot_bottom .copy{
	margin-top:1.5em;
	font-size:10px;
	color:#fff;
	letter-spacing:0.1em;
	text-indent:0.1em;
}


@media screen and (max-width:768px){
	footer .foot_contact{
		padding:15% 0;
		background:url(../img/foot_contact_bg_s.webp)no-repeat center top;
		background-size:cover;
	}
	footer .foot_contact .inner{
		padding:7% 0;
	}

	footer .foot_link{
		padding:12% 0 12%;
	}
	footer .foot_link .inner{
		display: block;
	}
	footer .foot_link .inner .cont_left{
		width:auto;
	}
	footer .foot_link .inner .cont_left figure img{
		width:65%;
	}
	footer .foot_link .inner .cont_left figure figcaption{
		margin-top:2em;
	}

	footer .foot_link .inner dl{
		margin-top:2em;
	}
	footer .foot_link .inner .cont_left dl dt{
	}
	footer .foot_link .inner .cont_left dl dd a{
		color:#fff;
	}

	footer .foot_link .inner .cont_left dl dd img{
		width:0.8em;
		margin-left:0.5em;
		vertical-align:-0.1em;
	}

	footer .foot_link .inner .foot_nav{
		width:auto;
		margin-top:9%;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		font-weight:normal;
	}
	footer .foot_link .inner .foot_nav > ul{
		width:50%;
	}
	
	footer .foot_bottom{
		padding:5% 0;
	}
	footer .foot_bottom ul{
		display: block;
	}
	footer .foot_bottom ul li{
		padding:0.5em 0;
	}
	footer .foot_bottom ul li:nth-child(n+2){
		border-left:none;
	}
	footer .foot_bottom .copy{
		font-size:2.6vw;
	}
}


/* #topbtn */
#topbtn{
	width:75px;
	line-height:1;
	position:fixed;
	z-index:98;
	right:20px;
	bottom:-150px;
	-webkit-transition: bottom 0.8s;
	transition: bottom 0.8s;
  border-radius:50%;
  box-shadow:0 0 5px rgba(0,0,0,0.5);
}
@media screen and (max-width:768px){
	#topbtn{
		width:40px;
		right:15px;
	}
}


/* .side_banner */
.side_banner{
	width:15em;
	height:15em;
	padding-bottom:1em;
	font-size:12px;
	font-weight:bold;
	letter-spacing:0.18;
	padding-left:0.18em;
	color:#fff;
	background-color:#c3940e;
	border-radius:50%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: fcenter;
	align-items: center;
	-webkit-flex-direction: column;
	flex-direction: column;
	position:fixed;
	right:-200px;
	bottom:120px;
	z-index:99;
	-webkit-transition: right 0.8s;
	transition: right 0.8s;
}
.side_banner:after{
	content:'';
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	border:1px solid;
	border-radius:50%;
	transform:scale(0.95);
}
.side_banner img{
	width:2em;
	margin-bottom:0.5em;
}

@media screen and (max-width:768px){
	.side_banner{
		width:4em;
		height:auto;
		line-height:1.3;
		padding:1.5em 0;
		font-size:12px;
		font-weight:bold;
		letter-spacing:0.18;
		padding-left:0;
		border-radius:0.5em 0 0 0.5em;
		display: block;
		bottom:180px;
	}
	.side_banner:after{
		content:none;
	}
	.side_banner img{
		width:2em;
		margin-bottom:0.5em;
		display:block;
		margin:auto;
	}
	.side_banner p{
		margin:0.8em auto 0;
		writing-mode: vertical-rl;
		text-orientation: upright;
	}
}


/* fadein */
.fadein_0 {
	opacity : 0;
	-webkit-transition-property: opacity;
	transition-property : opacity;
	-webkit-transition-duration: 2s;
	transition-duration : 2s;
}
.fadein {
	opacity : 0;
	-webkit-transform : translate(0, 70px);
	transform : translate(0, 70px);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 0.8s;
	transition-duration : 0.8s;
}
.fadein_l {
	opacity : 0;
	-webkit-transform : translate(-100px, 0);
	transform : translate(-100px, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 0.8s;
	transition-duration : 0.8s;
}
.fadein_r {
	opacity : 0;
	-webkit-transform : translate(100px, 0);
	transform : translate(100px, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 0.8s;
	transition-duration : 0.8s;
}

.delay1 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 0.8s;
	transition-duration : 0.8s;
	-webkit-transition-delay: 0.1s;
	transition-delay : 0.1s;
}
.delay2 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 0.8s;
	transition-duration : 0.8s;
	-webkit-transition-delay: 0.2s;
	transition-delay : 0.2s;
}
.delay3 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 0.8s;
	transition-duration : 0.8s;
	-webkit-transition-delay: 0.3s;
	transition-delay : 0.3s;
}
.delay4 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 0.8s;
	transition-duration : 0.8s;
	-webkit-transition-delay: 0.4s;
	transition-delay : 0.4s;
}
.delay5 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 0.8s;
	transition-duration : 0.8s;
	-webkit-transition-delay: 0.5s;
	transition-delay : 0.5s;
}
.delay6 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 0.8s;
	transition-duration : 0.8s;
	-webkit-transition-delay: 0.6s;
	transition-delay : 0.6s;
}

.fadein_0.scrollin{
	opacity : 1;
}
.fadein.scrollin,
.fadein_l.scrollin,
.fadein_r.scrollin,
.fadein_r_s.scrollin{
	opacity : 1;
	-webkit-transform : translate(0, 0);
	transform : translate(0, 0);
}