@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url(../img/mv.png) no-repeat center;
  background-size: cover;
}
.search {
  padding: 50px 0;
}
.search_container {
  max-width: 1024px;
  width: 90%;
  margin: auto;
}
.search_field {
  display: flex;
  gap: 100px 137px;
}
.search_box {
  width: 100%;
  max-width: 261px;
  position: relative;
  &.search_box--second {
    max-width: 626px;
    &::before{
      content: '';
      background: url(../img/arrow.svg) no-repeat center;
      width: 65px;
      height: 65px;
      background-size: contain;
      position: absolute;
      left: -100px;
      top: 30px;
    }
  }
}
.search_head {
  display: flex;
  align-items: center;
  padding: 0 30px;
  min-height: 60px;
  font-size: 2.4rem;
  font-weight: bold;
  background: #CEEBFA;
  color: var(--blue);
}
.search_select {
  position: relative;
  display: block;
  width: calc(100% - 30px);
  margin: 20px auto 0;
}

.search_select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  padding: 12px 40px 12px 16px;
  font-size: 16px;
  border: 1px solid #4B4B4B;
  border-radius: 6px;
  background: #F3F3F3;
  cursor: pointer;
}

/* IE用矢印非表示 */
.search_select select::-ms-expand {
  display: none;
}

/* カスタム矢印 */
.search_select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

/* フォーカス時 */
.search_select select:focus {
  outline: none;
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0,122,255,0.2);
}

.search_result{
  margin-top: 160px;
  position: relative;
  .search_head{
    background: var(--blue);
    color: #fff;
  }
  &::before{
    content: '';
    background: url(../img/arrow.svg) no-repeat center;
    width: 65px;
    height: 65px;
    background-size: contain;
    position: absolute;
    top: -100px;
    left: calc(50% - 32.5px);
    transform: rotate(90deg);
  }
}
.result_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.result_box {
  background: #CEEBFA;
  display: flex;
  padding: 15px 25px;
  gap: 20px;
}
.result_img {
  max-width: 453px;
  width: 100%;
}
.result_data {
  max-width: 502px;
  width: 100%;
  background: #fff;
  padding: 24px;
}
.result_name{
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--blue);
}
.result_com{
  min-height: 5em;
  margin-top: 10px;
}
@media screen and ( max-width: 1023px ) {

}
@media screen and ( max-width: 767px ) {
.search_field {
  flex-direction: column;
  align-items: center;
}
.search_box {
  max-width: 100%;
  &.search_box--second {
  max-width: 100%;
    &::before {
      width: 52px;
      height: 52px;
      left: calc(50% - 26px);
      top: -80px;
      transform: rotate(90deg);
    }
  }
}
.search_result {
  margin-top: 100px;
  position: relative;
    &::before {
      width: 52px;
      height: 52px;
      left: calc(50% - 26px);
      top: -80px;
      transform: rotate(90deg);
  }
}
.result_box {
  padding: 20px 5%;
  flex-direction: column;
  gap: 10px;
}
}