@charset "utf-8";

/*========= Loading ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background:#b5afa5;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*========= Screen Transfer ===============*/

/*screen transfer animation*/

.splashbg1,
.splashbg2{
	display: none;
}

body.appear .splashbg1,
body.appear .splashbg2{
	display:block;
}

/*fade right*/
body.appear .splashbg1{
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left:50%;
    transform: scaleX(1);
    background-color:#b5afa5;/*like a curtain right*/
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*fade left*/
body.appear .splashbg2{
	animation-name:PageAnime2;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	right:50%;
    transform: scaleX(1);
    background-color:#b5afa5;/*like a curtain left*/
}

@keyframes PageAnime2{
	0% {
		transform-origin:right;
		transform:scaleX(1);
	}

	50% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}

/*contents of after screen transfer*/
#wrapper{
	opacity: 0;/*first transmit 0%*/
}

/*appear of after body class*/
body.appear #wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*========= gradation ===============*/
.mainblur{
	filter: blur(8px);
}


/*========= global navigation ===============*/
#g-nav{
    /*position:fixed;z-index no suuchi chiisakushite saihaimen*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*first 0*/
    /*navi's position, shape, form*/
	top:0;
	width:100%;
    height: 100vh;/*height navi*/
	background:rgba(181,175,165,0.8);
    /*ugoki*/
	transition: all 0.3s;
}

/*front after active class 0% transmit*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*vartical scroll of navigation*/
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*navigation*/
#g-nav ul {
    display: none;/*first, no show*/
    /*navi center of top and botttom*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}
/*layout of list*/
#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*nav button "X"*/
.openbtn{
	position:fixed;
    z-index: 9999;/*button front*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*button uchigawa*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*animation*/
    position: absolute;
    left: 13px;
    height: 3px;
	background-color: #555;
  }


.openbtn span:nth-of-type(1) { /*nav button01*/
	top:22px;	
  	width: 50%;
  border-radius: 5px;
}

.openbtn span:nth-of-type(2) { /*nav button02*/
	top:29px;
  	width:30%;
  border-radius: 5px;
}

/*after active class, line to "X"*/
.openbtn.active span:nth-of-type(1) { /*close button01*/
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  border-radius: 5px;
}

.openbtn.active span:nth-of-type(2) { /*close button01*/
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  border-radius: 5px;
}

/*kokki area*/
.language01{
  position: fixed;
  top:19px;
  right: 60px;
  z-index: 9999;
  width: 25.5px;
  height: 17px;
}

.language02{
  position: fixed;
  top:19px;
  right:91px;
  z-index: 9999;
  width: 25.5px;
  height: 17px;
}

/*ALL scroll donw*/
.scrolldown2{
    /*scroll's position*/
	position:fixed;
	bottom:10px;
	left:50%;
    z-index: 2;
}

/*Scroll txt*/
.scrolldown2 span{
    /*position*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*txt shape*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*tatefaki*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/*maru no byosha*/
.scrolldown2:before {
    content: "";
    /*position*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*maru no keijo*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
    /*maruno ugoki 1.8sec kakete touka ever roop*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/**/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/**/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#eee;
}

/*button kyotsuu settei*/
.btn04 {
  position: relative;
  display:inline-block;
    padding:10px 30px;
	color:#333;
	border:1px solid #ccc;
    text-decoration: none;
    outline: none;
    /*hamidasu keshiki kesu*/
 	overflow: hidden;
}

/*hover for button*/
.btn04:hover {
	color:#fff;
	border-color: transparent;
    /*rate color change*/
	transition-delay: .6s;
}

/*line*/
.btn04 span{
    display: block;
    z-index: 2;
}

.bordertop span::before,
.bordertop span::after {
    content: '';
    /*absolute position no line de ichi kimeru*/
    position: absolute;
    width:1px;
    height: 0;
    /*line shape*/
    background: #b5afa5;
    /*animation setting*/
	transition: all .3s;
}

/*left line*/
.bordertop span::before {
    left:0;
    top:0;
}

/*right line*/
.bordertop span::after {
    right:0;
    top:0;
}

/*if hover extend line*/
.bordertop:hover span::before,
.bordertop:hover span::after {
    height: 100%;
}

/*setting for back ground*/
.bordertop::before{
	content: '';
/*absolute position de ichiwo kimeru*/
	position: absolute;
	left: 0;
    top:0;
	z-index: -1;
 /*shape of back ground*/
	width: 100%;
	height: 0;
	background:#b5afa5;
  /*animation setting*/
	transition: all .3s;
}

/*hover suruto haikei nobiru*/
.bordertop:hover::before{
	height: 100%;
  /*0.4sec okurete animation*/
	transition-delay: .4s;
}

/*link shape*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#b5afa5;
	width: 60px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #999;
	height: 55px;
}

/*link for right bottom fixed*/
#page-top {
	position: fixed;
	right: 0;
	bottom:0;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*ueni agaru ugoki*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*shitani sagaru ugoki*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

.slider {/*width94% de sayuuni yohaku wo motasete center yose*/
   width:94%;
    margin:0 auto;
}

.slider img {
    width:100%;/*slider nai no image wo width 100%*/
    height:auto;
}

/*slick no JS de kaakreru tag nai, slide sayuu no yohaku adjustment*/
.slider .slick-slide {
    margin:0 10px;
}

/*setting for arrow*/
/*modoru、tsugihe yajirushi no ichi*/
.slick-prev, 
.slick-next {
    position: absolute;/*absolute position*/
    top: 42%;
    cursor: pointer;/*mouse cursol yubi mark*/
    outline: none;/*click shitar detekuru wakusen kesu*/
    border-top: 2px solid #999;/*yajirushi color*/
    border-right: 2px solid #999;/*yajirushi color*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*modoru yajirushi no ichi to keijo*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*next yajirushi no ichi to keijo*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*dot navigation setting*/
.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*dot button size*/
    height:8px;/*dot button size*/
    display:block;
    border-radius:50%;
    background:#ccc;/*dot button color*/
}

.slick-dots .slick-active button{
    background:#b5afa5;/*dot button genzai hyoji no color*/
}
.fadeIn{
animation-name: fadeInAnime;
animation-duration:2s;/*yukkuri shutsugen surutameno suuchi change*/
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.zoomOut{
	animation-name: zoomOutAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
	transform: scale(1.2);
	opacity: 0;
  }

  to {
    transform:scale(1);
	opacity: 1;
  }
}
.zoomOutTrigger{
    opacity: 0;
}

.slide-in {
	overflow: hidden;
    display: inline-block;
    padding: 0 10px;/*english hajiderunode yohaku tsuiki*/
}

.slide-in_inner {
	display: inline-block;

}

/*right left animation*/
.leftAnime,
.rightAnime{
    opacity: 0;/*jizen ni touka0 nishite keshiteoku*/
}

.slideAnimeLeftRight {
	animation-name: slideText-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideText-100 {
  from {
	transform: translateX(-100%); /*youso wo hidarino wakusen ni idou*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*youso motono ichini idou*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name: slideText100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideText100 {
  from {
	transform: translateX(100%);/*youso right wakugaini idou*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*youso motono ichini idou*/
    opacity: 1;
  }
}

.blur{
	animation-name: blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}



/*========= txt sparkle ===============*/
.glowAnime span{opacity: 0;}
.glowAnime.glow span{ animation:glow_anime_on 1s ease-out forwards; }
@keyframes glow_anime_on{
	0% { opacity:0; text-shadow: 0 0 0 #7d7676,0 0 0 #7d7676;}
	50% { opacity:1;text-shadow: 0 0 10px #7d7676,0 0 15px #b5afa5; }
	100% { opacity:1; text-shadow: 0 0 0 #7d7676,0 0 0 #7d7676;}
}


/*==================================================
  image link ugoki
===================================*/

span.mask{
	display: block;/*image kukuru span tag  wo block youso nisuru*/
	overflow: hidden;/*hamideteiru monowo kakusu*/
}

/*hamon*/

.circle span.mask{
	position: relative;/*hamon no kiten to naru ichiwo teigi*/
}

.circle span.mask::before {
	position: absolute;
	content: '';
	transform: scale(0);/*en no ookisa first 0*/
	opacity: 0;/*touka 0*/
	width:100%;/*en no size shitei*/
	height:100%;/*en no size shitei*/
	border-radius:50%;/*en no kadomaru*/
	background: rgba(255,255,255,0.2);/*en no haikei color*/
}

.circle span.mask:hover::before {/*hover shita tokino henka*/
	animation: circle 0.75s;/*animation no name to sokudo wo teigi*/
}

@keyframes circle {
  0% {
  transform: scale(0);
  opacity: 1;/*touka nashi*/
  }
  30% {
    opacity: 1;
  }
  100% {
  transform: scale(2);/*animation de ookikunatta 2bai no en wo shitei*/
  }
}

/* back ground syutsugen + text (uekara) */
.bgDU,
.bgDU .mask{
    display: block;
	position:relative;/*haikei syoku to text no kiten tonaru ichi wo teigi*/
    overflow: hidden;
}

.bgDU .mask::before{
	content:'';
	position: absolute;
	z-index: 2;
	left:0;
	top:0;
	opacity:0;/*touka 0*/
	transition: .3s ease-in-out;/*utsuri kawaru hayasawo change shitai baai kono suuchiwo henkou*/
    transform: translateY(100%);
	background:#b5afa5;/*back ground color*/
	width:100%;
	height: 100%;	
}

.bgDU:hover .mask::before{/*hover shita tokino henka*/
	opacity:1;/*tuka nashini henka*/
	transform: translateY(0);
}

.bgDU .cap{/*image no ueno text*/
	position: absolute;
	opacity:0;/*touka zero*/
	transition: .5s ease-in-out;/*utsuri kawaru hayasawo henkouy shitai baai ha kono suuchi wo henkou*/
	z-index:3;/*text wo zenmen ni dasu*/
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);/*text no ichi chuuou shitei*/
	color: #fff;/*text no iro wo kaetai baai ha kokowo change*/
}

.bgDU:hover .cap{/*hover shita tokino henka*/
	opacity:1;/*touka nashini henka*/
}

/*==================================================
    to scroll image expansion 
===================================*/

#header{
	position: relative;/*haikei wo settei suru div no kiten to suru tameno relative wo kakeru*/
    width: 100%;
	height:100vh;
    overflow: hidden;
}

#header-img{
	position: fixed;/*back ground wo fix surutameno fixed wo kakeru*/
	z-index: 1;/*#container,#footer yorimo shitani haichi surutameni suuchi wo chisakusuru*/
    top: 0;/*top position JS de change*/
	/*ika gamen de haikei gazoui wo hyouji  saserutameno shitei*/
    width: 100%;
	height:100vh;
	background: url("../img/main.jpg") no-repeat top center;/*haikei gazou no setting*/
	background-size:cover;
	transform-origin:center;/*henka suru kiten wo chushi kara setting*/
}

#container,
#footer{
	position: relative;/*#header-img yorimo haichi wo ue ni surutameni "relative" wo tsukeru*/
	z-index: 3;/*#header-img yorimo z-index no atai wo ookina suuchi ni shite ue ni hyoji*/
    background:#f8f9fa;

}
