.sec_title {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

.sec_title p > img {
  line-height: 1;
}

.sec_title h2 {
  margin-top: 30px;
  margin-left: 22px;
  font-size: 1.4rem;
  line-height: 120%;
  color: #333;
}

.sec_more {
  margin-top: 56px;
  position: relative;
  line-height: 0;
}

.sec_more a {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.sec_more a::before {
  content: "";
  width: 84px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 23px;
  display: inline-block;
  background: #fff;
  z-index: 1;
}

.sec_more a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 3px);
  right: 23px;
  display: inline-block;
  background: #fff;
  z-index: 1;
  transition: 0.2s ease-in-out;
}

.sec_more a span {
  display: block;
  padding: 19px 124px 17px 0;
  font-size: 1.4rem;
  line-height: 140%;
  position: relative;
}

.sec_more a span::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 25px);
  right: 0;
  display: inline-block;
}

.sec_more a:hover {
  text-decoration: none;
}

.sec_more a:hover::after {
  transform: scale(1.6);
}

.sec_more a:hover span::after {
  animation: 1.2s ease-out infinite secMoreCircle forwards;
}

.sec_more_wrap-dark {
  display: flex;
  justify-content: flex-end;
}

.sec_more_wrap-dark .sec_more {
  color: #333;
}

.sec_more_wrap-dark .sec_more > a {
  color: #333;
}

.sec_more_wrap-dark .sec_more > a::before,
.sec_more_wrap-dark .sec_more > a::after {
  background: #333;
}

.sec_more_wrap-dark .sec_more > a > span::after {
  border-color: #333;
}

@keyframes secMoreCircle {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes secMoreCircleReverse {
  0% {
    transform: scale(2);
    opacity: 0;
  }

  100% {
    transform: scale(0);
    opacity: 1;
  }
}

#movie {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

#movie video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#fv {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

#fv .inner {
  height: 100vh;
}

#fv h1 {
  width: 236px;
  height: 222px;
  margin: 0 auto;
  padding-top: calc(50vh - 111px);
}

#fv .searchbox {
  width: 600px;
  height: 65px;
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 35px;
  position: absolute;
  bottom: 50px;
  left: calc(50% - 300px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}

#fv .searchbox input {
  border: none;
  text-align: center;
  color: #333;
  background: rgba(0, 0, 0, 0);
}

#fv .searchbox input + span {
  display: none;
}

#fv .searchbox div:first-child {
  width: 260px;
  padding: 10px 10px 10px 0;
  border-right: 1px solid rgba(51, 51, 51, 0.6);
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

#fv .searchbox div:nth-child(2) {
  width: 206px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

#fv .searchbox div:nth-child(2) input {
  width: 100%;
  padding: 14px 0;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1;
}

#fv .searchbox div:last-child {
  width: 120px;
  transition: all 0.3s;
}

#fv .searchbox div:last-child:hover {
  opacity: 0.7;
}

#fv .searchbox div:last-child input {
  width: 100%;
  height: 100%;
  padding: 14px 0;
  border-radius: 45px;
  box-sizing: border-box;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  font-weight: 200;
  color: #fff;
  background: #333;
}

#fv .searchbox div:last-child input:hover {
  text-decoration: none;
}

@keyframes fvFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#about {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
  background: rgba(51, 51, 51, 0.8);
}

#about .sec_title {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#about .sec_title p > img {
  width: 145px;
}

#about .sec_title h2 {
  color: #fff;
}

#about .inner .catch {
  margin-top: 76px;
  font-size: 2.4rem;
  line-height: 200%;
  color: #fff;
}

#about .inner p {
  margin-top: 34px;
  font-size: 1.6rem;
  line-height: 200%;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#about .sec_more a {
  color: #fff;
}

#about[data-object="active"] .sec_title {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.4s;
}

#about[data-object="active"] .inner p {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.5s;
}

#about[data-object="active"] .inner p:nth-child(2) {
  transition-delay: 0.7s;
}

#about[data-object="active"] .inner p:nth-child(3) {
  transition-delay: 0.8s;
}

#about[data-object="active"] .inner p:nth-child(4) {
  transition-delay: 0.9s;
}

#stayfood {
  width: 100%;
  padding: 80px 0 94px;
  background: #e9ece7;
  position: relative;
  z-index: 2;
}

#stayfood .sec_title {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#stayfood .sec_title p > img {
  width: 263px;
}

#stayfood .slider {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
  margin-top: 32px;
}

#stayfood .slider img {
  width: 100%;
}

#stayfood .slick-dots {
  width: 100%;
  max-width: 1000px;
  margin: 22px auto 0;
  display: flex;
  justify-content: flex-end;
}

#stayfood .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 0 0 8px;
  padding: 0;
  border-radius: 50%;
  background: #999;
  transition: all 0.3s;
  cursor: pointer;
}

#stayfood .slick-dots li.slick-active {
  background: #333;
}

#stayfood .slick-dots li button {
  width: 10px;
  height: 10px;
  border: 0;
  outline: 0;
  font-size: 0;
  line-height: 0;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
}

#stayfood .inner > .t1 {
  margin: 44px auto 0;
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 200%;
  color: #000;
}

#stayfood .inner .t1,
#stayfood .inner .t2 {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#stayfood .inner .t3 {
  margin: 80px 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#stayfood .inner .t3 p {
  font-size: 3rem;
  line-height: 1.3;
}

#stayfood .btnarea {
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
}

#stayfood .btnarea p {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
  width: 140px;
  height: 44px;
}

#stayfood .btnarea p + p {
  margin-left: 30px;
}

#stayfood .btnarea p a {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4em;
  line-height: 100%;
  color: #fff;
  background: #333;
  transition: all 0.3s;
}

#stayfood .btnarea p a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  bottom: 18px;
  right: 23px;
  background: #fff;
  transition: all 0.3s;
}

#stayfood .btnarea p a:hover {
  text-decoration: none;
  background: #728786;
}

#stayfood .btnarea p a:hover::after {
  right: 15px;
}

#stayfood[data-object="active"] .sec_title {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.4s;
}

#stayfood[data-object="active"] .slider {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.6s;
}

#stayfood[data-object="active"] .inner .t1 {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.7s;
}

#stayfood[data-object="active"] .inner .t2 {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.8s;
}

#stayfood[data-object="active"] .btnarea p {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.9s;
}

#stayfood[data-object="active"] .btnarea p:nth-child(2) {
  transition-delay: 1s;
}

#stayfood[data-object="active"] .btnarea p:nth-child(3) {
  transition-delay: 1.1s;
}

#news {
  width: 100%;
  padding: 92px 0 214px;
  background: #fff;
  position: relative;
  z-index: 2;
}

#news .sec_title {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#news .sec_title p > img {
  width: 103px;
}

#news .sec_more_wrap-dark {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#news .news_cont {
  margin: 22px 0 auto;
  display: flex;
  justify-content: flex-start;
}

#news .news_cont li {
  width: 30.66%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#news .news_cont li + li {
  margin-left: 4.01%;
}

#news .news_cont li a {
  color: #000;
}

#news .news_cont li a:hover {
  text-decoration: none;
}

#news .news_cont li a p:first-child {
  line-height: 0;
}

#news .news_cont li a p:nth-child(2) {
  margin-top: 22px;
  padding: 0 3.26%;
  box-sizing: border-box;
  font-size: 1.2rem;
  line-height: 120%;
  color: #000;
}

#news .news_cont li a p:last-child {
  margin-top: 15px;
  padding: 0 3.26%;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 160%;
  color: #000;
}

#news[data-object="active"] .sec_title {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.4s;
}

#news[data-object="active"] .sec_more_wrap-dark {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.6s;
}

#news[data-object="active"] .news_cont li {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.7s;
}

#news[data-object="active"] .news_cont li:nth-child(2) {
  transition-delay: 0.8s;
}

#news[data-object="active"] .news_cont li:nth-child(3) {
  transition-delay: 0.9s;
}

#instagram {
  width: 100%;
  padding: 80px 0 162px;
  background: #efefef;
  position: relative;
  z-index: 2;
}

#instagram .sec_title {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#instagram .sec_title p > img {
  width: 212px;
}

#instagram .instagram_cont {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
  margin-top: 66px;
}

#instagram .instagram_cont li {
  margin: 0 6px;
}

#instagram .instagram_cont li img {
  width: 100%;
}

#instagram .btn {
  margin: 68px auto 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#instagram .btn a {
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#instagram .btn a:hover {
  text-decoration: none;
}

#instagram .btn a:hover span {
  opacity: 0.7;
}

#instagram .btn img {
  width: 30px;
}

#instagram .btn span {
  display: block;
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 140%;
  text-align: center;
  transition: all 0.3s;
  padding: 0 15px 0 0;
  position: relative;
}

#instagram .btn span::after {
  position: absolute;
  top: 50%;
  right: 1px;
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  margin-top: 0px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}

#instagram[data-object="active"] .sec_title {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.4s;
}

#instagram[data-object="active"] .instagram_cont {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.6s;
}

#instagram[data-object="active"] .btn {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.7s;
}

#faq {
  width: 100%;
  padding: 118px 0 140px;
  position: relative;
  z-index: 2;
}

#faq::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(219, 221, 216, 0.9);
}

#faq::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: no-repeat center/cover url("../img/index/faq_bg.jpg");
}

#faq .sec_title {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#faq .sec_title p > img {
  width: 84px;
}

#faq .faq_cont {
  width: 62.5%;
  margin: 110px 0 0 auto;
}

#faq .faq_cont dl div {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
  border-top: 1px solid #fff;
}

#faq .faq_cont dl div:last-child {
  border-bottom: 1px solid #fff;
}

#faq .faq_cont dl div dt {
  font-size: 1.6rem;
  line-height: 140%;
  padding: 28px 20px 26px;
  box-sizing: border-box;
  position: relative;
  color: #333;
  cursor: pointer;
}

#faq .faq_cont dl div dt::before,
#faq .faq_cont dl div dt::after {
  content: "";
  width: 13px;
  height: 1px;
  position: absolute;
  top: calc(50% - 1px);
  right: 25px;
  display: inline-block;
  background: #333;
}

#faq .faq_cont dl div dt::after {
  transform: rotate(90deg);
  transition: all 0.3s;
}

#faq .faq_cont dl div dt.active::after {
  transform: rotate(180deg);
}

#faq .faq_cont dl div dd {
  display: none;
  margin: 0 20px 40px;
  padding: 24px 24px 26px;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 160%;
  color: #333;
  background: #fff;
}

#faq .sec_more_wrap-dark {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#faq[data-object="active"] .sec_title {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.4s;
}

#faq[data-object="active"] dl div {
  opacity: 1;
  transform: translateY(0px);
}

#faq[data-object="active"] dl div:nth-child(1) {
  transition-delay: 0.45s;
}

#faq[data-object="active"] dl div:nth-child(2) {
  transition-delay: 0.5s;
}

#faq[data-object="active"] dl div:nth-child(3) {
  transition-delay: 0.55s;
}

#faq[data-object="active"] dl div:nth-child(4) {
  transition-delay: 0.6s;
}

#faq[data-object="active"] dl div:nth-child(5) {
  transition-delay: 0.65s;
}

#faq[data-object="active"] dl div:nth-child(6) {
  transition-delay: 0.7s;
}

#faq[data-object="active"] dl div:nth-child(7) {
  transition-delay: 0.75s;
}

#faq[data-object="active"] dl div:nth-child(8) {
  transition-delay: 0.8s;
}

#faq[data-object="active"] .sec_more_wrap-dark {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1.4s;
}

#location {
  width: 100%;
  padding: 70px 0 100px;
  background: #efefef;
  position: relative;
  z-index: 2;
}

#location .sec_title {
  margin: 0 auto 42px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#location .sec_title > p > img {
  width: 167px;
}

#location .inner p {
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#location .inner p:last-child {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 200%;
}

#location .sec_more_wrap-dark {
  margin-top: 30px;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.97, 0, 0.5, 1);
}

#location[data-object="active"] .sec_title {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.4s;
}

#location[data-object="active"] .inner p {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.5s;
}

#location[data-object="active"] .inner p:nth-child(2) {
  transition-delay: 0.7s;
}

#location[data-object="active"] .sec_more_wrap-dark {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.8s;
}

@media screen and (max-width: 767px) {
  .sec_title {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
  }

  .sec_title h2 {
    margin-top: 20px;
    margin-left: 11px;
  }

  .sec_more {
    margin-top: 56px;
    position: relative;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1;
  }

  #movie {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }

  #movie video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }

  #fv {
    width: 100%;
    height: 100vh;
    animation: fvFadeIn 1s ease-out;
  }

  #fv .inner {
    height: 100vh;
    box-sizing: border-box;
  }

  #fv h1 {
    width: 118px;
    height: 111px;
    margin: 0 auto;
    padding-top: calc(50vh - 55px);
  }

  #fv .searchbox {
    width: 90%;
    height: 65px;
    margin: 0 auto;
    padding: 0 10px;
    border-radius: 35px;
    box-sizing: border-box;
    position: absolute;
    bottom: 30px;
    left: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    display: none;
  }

  #fv .searchbox div:first-child {
    width: 43.33%;
  }

  #fv .searchbox div:nth-child(2) {
    width: 34.33%;
  }

  #fv .searchbox div:last-child {
    width: 20%;
  }

  #about {
    width: 100%;
    height: 100vh;
  }

  #about .sec_title p > img {
    width: 96px;
  }

  #about .inner p {
    font-size: 1.4rem;
  }

  #about .inner .catch {
    margin-top: 38px;
    font-size: 2rem;
  }

  #stayfood {
    padding: 40px 0 47px;
  }

  #stayfood .sec_title p > img {
    width: 175px;
  }

  #stayfood .slick-dots {
    width: 100%;
    max-width: 1000px;
    margin: 11px auto 0;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
  }

  #stayfood .inner .t3 p {
    font-size: 1.8rem;
  }

  #stayfood .inner > .t1 {
    font-size: 1.4rem;
  }

  #stayfood .btnarea {
    margin: 48px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #stayfood .btnarea p {
    width: 140px;
    height: 44px;
  }

  #news {
    width: 100%;
    padding: 46px 0 107px;
  }

  #news .sec_title {
    order: 1;
  }

  #news .sec_title p > img {
    width: 68px;
  }

  #news .inner {
    display: flex;
    flex-direction: column;
  }

  #news .sec_more_wrap-dark {
    order: 2;
  }

  #news .news_cont {
    margin: 44px 0 auto;
    display: flex;
    justify-content: flex-start;
    order: 1;
  }

  #news .news_cont li {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  #news .news_cont li + li {
    margin-left: 0;
  }

  #news .news_cont li a p:first-child img {
    width: 100%;
  }

  #instagram {
    width: 100%;
    padding: 40px 0 81px;
  }

  #instagram .sec_title p > img {
    width: 141px;
  }

  #instagram .btn {
    margin: 34px auto 0;
  }

  #faq {
    width: 100%;
    padding: 59px 0 70px;
  }

  #faq .sec_title p > img {
    width: 56px;
  }

  #faq .faq_cont {
    width: 100%;
    margin: 55px 0 0 auto;
  }

  #faq .faq_cont dl div dt {
    padding: 18px 50px 17px 20px;
    font-size: 1.4rem;
  }

  #faq .faq_cont dl div dd {
    margin: 0 20px 26px;
    padding: 16px 24px 17px;
    font-size: 1.4rem;
  }

  #location {
    width: 100%;
    padding: 35px 0 50px;
  }

  #location .sec_title p > img {
    width: 111px;
  }

  #location .inner p:last-child {
    font-size: 1.4rem;
    margin-top: 20px;
  }

  #location .sec_more_wrap-dark {
    margin-top: 0;
  }
}

/*# sourceMappingURL=index.min.css.map */
