@charset "UTF-8";

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
}

#header {
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
}

.l-search_head {
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  padding: 16rem 0 7.2rem;
  background: var(--main_color);
}

@media screen and (max-width:800px) {
  .l-search_head {
    font-size: 2.4rem;
    padding: 4rem 0;
  }
}

.l-search_contents {
  padding: 5.6rem 1.6rem 8rem;
}

.l-search_contents--inner {
  max-width: 1030px;
  margin: 0 auto;
}

.l-search_contents--sort {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media screen and (max-width:800px) {
  .l-search_contents--sort {
    flex-direction: column;
    gap: 0.8rem;
  }
}

.c-select {
  flex: auto;
  font-size: max(1.6rem, 16px);
  background: #DAEAF2;
  height: calc(1em / 16 * 48);
  border-radius: calc(1em / 16 * 4);
  position: relative;
  z-index: 1;
}

@media screen and (max-width:800px) {
  .c-select {
    width: 100%;
  }
}

.c-select:not(.--active) {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.c-select::after {
  position: absolute;
  content: '';
  width: calc(1em / 16 * 8);
  height: calc(1em / 16 * 8);
  right: calc(1em / 16 * 10);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: calc(1em / 16 * 2) solid #fff;
  border-right: calc(1em / 16 * 2) solid #fff;
  z-index: -1;
}

.c-select select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  font-size: 1em;
  width: 100%;
  height: 100%;
  padding: 0 calc(1em / 16 * 16);
}

.l-search_contents--sort_btn {
  font-size: max(1.6rem, 16px);
  width: 10em;
  height: calc(1em / 16 * 48);
  line-height: calc(48 / 16);
  text-align: center;
  letter-spacing: 1em;
  text-indent: 0.75em;
  padding: 0 calc(1em / 16 * 16);
  background: var(--main_color);
  color: #fff;
  border-radius: calc(1em / 16 * 4);
}

@media screen and (max-width:800px) {
  .l-search_contents--sort_btn {
    width: 100%;
  }
}