@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 1.6em; /*em=親要素のfont-sizeを基準に大きさを計算する*/
  line-height: 2.4rem; /*rem=html要素のfont-sizeを基準にする*/
  text-align: center;
  letter-spacing: .5px;
}
section h2 {
  font-size: 2.4rem;
}
ul {
  list-style: none;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*ヘッター*/
.header-content-wrapper {
  padding: 12px 20px;
  margin: 0 auto;
  position: fixed;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  color: #9a6f1a;
  width: 100%;
  z-index: 99;
  height: 80px;
}
.header-title-sb {
  font-size: 1.0rem;
  text-align: left;
}
.header-title {
  font-size: 2.2rem;
  padding-top: 5px;
}
.gnav__menu {
  display: flex;
}
.gnav__menu__item {
  padding: 20.5px 10px;
  font-size: 1.3rem;
}
.gnav__menu__item a {
  text-decoration: none;
  color: #333;
}
.open-button, .close-button {
  display: none;
}
@media (max-width: 1024px) {
  .header-content-wrapper {
    height: 65px;
    padding: 0 0 0 20px;
  }
  .header-title-sb {
    padding-top: 5px;
    font-size: 1.0rem;
    text-align: left;
  }
  .header-title {
    font-size: 1.6rem;
    padding-top: 0;
    font-weight: 600;
  }
  .open-button {
    display: block;
    position: absolute;
    right: 0px;
    width: 50px;
    height: 65px;
    background: #9a6f1a;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    top: 20px;
    right: 12px;
    height: 2px;
    width: 25px;
    background: #fff;
    display: block;
    content: "";
  }
  .open-button span:before {
    top: 10px;
    right: 0px;
  }
  .open-button span:after {
    top: 20px;
    right: 0px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 40px;
    padding: 20px;
  }
  .close.icon {
    color: #000;
    position: absolute;
    margin-top: 0;
    margin-left: 0;
    width: 21px;
    height: 21px;
  }
  .close.icon:before {
    content: '';
    position: absolute;
    top: 10px;
    width: 21px;
    height: 1px;
    background-color: currentColor;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .close.icon:after {
    content: '';
    position: absolute;
    top: 10px;
    width: 21px;
    height: 1px;
    background-color: currentColor;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .close-txt {
    position: absolute;
    display: block;
    top: 40px;
    font-size: 1.0rem;
    color: #333;
    width: 50px;
  }
  .gnav {
    display: none;
    z-index: 10000;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 70%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .gnav__menu {
    display: block;
    font-size: 1.5rem;
  }
  .gnav__menu__item {
    padding: 10px 0px;
    text-align: left;
    border-bottom: solid 1px #eae1d0;
    padding-left: 20px;
  }
  .gnav__menu__item:first-child {
    border-top: solid 1px #eae1d0;
  }
  .btn-tel {
    display: block;
    position: absolute;
    top: 10px;
    right: 65px;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #9a6f1a;
    padding: 5px 0;
  }
  .btn-tel::before {
    content: "";
    background: url("../image/btn-tel.png") no-repeat center;
    max-width: 100%;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 10px;
    right: 9px;
  }
}
/*フッター*/
#foot {
  background-color: #9a6f1a;
  margin: 0 auto;
}
.foot-bg {
  color: #fff;
  padding: 2% 0;
  margin: 0 auto;
  max-width: 960px;
}
.right {
  float: right;
  width: 48%;
  text-align: right;
}
.tel {
  margin: 2rem 0 0 0;
}
.tel img {}
.left {
  text-align: left;
  padding-top: 1rem;
}
.name-jp {
  font-size: 1.4rem;
  padding-bottom: 1rem
}
.name {
  font-size: 3rem;
  padding-bottom: 5rem
}
.copyright {
  font-size: 1.2rem;
  padding-top: .5rem;
}
.name-jp1, .name1 {
  display: none;
}
@media (max-width: 925px) {
  .foot-bg {
    padding: 10% 5%;
    position: relative;
  }
  .right {
    float: none;
    width: 100%;
    text-align: left;
  }
  .name-jp, .name {
    display: none;
  }
  .name-jp1, .name1 {
    display: block;
  }
  .name-jp1 {
    font-size: 1.4rem;
    padding-bottom: 1rem;
  }
  .name1 {
    font-size: 2.5rem;
    padding-bottom: 3rem;
  }
  .tel {
    margin: 0;
  }
  .tel img {
    max-width: 70%;
    height: auto;
  }
  .copyright {
    font-size: 1.1rem;
    position: absolute;
  }
}
#scroll-top {
  background-color: #fff;
  color: #e8d3aa;
  bottom: 20px;
  padding: 20px;
  position: fixed;
  right: 20px;
  border: solid 1px #e8d3aa;
  border-radius: 50%;
  height: 50px;
  width: 50px;
}
#scroll-top a {
  position: absolute;
  top: 12px;
  right: 11px;
  text-decoration: none;
  color: #c99630;
  font-size: 1.2rem;
  font-weight: 600;
}