/*共通項目　ABOUT 108煩悩
------------------------------*/
.img-move{
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0,.8);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.detail{
    display: none;
    position: fixed;
    text-align: center;
    max-height: 70%;
    margin-top: 150px;
    left: 20%;
    top: 2%;
    bottom: 2%;
    right: 20%;
    background-color: rgb(200, 200, 200);
    border-radius:5px;
}
.img-name{
    font-size: 2.5rem;
    text-align: center;
}
.im{
    
    height: 40%;
}
.kaisetsu{

    padding: 3% 10% 0 10%;
}
.back{
    margin-top: 2%;
}
@media screen and (max-width: 769px) {
  .detail{
    max-height: 90%;
    margin-top: 80px;
    left: 5%;
    top: 2%;
    bottom: 2%;
    right: 5%;
    background-color: rgb(200, 200, 200);
    border-radius:5px; 
  }
  .img-name{
    font-size: 2.5rem;
  }
  .im{
    max-width: 80%;
    object-fit: cover;

  }
  .kaisetsu{
    font-size: 1rem;
  }
  .back{
  }
}
/*個別
--------------------------*/

/*便利機能
-----------------------------*/
.fadeIn1 {
    transform: translateY(50px);
    transition: 2s;
    opacity: 0;
}
.fadeIn2 {
    transform: translateX(-50px);
    transition: 2s;
    opacity: 0;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 4px solid #666;/*矢印の色*/
    border-right: 4px solid #666;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -4%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -4%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.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;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

/*ローディング画面
---------------------------*/
#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #fff;
    text-align: center;
  }
  #loading_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #loading .kvArea {
    width: 100%;
  }
  #loading .kvArea .img_box {
    text-align: center;
  }
  #loading .kvArea .img_box img {
    max-width: 100%;
    height: auto;
  }
  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.2s;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
    opacity: 1;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-100px);
    }
  }

