@charset "utf-8";

/* banner style */
.banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.banner:after {
  display: block;
  content: "";
  
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

  width: 100%;
  height: 100%;
  background: url("../image/common/brand_img.jpg") no-repeat center;
  background-size: cover;
  transition: 2s;
}
.banner:hover::after {
  transform: scale(1.1);
}
.banner > div {
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.banner > div > .left {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 40px;

  width: 370px;
  height: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
  background-color: rgba(55,55,55,0.9);
}
.banner > div > .left > strong {
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  color: #fcfdfb;
}
.banner > div > .left > p {
  white-space: pre-line;
  line-height: 28px;
  color: #fcfdfb;
}
.banner > div > .left > .shortcuts {
  display: inline-block;
  width: max-content;
  border: 2px solid #fcfdfb;
  font-weight: 700;
  color: #fcfdfb;
}
.banner > div > .left > .shortcuts:hover {
  border: 2px solid #f5ca00;
  color: #f5ca00;
}
.banner > div > .left > .shortcuts a {
  display: block;
  padding: 10px 20px;
}

/* mo -  ~ 767px*/
@media all and (max-width: 767px) {
  .banner {
    height: auto;
  }
  .banner > div {
    padding: 20px;
  }
  .banner > div > .left {
    gap: 20px;
    width: 100%;
    padding: 40px 20px;
  }
  .banner > div > .left > strong {
    font-size: 24px;
    line-height: 32px;
  }
  .banner > div > .left > p {
    font-size: 13px;
    white-space: normal;
    line-height: 24px;
  }
  .banner > div > .left > .shortcuts {
    margin-top: 20px;
  }
}