@charset "utf-8";
.search-box {
  margin: 0 0 2em;
  padding: 2em;
  background-color: var(--color-base);
  border-radius: .25em;
}
.search-box .filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.search-box .filter .wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 .5em .5em 0;
  padding: 1em .75em;
  width: calc(100% / 3 - .5em);
  background: #fff;
  border-radius: .25em;
  cursor: pointer;
}
.search-box .filter .wrap.toggle:before {
  position: absolute;
  top: clac(50% - .75em);
  right: .5em;
  display: block;
  content: "";
  border-radius: 50%;
  background: var(--color-main);
  width: 1.5em;
  height: 1.5em;
}
.search-box .filter .wrap.toggle:after {
  position: absolute;
  content: "＋";
  top: 1.375em;
  right: 1.125em;
  font-size: .75em;
  color: #fff;
}
.search-box .filter .wrap .label {
  margin: 0 .5em 0 0;
  width: 6em;
  font-size: .75em;
  font-weight: bold;
  color: var(--color-main);
}
.search-box .filter .wrap .content {
  position: relative;
  display: flex;
}
.search-box .filter .wrap .content .placeholder {
  display: block;
  line-height: 1;
  font-weight: bold;
  color: #888;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 130px;
}
.search-box .filter .wrap .content input,
.search-box .filter .wrap .content select {
  position: relative;
  min-width: 200px;
  line-height: 1;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
}
.search-box .filter .btn {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 .5em .5em 0;
  width: calc(100% / 3 - .5em);
}
.search-box .filter .btn input[type=submit] {
  width: 100%;
  height: 100%;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-main);
  border: none;
  border-radius: .25em;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  cursor: pointer;

}






/*ul.selected*/
.selected ul {
  margin: .5em 0 0;
  padding: 0;
  list-style-type: none;
}
.selected ul li {
  display: inline-flex;
  margin: 0 .25em .25em 0;
  padding: .25em .5em .25em .75em;
  font-size: .75em;
  font-weight: bold;
  color: #fff;
  background-color: #888;
  border-radius: .25em;
  transition: .25s;
  cursor: pointer;
}
.selected ul li:hover {
  opacity: .75;
}
.selected ul li .remove {
  padding: 0 0 0 .5em;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}



.modal {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	z-index: 999;
}
.modal {
	display: none;
}
.modal_bg {
  display: none;
}
.modal_bg.open {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.375);
  content: "";
  z-index: 1000;
}
.modal .wrap {
	position: relative;
	padding:  0;
	width: 50vw;
	min-width: 720px;
	height: 50vh;
	text-align: center;
	background-color: #fff;
	border-radius: 12px 12px 0 0;
	z-index: 9999
}
.modal_search_area,
.modal_search_payment,
.modal_search_service {
  display: none;
}
.modal_search_area.active,
.modal_search_payment.active,
.modal_search_service.active {
  display: flex;
}
.modal .wrap h3 {
  position: fixed;
  margin: 0;
  padding: 1em 0;
  width: 50vw;
  min-width: 720px;
  background-color: #fff;
  border-radius: 12px 12px 0 0;
}
.modal .wrap form {
	overflow: scroll;
  padding: 80px 40px;
  height: 100%;
  text-align: left;
} 
.modal .btn {
  position: fixed;
  width: 50vw;
  min-width: 720px;
}
.modal .btn input[type=submit] {
  display: block;
  margin: 0;
  padding: 1.25em 0;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .025em;
  text-align: center;
  color: #fff;
  background-color: var(--color-main);
  border: none;
  border-radius: 0 0 12px 12px;
  z-index: 99999;
  outline: none;
  cursor: pointer;
  transition: .1s;
  -webkit-appearance: none;
}
@media (min-width: 960px) and (max-width: 1279px) {
.modal .wrap {
	width: 720px;
	min-width: inherit;
	max-width: 92%;
}
.modal .wrap h3 {
	width: 720px;
	min-width: inherit;
	max-width: 92%;
}
.modal .btn {
	width: 720px;
	min-width: inherit;
	max-width: 92%;
}
}
@media (min-width: 640px) and (max-width: 959px) {
.modal .wrap {
	width: 720px;
	min-width: inherit;
	max-width: 92%;
}
.modal .wrap h3 {
	width: 720px;
	min-width: inherit;
	max-width: 92%;
}
.modal .btn {
	width: 720px;
	min-width: inherit;
	max-width: 92%;
}
}
@media (max-width: 639px) {
.modal .wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	min-width: inherit;
	height: 100vh;
	border-radius: 0;
	z-index: 9999999999;
}
.modal .wrap h3 {
  padding: 1em 0;
  left: 0;
  top: 0;
  width: 100vw;
  border-radius: 0;
}
.modal .wrap form {
  padding: 80px 4% 0;
}
.modal .btn {
  left: 0;
  bottom: 0;
  width: 100vw;
}
}


