.fre_slide_sec {
  overflow: hidden;
  padding-bottom: 1rem;
}

.fre_slide_wrap {
  --fre-img-asp: calc(5/8);
  --fre-img-h: 288px;
  --fre-img-w: calc(var(--fre-img-h)*var(--fre-img-asp));
  --fre-bg-base:#000000;
  width: 100vw;
  height: var(--fre-img-h);
  overflow: hidden;
  position: relative;
  cursor: grab;
}
@media screen and (min-width: 768px) {
  .fre_slide_wrap {
    --fre-img-h: 480px;
  }
}
.fre_slide_wrap:active {
  cursor: grabbing;
}
.fre_slide {
  transition-timing-function: linear !important;
}
.fre_slide_item {
  width: var(--fre-img-w);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.fre_slide_inner {
  display: block;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.5019607843) 0%, rgba(255, 255, 255, 0) 70%), var(--fre-bg-base);
  position: relative;
  overflow: hidden;
}
.fre_slide_inner:hover {
  opacity: 1;
}
.fre_slide_inner:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 20px 6px rgba(0, 0, 0, 0.2666666667));
}
.fre_slide img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: 0.5s;
  transform-origin: center 40%;
  filter: drop-shadow(0 10px 3px rgba(0, 0, 0, 0.5333333333));
}
.fre_slide_name {
  --sha-clr:#000;
  width: 160%;
  padding: 0.1rem 0.6rem;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: right;
  text-shadow: 2px 2px 0 var(--sha-clr), -2px 2px 0 var(--sha-clr), 2px -2px 0 var(--sha-clr), -2px -2px 0 var(--sha-clr), 2px 0 0 var(--sha-clr), -2px 0 0 var(--sha-clr), 0 2px 0 var(--sha-clr), 0 -2px 0 var(--sha-clr);
  position: absolute;
  right: 100%;
  bottom: 0;
  transform-origin: right bottom;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .fre_slide_name {
    font-size: 2rem;
  }
}
.fre_slide_name_en {
  color: #FFF;
  font-size: 7.5rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  line-height: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-wrap-mode: nowrap;
  position: absolute;
  top: 0;
  left: 100%;
  transform: rotate(90deg);
  transform-origin: left top;
}
