@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
.cinzel { font-family: "Cinzel", serif; }

/* ------------------------
MV effect
---------------------------*/


.mv-sub {
  opacity : 0;
  transition : 1s;
  filter: blur(10px);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:100px 0;
}

.mv-sub-txt {
  writing-mode: vertical-rl;
  font-fauture-settings:initial;
  -webkit-font-feature-settings: initial;
  -moz-font-feature-settings: initial;
  font-size: clamp(18px,6vw,38px);
  line-height:2em;
}

@media screen and (max-width: 767px) {
  .mv-sub {
    padding:40px 0;
  }
}

.mv-sub.on {
  opacity : 1;
  filter: blur(0);
}

.mv__txt {
  position : absolute;
  top : 0;
  left : 0;
  color : #fff;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  text-align : center;
  opacity : 0;
  transition : 1s .5s;
}

.mv-sub.on .mv__txt {
  opacity : 1;
}

.mv__txt1 {
  font-size : 39px;
}

.mv__txt2 {
  font-size : 18px;
}

.mv-cap {
  position : absolute;
  font-size : 12px;
  right : 5px;
  bottom : 5px;
  color : #fff;
}


/* ------------------------
base
---------------------------*/



/* ------------------------
fadein effect
---------------------------*/
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 800ms;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

/*-----------------------------------
.image caption
-----------------------------------*/
.cap-image {
    position : relative;
}

.cap-image .cap {
    position : absolute;
    right : 5px;
    bottom : 5px;
    color : #fff;
    z-index : 2;
    font-size : 10px;
    margin : 0;
}

.cap-image .cap.cap-left {
    right : auto;
    left : 10px;
}

.cap-image .cap.cap-bk {
    color : #000;
}

.cap-image .cap.cap-under {
    position : static;
    margin-top : 5px;
    color : #000;
}


/*-----------------------------------
screen trigger
-----------------------------------*/
.vpc1023_in {
    display: inline!important;
}

.vsp1023 {
    display: none!important;
}

.vsp1023_in {
    display: none!important;
}

@media screen and (max-width: 1023px) {
    .vsp1023 {
        display: block!important;
    }
    .vsp1023_in {
        display: inline!important;
    }
    .vpc1023,
    .vpc1023_in {
        display: none!important;
    }
}

.vpc767_in {
  display : inline!important;
}

.vsp767 {
    display: none!important;
}

.vsp767_in {
    display: none!important;
}

@media screen and (max-width: 767px) {
    .vsp767 {
        display: block!important;
    }
    .vsp767_in {
        display: inline!important;
    }
    .vpc767,
    .vpc767_in {
        display: none!important;
    }
}


/*-----------------------------------
回遊ボタン
-----------------------------------*/
.navigation {
  margin-top: 108px;
  display: flex;
  flex-wrap: wrap;
  background: #000;
}

.navigation__item {
  width: 33.333333333333%;
  position: relative;
  max-height: 300px;
  overflow: hidden;
}
.navigation__item:after {
  content : "";
  display : block;
  padding-bottom : calc(180 / 400 * 100%);

}

.navigation__item:not(.navigation__item--nolink):hover .navigation__bg {
  transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .navigation__item {
    width: 100%;
  }
}

.navigation__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s;
}

/*.navigation:hover .navigation__item:not(:hover) .navigation__bg{
  filter:brightness(0.5);
}*/

.navigation:hover .navigation__item:not(:hover, .navigation__item--nolink) .navigation__bg {
  filter:brightness(0.3);
}

.navigation__bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  opacity: 0.6;
}

.navigation__text {
  height: calc(40 / 200 * 100%);
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, 0);
}

.navigation__text img {
  width: auto !important;
  height: 100%;
}

.navigation__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.navigation__request {
  position: absolute;
  width: 45%;
  height : 42px;
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, 0);
  background: #d08a4c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: opacity 0.2s;
  /*font-family: -apple-system, BlinkMacSystemFont, Roboto, Hiragino Kaku Gothic ProN, Meiryo, MS PGothic, sans-serif;*/
}

.navigation__request:hover {
  opacity: 0.8;
}

.navigation__btn {
  height : 42px;
  position : absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);
  bottom: 25%;
  background : rgba(255,255,255,.8);
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align : center;
  color : #000;
  font-size : 14px;
  /*border : solid 1px #000;*/
  transition : .5s;
}

a:hover .navigation__btn {
  opacity : .8;
}

.navigation .cap {
  position : absolute;
  color : #fff;
  right : 5px;
  bottom : 3px;
  margin : 0;
  font-size : 10px;
}

@media screen and (max-width: 900px) {
  .navigation__request,
  .navigation__btn {
    font-size : 13px;
    width : 60%;
    height : 30px;
  }
}