@charset "utf-8";

/*====================================================================
ハンバーガーメニュー
====================================================================*/

#header {
  position: fixed;
  top: 0;
  left: calc(50% - 50vw);
  background: rgba(255, 255, 255, 0.9);
  width: 100vw;
  z-index: 10;
}
#header .header_wrapper {
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 740px;
}
#header .header_logo {
  text-align: left;
  padding: 15px;
  padding-right: 75px;
  padding-bottom: 10px;
}
#header h1 {
  line-height: 0;
}
#header h1 img {
  height: 33px;
}
#header p {
  margin-top: 10px;
  font-size: 1.4rem;
  text-align: left;
  font-weight: 600;
}
/*ドロワーメニュー*/
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.menu-trigger {
  display: inline-block;
  width: 24px;
  height: 20px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 14px;
  z-index: 100;
/*   transform: translateX(0);
  transition: transform .5s;
 */}
/* .menu-trigger.active {
  transform: translateX(-250px);
}
 */
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all .5s;
}
.menu-trigger.active span {
  background-color: #000;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 9px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
/*ナビメニュー*/
nav {
  width: 25%;
  min-width: 360px;
  height: 100%;
  padding-top: 86px;
  background-color: #fff;
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  z-index: 12;
  transition: all .5s;
  transform: translate(100%);
}
nav.open {
  transform: translateZ(0);
}
/*店舗一覧*/
.storeListTtl {
  font-size: 1.6rem;
  background-color: #005e3c;
  color: #fff;
  padding: 14px;
  margin-bottom: 10px;
}
.storeListLogo {
  padding: 15px 30px;
  text-align: center;
}
.storeListLogo img {
  max-width: 200px;
}
.storeList {
  margin-top: 10px;
}
.storeList:last-child {
  margin-bottom: 50px; /* 最後の要素の下にだけ余白 */
}
.storeList input {
  display: none;
}
.storeList label {
  text-align: left;
  line-height: 2;
  font-size: 1.8rem;
  font-weight: 600;
  color: #005e3c;
  padding-left: 20px;
  cursor: pointer;
  position: relative;
  display: block;
}
.storeList label:after {
  position: absolute;
  right: 30px; /* 左からの距離 */
  top: 50%; /* 上下中央配置 */
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);
  content: "＋"; /* アイコン */
}
.storeList input:checked ~ label::after {
  content: "−"; /* クリック後のアイコン */
  right: 35px;
}
.storeList ul {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: .3s; /* 開閉スピード */
  margin-bottom: 5px;
}
.storeList input:checked ~ ul {
  height: auto;
  opacity: 1;
}
.storeList-inside li {
  text-align: left;
  margin: 0 10px;
  border-bottom: 1px solid #eee;
}
.storeList-inside li a {
  display: block;
  padding: 10px 10px 10px 15px;
  color: #666;
  font-size: 1.2em;
}
.storeList-inside li a:hover {
  background: #eee;
}
.innner-storeList label {
  background-color: #eee;
}
/*ナビボタン*/
.navBtn li {
  margin: 20px 15px;
}
.navBtn ul li a {
  display: block;
  padding: 15px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 4px;
  background: #666;
}
.navBtn ul li a:hover {
  opacity: .9;
}
.orange {
  background: #ef8806 !important;
}
@media (max-width: 640px) {
  /*main.open {
    transform: translateX(-88%);
  }*/
  nav {
    width: 88% !important;
    min-width: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/*====================================================================
トップにもどるボタン
====================================================================*/

#pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index:1;
}
#pagetop a:hover {
  opacity: .9;
}
#pagetop img {
  width: 56px;
}

/*====================================================================
ローディング
====================================================================*/

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background:#fff;
}
