@charset "utf-8";

/* g-nav */
#g-nav{
    position: fixed;
    z-index: 10;
    top: 0;
    right: -120%;
    width: 32%;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
    border-left: solid 2px #000;
}
#g-nav.panelactive{
    right: 0;
}
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999;
    width: 32%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
}
#g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.g-logo{
    width: 70%;
}
.btn_nv{
    width: 70%;
    padding: 4% 0;
    font-size: 16px;
    border-radius: 50px;
    margin-bottom: 4%;
    position: relative;
    display: inline-block;
    color: #fff;
    background: #000000;
}
.btn_nv:hover{
    opacity: 0.7;
    transition: 0.5s;
}
.btn_nv::after{
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 26px;
}
.sns_nv{
    width: 90%;
    margin: 10% auto 0;
    text-align: center;
}
.sns_nv p{
    display: inline-block;
    width: auto;
    height: 2vw;
    margin: 5%;
}
.sns_nv img{
    height: 100%;
}
/* openbtn */
.openbtn{
    position: fixed;
    z-index: 15;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background: #E40025;
}
.openbtn span{
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 20px;
    height: 5px;
    border-radius: 4px;
    background-color: #ffffff;
    width: 40px;
}
.openbtn span:nth-of-type(1) {
    top:20px;	
}
.openbtn span:nth-of-type(2) {
    top:35px;
}
.openbtn span:nth-of-type(3) {
    top:50px;
}
.openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 40px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}

/* SP */
@media  screen and ( max-width:896px ){
/* g-nav */
#g-nav{
    position: fixed;
    z-index: 10;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    transition: all 0.6s;
    border-left: solid 2px #000000;
}
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
}
.btn_nv{
    width: 70%;
    padding: 4% 0;
    font-size: 4vw;
    margin-bottom: 4%;
}
.btn_nv::after{
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 5px);
    right: 26px;
}
.sns_nv{
    width: 90%;
    margin: 10% auto 0;
    text-align: center;
}
.sns_nv p{
    display: inline-block;
    width: 30px;
    height: auto;
    margin: 5%;
}
.sns_nv img{
    height: 100%;
}
/* openbtn */
.openbtn{
    position: fixed;
    z-index: 15;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: #E40025;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 15px;
    height: 4px;
    border-radius: 4px;
    background-color: #ffffff;
    width: 30px;
}
.openbtn span:nth-of-type(1) {
    top:15px;	
}
.openbtn span:nth-of-type(2) {
    top:25px;
}
.openbtn span:nth-of-type(3) {
    top:35px;
}
.openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
    width: 30px;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 32px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 30px;
}
/* breadcrumb */
.breadcrumb {
    width: 100%;
    background: #ffffffe6;
}
.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    width: 80%;
    margin: 0 auto 0;
    font-size: 3.5vw;
}
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0.7em;
    content: "＞";
}
}