@charset "UTF-8";
/* --------------------
 #mv 
-------------------- */
#mv{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
#mv .mv_copy {
  position: absolute;
  left: 80px;
  bottom: 65px;
  font-size: 1.1rem;
  font-weight: 500;
  z-index: 1000;
  transition:.2s linear;
}
.open #mv .mv_copy {
  color: #b9b3b3;
}
#mv .mv_scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  padding-bottom: 70px;
  transform: translateX(-50%);
  z-index: 2;
}
#mv .mv_scroll a {
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
}
#mv .mv_scroll a::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #656565;
}
#mv .mv_scroll a::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* --------------------
 #video
-------------------- */
#video{
  width: 100%;
  height: 100vh;
  background: url(/img/top/mv_alternative.jpg) no-repeat center left -60px/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

#video::after{
  content: '';
  width: 100%;
  height: 100%;
  background: url(/img/common/overlay_mv.png) left top / auto auto repeat;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .5;
}

#video video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}



/* --------------------
 #about 
-------------------- */
#about {
  padding: 140px 0 115px;
  text-align: center;
  background-color: #171a1d;
}
#about .about_h1 {
  font-size: 5.2rem;
  font-weight: 300;
  line-height: 1.6;
}
#about .about_lead {
  margin-top: 1em;
  font-size: 2rem;
  line-height: 2;
}
#about .about_more {
  margin-top: 60px;
}
#about .about_more a {
  padding-bottom: 65px;
  color: #cdb47a
  font-size: 1.8rem;
  font-weight: 500;
}
#about .about_more a::before,
#about .about_more a::after {
  transform: translateX(-50%);
}
#about .about_more a::before {
  bottom: 0;
  left: 50%;
}
#about .about_more a::after {
  bottom: 0;
  left: 50%;
}

/* --------------------
 #mealBg
-------------------- */
#mealBg .mealBg_img {
  width: 100%;
  height: 100vh;
  background: url(/img/top/img_dinner.jpg) center center / cover no-repeat;
  transition:.2s linear;
}
#mealBg.lunchBg .mealBg_img {
  background-image: url(/img/top/img_lunch.jpg);
}

/* --------------------
 .meal 
-------------------- */
.meal {
  position: relative;
}
.meal_detail {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; 
}
.meal_txt {
  width: 50%;
}
.meal_h2 {
  margin-bottom: 1em;
  font-size: 5.2rem;
  font-weight: 400;
}
.meal_catch {
  margin-bottom: 1em;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.6;
}
.meal_catch span {
  display: block;
  margin-bottom: 1em;
  color: #999;
  font-size: 1.8rem;
}
.meal_btn {
  margin-top: 30px;
  width: 320px;
}

/* --------------------
 #dinner
-------------------- */
#dinner {
  margin-bottom: 100vh;
}
#dinner .meal_detail {
  background-image: url(/img/top/bg_dinner.jpg);
}

/* --------------------
 #lunch
-------------------- */
#lunch .meal_detail {
  color: #000;
  background-image: url(/img/top/bg_lunch.jpg);
}

/* --------------------
 #access
-------------------- */
#access {
  position: relative;
}
#access .access_img {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background: url(/img/top/mv_alternative.jpg) center center/ cover no-repeat;
}
#access .access_detail {
  position: relative;
  padding: 90px 0 100px;
  background-color: #171a1d;
}
#access .access_h2 {
  margin-bottom: 30px;
  font-size: 5.2rem;
  font-weight: 400;
}
#access .access_list {
  display: flex;
  justify-content: space-between;
}
#access .access_block {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  margin-right: auto;
}
#access .access_block .img {
  margin-bottom: 30px;
  max-width: 66%;
}
#access .access_block h3 {
  font-size: 2.4rem;
  font-weight: 300;
}
#access .access_block .info {
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
}
#access .access_block .info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 1px;
  background-color: #cdb47a
}
#access .access_block .info p,
#access .access_block .info a {
  color: #cdb47a
}
#access .online {
  margin: 100px 80px 0;
}
#access .online a {
  display: block;
  padding: 40px 0;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
#access .online a::before,
#access .online a::after {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#access .online a span {
  display: block;
  margin-bottom: 0.5em;
  font-size: 3rem;
}

/* access_map */
#access .access_map {
  position: relative;
  height: 0;
  padding-top: 34.72222222222222%;
  margin-top: 70px;
}
#access .access_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media (max-width: 1200px) {
  /* --------------------
  #mv
  -------------------- */
  #mv .mv_copy {
    left: 6%;
    bottom: 70px;
  }

  /* --------------------
  .meal 
  -------------------- */
  .meal_txt {
    width: 100%;
    text-align: center;
  }
  .meal_btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  /* --------------------
  #mv 
  -------------------- */
  #mv{
    min-width: 768px;
  }

  /* #video */
  #video{
    min-width: 768px;
  }
}

@media (max-width: 767px) {
  /* --------------------
  #mv 
  -------------------- */
  #mv .mv_copy {
    display: none;
  }

  /* --------------------
  #about
  -------------------- */
  #about {
    padding: 70px 0;
  }
  #about .about_h1 {
    font-size: 3rem;
  }
  #about .about_lead {
    font-size: 1.6rem;
  }
  #about .about_more {
    margin-top: 30px;
  }
  #about .about_more a {
    padding-bottom: 60px;
    font-size: 1.6rem;
  }

  /* --------------------
  .meal
  -------------------- */
  .meal_detail {
    padding: 40px 0;
  }
  .meal_h2 {
    margin-bottom: 0.5em;
    font-size: 3rem;
  }
  .meal_catch {
    font-size: 2rem;
  }
  .meal_lead {
    font-size: 1.4rem;
  }

  /* --------------------
  #access
  -------------------- */
  #access .access_detail {
    padding: 45px 0 50px;
  }
  #access .access_h2 {
    font-size: 3rem; text-align: center;
  }
  #access .access_list {
    display: block;
  }
  #access .access_block {
    width: 100%;
  }
  #access .access_block-large {
    flex-wrap: wrap;
    width: 100%;
  }
  #access .access_block + .access_block {
    margin-top: 60px;
  }
  #access .access_block .img {
    width: 100%;
    margin: 0 auto 15px;
  }
  #access .access_block-large .img {
    max-width: 100%;
  }
  #access .access_block-large .txt {
    width: 100%;
  }
  #access .access_block h3 {
    font-size: 1.8rem;
  }
  #access .access_block .info p {
    font-size: 1.2rem;
  }
  #access .online {
    margin: 50px 0 0;
  }
  #access .online a {
    padding: 20px 0;
    font-size: 1.8rem;
  }
  #access .online a span {
    font-size: 2rem;
  }
  /* access_map */
  #access .access_map {
    padding-top: 100%;
    margin-top: 35px;
  }
}