@charset "utf-8";

/* 共通パーツ */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Josefin Sans','Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .15em;
  color: #56411C;
  font-feature-settings: "palt";
  background-color: #FBF6F0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  transition: .5s;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.section {
  margin-top: 120px;
}

.section_title {
  text-align: center;
}

.h2_title {
  font-size: 36px;
  font-weight: 500;
}

.h2_title span {
  font-size: 18px;
  display: block;
}


.button a {
  display: block;
  background-color: #CCA375;
  border-radius: 5px;
  padding: 15px 10px 15px 10px;
  text-align: center;
  color: #FFF;
  transition: .5s;
  position: relative;
  border: solid 2px
}

.button a:hover {
  background-color: #FFF;
  color: #CCA375;
  border: solid 2px #cca375;

}

.button a::after {
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
}


.button a:hover::after {
  content: '';
  border: 0;
  border-top: solid 2px #CCA375;
  border-right: solid 2px #CCA375;
  display: inline-block;
  width: 10px;
  height: 10px;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
}


/* ヘッダー */

.gNav_list {
  display: flex;
  justify-content: space-evenly;
  padding-top: 1.5em;
  padding-bottom: 1.5em;

}

.gNav_list a {
  transition: .5s;
}

.gNav_list a::after {
  content: "";
  display: block;
  width: 0;
  height: 1.5px;
  background-color: #56411C;
  transition: .5s;
}

.gNav_list a:hover::after {
  width: 100%;
}

.gNav_list a:hover {
  color: #926f5d;
}

.gNav_list li {
  font-weight: 600;
}


/* メインビジュアル */

.mv_image {
  height: 100vh; 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../image/mv.jpg);
}

/* works */

.bg_write {
  background-color: #fff;
  margin-top: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
  border-radius: 5px;
}

.works_box {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 40px;  
}

.works_title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  border-bottom: dotted 3px #E0BF98;
  margin-top: 25px;
}

.works_text {
  text-align: center;
  margin-top: .5em;
  margin-bottom: 25px;
}


/* about */

.about_container {
  display: flex;
  justify-content: space-evenly;
}

.about_box {
  margin-top: 60px;
}

.about_title{
  text-align: center;
}

.about_text {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.about_button {
  max-width: 260px;
  margin: 0 auto;
}


/* contact */

.bg_brown {
  background-color: #E0BF98;
}

.contact section {
  margin-top: 90px;
  margin-bottom: 90px;
}


.contact_box {
  padding-top: 85px;
  padding-bottom: 80px;
  color: #FFF;
}

.contact_title {
  font-size: 36px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact_title::after{
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #FFF;
}

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


.contact_button a {
    display: block;
    background-color: #FFF;
    border-radius: 5px;
    padding: 15px 10px 15px 10px;
    text-align: center;
    color: #CCA375;
    transition: .5s;
    position: relative;
    border: solid 2px
  }
  
.contact_button a:hover {
    background-color: #CCA375;
    color: #FFF;
    border: solid 2px #cca375;
  
  }
  
.contact_button a::after {
      content: '';
      border: 0;
      border-top: solid 2px #CCA375;
      border-right: solid 2px #CCA375;
      display: inline-block;
      width: 10px;
      height: 10px;
      /* 矢印アイコンの位置を設定 */
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
  }
  
  
  .contact_button a:hover::after {
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
  }

  .contact_button2 {
    max-width: 260px;
    margin: 0 auto;
  }
  


/* フッター */

.footer {
  height: 200px;
  background-color: #926f5d;
  color: #FFF;
}

.footer_list {
  display: flex;
  justify-content: space-evenly;
  max-width: 50%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.footer_list a {
  transition: .5s;
  font-weight: 600;
}

.footer_list a::after {
  content: "";
  display: block;
  width: 0;
  height: 1.5px;
  background-color: #FFF;
  transition: .5s;
}

.footer_list a:hover::after {
  width: 100%;
}

.footer_list a:hover {
  color: #fff;
}

.Copyright {
  text-align: center;
  background-color: #926f5d;
  color: #fff;
}

