/* Refactored CSS */

@charset "utf-8";

/* Main */
.main-container {
  width: 100vw;
}

/*====================
 Header 
 ====================*/
.header {
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  display: inline-block;
}

.shop,#story {
  text-align: right;
  margin-right: 5%;
}
#story {
  font-size: 3rem;
  margin-top: 0;
  color: #999;
}

/* ======================
Scroll-box 
========================*/
.scroll-box {
  overflow-x: auto;
  padding-bottom: 10px;
  /* -webkit-overflow-scrolling: touch; */
  height: 100vh;
  display: flex;
  align-items: center;
}

/*========================
 Scrollbar
========================= */
.scroll-box::-webkit-scrollbar {
  height: 4px;
}

.scroll-box::-webkit-scrollbar-track {
  background: #eee;
}

.scroll-box::-webkit-scrollbar-thumb {
  background: #aaa;
  border: none;
}

.scroll-box::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* =========================
f_aria 
===========================*/
.scroll-box .f_area {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}

.scroll-box .f_area .f_one {
  width: 50%;
  /* width: 33.333%; */
  /* flex-shrink: 0; */
}

.scroll-box .f_area .f_one a {
  display: block;
  overflow: hidden;
  backface-visibility: hidden;
}

.scroll-box .f_area .f_one a img {
  max-width: 98%;
  /* max-width: 100%; */
  height: auto;
  vertical-align: top;
  transform: scale(1);
  transition: .5s;

  border: 1px solid #ddd;
}

/* ===========================
Responsive 
=============================*/
@media screen and (max-width: 1160px) {
  .scroll-box {
    overflow-x: auto;
  }
  .scroll-box .f_area {
    justify-content: flex-start;
    overflow-x: scroll;
    padding: 0 0 15px;
  }
  .scroll-box .f_area .f_one {
    flex: 0 0 fit-content;
  }
}

