/* Select Box */

label.field {
  border-radius: 2px;
  color: #020b33;
  font-family: "Noto Sans JP", sans-serif;	
  display: block;
  margin: 0 auto;
  max-width: 240px;
  padding: 8px;
  opacity: 0;
  position: relative;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  z-index: 10;
}
label.field span {
  color: inherit;
  display: block;
  font-family: "Noto Sans JP", sans-serif;	
  font-size: .9rem;	
  opacity: .8;	
  height: 20px;
  line-height: 20px;
  left: 9px;
  pointer-events: none;
  position: absolute;
  top: 27px;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  -webkit-transition-property: color, font-size, top;
  transition-property: color, font-size, top;
  z-index: 1;
}
label.field span.required::after {
  color: inherit;
  content: "*";
  display: block;	
  height: 20px;
  left: -20px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}
.error label.field span {
  color: #29304d;	
}
label.field .psuedo_select {
  background: rgba(255, 255, 255, 0);
  position: relative;
  border-color: #e8e8e8;
  border-style: solid;
  border-width: 0 0 1px 0;
  color: #29304d;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;	
  font-size: .9rem;
  height: 24px;
  line-height: 24px;
  margin: 24px 32px 0 0;
  min-width: 240px;
  padding-top: 24px;
  outline: 0;
  z-index: 1;
}
label.field .psuedo_select::after {
border-bottom: 2px solid #999;
border-right: 2px solid #999;
content: '';
display: block;
height: 9px;	
margin-top: -9px;
pointer-events: none;
position: absolute;
right: 12px;
top: 50%;
-webkit-transform-origin: 66% 66%;
-ms-transform-origin: 66% 66%;
transform-origin: 66% 66%;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out;
width: 9px; 
}
label.field .psuedo_select .selected {
  height: 24px;
  left: 1px;
  line-height: 24px;
  opacity: 0;
  position: absolute;
  top: -4px;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  will-change: transform;
}
label.field .psuedo_select ul {
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  display: block;
  height: 100%;
  list-style: none;
  margin-top: 2px;
  opacity: 0;
  overflow: hidden;
  padding: 0 1px;
  pointer-events: none;
  -webkit-transition-property: height, opacity;
  transition-property: height, opacity;
  width: 100%;
  z-index: 2;
}
label.field .psuedo_select ul li {
  padding: 10px 4px;
  opacity: .9;	
  text-align: center;
}
label.field .deselect {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;	
  width: 100vw;
  z-index: -1;
}
label.field.focused {
  color: #5c6799;
}
label.field.focused .psuedo_select {
  border-color: #5c6799;
}
label.field.focused .psuedo_select::after {
border-bottom: 2px solid #5c6799;
border-right: 2px solid #5c6799;
content: '';
display: block;
height: 9px;	
margin-top: -9px;
pointer-events: none;
position: absolute;
right: 12px;
top: 50%;
-webkit-transform-origin: 66% 66%;
-ms-transform-origin: 66% 66%;
transform-origin: 66% 66%;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out;
width: 9px; 
}
label.field.focused .psuedo_select ul {
  opacity: 1;
  pointer-events: all;
}
