body,
html {
  /*height: 100%;*/
  padding: 0;
  margin: 0;
}

.body_wrapper {
  z-index: 2;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  transition: .7s ease;
}
/*main {
  z-index: 2;
  position: relative;
  background-color: #ffffff;
  transition: .7s ease;
}*/

.sidebar {
  height: 100%;
  width: 90%;
  position: fixed;
  top: 0;
  z-index: 1000;
  right: -90%;
  background-color: #ffffff;
  overflow: scroll;
  transition: .7s ease;
}

.sidebar.active{
  right: 0;
}

.bar {
  display: block;
  height: 2px;
  width: 15px;
  background-color: #ffffff;
  margin: 6px auto;
}

.button {
  cursor: pointer;
  display: inline-block;
  width: auto;
  margin: 0 auto;
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;

  background: #333;
  padding: 6px 13px;
}

.nav-right {
  position: fixed;
  right: 0;
  top: 0;
}

.nav-right.visible-xs {
  z-index: 1001;
}

.hidden-xs {
  display: none;
}

.middle {
  margin: 0 auto;
}

.bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.nav-right.visible-xs .active .bar {
  background-color: #FFF;
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}

.button.active .top {
  -webkit-transform: translateY(9px) rotateZ(45deg);
  -moz-transform: translateY(9px) rotateZ(45deg);
  -ms-transform: translateY(9px) rotateZ(45deg);
  -o-transform: translateY(9px) rotateZ(45deg);
  transform: translateY(9px) rotateZ(45deg);
}

.button.active .bottom {
  -webkit-transform: translateY(-7px) rotateZ(-45deg);
  -moz-transform: translateY(-7px) rotateZ(-45deg);
  -ms-transform: translateY(-7px) rotateZ(-45deg);
  -o-transform: translateY(-7px) rotateZ(-45deg);
  transform: translateY(-7px) rotateZ(-45deg);
}

.button.active .middle {
  width: 0;
}

.move-to-left {
  -webkit-transform: translateX(-90%);
  -moz-transform: translateX(-90%);
  -ms-transform: translateX(-90%);
  -o-transform: translateX(-90%);
  transform: translateX(-90%);
  position: relative;
  width: 100%;
  height: 100%;
}

.black_cover{
  background: rgba(0, 0, 0, 0);
  transition: all .7s ease;
  z-index: 5;
}

.move-to-left .black_cover{
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
/*.effect-fade {
　opacity : 0;
　transform : translate(0, 45px);
　transition : all 300ms;
}

.move-to-left .effect-fade {
　opacity : 1;
　transform : translate(0, 0);
}*/
nav {
  /*padding-top: 30px;*/
}

.sidebar-list {
  margin: 0;
  list-style: none;
  position: relative;
  margin-top: 30px;
  text-align: left;
  transition: .7s ease;
}
.sidebar-list.active{
}
.sidebar-list p img{
  display: block;
  margin: 0 auto;
}

/*.sidebar-item {
  margin: 30px 0;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
}

.sidebar-item:first-child {
  -webkit-transition: all .7s .2s ease-in-out;
  -moz-transition: all .7s .2s ease-in-out;
  -ms-transition: all .7s .2s ease-in-out;
  -o-transition: all .7s .2s ease-in-out;
  transition: all .7s .2s ease-in-out;
}

.sidebar-item:nth-child(2) {
  -webkit-transition: all .7s .4s ease-in-out;
  -moz-transition: all .7s .4s ease-in-out;
  -ms-transition: all .7s .4s ease-in-out;
  -o-transition: all .7s .4s ease-in-out;
  transition: all .7s .4s ease-in-out;
}

.sidebar-item:nth-child(3) {
  -webkit-transition: all .7s .6s ease-in-out;
  -moz-transition: all .7s .6s ease-in-out;
  -ms-transition: all .7s .6s ease-in-out;
  -o-transition: all .7s .6s ease-in-out;
  transition: all .7s .6s ease-in-out;
}

.sidebar-item:last-child {
  -webkit-transition: all .7s .8s ease-in-out;
  -moz-transition: all .7s .8s ease-in-out;
  -ms-transition: all .7s .8s ease-in-out;
  -o-transition: all .7s .8s ease-in-out;
  transition: all .7s .6s ease-in-out;
}

.sidebar-item.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.sidebar-anchor {
  color: #333;
  text-decoration: none;
  font-size: 1.8em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 7px;
}

.sidebar-anchor:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  -webkit-transition: all .7s ease-in-out;
  -moz-transition: all .7s ease-in-out;
  -ms-transition: all .7s ease-in-out;
  -o-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}

.sidebar-anchor:hover:before {
  width: 100%;
}*/

.ua {
  position: absolute;
  bottom: 20px;
  left: 30px;
}

.fa {
  font-size: 1.4em;
  color: #EF8354;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.ua:hover .fa {
  color: #FFF;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

@media (min-width: 480px) {
  .nav-list {
    display: block;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .nav-right {
    position: absolute;
  }
  .hidden-xs {
    display: block;
  }
  .visible-xs {
    display: none;
  }
}
.sp_nav_conversion{
  margin: 40px auto;
  box-sizing: border-box;
  padding: 0 5%;
}
.sp_nav_conversion img{
  margin-right: 10px;
  vertical-align: sub;
}
.sp_nav_conversion li{
  border-top: solid 1px #D6D6D6;
  border-right: solid 1px #D6D6D6;
  border-left: solid 1px #D6D6D6;
}
.sp_nav_conversion li:last-child{
  border-bottom: solid 1px #D6D6D6;
}
.sp_nav_conversion li a,
.sp_nav_link_ul li a{
  color: #333;
  box-sizing: border-box;
  font-size: 13px;
  display: inline-block;
  padding: 15px 14px;
  width: 100%;
}
.sp_nav_conversion li a{
  font-weight: bold;
}
.sp_nav_link_ul li{
  border-top: solid 1px #D6D6D6;
  position: relative;
}
.sp_nav_link_ul li:after{
    background: url(/wp/wp-content/themes/doppo/assets/img/common/drawer_arrow@2x.png) no-repeat;
    background-size: cover;
    content: "";
    height: 9px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4.5px;
}
.sp_nav_link p{
  border-top: solid 1px #D6D6D6;
  background: #F8F8F8;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 14px;
}
.sp_nav_link_ul li a{
  font-size: 14px;
  font-weight: normal;
  padding: 10px 5%;
}
.sp_nav_link_ul_underline{
  border-bottom: solid 1px #D6D6D6;
}
.sp_sns_link{
  box-sizing: border-box;
  display: flex;
  margin-bottom: 35px;
  margin-top: 30px;
  padding: 0 5%;
}
.sp_sns_link img{
  width: 24px;
  height: auto;
  margin-right: 10px;
}