#inquiry_header {
  height: 630px;
}

#inquiry_header .houjin {
  background-color:#FFA500;
  color: #fff;
  border-radius : 30px;
  padding: 10px 30px;
  font-size: 16px;
  display: inline-block;
}

#inquiry_header .midashi1 {
  text-align: center;
  font-size: 43px;
  line-height: 1.5em;
  font-weight: bold;
}

#inquiry_header .midashi2 {
  text-align: center;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: bold;
}

#inquiry_header .gray-background {
  background-color: #EEEEEE;
  padding: 20px 0px;
    width: calc(100vw - (100vw - 100%));
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
#inquiry_header .headsUp-wrap {
    width: 850px;
}
#inquiry_header .information .search_items {
    float: right;
    padding: 0px 0px 0px 20px;
}
#inquiry_header .search_items .detail.block-checkbox label {
    width: 150px;
    font-size: 12px;
    padding: 10px 10px 10px 40px;
}
#inquiry_header .button-right {
  text-align: right;
}

#inquiry_header .modalOpenButton {
  background: #FFA500;
  color: #fff;
  padding: 15px 10px;
  border: 0;
  font-size: 12px;
  border-radius: 5px;
}

#inquiry_header .modalOpenButton:hover {
  background: #F7C147;
  cursor: pointer;
}

#inquiry_header .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

#inquiry_header .modal-content {
  background-color: #f4f4f4;
  display: block;
  margin: 10% auto;
  text-align: center;
  width: fit-content;
  box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
  animation-name: modalopen;
  animation-duration: 1s;
}

@keyframes modalopen {
  from {opacity: 0}
  to {opacity: 1}
}

#inquiry_header .modalClose {
  display: block;
  position: relative;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

#inquiry_header .modalClose:hover {
  cursor: pointer;
}

