@charset "utf-8";

/*===========================================================*/
/*機能編  4-1-3　プログレスバー＋数字カウントアップ＋画面が開く*/
/*===========================================================*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    text-align:center;
    color:#fff;
	display:none !important;
}

/* Loading画像中央配置　*/
#splash_text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
    height: 2px;
}

/*割れる画面のアニメーション*/
.loader_cover {
    width: 100%;
    height: 50%;
    background:#017490;
    transition: all .2s cubic-bezier(.04, .435, .315, .9);
    transform: scaleY(1);
}
/*上の画面*/
.loader_cover-up {
    transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
    position: absolute;
    bottom: 0;
    transform-origin: center bottom;
}
/*クラス名がついたらY軸方向に0*/
.coveranime {
    transform: scaleY(0);
}

/*===========================================================*/
/*機能編  7-1-32　グラデーション線から塗に変化する*/
/*===========================================================*/

.gradient4{
    /*ボタンの形状*/
    display: inline-block;
    padding: 10px 60px;
    margin: 20px 0 0 0;
    border-radius:30px;
    text-decoration: none;
    border:1px solid #fff;
    color: #fff;
    /*アニメーションの指定*/ 
    transition: all 0.4s ease-out;
}

#box3 .gradient4{
    color: #925410;
    border-color: #925410;
}

/*hoverした際、グラデーションと影を付ける*/
.gradient4:hover,
#box3 .gradient4:hover{
    /*ボタンの形状*/
    border-color:transparent;
    color: #fff;
    /*背景の色と形状*/
    background: linear-gradient(270deg,#3bade3 0%, #9844b7 50%, #44ea76 100%);
    background-size: 200% auto;
    background-position: right center;
    /*ボックスの影*/   
    box-shadow: 0 5px 10px rgb(250,108,159,0.4);
}

/*===========================================================*/
/*機能編 6-1-3 ゆっくりズームアウトさせながら全画面で見せる*/
/*===========================================================*/
#slider {
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*===========================================================*/
/*機能編  9-6-3 リンクをクリックすると、背景が暗くなり動画や画像やテキストを表示*/
/*===========================================================*/

.modaal-overlay{
    background: linear-gradient(45deg,rgba(88,182,211,.9),rgba(229,93,135,.9))!important;
}


/*===========================================================*/
/*機能編  6-2-6 サムネイルをクリックするとグループ化された画像一覧を表示する*/
/*===========================================================*/

/*===モーダル表示のためのcss　*/

.hide-area{/*モーダル表示をする場所をあらかじめ隠す*/
    display: none;
}

.modaal-fullscreen .modaal-content-container{/*full画面の色設定*/
    background: linear-gradient(45deg,rgba(88,182,211,.9),rgba(229,93,135,.9));
    color: #fff;
    text-align: center;
}

.modaal-fullscreen .modaal-close{/*ボタンの色、位置*/
    background:none;
    right:20px;
}

/*クローズボタンの×の色変更*/
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
    background:#666;
}

/*キャプション*/
.caption{
    display: block;
    padding: 10px 0;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.modaal-content-container img{
    border: 5px solid #fff;
    width:100%;
    max-width:700px;
    height:auto;
    vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*===========================================================*/
/* 印象編 4 最低限おぼえておきたい動き*/
/*===========================================================*/

/*== 4-6　じわっ（ぼかしから出現） ==*/

.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;
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.blurTrigger{
    opacity: 0;
}



/*===========================================================*/
/* 印象編　8-11　テキストが1文字づつ出現*/
/*===========================================================*/

.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
    0% {opacity:0;}
    100% {opacity:1;}
}

/*===========================================================*/
/* 印象編　6-1　スクロールすると1画面移動*/
/*===========================================================*/
.box{
    padding: 40px;
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
	height:100vh !Important;
	position:relative;
}

#box1{
    background:url("../img/bg_02.jpg") no-repeat top center;
    background-size: cover;
    z-index: 1;



}
#box1::after{
    content: "";
    position: absolute;
    z-index: 2;
    opacity: 0.5;
    width: 100%;
    height:100%;
    
    z-index: 2;
	top: 0;
    left: 0;
}



#box1.box{
    justify-content: center;
}

@media screen and (max-width:768px) { 
    #box1.box{
        justify-content: center;
    } 
}

#box2{

    background:url("../img/bg_03.jpg") no-repeat top center;
    position: relative;
    z-index: 1;

    background-size: cover;

}

#box2::after{
    content: "";
    position: absolute;
    z-index: 2;
    opacity: 0.5;
    width: 100%;
    height:100vh;
    background-color: #87ceeb;
	top: 0;
    left: 0;
}

.box iframe{
    width: 100%;
    display: block;
	margin: 20px auto 40px;
max-width: 1000px;
}
.box iframe+.caption-video{
    background: #000;
    color: #fff;
    font-size: 24px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    margin: 0 auto;
max-width: 1000px;
display: none;
}


.box-area{
    position: relative;
    z-index: 3;
    width: 100%;
}
.box-area p{
    color:#ffffff;
    text-align: left;
    font-family:iroha-32sakura-stdn, sans-serif;
    font-style: normal;
    font-weight: 400;
}

#box3{
    background:url("../img/bg_04.jpg") no-repeat top center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
#box3::after{
    content: "";
    position: absolute;
    z-index: 2;
    opacity: 0.5;
    width: 100%;
    height:100%;
    background-color:#ffb6c1;
	top: 0;
    left: 0;
}

#box4{
    background:url("../img/bg_05.jpg") no-repeat top center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
#box4::after{
    content: "";
    position: absolute;
    z-index: 2;
    opacity: 0.5;
    width: 100%;
    height:100%;
    background-color: #cd853f;
	top: 0;
    left: 0;
}

#box5{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;/*横の中央寄せ*/
    align-items: space-between;

    background:url("../img/bg_06.jpg") no-repeat top center;
    background-size: cover;
    position: relative;
    z-index: 1;
	height:auto !important;
}
#box5::after{
    content: "";
    position: absolute;
    z-index: 2;
    opacity: 0.5;
    width: 100%;
    height:100%;
    background-color: black;
	top: 0;
    left: 0;
}

.youtube-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    z-index:4;
}
.youtube-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:4;
}

.container {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*========= ページネーションCSS ===============*/

.pagination {
    position:fixed;
    right:20px;
    top: 50%;
    transform: translateY(-50%);
    font-size:1em;
    z-index: 999999;
    list-style: none;
}

.pagination a {
    display:block;
    height:20px;
    margin-bottom:5px;
    color:#fff;
    position:relative;
    padding:4px;
}

.pagination a.active:after {
    box-shadow:inset 0 0 0 5px;
}

.pagination a .hover-text {
    position:absolute;
    right:15px;
    top:0;
    opacity:0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    padding-right: 15px;
}

.pagination a:hover .hover-text {
    opacity: 1;
}

.pagination a:after {
    -webkit-transition:box-shadow 0.5s ease;
    transition:box-shadow 0.5s ease;
    width:10px;
    height:10px;
    display: block;
    border:1px solid;
    border-radius:50%;
    content:'';
    position: absolute;
    margin:auto;
    top:0;
    right:3px;
    bottom:0;
}

@media screen and (max-width:768px) { 
    .pagination a .hover-text{
        display: none;
    }   
}

.gradient4{
    /*ボタンの形状*/
    display: inline-block;
    margin: 2rem 2rem 0 2rem ;
    padding: 9px 60px;  
    border-radius:30px;
    text-decoration: none;
    border:1px solid #fa6c9f;
    color: #fff;
    outline: none;
    /*アニメーションの指定*/ 
    transition: all 0.4s ease-out;
}

/*hoverした際、グラデーションと影を付ける*/
.gradient4:hover{
    /*ボタンの形状*/
    border-color:transparent;
    color: #fff;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #fa6c9f 0%, #ffe140 50%, #ff357f 100%);
    background-size: 200% auto;
    background-position: right center;
    /*ボックスの影*/   
    box-shadow: 0 5px 10px rgb(250,108,159,0.4);
}
/* Slider */

#box0 {  
  width: 100%;
  height: 100vh;  
  background: url(../img/bg_hada.jpg) left top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
section.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;

}
section .kv.hide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
section.slider .slider-logo {
  position: absolute;
  top: 50%;
  width: 25.7%;
  left: calc(25% - 185px);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
section.slider .sl {
  position: absolute;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
}
section.slider .sl.move-right .img2 {
  background-position: left top;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
}
section.slider .sl.move-left .img2 {
  background-position: right top;
  right: 0;
  left: auto;
  width: 0;
  height: 100%;
}
section.slider .sl.move-down .img2 {
  background-position: left top;
  left: 0;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 0;
}
section.slider .sl.move-up .img2 {
  background-position: left bottom;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
}
section.slider .sl.sl1 {
  bottom: 20px;
  left: 40px;
  width: 15.277%;
}
section.slider .sl.sl2 {
  top: 40px;
  width: 15.277%;
  right: 37.5%;
}
section.slider .sl.sl3 {
  z-index: 8;
  top: 0;
  right: 0;
  width: 33.333%;
}
section.slider .sl.sl4 {
  z-index: 10;
  right: 0;
  bottom: 30px;
  width: 26.67%;
}
section.slider .sl.sl5 {
  width: 15.277%;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
section.slider .sl img {
  width: 100%;
}
section.slider .sl img.img1 {
  position: relative;
  display: block;
  z-index: 0;
}
section.slider .sl .img2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 10;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  max-height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
section.slider .img-contain {
  display: block;
  width: 68.055%;
}
section.slider .kv-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.slider .kv-info .kv-text {
  display: inline-block;
}
section.slider .kv-info .kv-text.kv-text1 {
  margin-bottom: 150px;
  width: 68%;
  max-width: 310px;
}
section.slider .kv-info .kv-text.kv-text2 {
  width: 56%;
  max-width: 254px;
}
/* .sl{opacity:0;}
.is_loaded .sl{opacity:1;} */
#box1 .box-area p {
  font-family: 'Klee One', cursive;
}
@media screen and (max-width:768px) { 
    .box {
		padding: 20px;
    } 
	#box5 {
	  height: 100vh !important;padding: 10px 20px;
	}
	#box5 .box-area p {
	  padding: 0;
	}
	.pagination{display:none;}
	#box5 .gradient4 {margin-top:10px;}
	#box5 .maps {
	  padding: 10px 0;
	  font-size: 2rem;
	}
}

@media screen and (min-width: 768px){   
  .pcbr { display:block; }
  .spbr { display:none; }
}
@media screen and (max-width: 767px){   
  .pcbr { display:none; }
  .spbr { display:block; }
  .box-area p {text-align: justify;}
}
