@charset "UTF-8";
/**
 * ヘッダー
 * ---------------------------------------- */
 .searchbox-header {
	padding: 10px 1em;
  background-color: #ff6f00;
	color: #fff;
}
@media screen and (min-width: 768px) {
  .searchbox-header {
    height: 60px;
    position: sticky;
    top: 210px;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.searchbox-header .searchbox-header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .searchbox-header .searchbox-header_inner {
    width: 100%;
  }
}

.searchbox-header .searchbox-title {
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
	.searchbox-header .searchbox-title {
		font-size: 23px;
	}
}

.searchbox {
  background-color: #fff;
}

.searchbox-form {
  padding: 15px clamp(10px, 1.2vw, 25px) 22px;
}
@media (max-width: 767px) {
	.searchbox-form {
		padding: 8px clamp(10px, 4.2vw, 25px) 30px;
	}
}

.formlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 2px;
}

@media screen and (min-width: 768px) {
  .formlayout {
    padding-top: 0;
    display: block;
  }
}

.formlayout_multi-column {
  display: contents;
	justify-content: space-between;
  column-gap: 16px;
  flex-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .formlayout_multi-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: min(1.2vw, 20px);
  }
}

/**
 * 検索条件
 * ---------------------------------------- */
.formlist .formitem {
  padding: 8px 0 0;
	position: relative;
}
.searchbox_buttons {
  margin-top: 12px;
}

@media (max-width: 767px) {
  .formlist .formitem:not(:first-child) {
    padding-top: 24px;
  }
  .searchbox_buttons {
    margin-top: 24px;
  }
}

@media screen and (min-width: 768px) {
	.formlayout_multi-column>.formlayout_multi-column,
  .formlayout_multi-column>.formitem {
    width: calc(50% - 10px);
  }

	.formlayout .formitem {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}

.formitem_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .formitem_inner {
    display: block;
  }
}

.formitem_label {
	min-width: initial;
	margin-bottom: 3px;
	display: block;
	line-height: 1.3125;
  color: #333;
  letter-spacing: 0;
  font-size: min(1.6vw, 16px);
  font-weight: 700;
}

@media (max-width: 767px) {
  .formitem_label {
    margin-bottom: 4px;
		font-size: 13px;
  }
}

.formitem-select__box {
  position: relative;
  height: 33px;
}

@media (max-width: 767px) {
  .formitem-select__box {
    width: 100%;
    max-height: 100%;
  }
}

.formitem-select__box::after {
  content: "";
  width: 7px;
  height: 7px;
  border-left-color: #707070;
  border-bottom-color: #707070;
  position: absolute;
  top: calc(50% - 5px);
  right: 8px;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .formitem-select__box::after {
    right: 18px;
  }
}

.formitem-select__select {
	width: 100%;
  padding-top: 4px;
  padding-right: 24px;
  padding-bottom: 1px;
  padding-left: 10px;
	position: relative;
	background-color: #fff;
  border: 1px solid #707070;
	border-radius: 5px;
  font-family: inherit;
  color: #212121;
	font-size: min(1.4vw, 14px);
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  outline: 0;
}

@media (max-width: 767px) {
  .formitem-select__select {
    padding-top: 14px;
    padding-bottom: 14px;
		font-size: 13px;
  }
}

.formitem-select__option {
  display: block;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  background-color: #fff;
}

.formitem input[type="number"] {
  width: 100%;
  max-width: 100%;
}

.formitem .input-text {
  font-size: min(1.4vw, 14px);
  line-height: 1.357142857142857;
  letter-spacing: 0;
  border: 1px solid #666;
}

@media (max-width: 767px) {
  .formitem .input-text {
    height: 46px;
		font-size: 13px;
  }
}

.formitem_multi-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .formitem_multi-input {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
  }
}

.formitem_multi-input .input-text {
	min-width: 1px;
  max-width: 137px;
	width: 50px;
	-webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
	font-size: min(1.4vw, 14px);
}

@media (max-width: 767px) {
	.formitem_multi-input .input-text {
		font-size: 13px;
	}
}

.formitem_multi-input .formitem_range {
  margin: 0 5px;
  line-height: 25px;
	font-size: 11px;
  font-weight: 700;
}

.formitem_unit {
  min-width: 1.5em;
  margin-left: 4px;
  line-height: 1;
  text-align: center;
  font-size: 11px;
}

.searchbox_footer {
  position: relative;
}

.searchbox_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

.searchbox_buttons button {
	height: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  -webkit-box-shadow: none;
  box-shadow: none;
	text-align: center;
  font-size: min(1.4vw, 14px);
  font-weight: 700;
}

.searchbox_buttons button:hover {
	opacity: 0.7;
}

@media (max-width: 767px) {
  .searchbox_buttons button {
    font-size: 13px;
  }
}

.searchbox_buttons .searchbox-reset {
	width: 120px;
  padding: 0 16px;
	background-color: #fff;
	border-right: none;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.searchbox_buttons .searchbox-submit {
	width: 177px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
	background-color: #ff6f00;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	color: #fff;
}

@media screen and (min-width: 768px) {
  .searchbox_buttons .searchbox-submit {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
  }
}

/*
 * カスタマイズ
*/
@media (min-width: 768px) {
  .searchbox .col-2 {
    width: 16.666% !important;
  }
  .searchbox .col-3 {
    width: 25% !important;
  }
  .searchbox .col-4 {
    width: 33.333% !important;
  }
  .searchbox .col-4w {
    width: calc(33.3333% + 20px) !important;
  }
  .searchbox .col-5n {
    width: calc(41.666% - 20px) !important;
  }
  .searchbox .col-6w {
    width: calc(50% + 20px) !important;
  }
  .searchbox .col-6 {
    width: 50% !important;
  }
  .searchbox .col-7 {
    width: 58.333% !important;
  }
  .searchbox .col-8 {
    width: 66.666% !important;
  }
  .searchbox select, .searchbox input[type=text] {
    height: 33px;
  }
  .searchbox input[type=number] {
    height: 31px;
  }
  .searchbox-header {
    position: inherit;
    top: inherit;
  }
  .sp-result__num {
    display: block;
    margin: 40px auto;
    width: 1075px;
  }
}