@charset "UTF-8";

html{
    width: 100vw;
    margin-top: 0 !important;
    text-align: center;
}
body{
    background-color: #CAC9BD;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    margin: 0 auto;
}
a {
    text-decoration: none !important;
    color: black;
  }
  ul {
    list-style: none;
  }
  /* .main-wrapper{
    overflow: hidden;
} */
.flexbox{
    display: flex;
    width: 100%;
    align-items: center;
    .left{
        width: 50%;
    }
    .right{
        width: 50%;
    }
}
.column{
    flex-direction: column;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .position{
    position: relative;
  }
  .ontext{
    position: absolute;
    top: 50%;
    left: 25%;
    color: white;
    width: 50%;
    text-align: center;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .pc{
    display: block !important;
  }
  .sp{
    display: none !important;
  }
  @media(max-width:768px){
    .pc{
        display: none !important;
      }
      .sp{
        display: block !important;
      }
  }
  .slideIn{
	opacity: 0;
	transform: translateY(100px);
	transition: 0.8s;
}
.slideIn.show{
	opacity: 1;
	transition: 0.8s;
}
  /* -----------------------ページナビゲーション----------------------- */

 /* 真ん中に設置 */
.pagination {
    text-align: center;
}

/* 横並びにする */
.nav-links .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* ページタブの共通スタイル */
.nav-links a.page-numbers ,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #000000;
}

/* マウスが乗った時の、ボタンの背景の色と文字の色 */
.nav-links a.page-numbers:hover {
    color: #FFF;
    background-color: #999;
    border-color: #999;
    border-radius: 50%;
}

/* 現在のページのタブ  */
.nav-links .current {
    background: #000000;
    color: #ffffff;
    padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
    border: 1px solid #000000;
    color: #004BB1;
    position: relative;
}
/* 
/* 縦線の共通CSS 
.nav-links .next::before,
.nav-links .prev::after {
    content: "";
    display: inline-block;
    width: 0.5px;
    height: 40px;
    background-color: rgb(224, 215, 215);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


/* 「次へ」の前の縦線位置 
.nav-links .next::before {
    left: -15px;
}

/* 「前へ」の後の縦線位置
.nav-links .prev::after {
    right: -15px;
}

/* 数字省略の「・・・」
.nav-links .dots {
    background: transparent;
    border: none;
} 
*/