/******************************
ヘッダー
******************************/
#header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background: #6e1718;
  filter: alpha(opacity=50);
  height: 70px;
  transition: all 1s ease-in-out;
  font-weight: normal;
  box-shadow: 3px 3px 7px rgba(255, 255, 255, 0.2);
  top: 0;
  border-bottom: #b1946a solid 4px;
  background: url(../img/bg_2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position: center top;
  border-image: linear-gradient(to right, #8D5228, #ECDCB9, #8D5228) 10;
}
#header .inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
#header .logo {
  width: 220px;
}
#header .logo a {
  height: 70px;
  display: flex;
  width: 220px;
  align-items: center;
}
#header .logo img {
  width: 100%;
}
@media screen and (max-width:1024px) {
  #header {
    height: 50px;
  }
  #header .logo {
    top: 0;
  }
}
@media screen and (max-width:798px) {
  #header .inner {
    width: 100%;
  }
}
/******************************
PCナビ
******************************/
#header .sp-nav {
  display: none;
}
#header nav {
  width: 100%;
}
#header nav a {
  display: inline-block;
  margin: 0 auto 5px;
  color: #fff;
}
#header nav .main-nav {
  display: flex;
  display: flex;
  top: 6px;
  position: absolute;
  right: 0;
}
#header .main-nav li {
  margin: 15px;
}
@media screen and (max-width:1024px) {
  #header .pc-nav {
    display: none;
  }
  #header .sp-nav {
    display: block;
  }
  #header .logo img {
    width: 100%;
    margin-left: 10px;
  }
  #header .logo a {
    height: 50px;
  }
}
/******************************
SPナビ
******************************/
.menu-btn {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
}
.menu-btn span {
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: all .4s;
  position: absolute;
  left: 12px;
}
.menu-btn span:nth-of-type(1) {
  top: 16px;
}
.menu-btn span:nth-of-type(2) {
  top: 24px;
}
.menu-btn span:nth-of-type(3) {
  top: 32px;
}
.open .menu-btn span:nth-of-type(1) {
  width: 27px;
  -webkit-transform: translateY(8px) rotate(-315deg);
  transform: translateY(8px) rotate(-315deg);
}
.open .menu-btn span:nth-of-type(2) {
  opacity: 0;
}
.open .menu-btn span:nth-of-type(3) {
  width: 27px;
  -webkit-transform: translateY(-8px) rotate(315deg);
  transform: translateY(-8px) rotate(315deg);
}
.menu-area {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  color: #FFF;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  z-index: 999;
  display: none;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: url(../img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position: center top;
}
.menu-area .inner {
  margin: 50px auto 0;
  height: calc(100vh - 50px);
  display: table;
  width: 90%;
}
.sp-logo {
  width: 200px;
  margin-top: 10px;
  position: absolute;
  left: 30px;
}
.menu-area .list-wrap {
  display: table-cell;
  vertical-align: middle;
}
.menu-area a {
  color: #fff;
  display: block;
}
.menu-area dl {
  margin: 0 auto;
}
.menu-area dl ul {
  margin: 0 auto 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.menu-area dl li {
  padding: 10px 10px 0 10px;
  float: left;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.menu-area .item-list {
  border-bottom: 1px solid #8c772e;
  font-size: 20px;
  line-height: 36px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  font-family: 游明朝, 'Yu Mincho', YuMincho, 'Noto Serif JP', serif, '游ゴシック', YuGothic, 'Meiryo', 'メイリオ';
}
.menu-area .item-list small {
  font-size: 16px;
}
.menu-area .list-wrap dd img {
  width: 25px;
}
.menu-area .list-wrap dt img {
  width: 60%;
}
@media screen and (max-width:798px) {
  #header .menu-area .inner {
    width: 90%;
  }
}
@media screen and (min-width:560px) {
  .menu-area dl ul {
    margin-bottom: 50px;
  }
}