/* Style for PCs */
@media screen and (min-width: 1025px) {

.menubody {
display:none;
}
.menubn {
display: none;
}
.navmenu {
display:none;
}
.navmenu ul li {
display:none;
}
.navmenu ul li a {
display:none;
}
.navmenu ul li a:hover {
display:none;
}

}

/* Style for iPad Pro */
@media screen and (min-width: 769px) and (max-width: 1024px) {

.pc-nav {
display:none!important;
}

/* Mobile Menu */
.menubody {
width:auto;
height:auto;
display: block;
}

.menubn {
display: block;
position: fixed;
z-index: 21500;
right: 20px;
top: 50px;
width: 70px;
height: 70px;
cursor: pointer;
text-align: center;
background-color: var(--color-1st);
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}

.menubn.mbactive {
  right: 0px;
  top: 0px;
  }

/* Menu botton*/
.menubn span {
display: block;
position: absolute;
width: 50px;
height: 2px;
left: 10px;
background: #fff;
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}

.menubn span:nth-child(1) {
top: 25px;
}

.menubn span:nth-child(2) {
top: 35px;
}

.menubn span:nth-child(3) {
top: 45px;
}

/* ナビ開いてる時のボタン */
.menubn.active span:nth-child(1) {
top: 30px;
left: 10px;
background: #fff;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
transform: rotate(-45deg);
}

.menubn.active span:nth-child(2),
.menubn.active span:nth-child(3) {
top: 30px;
background: #fff;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
transform: rotate(45deg);
}

nav[role=navigation] {
width:100%;
height: 100%;
min-height: 100%;
position: fixed;
top:0;
left:-100%;
z-index:19000;
clear: both;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
.js nav[role=navigation] {
overflow: hidden;
top:0;
left:-100%;
background-color:var(--color-white);
padding: 0;
}

nav[role=navigation].active {
  top:0;
left:0;
overflow-y:scroll;
padding:15% 10%;
}

.mobmenu {
width:100%;
height:auto;
display:block;
}
.mobmenu ul {
display: none;
}

.mobmenu span {
cursor: pointer;
width:100%;
height:50px;
display:block;
font-size:16px;
font-weight:700;
letter-spacing: 0px;
color:var(--color-white);
line-height:50px;
padding:0px 10px;
border-bottom:1px dotted var(--color-4th);
background-position:96% center;
background-repeat:no-repeat;
background-size:auto 20px;
background-image: url("../img/header/ic-ar_vt_w.png");
}
.mobmenu span.smact {
color:var(--color-white);
background-color:var(--color-black);
background-image: url(../img/header/ic-ar_vb_w.png);
}
.mobmenu ul {
overflow-y:auto;
}
.mobmenu ul li{
width:100%;
height: auto;
display: block;
border-bottom:1px dotted var(--color-2nd);
}
.mobmenu ul li:last-child {
border-bottom: none;
}
.mobmenu ul li a {
width:100%;
height: auto;
display:flex;
font-size:16px;
font-weight:700;
justify-content: space-between;
padding:25px 10px;
text-decoration: none;
color:var(--color-white);
background-color:var(--color-black);
background-image: url(../img/header/ic-ar_h_c.png);
background-repeat: no-repeat;
background-position: 98% center;
background-size: auto 20%;
}
.mobmenu ul li a img {
width:25%;
}
.mobmenu ul li a p {
width:70%;
height: auto;
text-indent: -9999px;
background-position: left center;
background-repeat: no-repeat;
background-size: 90% auto;
}

.mobmenu2 {
width:100%;
height:auto;
display:block;
}
.mobmenu2 li {
width:100%;
height:auto;
display:block;
}
.mobmenu2 li:last-child {
border-bottom:none;
}
.mobmenu2 li a {
width:100%;
height:50px;
display:block;
font-size:16px;
text-decoration: none;
font-weight:700;
letter-spacing: 0px;
color:var(--color-white);
line-height:50px;
padding:0px 10px;
border-bottom:1px dotted var(--color-4th);
background-image: url("../img/header/ic-ar_h_b.png");
background-repeat: no-repeat;
background-position: 98% center;
background-size: auto 20px;
}


}

/* Style for Smartphone */
@media screen and (max-width: 768px) {

  .pc-nav {
    display:none!important;
    }

/* Mobile Menu */
.menubody {
  width:auto;
  height:auto;
  display: block;
  }

  .menubn {
  display: block;
  position: fixed;
  z-index: 21500;
  right: 20px;
  top: 50px;
  width: 70px;
  height: 70px;
  cursor: pointer;
  text-align: center;
  background-color: var(--color-1st);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  }
  .menubn.mbactive {
    right: 0px;
    top: 0px;
    }

  /* Menu botton*/
  .menubn span {
  display: block;
  position: absolute;
  width: 50px;
  height: 2px;
  left: 10px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  }


  .menubn span:nth-child(1) {
  top: 25px;
  }

  .menubn span:nth-child(2) {
  top: 35px;
  }

  .menubn span:nth-child(3) {
  top: 45px;
  }

  /* ナビ開いてる時のボタン */
  .menubn.active span:nth-child(1) {
  top: 30px;
  left: 10px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  }

  .menubn.active span:nth-child(2),
  .menubn.active span:nth-child(3) {
  top: 30px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  }

  nav[role=navigation] {
  width:100%;
  height: 100%;
  min-height: 100%;
  position: fixed;
  top:0;
  left:-100%;
  z-index:19000;
  clear: both;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  }
  .js nav[role=navigation] {
  overflow: hidden;
  top:0;
  left:-100%;
  background-color:var(--color-white);
  padding: 0;
  }

  nav[role=navigation].active {
    top:0;
  left:0;
  overflow-y:scroll;
  padding:25% 5%;
  }

  .mobmenu {
  width:100%;
  height:auto;
  display:block;
  }
  .mobmenu ul {
  display: none;
  }

  .mobmenu span {
  cursor: pointer;
  width:100%;
  height:50px;
  display:block;
  font-size:16px;
  font-weight:700;
  letter-spacing: 0px;
  color:var(--color-white);
  line-height:50px;
  padding:0px 10px;
  border-bottom:1px dotted var(--color-4th);
  background-position:96% center;
  background-repeat:no-repeat;
  background-size:auto 20px;
  background-image: url("../img/header/ic-ar_vt_w.png");
  }
  .mobmenu span.smact {
  color:var(--color-white);
  background-color:var(--color-black);
  background-image: url(../img/header/ic-ar_vb_w.png);
  }
  .mobmenu ul {
  overflow-y:auto;
  }
  .mobmenu ul li{
  width:100%;
  height: auto;
  display: block;
  border-bottom:1px dotted var(--color-2nd);
  }
  .mobmenu ul li:last-child {
  border-bottom: none;
  }
  .mobmenu ul li a {
  width:100%;
  height: auto;
  display:flex;
  font-size:16px;
  font-weight:700;
  justify-content: space-between;
  padding:25px 10px;
  text-decoration: none;
  color:var(--color-white);
  background-color:var(--color-black);
  background-image: url(../img/header/ic-ar_h_c.png);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: auto 20%;
  }
  .mobmenu ul li a img {
  width:25%;
  }
  .mobmenu ul li a p {
  width:70%;
  height: auto;
  text-indent: -9999px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 90% auto;
  }

  .mobmenu2 {
  width:100%;
  height:auto;
  display:block;
  }
  .mobmenu2 li {
  width:100%;
  height:auto;
  display:block;
  }
  .mobmenu2 li:last-child {
  border-bottom:none;
  }
  .mobmenu2 li a {
  width:100%;
  height:50px;
  display:block;
  font-size:16px;
  text-decoration: none;
  font-weight:700;
  letter-spacing: 0px;
  color:var(--color-white);
  line-height:50px;
  padding:0px 10px;
  border-bottom:1px dotted var(--color-4th);
  background-image: url("../img/header/ic-ar_h_c2.png");
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: auto 12px;
  }

}
