/*ページデザイン編集画面の調整*/
/*header*/

.hWrap {
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  z-index: 999;
  position: absolute;
  display: block;
}

.hConte {
  display: none;
}

.hArea {
  padding: 15px 5px;
  width: 100%;
  display: flex;
  /* justify-content: center; */
}

/*スマホ時のナビ*/

.spNav {
  max-width: 1920px;
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999999;
}

.spNavArea {
  width: 100%;
  display: flex;
}

.spNavConte-l {
  width: 38%;
  background: #FDFAF7;
  border-right: 1px solid #999;
}


.spNavConte-m {
  width: 24%;
  background: #333333;
}

.spNavLink {
  padding: 11px 5px 5px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spFa {
  font-size: 23px;
  color: #1A1A20;
}


.spNavBtnBar {
  max-width: 36px;
  height: 26px;
  width: 100%;
  position: relative;
}

.spNavBtnTxt {
  margin: 5px auto 0;
  font-size: 12px;
  color: #fff;
}

.spNavLinkTxt {
  margin: 5px auto 0;
  font-size: 12px;
  color: #333;
}

.spNavBtn {
  padding: 12px 5px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.spNavBtnBarItem {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: ease .5s;
}

.spNavBtnBarItem:nth-of-type(1) {
  top: 0;
}

.spNavBtnBarItem:nth-of-type(2) {
  top: 12px;
}

.spNavBtnBarItem:nth-of-type(3) {
  bottom: 0;
}

.open .spNavBtnBarItem {
  transition: ease .5s;
}

.open .spNavBtnBarItem:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}

.open .spNavBtnBarItem:nth-of-type(2) {
  opacity: 0;
}

.open .spNavBtnBarItem:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

.spMenu {
  margin: auto;
  padding: 100px 15px 0;
  max-width: 1920px;
  width: 100vw;
  position: fixed;
  top: -200%;
  background: #333333;
  z-index: 99999;
  transition: ease .5s;
  height: 100% !important;
}

.spMenu.open {
  top: 0;
}

.spMenuArea {
  width: 100%;
  height: 100%;
}

.spMenuConte {
  padding: 50px 0 50px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
}

.spMenuConte::-webkit-scrollbar {
  display: none;
}

.spMenuLink {
  padding: 7px 5px;
  text-align: center;
  display: block;
  color: #fff;
  border-bottom: 1px solid #CCC;
  /* font-family: 'Marcellus', serif; */
  font-weight: 500;
}

.spMenuLink:hover {
  color: #FFF;
  background: rgb(7, 65, 182);
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:768px) {

  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

  .spNav {
    display: none;
  }

  .hWrap {
    display: none;
  }

  /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

}

/* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */