@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  color: #333;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: 'Noto Serif JP', serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

.brsp{
  display: none;
}

  .site-title {
    line-height: 200px;
  }

  .site-title a {
    display: block;
    color: #333;
    font-size: 35px;

  }

  .sec-title {
    font-size: 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 65px;
    letter-spacing:3px;
  }


  @media screen and (max-width: 768px) and (min-width:428px) {
    .site-title {
      line-height: 1;
    }

    .site-title a {
      font-size: 30px;
    }


    .sec-title {
      margin-bottom: 40px;
    }
}

@media screen and (max-width: 428px) {
  .brsp{
    display: block;
  }

  .site-title {
    line-height: 1;
  }

  .site-title a {
    font-size: 30px;
  }



}


  /* --------------------ヘッダー--------------------- */
  #header{
    max-width: 960px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 200px;
    padding: 0 4%;
    
  }

  #header nav ul{
    display: flex;
    padding: 10px 0;
  }

  #header nav ul li{
      margin-left: 30px;
      font-size: 0.9rem;
      letter-spacing: 2px;
  }

  #header nav ul li a{
      color: #8f6552;
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
  }

  #header nav ul li a:hover{
      opacity: 0.6;
      transition: all 0.5s ease;
      /* text-decoration: underline; */
  }

  @media screen and (max-width:768px){
    #header{
        max-width: 100%;
        flex-direction: column;
        height: auto;
        margin-top: 35px;
    }

    #header nav ul{
      padding: 20px 0;
    }

    #header nav ul li{
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-left: 40px;
    }

    #header nav ul li:first-child{
      margin-left: 0;
    }


  }

  /* -----------------メインビジュアル-------------------- */
  .mainvisual{
    background-image: url(../image/mainvisual.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 150px;
  }


  @media screen and (max-width: 600px) {
    .mainvisual {
      background-image: url(../image/mainvisual.sp.jpg);
      background-position: top;
      height: 500px;
      object-fit: cover;
  }


  }

  /* ----------------------アバウト---------------------- */
  #about{
    margin-bottom: 150px;
  }

  #about .about-list{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
  }

  #about .myphoto img{
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center bottom;
  }

  #about .text{
      width: 50%;
      margin-left: 50px;
      border-top: dotted 7px #e9dacb;
      border-bottom: dotted 7px #e9dacb;
      padding: 30px 0;

  }

  #about .text h3{
      font-size: 1.1rem;
      margin-bottom: 15px;
      /* border-bottom:double 6px #e9dacb ; */
  }


  #about .text p{
    font-size: 0.9rem;
    padding-top: 20px;
    line-height: 25px;
  }

  #about .text p span{
    /* border-bottom: solid 3px #8f6552; */
    }

  @media screen and (max-width:768px){
    #about .about-list {
      flex-direction: column;
    }

    #about .text {
      margin: 25px 0 0;
      width: 80%;
    }

    #about .text h3{
      text-align: center;
    }

    #about .text p {
      padding-top: 10px;
    }
  }


/* --------------------ワーク -------------------------*/
#works{
  margin-bottom: 80px;
}

#works .work-list ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 6%;

}

#works .work-list ul li{
  width: 45%;
  text-align: center;
  margin-bottom: 50px;
  opacity:0;
}

#works .work-list ul li.show{
  transition: all 2s;
  opacity: 1;
}


#works .work-list ul li img{
  border: solid 1px #ebebeb;
}

#works .work-list ul li a :hover{
  opacity: 0.6;
}

#works .work-list h3{
  font-size: 16px;
  margin: 15px 0;
  line-height: 24px;
}

#works .work-list .day{
  margin: 5px 0;
}

#works .work-list .text{
  line-height: 22px;
}

#works .work-list .text a{
  color: #8f6552;
  opacity: 0.5;

}

#works .work-list .text a:hover{
  color: #8f6552;
  opacity: 1;
  transition: all 0.5s ease;
}



#works .work-list .idpass{
  margin: 10px 0;
}




#works .work-list ul p{
  line-height: 20px;
}


@media screen and (max-width: 768px) {
  #works {
    padding: 0 2.5%;
    margin-bottom: 10px;
  }

  #works .work-list ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
}

#works .work-list ul li {
    width: 85%;
}

  #works .work-list h3 {
    font-size: 14px;
}

#works .work-list .day {
    font-size: 14px;
}

#works .work-list .text {
    font-size: 14px;
    width: 100%;
    margin: 0 auto;
    line-height: 20px;

}

#works .work-list .idpass {
    font-size: 14px;
}
}


/* ------------------コンタクト--------------------- */
#contact{
  line-height: 20px;
  padding: 150px 0 0;
  background-image: url(../image/contact06.jpg);
  background-position: center bottom;
  background-size: cover;
  object-fit: contain;
  height: 100vh;
  box-sizing: border-box;
}

.pc-only{
  display: block;
}

.sp-only{
  display: none;
}

.con-title {
  text-align: center;
}


/*----------------------SNS----------------------- */
.btn-social-giza{
  text-align: center;
  padding: 30px 0 0  ;
}

.btn-social-giza a {
  display: inline-block;
  text-decoration: none;
  font-size: 25px;
}
.btn-social-giza .fa-twitter {
  color: white;
  font-size: 18px;
}

.btn-social-giza .fa-instagram {
  color: white;
  font-size: 20px;
}


.btn-social-giza .fa-stack-2x {
  transition: .3s;
}
.btn-social-giza .btn-social-giza-twitter .fa-stack-2x {
  color: #8f6552;
  opacity: 0.6;
}

.btn-social-giza a:hover .fa-stack-2x {
  opacity: 1;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}


@media screen and (max-width: 768px) {
  .pc-only{
    display: none;
  }

  #contact {
    padding: 50px 0 ;
    background-image: url(../image/contact02.jpg);
    background-position: center;
    height: auto;
  }

  .sp-only{
    display: block;
  }

  #contact .sp-only{
    background: rgba(255, 255, 255, 0.8);
    margin: 0 5%;
    padding: 40px 0;
  }

  #contact .sec-title{
    margin-bottom: 40px;
  }

  .btn-social-giza{
    padding: 20px 0 0  ;
  }
  
}



/* --------------------フォーム-------------------- */
#contact1{
  background-color: #e9dacb;
}

form{
  text-align: center;
  margin-top: 30px;  
}

.form-list {
  margin: 0 auto 15px;
  width: 768px;

}

.form-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
}

.form-name::before{
  display: inline-block;
  content: "＊";
  color: #8f6552;
  /* background-color: #8f6552; */
  /* border-radius: 5px; */
  font-size: 16px;
  font-weight: normal;
  padding: 0 15px 0 10px;
}

#tel-icon::before{
  content: "";
  padding-left: 27px;
}


input {
  font-size: 16px;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  border: none;
  padding-left: 10px;
  /* background-color: #ebebeb; */
}

textarea#textarea {
  font-size: 16px;
  width: 100%;
  height: 150px;
  border-radius: 5px;
  border: none;
  padding-left: 10px;
  margin-bottom: 25px;
  /* background-color: #ebebeb; */


}

input.submit {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #8f6552;
  cursor: pointer;
  letter-spacing: .5rem;
}

input.submit:hover {
  color: #8f6552;
  background-color: #fff;
  border: solid 2px #8f6552;
}


  /* --------------------フッター------------------ */
  footer{
    /* background-color: #a16d5d; */
    max-width: 960px;
    margin: 0 auto;

  }

  footer .footer-list ul{
    display: flex;
    padding-top: 25px;
    height: 50px;

  }

  footer .footer-list ul li a{
    margin: 0 15px;
    font-size: 0.9rem;
    color: #8f6552;
    letter-spacing: 2px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;

  }

  footer .footer-list ul li a:hover{
    opacity: 0.6;
    transition: all 0.5s ease;
  }

  footer p{
    text-align: right;
    font-size: 0.7rem;
    padding-bottom: 12px;
    margin-right: 15px;
  }

  @media screen and (max-width:768px){
    footer .footer-list ul{
      justify-content: center;
      padding-top: 15px;
      height: 40px;
  
    }
  
    footer .footer-list ul li a{
      font-size: 0.8rem;
    }

    footer p{
      font-size: 9px;
      margin-right: 0;
      text-align: center;
    }
  }