
.fv_wap__box {
    display: flex;
    justify-content: space-between;;
    gap: 3rem;
    
}


#fv_wap {
  height: 40rem;

    overflow: hidden;
    position: relative;
    width: 50%;
}

.fv_slide {
  position: absolute;
  width: 100%;
  height: 0.1vw;
  top: 50%;
  bottom: 50%;
  left: -150%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.fv_wap__text {
  width: 40%;
}

.fv_wap__text__en {
  
}

.fv_wap__text__ja {
  margin-bottom: 4rem;
}

.fv_wap__text__detail {
  margin-bottom: 4rem;
}

.fv_slide_inner {
  display: block;
  height: 100%;
}

.fv_slide_fig {
  height: 100%;
}

.fv_slide_inner:hover img {
  filter: grayscale(0%);
}


.fv_slide_item_wap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.6s ease 0s;
  z-index: 2;
}

.fv_slide_item_wap img{
  width: 100%;
  
    object-fit: cover;
    height: 100%;
}

.fv_slide_item {
  padding: 2% 5%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  color: #000;
  text-align: center;
  transition: all 0.6s ease 0s;
  font-size: 2vw;
}

.fv_slide_inner:hover .fv_slide_item {
  background-color: rgba(255, 255, 255, 1);
  transform: scale(1.1, 1.1);
}





{# CTA #}

.fv_wap__cta {
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    background: transparent;
    border: 3px solid #333;
    box-sizing: border-box;
    border-radius: 50%;
    position: relative;
    width: 10rem;
    height: 10rem;
    z-index: 1;
    transition: .3s;
    justify-content: center;
}
{#
.fv_wap__cta {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  padding: 18px 30px;
  border: 3px solid #333;
  box-sizing: border-box;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: .3s;
}
#}
.fv_wap__cta::before {
  content: "";
  width: 104%;
  height: 104%;
  position: absolute;
  top: -2%;
  left: -2%;
  border-radius: 50%;
}
.fv_wap__cta::before {
  background: #333;
  z-index: -1;
  transition: transform ease .3s, opacity .3s;
}
.fv_wap__cta:hover {
  color: #333;
}
.fv_wap__cta:hover::before {
  transform: scale(0);
  opacity: 0;
}

.fv_wap__text__box2 {
    display: flex;
    justify-content: flex-end;
}


@media screen and (max-width :1024px){
  .fv_wap__box {
    flex-direction: column;
    align-items: center;
}
  
  #fv_wap {
    width: 100vw;
    height: 20rem;
}
  
  .fv_slide {
    height: 10rem!important;
  }
  
  .fv_wap__text {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}
  
  .fv_wap__cta {
    font-size: 1.2rem;
    width: 8rem;
    height: 8rem;
}
}


















