@charset "UTF-8";
@keyframes fadeIn {
  0% {opacity: 0}
  60% {opacity: 1}
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  60% {opacity: 1}
}
@keyframes fadeIn2 {
  0% {opacity: 0}
  60% {opacity: 1}
}

@-webkit-keyframes fadeIn2 {
  0% {opacity: 0}
  60% {opacity: 1}
}
@keyframes fadeIn3 {
  0% {opacity: 0}
  60% {opacity: 1}
}

@-webkit-keyframes fadeIn3 {
  0% {opacity: 0}
  60% {opacity: 1}
}
/*******************モーダル*************************/
@keyframes mmfadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
  from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mmslideIn {
from { transform: translateY(15%); }
  to { transform: translateY(0); }
}

@keyframes mmslideOut {
  from { transform: translateY(0); }
  to { transform: translateY(-10%); }
}

.micromodal-slide {
display: none;
}

.micromodal-slide.is-open {
display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
will-change: transform;
}

/* ==========================================================================
共通
========================================================================== */ 
  html {
    scroll-padding-top: 88px;
  }
  
  .fadein_left {
    opacity : 0;
    transform : translateX(-30px);
    transition : all 1000ms;
    }
  .fadein_right{
    opacity : 0;
    transform : translateX(30px);
    transition : all 1000ms;
    }
  .fadein_bottom{
    opacity : 0;
    transform : translate(0px, 20px);
    transition : all 1000ms;
    }

  /* 画面内に入った状態 */
  .fadein_left.scrollin,
  .fadein_right.scrollin,
  .fadein_bottom.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }
    .bg_gr{
      background: #f2f2f2;
    }
    .slide-in {
      overflow: hidden;
        display: inline-block;
    }
    
    .slide-in_inner {
      display: inline-block;
    }
    
    /*左右のアニメーション*/
    .leftAnime{
        opacity: 0;/*事前に透過0にして消しておく*/
        transform : translate(0px, 300px);
    }
    
    .slideAnimeLeftRight {
      animation-name:slideTextX100;
      animation-duration:0.8s;
      animation-fill-mode:forwards;
        opacity: 0;
    }
    
    @keyframes slideTextX100 {
      from {
      transform: translateX(-100%); /*要素を左の枠外に移動*/
            opacity: 0;
      }
    
      to {
      transform: translateX(0);/*要素を元の位置に移動*/
        opacity: 1;
      }
    }
    
    .slideAnimeRightLeft {
      animation-name:slideTextX-100;
      animation-duration:0.8s;
      animation-fill-mode:forwards;
        opacity: 0;
    }
    
    
    @keyframes slideTextX-100 {
      from {
      transform: translateX(100%);/*要素を右の枠外に移動*/
        opacity: 0;
      }
    
      to {
      transform: translateX(0);/*要素を元の位置に移動*/
        opacity: 1;
      }
    }

    .wave{
      position: relative;
    }
    
    .wave canvas{
      position: absolute;
      bottom: -10px;
      left:0;
      width: 100%;
      opacity: .4;
    }
    .caution {
      font-size: 0.6em;
      vertical-align: super;
    }
    
    .material-symbols-outlined {
      position: relative;
      bottom: 4px;
      font-variation-settings:
      'FILL' 0,
      'wght' 300,
      'GRAD' 0,
      'opsz' 20
    }
    .material-symbols-outlined {
      font-variation-settings:
      'FILL' 0,
      'wght' 300,
      'GRAD' 0,
      'opsz' 20
    }
/**************************\
  モーダルアニメーション
\**************************/
@keyframes mmfadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
  from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(3%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
  from { transform: translateY(0); }
  to { transform: translateY(-3%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .5s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .5s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .5s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .5s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* ==========================================================================
スマートフォン
========================================================================== */ 
@media (max-width: 768px) {
  .brands__slider-wrap{
    overflow: hidden;
  }
  .brands_wrap{
    margin-top: 90px;
    /*background-image: url("../img/wave.jpg");
    background-position: 0px 30px;
    background-size: cover;
    background-color:rgba(255,255,255,0.7);*/
    background-blend-mode:lighten;
    position: relative;
    margin-top: 120px;
  }
  
  .brands_wrap h2{
    text-align:center;
    font-size: 1.7rem;
    letter-spacing: .5rem;
    font-weight: 500;
    margin-bottom: 60px;
  }

  .brands_wrap span.bg_text::after{
    content: "Our Brands";
    display: block;
    width: 100%;
    position: absolute;
    top:-40px;
    right: 0;
    left: 0;
    margin: 0 auto;
    color: #000;
    opacity: .04;
    font-size: 6rem;
    font-weight: 500;
    letter-spacing: -0.1rem;
    font-family: "Shippori Mincho", serif;
  }
  .text_sm{
    text-align: left;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: .6rem;
    line-height: 2em;
    padding: 0 18px 30px;
  }
  *:focus {
    outline: none;
    }

  /*******************モーダル*************************/

.section1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0 80px;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.modal__container {
  padding: 15px;
  max-width: 90%;
  max-height: 100vh;
  border-radius: 10px;
  overflow-y: auto;
  box-sizing: border-box;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  position: relative;
  bottom: -50px;
}
.modal__bg_wgr{
  background-image:url(../img/brand_wg.jpg);
  background-size: cover;
  background-color:rgba(255, 255, 255, 0.6);
  background-blend-mode:darken;
  background-position: center;
}
.modal__bg_kin{
  background-image:url(../img/slide_img02.jpg);
  background-size: cover;
  background-color:rgba(0,0,0,0.3);
  background-blend-mode:darken;
  background-position: center;
}
.modal__bg_imp{
  background-image:url(../img/brand_wg.jpg);
  background-size: cover;
  background-color:rgba(0,0,0,0.3);
  background-blend-mode:darken;
  background-position: center;
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 43%;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
  font-size: 2rem;
}

.modal__header .modal__close:before { content: "\2715"; color: #333; }

.modal__content {
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: rgba(0,0,0,.8);
  text-align: center;
}
.modal__content img{
  width: 60%;
}
.modal__content p{
  padding: 7% 0;
  font-size: 1.3rem;
  color: #222;
  text-align: left;
}
.modal__content .list_box{
  background: rgba(0,0,0,.3);
  padding: 3% 3% 5%;
  border-radius: 10px;
}
.modal__content h3{
  padding: 0 0 2%;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
.modal__content .list_box ul{
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.modal__content .list_box ul li{
  font-size: 1.2rem;
}
.modal__content .list_box ul li a{
  display: block;
  padding: 6px 8px;
  color: #fff;
  border-radius: 5px;
  border: 1px #fff solid;
  transition: .2s;
}
.modal__content .list_box ul li a:hover{
  color: #48BCC9;
  border: 1px #48BCC9 solid;
}

.modal__content .list_box2{
  padding: 3%;
}
.modal__content .list_box2 ul{
  display: flex;
  justify-content: center;
}
.modal__content .list_box2 ul li{
  font-size: 1.4rem;
}
.modal__content .list_box2 ul li a{
  display: block;
  padding: 10px 40px;
  color: #333;
  border-radius: 5px;
  border: 1px #333 solid;
  letter-spacing: .05rem;
  text-decoration: none;
}

.modal__btn {
  padding: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: hidden;
  margin: 0;
  width: 50%;
  position: relative;
  object-fit: cover;
  object-position: center;
  display: block;
  
  transition: .5s;
}
.modal__btn .modal_logo{
  width: 150px;
  position: absolute;
  bottom:42%;
  left:7%;
  display: block;
  z-index: 1;
}
.modal__btn .modal_logo2{
  width: 150px;
  position: absolute;
  bottom:26%;
  left:7%;
  display: block;
  z-index: 1;
}

.modal__btn .modal_logo_wgr{
  width: 75%;
  position: absolute;
  bottom:46%;
  left:13%;
  display: block;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
  z-index: 1;
}
.modal__btn .modal_logo_kin{
  width: 75%;
  position: absolute;
  bottom:46%;
  left:14%;
  display: block;
  z-index: 1;
}
.modal__btn .modal_logo_imp{
  width: 45%;
  position: absolute;
  bottom:41%;
  left:35%;
  display: block;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
  z-index: 1;
}
.modal__btn .modal_logo_gio{
  width: 60%;
  position: absolute;
  bottom:47%;
  left:19%;
  display: block;
  z-index: 1;
}
.modal__btn .modal_logo_sar{
  width: 75%;
  position: absolute;
  bottom:45%;
  left:12%;
  display: block;
  z-index: 1;
}
.modal__btn .modal_logo_cyr{
  width: 60%;
  position: absolute;
  bottom:40%;
  left:27%;
  display: block;
  z-index: 1;
}
.modal__btn .modal_logo_pab{
  width: 73%;
  position: absolute;
  bottom:40%;
  left:13%;
  display: block;
  z-index: 1;
}
.modal__btn .modal_logo_bnm{
  width: 70%;
  position: absolute;
  bottom:47%;
  left:16%;
  display: block;
  z-index: 1;
}
.modal__btn .modal_logo_mat{
  width: 70%;
  position: absolute;
  bottom:44%;
  left:14%;
  display: block;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
  z-index: 1;
}

.modal__btn .modal_img{
  filter: brightness(.9);
}

}


/* ==========================================================================
デスクトップ
========================================================================== */ 
@media (min-width: 1025px) {
  body{
    width: 100%!important;
  }
  section{
    padding: 60px 0 250px;
  }
  
  .brands_wrap{
    /*background-image: url("../img/wave.jpg");
    background-position: 0px 30px;
    background-size: cover;
    background-color:rgba(255,255,255,0.7);*/
    background-blend-mode:lighten;
    position: relative;
    margin-top: 200px;
    background: #fff;
    text-align: center;
  }
  .brands_wrap h2{
    text-align:center;
    font-size: 2rem;
    letter-spacing: .5rem;
    font-weight: 500;
    margin-bottom: 80px;
  }

  .brands_wrap span.bg_text::after{
    content: "Our Brands";
    display: block;
    position: absolute;
    top:-60px;
    right: 0;
    left: 0;
    margin: 0 auto;
    color: #000;
    opacity: .04;
    font-size: 8rem;
    font-weight: 500;
    letter-spacing: -0.1rem;
    font-family: "Shippori Mincho", serif;
  }
  .text_sm{
    text-align: center;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: .6rem;
    line-height: 3em;
    padding-bottom: 15px;
  }

/*******************モーダル*************************/

.section1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:2.5rem;
  flex-wrap: wrap;
  width: 1100px;
  margin: 0 auto;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.modal__container {
  padding: 0px;
  max-width: 1200px;
  max-height: 100vh;
  border-radius: 10px;
  overflow-y: auto;
  box-sizing: border-box;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  position: relative;
  bottom: -50px;
}
.modal__bg1{
  background-image:url(../img/modal_img1.jpg);
  background-size: cover;
  background-color:rgba(0,0,0,0.5);
  background-blend-mode:darken;
  background-position: center;
}
.modal__bg2{
  background-image:url(../img/modal_img2.jpg);
  background-size: cover;
  background-color:rgba(0,0,0,0.5);
  background-blend-mode:darken;
  background-position: top;
}
.modal__bg3{
  background-image:url(../img/modal_img3.jpg);
  background-size: cover;
  background-color:rgba(0,0,0,0.5);
  background-blend-mode:darken;
  background-position: center;
}

@media screen and (max-width: 480px) { 
.modal__container {
  max-height: 30vh;
  max-width: 300px;
}
}

.modal__header {
  position: absolute;
  top: 10px;
  right: 10px;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 46%;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before { content: "\2715"; color: #fff; }

.modal__content {
  display: flex;
  line-height: 2;
  color: rgba(0,0,0,.8);
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.modal__img{
  max-width: 45%;
}
.modal__content img{
  width: 100%;
}
.modal__text{
  max-width: 55%;
}
.modal__text img{
  max-width:150px;
  margin-top: 60px;
}
.modal__text .wg_logo,
.modal__text .kin_logo,
.modal__text .srhy_logo{
  max-width:230px;
}
.modal__text p{
  padding: 7%;
  font-size: 1.4rem;
  color: #fff;
  text-align: left;
}
.modal__content .list_box{
  background: rgba(0,0,0,.3);
  padding: 3% 3% 5%;
  border-radius: 10px;
}
.modal__content h3{
  padding: 0 0 2%;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
.modal__content .list_box ul{
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.modal__content .list_box ul li{
  font-size: 1.2rem;
}
.modal__content .list_box ul li a{
  display: block;
  padding: 6px 10px;
  color: #fff;
  border-radius: 5px;
  border: 1px #fff solid;
  transition: .2s;
}
.modal__content .list_box ul li a:hover{
  color: #48BCC9;
  border: 1px #48BCC9 solid;
}

.modal__content .list_box2{
  padding: 3%;
}
.modal__content .list_box2 ul{
  display: flex;
  justify-content: center;
}
.modal__content .list_box2 ul li{
  font-size: 1.4rem;
}
.modal__content .list_box2 ul li a{
  display: block;
  padding: 10px 40px;
  color: #fff;
  border-radius: 5px;
  border: 1px #fff solid;
  transition: .2s;
  letter-spacing: .05rem;
}
.modal__content .list_box2 ul li a:hover{
  color: #48BCC9;
  border: 1px #48BCC9 solid;
}

.modal__btn {
  padding: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: hidden;
  margin: 0;
  width: 350px;
  height: 420px;
  position: relative;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(0.6) brightness(0.95);
  transition: .5s;
}
.modal__btn .modal_logo_wgr{
  width: 180px;
  position: absolute;
  bottom:46%;
  left:90px;
  display: block;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
}
.modal__btn .modal_logo_kin{
  width: 190px;
  position: absolute;
  bottom:46%;
  left:85px;
  display: block;
}
.modal__btn .modal_logo_imp{
  width: 120px;
  position: absolute;
  bottom:41%;
  left:120px;
  display: block;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
}
.modal__btn .modal_logo_gio{
  width: 150px;
  position: absolute;
  bottom:47%;
  left:105px;
  display: block;
}
.modal__btn .modal_logo_sar{
  width: 200px;
  position: absolute;
  bottom:45%;
  left:75px;
  display: block;
}
.modal__btn .modal_logo_cyr{
  width: 160px;
  position: absolute;
  bottom:40%;
  left:100px;
  display: block;
}
.modal__btn .modal_logo_pab{
  width: 160px;
  position: absolute;
  bottom:40%;
  left:95px;
  display: block;
}
.modal__btn .modal_logo_bnm{
  width: 170px;
  position: absolute;
  bottom:46%;
  left:90px;
  display: block;
}
.modal__btn .modal_logo_mat{
  width: 160px;
  position: absolute;
  bottom:44%;
  left:95px;
  display: block;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
}

.modal__btn:hover {
  filter: grayscale(0) brightness(1);
  transform: scale(1.01);
}
}

/* ==========================================================================
タブレット
========================================================================== */ 
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .tablet{
    display: none;
  }
  
  .brands_wrap{
    margin-top: 150px;
    /*background-image: url("../img/wave.jpg");
    background-position: 0px 30px;
    background-size: cover;
    background-color:rgba(255,255,255,0.7);*/
    background-blend-mode:lighten;
    position: relative;
  }
  
  .brands_wrap h2{
    text-align:center;
    font-size: 1.7rem;
    letter-spacing: .5rem;
    font-weight: 500;
    margin-bottom: 60px;
  }

  .brands_wrap span.bg_text::after{
    content: "Our Brands";
    display: block;
    width: 100%;
    position: absolute;
    top:-40px;
    right: 0;
    left: 0;
    margin: 0 auto;
    color: #000;
    opacity: .04;
    font-size: 6.5rem;
    font-weight: 500;
    letter-spacing: -0.1rem;
    font-family: "Shippori Mincho", serif;
  }
  
  .text_sm{
    text-align: left;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: .6rem;
    line-height: 2em;
    padding: 0 28px 30px;
  }
  *:focus {
    outline: none;
    }
  /*******************モーダル*************************/

  .section1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0 130px;
  }
  
  .modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
  }
  
  .modal__container {
    padding: 15px;
    max-width: 90%;
    max-height: 100vh;
    border-radius: 10px;
    overflow-y: auto;
    box-sizing: border-box;
    font-family: "Poppins", "Noto Sans JP", sans-serif;
    position: relative;
    bottom: -50px;
  }
  .modal__bg_wgr{
    background-image:url(../img/brand_wg.jpg);
    background-size: cover;
    background-color:rgba(255, 255, 255, 0.6);
    background-blend-mode:darken;
    background-position: center;
  }
  .modal__bg_kin{
    background-image:url(../img/slide_img02.jpg);
    background-size: cover;
    background-color:rgba(0,0,0,0.3);
    background-blend-mode:darken;
    background-position: center;
  }
  .modal__bg_imp{
    background-image:url(../img/brand_wg.jpg);
    background-size: cover;
    background-color:rgba(0,0,0,0.3);
    background-blend-mode:darken;
    background-position: center;
  }
  
  .modal__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .modal__title {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 43%;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.25;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
  }
  
  .modal__close {
    background: transparent;
    border: 0;
    font-size: 2rem;
  }
  
  .modal__header .modal__close:before { content: "\2715"; color: #fff; }
  
  .modal__content {
    display: flex;
    line-height: 2;
    color: rgba(0,0,0,.8);
    text-align: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .modal__img{
    max-width: 45%;
  }
  .modal__content img{
    width: 100%;
  }
  .modal__text{
    max-width: 55%;
  }
  .modal__text img{
    max-width:150px;
  }
  .modal__text .wg_logo,
  .modal__text .kin_logo,
  .modal__text .srhy_logo{
    max-width:230px;
  }
  .modal__text p{
    padding: 7%;
    font-size: 1.4rem;
    color: #fff;
    text-align: left;
  }
  .modal__content .list_box{
    background: rgba(0,0,0,.3);
    padding: 3% 3% 5%;
    border-radius: 10px;
  }
  .modal__content h3{
    padding: 0 0 2%;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
  }
  .modal__content .list_box ul{
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .modal__content .list_box ul li{
    font-size: 1.2rem;
  }
  .modal__content .list_box ul li a{
    display: block;
    padding: 6px 10px;
    color: #fff;
    border-radius: 5px;
    border: 1px #fff solid;
    transition: .2s;
  }
  .modal__content .list_box ul li a:hover{
    color: #48BCC9;
    border: 1px #48BCC9 solid;
  }
  
  .modal__content .list_box2{
    padding: 3%;
  }
  .modal__content .list_box2 ul{
    display: flex;
    justify-content: center;
  }
  .modal__content .list_box2 ul li{
    font-size: 1.4rem;
  }
  .modal__content .list_box2 ul li a{
    display: block;
    padding: 10px 40px;
    color: #fff;
    border-radius: 5px;
    border: 1px #fff solid;
    transition: .2s;
    letter-spacing: .05rem;
  }
  .modal__content .list_box2 ul li a:hover{
    color: #48BCC9;
    border: 1px #48BCC9 solid;
  }
  
  .modal__btn {
    padding: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: hidden;
    margin: 0;
    width: 33.33333%;
    position: relative;
    object-fit: cover;
    object-position: center;
    display: block;
    
    transition: .5s;
  }
  .modal__btn .modal_logo{
    width: 150px;
    position: absolute;
    bottom:42%;
    left:7%;
    display: block;
    z-index: 1;
  }
  .modal__btn .modal_logo2{
    width: 150px;
    position: absolute;
    bottom:26%;
    left:7%;
    display: block;
    z-index: 1;
  }
  
  .modal__btn .modal_logo_wgr{
    width: 75%;
    position: absolute;
    bottom:46%;
    left:13%;
    display: block;
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
    z-index: 1;
  }
  .modal__btn .modal_logo_kin{
    width: 75%;
    position: absolute;
    bottom:46%;
    left:14%;
    display: block;
    z-index: 1;
  }
  .modal__btn .modal_logo_imp{
    width: 45%;
    position: absolute;
    bottom:41%;
    left:35%;
    display: block;
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
    z-index: 1;
  }
  .modal__btn .modal_logo_gio{
    width: 60%;
    position: absolute;
    bottom:47%;
    left:19%;
    display: block;
    z-index: 1;
  }
  .modal__btn .modal_logo_sar{
    width: 75%;
    position: absolute;
    bottom:45%;
    left:12%;
    display: block;
    z-index: 1;
  }
  .modal__btn .modal_logo_cyr{
    width: 60%;
    position: absolute;
    bottom:40%;
    left:27%;
    display: block;
    z-index: 1;
  }
  .modal__btn .modal_logo_pab{
    width: 73%;
    position: absolute;
    bottom:40%;
    left:13%;
    display: block;
    z-index: 1;
  }
  .modal__btn .modal_logo_bnm{
    width: 70%;
    position: absolute;
    bottom:47%;
    left:16%;
    display: block;
    z-index: 1;
  }
  .modal__btn .modal_logo_mat{
    width: 70%;
    position: absolute;
    bottom:44%;
    left:14%;
    display: block;
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
    z-index: 1;
  }
  
  .modal__btn .modal_img{
    filter: brightness(.9);
  }
  
}