.homeMain {
  overflow: hidden;
}

#heroWrap {
  position: relative;
}

#hero {
  position: relative;
  z-index: 1;
}

.heroCatchphrase {
  max-width: 723px;
  width: 85%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.about {
  padding: 50px 0 80px;
}

.aboutColumnBox {
  display: grid;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}

.aboutTitle {
  color: #E15100;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
}
.aboutTitle span {
  background: linear-gradient(transparent 60%, #FFFA8A 0%);
  padding: 0 8px 5px;
}

.aboutColumnImgBox {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 8px 8px #E15100;
  width: 80%;
  max-width: 440px;
  margin: auto;
  overflow: hidden;
}

.aboutColumnImg {
  width: 100%;
}

.search {
  background-color: #FFF4DF;
  padding: 70px 0 100px;
  position: relative;
}
.search:before {
  content: "";
  display: block;
  background-image: url(../images/icon-corner-01.svg);
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 1;
}
.search:after {
  content: "";
  display: block;
  background-image: url(../images/icon-vehicle-01.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  height: 80px;
  position: absolute;
  top: -5%;
  right: 5%;
  z-index: 1;
}

.searchTitle {
  margin-bottom: 30px;
}

.searchList {
  display: grid;
  gap: 20px;
  max-width: 450px;
  margin: auto;
}

.searchListItem {
  width: 100%;
  padding-right: 10px;
}

.searchLink {
  background-color: #fff;
  border: 2px solid #E15100;
  border-radius: 10px;
  box-shadow: 5px 5px #E15100;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  height: 110px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.searchLink:hover {
  box-shadow: none;
  transform: translate(5px, 5px);
}

.searchLinkText {
  display: grid;
  align-items: center;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  font-size: 2rem;
  width: 65%;
  padding: 0 10px 0 1.4rem;
}
.searchLinkText::before {
  content: "";
  display: block;
  background-image: url(../images/icon-arrow-link.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}

.searchLinkTextLabel {
  display: block;
  font-size: 1.4rem;
}

.searchLinkImg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 35%;
  height: 100%;
}

.searchLinkBanner img {
  transition: opacity 0.3s ease;
}
.searchLinkBanner img:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .heroCatchphrase {
    width: 80%;
  }
  .about {
    padding: 80px 0 100px;
  }
  .aboutColumnBox {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
  .aboutTitle {
    font-size: 3rem;
    line-height: 1.4;
  }
  .aboutColumnImgBox {
    max-width: 100%;
  }
  .search {
    padding: 120px 0 200px;
  }
  .search:after {
    width: 300px;
    height: 130px;
  }
  .searchTitle {
    margin-bottom: 60px;
  }
  .searchList {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .searchLink {
    height: 200px;
  }
  .searchLinkText {
    width: 60%;
  }
  .searchLinkImg {
    width: 40%;
  }
}
@media (min-width: 960px) {
  .about {
    padding: 80px 0 150px;
  }
  .aboutColumnBox {
    margin-bottom: 100px;
    gap: 120px;
  }
  .aboutTitle {
    font-size: 4rem;
    text-align: left;
  }
  .search {
    padding: 120px 0 250px;
  }
  .search:before {
    width: 200px;
    height: 200px;
  }
  .searchLinkText {
    grid-template-columns: 30px 1fr;
    gap: 15px;
    font-size: 2.4rem;
    padding: 0 10px 0 2.6rem;
  }
  .searchLinkText::before {
    width: 30px;
    height: 30px;
  }
  .searchLinkTextLabel {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=index.css.map*/