@charset "utf-8";

/* リセットコード */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* リストのアイコン非表示 */
ul,
ol {
  list-style: none;
}

/* リンクの装飾をなくす */
a {
  color: inherit;
  text-decoration: none;
}

/* ページ内のスクロールをなめらかにする */
html {
  scroll-behavior: smooth;
}


/* テキストフォントを指定する */
body {
  font-family: sans-serif;
  font-size: 16px;
  color: #251F1C;
  line-height: 1;
  background-color: #fffcf7;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 300;
  font-style: normal;
}

/* 画像のはみ出し防止 */
img {
  max-width: 100%;
}


/* 中央揃えしたいテキスト用 */
.center {
  text-align: center;
}

/* 中央揃えしたい画像用 */
.aligncenter {
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ヘッダー部分  */
.header-inner {
   max-width: 1200px;
   height: 135px;
   margin-left: auto;
   margin-right: auto;
   margin-bottom: 15px;
   padding-left: 0px;
   padding-right: 40px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.toggle-menu-button {
   display: none;
}

.header-logo {
  display: block;
  width: 600px;
}

.site-menu ul {
  display: flex;
}

.site-menu ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-left: 20px;
  margin-right: 20px;
}

.me:hover {
  color: #da6a29;
}

/* フッター部分 */
.footer {
  color: #ffffff;
  background-color: #251F1C;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-site-menu{
  margin-bottom: 20px;
}

.footer-site-menu ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-site-menu ul {
  display: flex;
}

.footer-site-menu ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-comment {
  font-size: 12px;
  line-height: 18px;
  margin-top: 20px;
  text-align: center;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 30px;
}


/* スマホ用 */
@media (max-width: 800px){
  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin-top: 20px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fffcf7;
    height: 50px;
    z-index: 20;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);

  }

  .header-inner {
    padding-left: 0px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }

.header-site-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  color: #ffffff;
  background-color: #736E62;
  padding-top: 30px;
  padding-bottom: 50px;
  display: none;
}

.header-site-menu.is-show {
  display: block;
}

.toggle-menu-button {
  display: block;
  width: 44px;
  height: 34px;
  background-image: url(../sozai/icon-menu.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

  .header-logo {
    width: 200px;
  }

  .main {
    padding-top: 50px;
  }

.footer-comment {
  font-size: 10px;
  margin-top: 30px;
  text-align: center;
}

  .copyright {
    font-size: 12px;
    margin-top: 30px;
  }
}