@charset "utf-8";

h1, h2, h3, a, p, small{
   font-family: "Montserrat","Noto Sans JP", sans-serif;
}

a{
  text-decoration: none;
}

.header{
  display: flex;
  justify-content: space-between;
}

.header-logo{
  margin-top:30px;
  margin-left:5vw;
  width: 260px;
  z-index: 10;
}

.header-logo img{
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.header .btn-nav {
  position:absolute;/* position: fixed; */
  top: 30px;
  right: calc(4vw + 60px);
  width: 35px;
  height: 24px;
  z-index: 30;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.header .btn-nav span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.header .btn-nav span:nth-child(1) {
  top: 0;
}

.header .btn-nav span:nth-child(2) {
  top: 8px;
}

.header .btn-nav span:nth-child(3) {
  top: 16px;
}

.header .btn-nav.open span:nth-child(1) {
  background: #ffffff;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header .btn-nav.open span:nth-child(2),
.header .btn-nav.open span:nth-child(3) {
  top: 6px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-nav {
  display: block;
}

.nav-list{
  list-style-type:none;
  display:flex;
  font-size: 20px;
  font-weight: bold;
}

.site-nav {
  position:absolute;
  display: none;
  top: 0;
  right: -100%;
  width: 40%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.9);
  font-size: 16px;
  box-sizing: border-box;
  z-index: 28;
  padding-top: 50px;
  transition: .3s;
}

.site-nav.open {
  right: 0;
  display: block;
}

.site-nav .nav-list {
  width: 100%;
  height: 100%;
  display: block;
  flex-direction: column;
  text-align: center;
  }

.site-nav .nav-list li {
    padding: 30px 0px 0px 0px;
}

.nav-item a{
  color:white;
}


.menu-bar{
  color: white;
  font-size: 10;
  font-weight: 900;
  margin-top: 30px;
  margin-right: 4vw;
  z-index: 15;
}

.fv{
  height:405px;
  /* background-color: pink; */
}

.fv-img{
  width:70vw;
  height: 387px;
  position: absolute;
  top:0;
  left: 0;
  z-index: 5;
}

.fv-img img{
  width: 100%;
  height: 387px;
  object-fit:cover;

}

.fv-backgroundbox{
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  width:55%;
  height:464px;
  z-index: 1;
}

.fv-msg-container{
  color:white;
  position: absolute;
  top:157px;
  right:20vw;
  z-index: 20;
}

.fv-subtitle{
  font-size: 20px;
  font-weight:700;
}

.fv-title{
  font-size: 72px;
  font-weight: bold;
}

.inquiry-wrapper{
  margin: 120px auto 120px;
  width:50%;
  max-width: 1100px;
}

.inquiry-wrapper > p{
   font-size: 16px;
   padding-bottom: 52px ;
}

.inquiry-content{
  display: flex;
  flex-direction: column;
  padding-bottom: 42px;
}

.inquiry-label{
  padding-bottom: 5px;

}

.inquiry-content span{
  color: white;
  font-size: 12px;
  background-color: black;
  padding:0 3px;
  vertical-align: middle;
}

.radio-label{
   padding-right: 50px;
}

.radio{
  margin-right: 5px;
}

.input-linetext{
  border:solid 1px #333333;
}

.input-textarea{
  border:solid 1px #333333;
  height: 212px;
}

.privacy-policy{
  padding-bottom: 42px;
}

.privacy-policy h3{
  font-size: 16px;
  padding-bottom: 10px;
}

.privacy-policy p{
  border:solid 1px #333333;
  height: 242px;
  overflow:scroll;
}

.privacy-agreement{
  text-align: center;
  padding-bottom: 41px;
}

.privacy-agreement .checkbox{
   margin-right: 5px;
}

.submit-btn{
  color: white;
  background-color: black;
  font-size: 12px;
  font-weight: bold;
  padding:10px 60px;
  display: block;
  margin: 0 auto;

}

.submit-btn:hover{
  opacity:0.6;
}


.footer{
  background-color: #525252;
  color: white;
  font-size: 10px;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 18px;
}



@media screen and (max-width: 768px) {

  .header-logo{
    width: 189px;
  }

  .fv{
    height:560px;
    /* background-color: pink; */
  }
  
  .fv-img{
    width:70vw;
    height: 529px;

  }
  
  .fv-img img{
    height: 529px;
  }
  
  .fv-backgroundbox{
    height:615px;
  }
  
  .fv-msg-container{
    top:157px;
    right:16vw;
  }
  
  .fv-subtitle{
    font-size: 16px;
  }
  
  .fv-title{
    font-size: 52px;
  }

  .inquiry-wrapper{
    width:90%;
  }
  

}



@media screen and (max-width: 375px) {

  .fv{
    height:310px;
    /* background-color: pink; */
  }
  
  .fv-img{
    width:70vw;
    height: 270px;

  }
  
  .fv-img img{
    height: 270px;
  }
  
  .fv-backgroundbox{
    height:365px;
  }
  
  .fv-msg-container{
    top:129px;
    right:7vw;
  }
  
  .fv-subtitle{
    font-size: 16px;
    float: right;
  }
  
  .inquiry-wrapper{
    width:92%;
    margin:80px auto 80px ;
  }
  
  .radio-group{
    display:flex;
    flex-direction: column;
  }

}
