@charset "UTF-8";



/* ---------------------------------- ブランド ---------------------------------- */  


#sec02 .flex {
  position: relative;
  gap: 3em;
  flex-wrap: wrap;
}

#sec02 .flex-item {
  position: relative;
  width: calc(100% / 4 - 2.25em);
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #83B3DA;
  box-shadow: .27em .27em 1.1em rgba(34, 73, 105, 0.2);

  opacity: 0;
  transition: .5s ease all;

}
#sec02 .flex-item_wrap {
  opacity: 0;
  transition: .5s ease all;

}

#sec02 .flex-item.active,
#sec02 .flex-item_wrap.active {
  opacity: 1;
}

#sec02 .flex-item_wrap .flex-item {
  opacity: 1;
}

#sec02 .flex-item.close {
  display: none;
}

#sec02 .flex-item_wrap {
  position: relative;
  width: calc(100% / 4 - 2.25em);
}
#sec02 .flex-item_wrap .flex-item {
  width: 100%;
}

#sec02 .flex-item_wrap p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  box-sizing: border-box;

}

#sec02 .flex-item a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

#sec02 .flex-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


#sec02 .blur-1 {
  position: absolute;
  top: 40%;
  left: -20%;
}

#sec02 .blur-2{
    position: absolute;
    top: 50%;
    right: -38%;
    width: 80%;
}













#more-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  color: #34771E;
  display: flex;
  align-items: center;
  margin: 0 auto;
  opacity: 1;
  transform: scale(1);
  transition: .2s ease all;
}
#more-btn:hover {
  opacity: .5;
  transform: scale(1.1);
}
#more-btn::after {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-left: .25em;
  background: url(../images/more-2.webp) no-repeat center / contain;
}
 

#more-btn.none {
  display: none;
}



 






/*768px以下*/
@media screen and (max-width: 768px){

/* ブランドロゴ */

  #sec02 .flex {
    gap: 1em;
  }

  #sec02 .flex-item,
  #sec02 .flex-item_wrap {
  width: calc(100% / 3 - .7em);
  }






  #sec02 .flex-item:hover img {
    transform: scale(1);
  }

  #sec02 .flex-item:hover {
    box-shadow: .27em .27em 1.1em rgba(34, 73, 105, 0.2);
  }

  #more-btn:hover {
    opacity: 1;
    transform: scale(1);
  }


  #sec02 .sec-in {
    max-width: initial;
  }

  #sec02 .flex-item_wrap p {
    font-size: min(2.5vw , 16px);
  }


}













