@charset "UTF-8";
.scrollanime {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown2 {
  animation-name: fadeInDown2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes sub_main {
  0% {
    background-position: center top;
    opacity: 0;
  }
  100% {
    background-position: center bottom;
    opacity: 1;
  }
}
@keyframes fadeInDown2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*バウンドアニメーション*/
@keyframes fuwafuwa {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*上下の動きを指定*/
.updown {
  transform: translateY(-100px);
}

.downup {
  transform: translateY(100px);
}

/*左右の動きを指定*/
.sect02 {
  overflow: hidden;
} /*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(200px);
}

.slide-left {
  transform: translateX(-200px);
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.fw_b {
  font-weight: bold;
}

.pb_50 {
  padding-bottom: 50px;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

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

#menu .drawer-menu {
  display: flex;
  justify-content: space-between;
  overflow: visible;
  align-items: center;
  font-family: "Noto serif JP", "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "HG明朝B", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 0 20px;
}
#menu .drawer-menu li.menu_link a {
  padding: 25px 0 15px 0;
  transition: 0.5s;
  display: block;
}
#menu .drawer-menu li.menu_link a:hover {
  color: #977B2E;
}
#menu .drawer-menu li.menu_dropdown {
  position: relative;
}
#menu .drawer-menu li.menu_dropdown span {
  padding: 25px 0 15px 0;
  display: block;
}
#menu .drawer-menu li.menu_dropdown .sub-menu {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
  display: none;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #977B2E;
}
#menu .drawer-menu li.menu_dropdown .sub-menu li {
  display: block;
  white-space: nowrap;
  text-align: center;
  padding: 0 10px;
}
#menu .drawer-menu li.menu_dropdown .sub-menu li a {
  padding: 10px;
  border-bottom: 1px solid #977B2E;
}
#menu .drawer-menu li.menu_dropdown .sub-menu li:last-child a {
  border: none;
}

/* ハンバーガーボタンクリック時メニュー展開・収納にかかる時間を遅くする */
#wrapper, #nav {
  transition: transform 0.5s;
}

/* PC以上のデフォルトスタイル - 1100px以上のとき */
@media screen and (min-width: 1100px) {
  .drawer-toggle, .drawer-hamburger-icon {
    display: none !important;
  }
  .sr-only {
    display: none !important;
  }
}
/* モバイルおよびタブレット用 - 1100px以下のとき */
@media screen and (max-width: 1099px) {
  .drawer--right.drawer-open .drawer-hamburger {
    right: 40rem;
    background-color: rgba(59, 50, 40, 0.9);
  }
  .drawer--right .drawer-nav {
    right: -40rem;
    background-color: rgba(59, 50, 40, 0.9);
  }
  .drawer-hamburger {
    z-index: 999;
    top: 0;
    width: 4rem;
    background: transparent;
    padding: 26px 1.7rem 42px;
  }
  .drawer-hamburger-icon:before {
    top: -15px;
  }
  .drawer-hamburger-icon:after {
    top: 15px;
  }
  .drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
    background-color: #fff;
  }
  /* ハンバーガーボタンオープン時の設定 */
  .drawer-open .drawer-hamburger-icon:after, .drawer-open .drawer-hamburger-icon:before {
    background-color: #fff;
  }
  /* メニューをスクロールできるようにする */
  .drawer--top.drawer-open .drawer-nav {
    top: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .drawer--right.drawer-open .drawer-nav,
  .drawer--right .drawer-hamburger,
  .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    right: 0;
    top: 7px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(59, 50, 40, 0.9);
  }
  #menu {
    background-color: transparent;
    width: 40rem;
    z-index: 995;
  }
  #menu .drawer-menu {
    display: block;
    background-color: rgba(59, 50, 40, 0.9);
    color: #FFF;
    padding: 0 40px 30px 40px;
  }
  #menu .drawer-menu li.menu_link a, #menu .drawer-menu li.menu_link span {
    margin: 0;
    padding: 20px 0;
    position: relative;
    border-bottom: 1px solid #977B2E;
  }
  #menu .drawer-menu li.menu_link.menu_dropdown .sub-menu {
    position: static;
    transform: none;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: transparent;
    width: 100%;
  }
  #menu .drawer-menu li.menu_link.menu_dropdown .sub-menu li {
    display: block;
    white-space: nowrap;
    text-align: left;
    padding: 0;
  }
  #menu .drawer-menu li.menu_link.menu_dropdown .sub-menu li a {
    padding: 18px 20px 18px 20px;
    box-shadow: none;
    border: none;
  }
  #menu .drawer-menu li.menu_link.menu_dropdown .sub-menu li a:before {
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    left: -2px;
    top: 50%;
    content: "";
  }
}
/*スマホ　*768px*/
/*SE対策*600px*/
@media screen and (max-width: 600px) {
  .drawer--right.drawer-open .drawer-hamburger {
    right: 0;
  }
  .drawer--right .drawer-nav {
    right: -60rem;
  }
  #menu {
    width: 90%;
  }
}
/*SE対策*380px*/