@charset "UTF-8";

#gallery{
  position: relative;
  padding: 0 0 140px;
  padding-top: 240px;
  z-index: 1;
}

#gallery .area {
  max-width: 1240px;
  padding: 0 20px;
  opacity: 0;
}

#gallery .area ul{
  margin-top: 100px;
}

#gallery .area ul li{
  padding-left: 15px;
  background: url(/sustainableproducts/shared/images/about_circle.png) 0 9.5px / 7px no-repeat;
}

#gallery .area ul li + li {
  margin-top: 26px;
}

#gallery .area ul li a{
  position: relative;
  color: #222;
  text-decoration: underline;
  line-height: 1.5;
}

#gallery .area ul li a::after{
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  background: url(/sustainableproducts/shared/images/icon-external.png) center center / 32px no-repeat;
  vertical-align: middle;
  content: "";
}


#gallery .box > a{
  position: relative;
  width: 100%;
  max-width: 780px;
  height: 107px;
  margin: 100px auto 0;
  border: solid 1px #DBDBDB;
  border-radius: 10px;
  font-weight: 500;
  line-height: 2;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

#gallery .box > a:before {
  pointer-events: none;
  display: block;
  content: '';
  width: 1.7777778em;
  height: 1.7777778em;
  border-radius: 50%;
  background-color: #222;
  position: absolute;
  right: 0.85em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

#gallery .box > a::after {
  pointer-events: none;
  display: block;
  content: '';
  width: 0.4em;
  height: 0.4em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 1.6em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 3;
  transition: border .2s ease-out;
}

@media only screen and (min-width: 769px) { 
  #gallery .box ul li a:hover{
    text-decoration: none;
  }

  #gallery .box > a:hover {
    border: solid 1px #222;
  }
}

@media only screen and (max-width: 768px) {
  #gallery{
    padding: 0 0 60px;
    padding-top: 100px;
  }

  #gallery .area ul {
    margin-top: 25px;
  }

  #gallery .area ul li a::after{
    width: 24px;
    height: 24px;
    background: url(/sustainableproducts/shared/images/icon-external.png) center center / 24px no-repeat;
  }

  #gallery .box > a{
    height: 70px;
    margin: 50px auto 0;
    padding-left: 30px;
    border-radius: 5px;
    font-size: .81em;
    justify-content: left;
  }

  #gallery .box > a:before {
    right: 20px;
  }
  
  #gallery .box > a::after {
    right: 30px;
  }
}