@charset "UTF-8";
/*gMenu.cssを削除してこれに差し替え*/
.smpMenu {
  background: #fff;
  width: 100%;
  height: 100dvh;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  padding-bottom: 60px;
  z-index: 999;
  overflow: hidden;
  text-align: left;
  color: #222;
}
.smpMenu.show {
  visibility: visible;
  opacity: 1;
}
.smpMenu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  position: relative;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .smpMenu__header {
    height: 60px;
    padding: 0 3.4666666667vw 0 2.6666666667vw;
  }
}
.smpMenu__header__logo img {
  width: 222px;
}
@media screen and (max-width: 767px) {
  .smpMenu__header__logo img {
    width: 140px;
  }
}
.smpMenu__header__b_close {
  width: 48px;
  height: 48px;
  position: relative;
  transition-duration: 0.3s;
}
.smpMenu__header__b_close span {
  width: 100%;
  height: 3px;
  background: #626262;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
  animation-duration: 0.6s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}
.smpMenu.show .smpMenu__header__b_close span {
  animation-name: smp_b_close;
}
.smpMenu.show .smpMenu__header__b_close span:last-of-type {
  animation-name: smp_b_close2;
}

.smpMenu__header__b_close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .smpMenu__header__b_close {
    width: 36px;
    height: 36px;
  }
}
@keyframes smp_b_close {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) rotate(-135deg);
  }
}
@keyframes smp_b_close2 {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) rotate(135deg);
  }
}
.smpMenu__container {
  /*width:590px;*/
  padding-top: 60px;
  padding-bottom: 40px;
  margin: 0 auto;
  height: calc(100% - 90px);
  width: calc(100% + 17px);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .smpMenu__container {
    font-size: 14px;
    padding-top: 40px;
    width: 100%;
  }
}
.smpMenu__container .menu_item {
  max-width: 590px;
  width: 80vw;
  border-bottom: solid 1px #ccc;
}
.smpMenu__container .menu_item:first-of-type {
  border-top: solid 1px #ccc;
}
.smpMenu__container .menu_item dl {
  font-size: 16px;
}
.smpMenu__container .menu_item dl > dt a {
  padding: 1em 0.8em;
}
.smpMenu__container .menu_item dl > dt.b_opener {
  padding: 1em 0.8em;
  position: relative;
}
.smpMenu__container .menu_item dl > dt.b_opener > i {
  background: #777;
  position: absolute;
  right: 1em;
  width: 1.1em;
  height: 1px;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 0.3s;
}
.smpMenu__container .menu_item dl > dt.b_opener > i:last-of-type {
  transform: translateY(-50%) rotate(90deg);
}
.smpMenu__container .menu_item dl.open > dt > i:last-of-type {
  transform: translateY(-50%) rotate(0deg);
}
.smpMenu__container .menu_item dl > dd {
  display: none;
}
.smpMenu__container .menu_item dl > dd ul li {
  padding: 1em 0.8em;
  position: relative;
  text-indent: 1.2em;
}
.smpMenu__container .menu_item dl > dd ul li.has_subMenu {
  padding: 0 0;
}
.smpMenu__container .menu_item dl > dd ul li a {
  position: relative;
  display: block;
}
.smpMenu__container .menu_item dl > dd ul li a i {
  position: absolute;
  right: 0.6em;
  width: 0.5em;
  height: 0.5em;
  display: block;
  top: 50%;
  border-top: solid 2px #666;
  border-right: solid 2px #666;
  transform: translateY(-50%) rotate(45deg);
}
.smpMenu__container .menu_item dl > dd ul li ul li {
  padding-left: 1.8em;
}
.smpMenu__container .menu_item.link dl dd {
  display: block;
}
.smpMenu__container .menu_item.link dl dd ul li {
  text-indent: 0;
}
.smpMenu__footer {
  /*
  display:flex;
  justify-content: center;
  */
  width: 100%;
  height: 70px;
  padding: 0 0 10px 17px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .smpMenu__footer {
    padding: 0 0 10px 0;
  }
}
.smpMenu__footer p {
  display: inline-block;
  height: 50px;
  position: relative;
  max-width: 196px;
  width: 30%;
  margin: 0 auto;
}
.smpMenu__footer p a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 16px;
  color: #15336c;
  transition-duration: 0.3s;
}
.smpMenu__footer p a i {
  margin-right: 6px;
}
.smpMenu__footer p a i img {
  filter: invert(1);
}
.smpMenu__footer p a:hover {
  opacity: 0.7;
}
.smpMenu__footer p.modelhouse a i img {
  width: 20px;
}
.smpMenu__footer p.catalog a i img {
  width: 22px;
}
.smpMenu__footer p.contact a i img {
  width: 22px;
}
@media only screen and (max-width: 767px) {
  .smpMenu__footer p {
    height: 60px;
    border: none;
  }
  .smpMenu__footer p a {
    font-size: 14px;
  }
  .smpMenu__footer p.modelhouse a i img {
    width: 18px;
  }
  .smpMenu__footer p.catalog a i img {
    width: 20px;
  }
  .smpMenu__footer p.contact a i img {
    width: 20px;
  }
}/*# sourceMappingURL=smpMenu.css.map */