@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: "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* ヘッダーが他の要素の上にくるように */
  background-color: #fff;
  /* 背景色をつけておくと重なっても見やすい */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* お好みで影もつけてみて！ */
}

.main {
  padding-top: 85px;
}

.header-inner {
  max-width: 1200px;
  height: 85px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

.header-logo {
  width: 55px;
}


.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
}


/* aタグの装飾リセット */
.site-menu ul li a {
  position: relative;
  color: #333;
  /* 好きな文字色に変えてOK */
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* 下線用の擬似要素 */
.site-menu ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #B08D57;
  /* 下線の色 */
  transition: width 0.3s ease;
}

/* ホバー時 */
.site-menu ul li a:hover {
  color: #B08D57;
}

.site-menu ul li a:hover::after {
  width: 100%;
}

.footer {
  padding-top: 30px;
  padding-bottom: 15px;
  padding-left: 40px;
  padding-right: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-down {
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  display: block;
  width: 210px;
  margin-bottom: -15px;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2%;
  margin-bottom: 2%;
}

.instagram-logo {
  width: 40px;
  display: block;
  margin-right: 160px;
}

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

@media(max-width:880px) {
  .header-logo {
  width: 42px;
}
  .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: #ffffff;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

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

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    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(../image/index/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  .main {
    padding-top: 50px;
  }

  .footer-top nav {
    display: none;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-down{
    display: block;
  }

  .instagram-logo {
    width: 35px;
    margin-top: 10px;
  }


}