@charset "utf-8";

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

li{
  list-style: none;
}

a{
  text-decoration: none;
  color: black;
}

.header{
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height:60px;
}

.header-logo{
  /* background-color: #EBECE7; */
  margin-top:30px;
  margin-left:2vw;
  width: 78px;
  height:78px;
}

.header-logo img{
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
  border-radius: 50%;
  border: 1.5px solid black;
}

.header-logo img:hover{
  opacity: 0.7;
}

.menu{
  margin-top: 40px;
  margin-right: 5vw;
  display: flex;
  gap: 25px;
}

.menu-item{
  font-weight: bold;
  color: #B6A78C;
  font-size: 18px;
} 

.menu-item:hover{
  opacity: 0.6;
}


.contact{
  background-color:#EBECE7 ;
}

.contact-wrapper{
  width:60%;
  max-width: 1100px;
  margin:0px auto 0px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-wrapper > h1{
  font-size: 40px;
  padding-bottom: 20px;
}

.contact-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: black;
  font-size: 12px;
  background-color: #b3b6a9;
  padding:0 3px;
  vertical-align: middle;
}

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

.radio{
  margin-right: 5px;
}

.input-linetext{
  border:solid 1px white;
  background-color: white;
}

.input-textarea{
  border:solid 1px white;
  background-color: white;
  height: 212px;
}


.push-btn{
  padding:20px 70px;
  background-color: #B6A78C;
  font: 32px;
  color: white;
  display:block;
  margin: 0 auto 0;
}

.push-btn:hover{
  opacity:0.7;
}

.warning-msg{
  color:red;
  font-size: 12px;
}


.footer{
  background-color: #525252;
  color: white;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5em;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

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

  .header-logo{
    width: 65px;
    height:65px;
  }

  .menu-item{
    font-size: 14px;
  } 

  .contact-wrapper{
    width:85%;
  }

}