@charset "UTF-8";
.top-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px 48px;
  background: #f3f6f6 url(/img/bg_searchtop_logo.png) no-repeat;
  background-position: right;
}
.top-card-wrap .bg-recommend {
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 550px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-card {
  position: relative;
  max-width: 1078px;
  width: 100%;
  z-index: 1;
}

.top-card-title {
  margin-bottom: 16px;
  color: #007789;
  font-size: 28px;
}

.top-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
}

.top-card-item {
  border: 1px solid #f2f2f2;
  border-radius: 8px;
  background: #f2f2f2;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0784313725);
  transition: 0.3s;
}
.top-card-item .item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 118px;
  background: #fff;
  padding: 16px;
  border-radius: 8px 8px 0 0;
}
.top-card-item .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-card-item .item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 45px;
  background: #3facbc;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  line-height: 1.2;
}
.top-card-item:hover .item-img img {
  transform: scale(1.07);
  transition: 0.3s;
}
.top-card-item:hover .item-title {
  background: #59c9d9;
}

.contents--top {
  margin: 48px 0 80px;
}
.contents--top .contents-inner {
  display: flex;
}
.contents--top .side-search {
  width: 230px;
  height: auto;
  margin-right: 38px;
}
.contents--top .side-search-top-title {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: #3facbc;
  color: #fff;
  font-weight: bold;
  line-height: 26px;
  border-radius: 8px 8px 0 0;
}
.contents--top .side-search-top-title::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  margin-right: 12px;
  background: url(/img/icon_akar_search_white.svg) no-repeat center;
  background-size: cover;
}
.contents--top .side-search-list-wrap {
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.contents--top .side-search-list .side-search-item {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
.contents--top .side-search-list .side-search-item .item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}
.contents--top .side-search-list .side-search-item .item-title::after {
  font: var(--fa-font-solid);
  content: "\f105";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3facbc;
  font-size: 14px;
}
.contents--top .side-search-list .side-search-item--keyword .item-title::after {
  content: "+";
  font-size: 15px;
}
.contents--top .side-search-list .side-search-item--keyword .item-title.active::after {
  content: "\f068";
}
.contents--top .side-search-list .side-search-item--keyword .side-search-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.contents--top .side-search-list .side-search-item--keyword .side-search-keyword-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  background: #f3f6f6;
  color: #007789;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
}
.contents--top .side-search-list .side-search-item--keyword .side-search-keyword-item:hover {
  background: #007789;
  color: #f3f6f6;
}
.contents--top .side-search-list .side-search-item--list:hover, .contents--top .side-search-list .side-search-item--modal:hover, .contents--top .side-search-list .side-search-item--keyword:hover {
  color: #007789;
}
.contents--top .side-search-list .side-search-item--free, .contents--top .side-search-list .side-search-item--reset {
  cursor: default;
}
.contents--top .side-search-list .side-search-item--free {
  display: block;
}
.contents--top .side-search-list .side-search-item--free .item-title::after {
  content: none;
}
.contents--top .side-search-list .side-search-item--free .form {
  position: relative;
  height: auto;
  margin-top: 8px;
}
.contents--top .side-search-list .side-search-item--free .search-box {
  width: 150px;
  height: 36px;
  padding: 0 8px;
  font-weight: normal;
  font-size: 14px;
}
.contents--top .side-search-list .side-search-item--free .search-button {
  width: 40px;
  height: 36px;
}
.contents--top .side-search-list .side-search-item--reset {
  border-bottom: none;
}
.contents--top .side-search-list .side-search-item--reset .item-title::after {
  content: none;
}
.contents--top .side-search-list .side-search-item--reset .reset-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 40px;
  border: 1px solid #3facbc;
  color: #007789;
  font-size: 14px;
  font-weight: normal;
  border-radius: 8px;
}
.contents--top .side-search-list .side-search-item--reset .reset-button::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  margin-right: 12px;
  background: url(/img/icon_akar_search.svg) no-repeat center;
  background-size: cover;
}
.contents--top .content-section--top .related-items-area .card-list {
  gap: 18px;
}
.contents--top .content-section--top .related-items-area .product-card-list {
  display: grid;
  gap: 12px;
}
.contents--top .content-section--top .related-items-area .product-card-item {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  align-items: center;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.contents--top .content-section--top .related-items-area .product-card-item .item-inner {
  display: flex;
  align-items: center;
  width: auto;
  height: 70px;
}
.contents--top .content-section--top .related-items-area .product-card-item .item-inner--img {
  justify-content: center;
}
.contents--top .content-section--top .related-items-area .product-card-item .item-inner--img img {
  width: 171px;
  height: 62px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contents--top .content-section--top .related-items-area .product-card-item .item-inner--title {
  padding: 16px;
  background: #f2f2f2;
  font-weight: bold;
  border-right: 1px dotted #ddd;
}
.contents--top .content-section--top .related-items-area .product-card-item .item-inner--sub-title {
  background: #f2f2f2;
  padding: 18px;
  font-size: 14px;
  border-radius: 0 8px 8px 0;
}
.contents--top .content-section--top .related-items-area .product-card-item:hover {
  border: 1px solid #3facbc;
}
.contents--top .content-section--top .related-items-area .product-card-item:hover .item-inner--img img {
  transform: scale(1.07);
  transition: 0.3s;
}
.contents--top .content-section--top .related-items-area .product-card-item:hover .item-inner--title {
  border-right: 1px solid #ddd;
  color: #007789;
}
.contents--top .content-section--top .related-items-area .product-card-item:hover .item-inner--sub-title {
  color: #007789;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

.modal__bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: #033e47;
  opacity: 0.3;
}

.modal__content-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 1078px;
  transform: translate(-50%, -50%);
  cursor: default;
}

.modal-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #3facbc;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
}
.modal-title .close-button {
  position: absolute;
  right: 0;
  top: -44px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.modal__content {
  width: 100%;
  height: 70vh;
  padding: 40px 60px;
  background: #fff;
  overflow: auto;
  border-radius: 0 0 8px 8px;
}

/* 画面サイズ 1024px 未満 */
@media screen and (max-width: 1024px) {
  .top-card-wrap {
    padding: 40px 16px 60px;
    background-position: top right;
    background-size: 150px;
  }
  .top-card-wrap .bg-recommend {
    left: 0;
    width: 100%;
    height: 40px;
  }
  .top-card-title {
    font-size: 20px;
  }
  .top-card-list {
    grid-template-columns: 1fr;
  }
  .main-search-wrap {
    margin-top: 40px;
  }
  .contents--top {
    margin-top: 40px;
  }
  .contents--top .contents-inner {
    display: block;
  }
  .contents--top .side-search {
    width: auto;
    margin: 0;
  }
  .contents--top .related-items-area .card-list {
    grid-template-columns: 1fr;
  }
  .contents--top .side-search-list-wrap .side-search-list .side-search-item--free .search-box {
    width: 100%;
    height: 52px;
    padding: 0 0 0 20px;
  }
  .contents--top .side-search-list-wrap .side-search-list .side-search-item--free .search-button {
    width: 65px;
    height: 53px;
  }
  .contents--top .side-search-list-wrap .side-search-list .reset-button {
    width: 100%;
  }
  .contents--top {
    margin: 48px 16px 40px;
  }
  .contents--top .content-section--top {
    padding: 0;
  }
  .contents--top .content-section--top .related-items-area .product-card-item {
    grid-template-columns: 0.8fr 1fr;
    align-items: center;
  }
  .contents--top .content-section--top .related-items-area .product-card-item .item-inner {
    height: 100%;
    padding: 8px;
  }
  .contents--top .content-section--top .related-items-area .product-card-item .item-inner--title {
    display: block;
    padding: 12px 16px;
    border-right: none;
    border-radius: 0 8px 8px 0;
  }
  .contents--top .content-section--top .related-items-area .product-card-item .item-inner--title .sp {
    font-weight: normal;
  }
  .contents--top .content-section--top .related-items-area .product-card-item .item-inner--sub-title.pc {
    display: none;
  }
  .horizontal-menu--modal .product-item {
    font-size: 14px;
  }
  .modal__content-wrap {
    width: 100%;
    padding: 0 16px;
  }
  .modal__content {
    padding: 20px 16px;
  }
}/*# sourceMappingURL=topPage.css.map */