@charset "UTF-8";
/* ==========================================================================//
//
// lookbook
//
// ========================================================================== */
.tab_area {
  margin-bottom: 40px;
  border-bottom: 1px solid #E6E6E6;
}
@media all and (min-width: 751px) {
  .tab_area {
    margin-bottom: 90px;
  }
}
.tab_area .tab_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .tab_area .tab_list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.tab_area .tab_list .tab {
  position: relative;
  width: 33.3%;
  padding-bottom: 15px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .tab_area .tab_list .tab {
    max-width: 250px;
    padding-bottom: 23px;
    font-size: 20px;
  }
}
.tab_area .tab_list .tab::before {
  opacity: 0;
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: -1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tab_area .tab_list .tab.active {
  pointer-events: none;
}
.tab_area .tab_list .tab.active::before {
  opacity: 1;
}
@media (min-width: 751px) and (hover: hover) {
  .tab_area .tab_list .tab:hover {
    opacity: 0.6;
  }
}

.panel_area .panel {
  display: none;
  opacity: 0;
  min-height: 100vh; /* ちらつき対策 */
}
.panel_area .panel.active {
  display: block;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s; /* ちらつき対策 */
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}