@charset "UTF-8";
/*　トップページ　ロード時に表示される部分のcss（それ以外はen.cssへ）　*/
/* ---------------------------------------------------
	common
------------------------------------------------------ */
#header .h_logo {
  display: none;
}
#header.active .h_logo {
  display: block;
}

@media screen and (max-width: 810px) {
  #header .h_logo {
    display: none;
  }
  #header.active .h_logo {
    display: none;
  }
}
/* ---------------------------------------------------
	mainimg
------------------------------------------------------ */
#mainimg {
  position: relative;
  overflow: hidden;
}
#mainimg .main_tit {
  position: absolute;
  left: 8%;
  top: 50%;
  width: 100%;
  color: #fff;
  font-size: 2.8rem;
  filter: drop-shadow(0 0 8px #000);
  letter-spacing: 0.05em;
  line-height: 1.9375;
  text-align: left;
  transform: translateY(-50%);
}
#mainimg .main_tit .logo {
  display: block;
  margin-left: -16px;
  margin-bottom: 32px;
}
#mainimg .main_search_open {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 0;
  width: 132px;
  background: #78c2c4;
  border-radius: 0 5px 0 0;
  color: #1c1c1c;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-align: center;
}
#mainimg .main_search_open .en {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0;
}
#mainimg .main_search_open .icon {
  margin-right: 8px;
}
#mainimg .main_btn_reserve {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: calc(100% - 132px - 32px);
  padding: 16px 5px 14px;
  background: #bc9f77;
  border-radius: 2px;
  color: #1c1c1c;
  line-height: 1.2;
  text-align: center;
}
#mainimg .main_btn_reserve .icon {
  margin-right: 8px;
}

#main_slide {
  position: relative;
}
#main_slide .slide_item {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}
#main_slide .slide_item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(19, 27, 36, 0.6) 0%, rgba(19, 27, 36, 0) 50%);
}
#main_slide .slide_item picture {
  height: 100%;
}
#main_slide .slide_item img {
  display: block;
  width: 108vw;
  max-width: 108vw;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: translateX(0);
}
#main_slide .slick-animation .slide_item img {
  animation: fadeLeft 8s 0s linear forwards;
}

@keyframes fadeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-8vw);
  }
}
@media screen and (max-width: 810px) {
  #mainimg .main_tit {
    left: 5%;
    top: auto;
    bottom: 120px;
    width: 90%;
    color: #fff;
    font-size: 1.75rem;
    letter-spacing: 0;
    filter: drop-shadow(0 0 8px #000);
    line-height: 1.9375;
    transform: unset;
  }
  #mainimg .main_tit .logo {
    width: 190px;
    height: auto;
    margin-left: 0px;
    margin-bottom: 24px;
  }
  #main_slide .slide_item {
    height: 100svh;
    min-height: 440px;
    overflow: hidden;
  }
}
/*-------------------------------------------*/
/*
/*　　tablet調整
/*
/*-------------------------------------------*/
@media (orientation: landscape) {
  body.is_tablet #main_slide .slide_item {
    height: calc(var(--vh) * 100);
  }
}
@media (orientation: portrait) {
  body.is_tablet #mainimg {
    height: auto;
    min-height: 70vw;
  }
  body.is_tablet #main_slide .slide_item {
    height: 70vw !important;
  }
}