/* reset css */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}


blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
  text-decoration: none;
  color: #fff;

}

* {
  box-sizing: border-box;
}



/*==========================================
common
===========================================*/


@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,200&family=Noto+Sans+JP:wght@100;300;400;500&family=Noto+Serif+JP:wght@200;300;400;500;600&family=Open+Sans:wght@300&display=swap');

#wrapper {
  width: 100%;
  background: #f5f5f5;
}

#wrapper ul,
#wrapper li {
  list-style: none;
  margin: 0;
  padding: 0;
}


#wrapper .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#wrapper img {
  width: 100%;
}


#wrapper a {
  text-decoration: none;
  color: #333;
 

}





/*==========================================
header
===========================================*/

.logo {
  width: 5%;
}

.menu_area {
  display: flex;
  justify-content:space-between;
  align-items: center;
  padding: 10px 0;
  box-sizing: border-box;
  
}

.menu ul {
  display: flex;
  gap: 100px;
}


.menu ul li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}


/*==========================================
main_visual
===========================================*/

header {
  position: fixed;
  z-index: 9999;
  background: #f5f5f5;
  width: 100%;

}

.main_visual {
  background-image: url(../img/main_visual.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;



}

.main_visual h1 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 72px;
  letter-spacing: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  box-sizing: border-box;

}

.main_visual h1:after {
  content: " ";
  margin-left: -15px;
}

/*==========================================
Profile
===========================================*/

.profile {
  padding-top: 200px;
}


.profile h2 {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
}


.profile p {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.8;
  text-align: center;

}



/*==========================================
service
===========================================*/

.service {
  padding-top: 200px;
}


.service h2 {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 50px;
}

.service .service_list {
  text-align: center;
}


.service .service_list h3 {
  padding-top: 30px;
  font-weight: normal;
  
}

.description {
  margin: 20px 0;
  padding: 0 20px;
}

.price {
  margin-bottom: 20px;
}







.service .service_list ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 50px;
  }
  

.service .service_list ul li {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  border: 1px solid #555;

  

}


.service .service_list .service_img {
  padding: 30px 50px 10px;
  box-sizing: border-box;
  width: 50%;
  margin: 0 auto;

}


.description,
.delivery,
.price {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.8;
  text-align: center;
}




/*==========================================
work
===========================================*/


.work {
  padding-top: 200px;
}

.work h2 {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 50px;
}


.work_img ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 50px;

}


.work_company {
  margin-top: 10px;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.8;
  text-align: left;
}



/*==========================================
contact
===========================================*/

.contact {
  margin-top: 200px;
}

.contact h2 {

  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 50px;

}


form {
  width: 40%;
  margin: 0 auto;
}


.contact_area {
text-align: left;
}

input {
  width: 100%;
  height: 30px;
}

.name,
.email {
  margin-bottom: 50px;
}

.info {
  width: 100%;
  height: 200px;
}


.contact_data {
  margin-bottom: 10px;
  text-align: left;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.8;
}

.submit {
  display: block;
  margin: 0 auto;
  padding: 10px 100px;
  background: #333;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 50px;
  border: none;
  color: #fff;
}


/*==========================================
footer
===========================================*/


.sns_contact {
  margin-top: 200px;
}

.sns_contact p {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.8;
  text-align: center;
} 

.sns_area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 30%;
  margin: 0 auto;
}



footer h2 {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 50px;
}


.sns_img {
  width:20%;
  padding: 20px 30px 30px 20px;

}







.copy {
  font-size: 10px;
  padding-bottom: 10px;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.8;
  text-align: center;
}














/*==========================================
js
===========================================*/

.fade {
  opacity: 0;
}


.fade.ac {
  -webkit-animation: fadein 1.0s forwards linear;
  animation: fadein 1.0s forwards linear;
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translate(0,15px);
  }
  100% {
    opacity: 1;
    transform: translate(0,0)
  
  }

}



  






/*==========================================
レスポンシブ
===========================================*/

@media (max-width:768px) {

  #wrapper .container {
    width: 90%;
  }


/*==========================================
header
===========================================*/


.menu ul {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


.menu ul li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}

.logo {
  width: 15%;
  margin-top: 15px;
}

.menu_area {
width: 100%;
justify-content:space-evenly;
flex-wrap: wrap;
  
}


.menu {
  width: 100%;
  margin-top: 20px;
}

/*==========================================
main_visual
===========================================*/

.main_visual {
 background-position: center;
}

.main_visual h1 {
  font-size: 22px;
  top: 55%;
  transform: translate(-50%,-50%);
  -webkit-text-size-adjust: 100%;
}
 



/*==========================================
service
===========================================*/

.service .service_list ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 50px;
}


/*==========================================
work
===========================================*/


.work_img ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 50px;

}



/*==========================================
contact
===========================================*/

form {
  width: 90%;
}



/*==========================================
footer
===========================================*/



.sns_area {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}




.sns_img {
  width:25%;
  padding: 100px 30px 30px 20px;
  box-sizing: border-box;

}











}