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


.top-scroll{
 position: absolute; 
    bottom: 0; 
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}


.top-scroll-p{
 position: absolute; 
    bottom: 0; 
    z-index: 5;
    left: 1%;
}



.scroll-w {
font-family: 'Cormorant Infant', serif;
 font-style: normal;
 font-weight: 400;
     display: inline-block;
 padding-bottom: 5px;
 color: #000;
font-size: 1.2em;
    letter-spacing: 1px;
opacity: 1.0;
    margin: 0 auto;
    text-align: center;
 justify-content: center;
    writing-mode: vertical-rl; 
}


.scroll {
font-family: 'Cormorant Infant', serif;
 font-style: normal;
 font-weight: 700;
  display: inline-block;
  padding: 40px 0px 15px 0px;
  color: #000;
font-size: 15px;
opacity: 0.9;

}

.scrollborder-w {
  width: 1px;
  height: 120px;
  background-color: #b2a065;
 opacity: 1.0;
 animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
	left: 0;
  right: 0;
  margin: auto;
}

.scrollborder {
  width: 1px;
  height: 80px;
  background-color: #b2a065;
 opacity: 1.0;
 animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
	left: 0;
  right: 0;
  margin: auto;
}


@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


.cap {
	width: 50%;
	overflow: hidden;
	position: relative;
}
.cap .caption {
	font-size: 1.1em;
	text-align: center;
	color: #836e1b;
  position:absolute;
  top:40%;
  left:50%;
  transform:translate(-50%,-40%);
    line-height: 220%;
    font-weight: 400;
    width: 90%;
}


.cap .mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* マスクを表示しない */
	background-color: rgba(239,232,157,0.80);
	-webkit-transition:	all 0.6s ease;
	transition: ll 0.6s ease;
}
.cap:hover .mask {
	opacity: 1;	/* マスクを表示する */
	padding-top: 25%;	/* ホバーで下にずらす */
}



body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}


/* ポップアップウインドウの設定 */
.pu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: 10000;
}
/* チェックボックスの初期設定 */
#pu-on00 , #pu-on , #pu-on02 , #pu-on03 , #pu-on04 , #pu-on05 , #pu-on06{
  display: none;
}

/* チェックされたらポップアップウインドウを開く */
#pu-on00:checked + .pu {
  display: block;
}

/* チェックされたらポップアップウインドウを開く */
#pu-on:checked + .pu {
  display: block;
}

/* チェックされたらポップアップウインドウを開く */
#pu-on02:checked + .pu {
  display: block;
}

/* チェックされたらポップアップウインドウを開く */
#pu-on03:checked + .pu {
  display: block;
}

/* チェックされたらポップアップウインドウを開く */
#pu-on04:checked + .pu {
  display: block;
}

/* チェックされたらポップアップウインドウを開く */
#pu-on05:checked + .pu {
  display: block;
}

/* チェックされたらポップアップウインドウを開く */
#pu-on06:checked + .pu {
  display: block;
}




/* 閉じるアイコン（右上） */
.icon-close{
  color: #fff;
  font-size: 25px;
  position: absolute;
  right: 0%;
  top: 0%;
  line-height: 100%;
     background-color: rgba(0,0,0,0.72);
   width: 100%;
    height: 100%;
    text-align: right;
    padding: 20px;
    overflow-y: hidden;
}



/* 開くボタン */
.btn-open{
  cursor: pointer;
}

.btn-open p{
  position: absolute;
  bottom: 3%;
    right: 3%;
    font-size: 16px;
    color: rgba(171,118,102,0.6);
    border: 5px;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.25);
    line-height: 90%;
    padding: 5px;
}


/* ポップアップの内容 */
.pu-content{
  width: 80%;
position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
    color: #fff;
      text-align: center;
}

.pu-content img {
  width: 70%;
}

.pu-content div {
  line-height: 80%;
    padding-top: 20px;
    width: 120%;
    margin-left: -10%;
}

.pu-content p {
  line-height: 170%;
    text-decoration: none;
    color: #fff;
 font-weight: 300;
}

.pu-content a {
text-decoration: none;
    color: #fff;
 font-weight: 300;
}
.gradient-btn2 {
  display: inline-block;
  padding: 0em;
  border: none;
  color: #fff;
  background: linear-gradient(-45deg, #b1cadb, #ffffff, #edecce) fixed;
  background-size: 800% 800%;
  animation: GradietionAnimation2 3.5s ease infinite;
}
@keyframes GradietionAnimation2 { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.gradient-btn {
  display: inline-block;
  padding: 0em;
  border: none;
  color: #fff;
  background: linear-gradient(-45deg, #fbffbe, #ffffff, #edecce) fixed;
  background-size: 800% 800%;
  animation: GradietionAnimation 3s ease infinite;
}
@keyframes GradietionAnimation { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}


/*========= 1文字ずつ出現させるためのCSS ===============*/

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


