@charset "utf-8";
.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_tag {
  display: none;
}
.modal_search_tag.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: #1a1a1a;
  background-color: #fff200;
  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;
}
}



