/* recommend
======================================= */
.recommend__item:nth-child(n+2) {
  margin-top: 3.125em;
}
.recommend__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 3, 6, 0.16);
          box-shadow: 0 0 10px rgba(0, 3, 6, 0.16);
  position: relative;
}
@media (max-width: 768px) {
  .recommend__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.recommend__item a:hover .recommend__item-btn span {
  background-color: #fff;
  color: #007CCF;
}
.recommend__item a:hover .recommend__item-btn span::after {
  border-top: 2.5px solid #007CCF;
  border-right: 2.5px solid #007CCF;
}
.recommend__item a:hover .recommend__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.recommend__item-pickup {
  position: absolute;
  top: 1.25em;
  left: 0;
  z-index: 1;
  background-color: #EEA70E;
  color: #fff;
  font-weight: 400;
  font-size: 0.75rem;
  padding: 0.5em 1em;
  line-height: 1;
  padding: 0.5em 1rem;
  border-radius: 0 20px 20px 0;
}
.recommend__item-contents, .recommend__item-image {
  width: 50%;
}
@media (max-width: 768px) {
  .recommend__item-contents, .recommend__item-image {
    width: 100%;
  }
}
.recommend__item-contents {
  padding: 5em 1.875rem 2.5em;
}
@media (max-width: 768px) {
  .recommend__item-contents {
    padding: 1.5em;
  }
}
.recommend__item-title {
  font-size: 1.5em;
  line-height: 1.125;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .recommend__item-title {
    font-size: 1.25em;
    margin-bottom: 1.5em;
  }
}
.recommend__item-text {
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .recommend__item-text {
    margin-bottom: 1.5em;
  }
}
.recommend__item-image {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.recommend__item-image::before {
  content: "";
  display: block;
  padding-top: 55%;
}
.recommend__item-image img, .recommend__item-image video, .recommend__item-image iframe, .recommend__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.recommend__item-image img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.recommend__item-btn {
  margin: auto;
}

.a-options {
  background-color: #fff;
}
.a-options__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75em 5%;
}
@media (max-width: 1024px) {
  .a-options__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .a-options__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5em 5%;
  }
}