@charset "utf-8";


/* すべてを対象にする */
*,
::before,
::after{
  /* 要素の余白をなくす */
  padding: 0;
  margin: 0;
  /* 要素の幅と高さの計算方法を指定する */
  box-sizing: border-box;
}

/* リストの頭にあったアイコンを非表示にする */
ul,
ol{
  list-style: none;
}

/* リンクの文字色と下線をなくす */
a{
  color: inherit;
  text-decoration: none;
}


body{
  /* font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
  font-family:'メイリオ', 'Meiryo', sans-serif;
  font-size: 16px;
  color: #3f3c3c;
  line-height: 1.5;
  /* background-color: #ff0202; */
}

img{
  max-width: 100%;
}

.header{
  top: 0;
  left: 0;
  width: 100%;
  /*background-color: rgb(51, 51, 51, 0.9);*/
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); */
}

/* ヘッダー */
.header-inner{
  position: fixed;
  width: 100%;
  max-width: 1500px;
  height: 50px;
  /* 要素中央揃え */
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  /* ロゴとナビゲーションを横並びにする */
  display: flex;
  /* 左右の端に寄せる */
  justify-content: space-between;
  /* 上下の高さをそろえる */
  align-items: center;
}

.header-logo{
  display: block;
  width: 100px;
}

.site-menu ul{
  display: flex;
}
.site-menu ul li{
  margin-left: 20px;
  margin-right: 20px;
  font-size: 20px;
}
.site-menu ul li a{
  color: #2e2921;
  font-family: 'Caveat', cursive;
  font-weight: bold;
}

.footer{
  color: #ffffff;
  background-color: rgb(51, 51, 51, 0.9);
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-site-menu ul{
  display: flex;
}
.footer-site-menu ul li{
  margin-left: 20px;
  margin-right: 20px;
  font-size: 20px;
}
.footer-site-menu ul li a{
  color: #fff;
  font-family: 'Caveat', cursive;
  font-weight: bold;
}

.footer-logo{
  display: block;
  width: 100px;
  margin-top: 90px;
}



.name{
  font-size: 20px;
}

.footer-address{
  text-align: center;
  font-size: 10px;
  margin-top: 16px;
}

.footer-tel{
  font-size: 10px;
  font-weight: bold;
  margin-top: 16px;
}

.footer-time{
  font-size: 10px;
  margin-top: 16px;
}

.copyright{
  font-size: 14px;
  font-weight: bold;
  margin-top: 90px;
}

.title h2{
  font-family: 'Caveat', cursive;
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px; 
}
.title h2::after{
  content: '';
  display: block;
  width: 35px;
  height: 3px;
  background-color: #6e6450;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
}


/*モバイル用*/
@media (max-width:800px){
  .site-menu ul{
    display: block;
    /* 中央揃え */
    text-align: center;
  }

  /* ヘッダーを上部に固定 */
  .header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*background-color: #e7e7e7b1;*/
    height: 120px;
    /* 常に前面に持ってくる */
    z-index: 10;
    /* 影の色を指定 */
    /* box-shadow: 0 3px 6px rgba( 0, 0, 255, 0.1); */
  }

  /* .header-inner{
    height: 120px;
  } */

  .header-inner{
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }

  .header-site-menu{
    position: block;
    top: 100%;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #736e62;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }

  .header-site-menu.active{
    display: block;
  }

  .header-logo{
    width: 90px;
  }

  .toggle-menu-button{
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../img/icon-menu.png);
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  .footer-logo{
    margin-top: 100px;
  }
  .footer-tel{
    font-size: 10px;
  }

  .copyright{
    margin-top: 50px;
  }
} 