@charset "utf-8";

/* brand style */
.brand {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.brand > h3 {
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: bold;
}
.brand > h3::after {
  display: inline-block;
  content: " ";
  clear: both;
  
  position: absolute;
  top: 50%; 
  right: 0;
  left: 150px;
  transform: translateY(-50%);
  
  height: 15px;
  background-color: #373737;
}
.brand .container {
  display: flex;
  gap: 40px;
  margin: 60px auto;
}
.brand .container .box {
  position: relative;
  flex: 1;
  height: 250px;
  background-color: #373737;
  cursor: pointer;
}
.brand .container .box:nth-child(1) {
  background: url("../image/common/more_hansot.jpg") no-repeat center;
  background-size: cover;
}
.brand .container .box:nth-child(2) {
  background: url("../image/common/more_event.jpg") no-repeat center;
  background-size: cover;
}
.brand .container .box:nth-child(3) {
  background: url("../image/common/more_news.jpg") no-repeat center; 
  background-size: cover;
}
.brand .container .box > a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -10000px;
}
.brand .container .box p {
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  
  padding: 20px;
  font-weight: bold;
  color: #fcfdfb;
  background-color: #373737;
}
.brand .container .box p::after {
  display: inline-block;
  content: " ";
  clear: both;

  width: 12px;
  height: 12px;
  background: url("../image/icon/iconmonstr-arrow-25-48_white.png") no-repeat center;
  background-size: cover;
  transition: 0.5s;
}
.brand .container .box:hover p {
  color: #f5ca00; transition: 0.5s;
}
.brand .container .box:hover p:after {
  background: url("../image/icon/iconmonstr-arrow-25-48_gold.png")no-repeat center;
  background-size: cover;
}


/* tablet - 768px ~ 1023px*/
@media (min-width: 768px) and (max-width: 1023px) {
  .brand .container {
    gap: 20px;
  }
  .brand .container .box p {  
    padding: 10px 20px;
  }
}

/* mo -  ~ 767px*/
@media all and (max-width: 767px) {
  .brand {
    display: none;
  }
}