@charset "utf-8";

/*========= スクロールダウンのためのCSS ===============*/

.modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}
/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置&#8251;位置は適宜調整してください*/
  position:absolute;
  bottom:1%;
  right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 2s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
  position: absolute;
  left:-38px;
  bottom:10px;
    /*テキストの形状*/
  color: #ae7c31;
  font-size: 0.7rem;
  letter-spacing: 0.05em;

  /*縦書き設定*/
  /* -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; */
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #ae7c31;
    transform: skewX(-31deg);
}

.scrolldown4:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  right:0;
    /*矢印の形状*/
  width:1px;
  height: 50px;
  background:#ae7c31;
}

/*========= レイアウトのためのCSS ===============*/

/* h1{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color:#eee;
  text-shadow: 0 0 15px #666;
  text-align: center;
} */

.bl_3daysSearchBlock_ttl{
  width:100%;
  height: 90vh;
  position: relative;
  display: flex;
  justify-content: center;
} 

.bl_3daysSearchBlock_ttl:before{
  content: '';
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height: 90vh;
  /*背景画像設定*/
  /* background:url("https://coco-factory.jp/ugokuweb/wp-content/themes/ugokuweb/data/9-1-4/img/01.webp") no-repeat center;
  background-size:cover; */
}

#container{
  position: relative;
  z-index:1;
  background:#eee;
  padding:600px 0;
  text-align: center;
}

.kumo1{
    animation-name: return1;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}
/* to top */
.back-to-top {
  display: none;
  position: fixed;
  right: 5%;
  bottom: 5%;
  padding: 0.5em;
  /* border-radius: 54%; */
  display: inline-block;
  /* text-decoration: none; */
  color: #fff;
  /* background-color: #b88895; */
  width: 25px;
  height: 25px;
  text-align: center;
  z-index: 6;

}

@keyframes return1 {
    50% {
      right: 150px;
    }
    100% {
      right: 0px;
    }
  }
  .kumo2{
    animation-name: return2;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    /* animation-timing-function: ease; */
  }
  @keyframes return2 {
    0% {
        left: 0px;
      }
    50% {
      left: 150px;
    }
    100% {
      left: 0px;
    }
  }
  /* .return {
    width:  200px;
    height: 200px;
    background-color: Lavender;
    position: relative;
    left: 0px;
    top: 0;
  
    animation-name: return;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
  } */

@media screen and (max-width:768px){

    #header,
    #header:before{
  height: 90vh;    
    }
    
}

/* ボタン */
a {
    color: inherit;
    text-decoration: none;
  }
  
  /* buttonタグのリセットCSS（不要な場合、セレクタごと削除してください） */
  button {
    padding: 0;
    font-family: inherit;
    appearance: none;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
.btn{
    display: flex;
    margin: 20px 0;
}
  
  /* ボタンのスタイル */
  .buttonRound {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    /* height: 30px; */
    padding: 8px 24px;
    margin: 1%;
    display: inline-block;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 500;
    color:  #fff;
    text-align: center;
    overflow-wrap: anywhere;
    background-color:  #ae7c31;
    border-radius: 32px; /* (buttonの高さ / 2) の値 */
  }
  
  @media (any-hover: hover) {
    .buttonRound {
      transition: background-color 0.2s;
    }
  
    .buttonRound:hover {
      background-color: #855f27;
    }
  }
   /* 画像がひらひら */
   #slideshow {
    position: relative;
 }
 
 #slideshow p {
    position: absolute;
    top:  0;
    left: 0;
    opacity: 0.0;
    margin: 0;
 }
 #slideshow p.active {
    z-index: 10;
    opacity: 1.0;
 }
 #slideshow p.last-active {
    z-index: 9;
 }
 
 #slideshow p img {
    display: block;
    border: 0;
 }