@charset "UTF-8";
.l-hd {
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 999;
}
.p-hd {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 0 40px;
  width: 100%;
  height: 100px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-hd {
    height: 60px;
    padding: 0 0 0 17px;
  }
}
.p-hd.scroll {
  background-color: #fff;
}
.p-hd__logo {
  max-width: 146px;
}
@media only screen and (max-width: 480px) {
  .p-hd__logo {
    max-width: 128px;
  }
}
.l-sp-menu-btn {
  position: fixed;
  width: 30px;
  height: 20px;
  top: 39px;
  right: 40px;
  z-index: 9999;
}
.l-sp-menu-btn--home .p-sp-menu-btn__border {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .l-sp-menu-btn {
    top: 19px;
    right: 20px;
  }
}
.l-sp-menu-btn.scroll:not(.is-active) .p-sp-menu-btn__border {
  background-color: #000;
}
.p-sp-menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.p-sp-menu-btn__border {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-sp-menu-btn__border--01 {
  top: 0;
}
.p-sp-menu-btn__border--02 {
  top: 10px;
}
.p-sp-menu-btn__border--03 {
  top: 20px;
}
.is-active .p-sp-menu-btn__border {
  background: #fff;
}
.is-active .p-sp-menu-btn__border--01 {
  top: 2px;
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.is-active .p-sp-menu-btn__border--02 {
  opacity: 0;
}
.is-active .p-sp-menu-btn__border--03 {
  top: 14px;
  -webkit-transform: translateY(-4px) rotate(-45deg);
  transform: translateY(-4px) rotate(-45deg);
}
.l-sp-menu {
  display: block;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7019607843);
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 1000;
}
.l-sp-menu.is_open {
  right: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.p-sp-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.p-sp-menu__list {
  width: 100%;
  max-width: 206px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-sp-menu__list {
    position: relative;
    top: 36px;
  }
}
.p-sp-menu__item {
  border-bottom: 1px solid #fff;
  padding: 26px 0;
}
.p-sp-menu__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .p-sp-menu__item:hover > .p-sp-menu__link {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .p-sp-menu__item {
    padding: 21px 0 22px;
    position: relative;
    top: -10px;
  }
}
.p-sp-menu__link {
  font-size: 20px;
  color: #fff;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .p-sp-menu__link {
    font-size: 18px;
    line-height: 0.94;
  }
}
.p-sp-menu__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 83px;
  width: 129px;
}
@media only screen and (min-width: 481px) {
  .p-sp-menu__sns-list {
    display: none;
  }
}
.p-sp-menu__sns-item {
  margin-left: 22px;
  min-width: 30px;
}
.p-sp-menu__sns-item:first-child {
  margin-left: 0;
}
.p-sp-menu__tel {
  color: #fff;
  text-align: center;
  margin-top: 38px;
}
@media only screen and (min-width: 481px) {
  .p-sp-menu__tel {
    display: none;
  }
}
.p-sp-menu__tel-text {
  color: #fff;
  letter-spacing: 0.1em;
}
.p-sp-menu__tel-link {
  color: #fff;
}
body.is_sp_menu_open {
  overflow: hidden;
}
