@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;
}


.fv{
  background-color:#EBECE7 ;
}

.fv-wrapper{
  margin: 0 auto 0;
  padding-bottom: 10px;
  width:80vw;
  max-width: 1100px;
  height:600px;
  background-image:url("img/site-fv-background-gray.png");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.fv-title{
  padding-top: 250px;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.075em;
}

.fv-subtitle{
  font-size: 18px;
  font-weight:700;
  padding-top: 16px;
  letter-spacing: 0.5em;
}

.works{
  background-color:#EBECE7 ;
}

.works-wrapper{
  width: 80vw;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  background-color:#EBECE7 ;;
  flex-wrap: wrap;
}

.work{
  /* min-width: 320px; */
  width: 47.5%;
  padding-bottom: 50px;
}

.work-img{
  width: 100%;
  object-fit: cover;
}

.work-link:hover{
  opacity: 0.7;
}

.work-title{
 padding-left: 15px;
 padding-bottom: 5px;
} 

.work-detail{
  padding-left: 15px;
  padding-bottom: 5px;
}

.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;
  } 

  .works-wrapper{
    width: 85vw;
    margin: 0 auto 0;
    display: block;
  }
  
  .work{
    width: 100%;
  }

}