@charset "utf-8";

/* ========================================================
inquiry-form
======================================================== */
.inquiry-form__age input[type="text"]{
  width: 100px;
}
@media screen and (max-width: 767px){
  .inquiry-form__age input[type="text"]{
    width: 19vw;
  }
}
/* .inquiry-message
----------------------- */
.inquiry-message{
  margin-top: 3em;
}
.inquiry-message p{
  margin-top: 1em;
}
/* .inquiry-confirmation
----------------------- */
.inquiry-confirmation{
  font-size: 115%;
  border-bottom: solid 1px #E5E8E8;
  margin-top: 0.5em;
  padding-bottom: 1em;
}
/* ========================================================
popup
======================================================== */
/* .inquiry-popup
----------------------- */
.inquiry-popup{
  background-color: rgba(0,0,0,0.6);
  z-index: 305;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
}
.inquiry-popup__inner{
      display:flex;
    justify-content: center;
    align-items: center;
  height: 100vh;
}
.inquiry-popup__content{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  position: relative;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 32px;
  padding: 40px;
  width: 800px;
  max-height: 96vh;
}
.inquiry-popup__content__inner{
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(96vh - 80px);
}
.inquiry-popup__content p{
  margin-top: 1em;
}
.inquiry-popup__close a{
  display: block;
  border-radius: 50%;
  background-color: #38ACB5;
  box-shadow: 0px 3px 6px #00000029;
  position: absolute;
  right: -30px;
  top: -30px;
  width: 60px;
  height: 60px;
}
.inquiry-popup__close a::before,
.inquiry-popup__close a::after{
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  border-radius: 2px;
  width: 4px;
  height: 70%;
  left: 45%;
  top: 15%;
}
.inquiry-popup__close a::before{
  transform: rotate(45deg);
}
.inquiry-popup__close a::after{
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px){
  .inquiry-popup__content{
    border-radius: 8vw;
    padding: 6vw;
    width: 92vw;
  }
  .inquiry-popup__content__inner{
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(96vh - 12vw);
  }
  .inquiry-popup__close a{
    right: -3vw;
    top: -3vw;
    width: 12vw;
    height: 12vw;
  }
}