/* template0002_header */
header {
    position: fixed;
    z-index: 1000000;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 18px;
    box-sizing: border-box;

    transition: .5s;
}
header.stricky {
    background: #fff;
}



.header_logo {
    width: 180px;
    height: 50px;
}



.header_PCTB {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}
.header_PCTB a {
    padding: .5rem 2rem;

    background: transparent;
    border: solid 1px #fff;
    border-radius: 20px;

    color: #fff;
    font-size: 1.6rem;

    transition: .5s;
}
header.stricky .header_PCTB a {
    border: solid 1px #383536;
    color: #383536;
}
.header_PCTB ul {
    display: flex;
    gap: 18px;
}
.header_PCTB ul li {
    list-style: none;
}
.header_PCTB ul li a {
    position: relative;
    padding-bottom: .2rem,;

    border: none;
    border-radius: 0;

    color: #fff;

    transition: .5s;
}
header.stricky .header_PCTB ul li a {
    border: none;
}
.header_PCTB ul li a:hover {
    border-bottom: solid 1px #fff;
}
.header_PCTB ul li:nth-child(2) a:before,
.header_PCTB ul li:nth-child(3) a:before,
.header_PCTB ul li:nth-child(4) a:before,
.header_PCTB ul li:nth-child(5) a:before,
.header_PCTB ul li:nth-child(6) a:before {
    content: '/';
    position: absolute;
    top: 3px;
    left: -9px;
    width: 10px;
    height: 20px;

    font-size: 20px;
    font-weight: 100;
}



.header_sp {
    display: none;
}





@media screen and (max-width: 1080px) {
    header {
        position: fixed;
        z-index: 1000000;
        top: 0;
        left: 0;
        display: block;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 18px 0;
    }



    .header_logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
    }
    .header_logo img {
        width: 180px;
    }



    .header_PCTB {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .header_PCTB a {
        padding: 5px 20px;
    
        background: transparent;
        border: solid 1px #fff;
        border-radius: 20px;
    
        color: #fff;
        font-size: .7rem;
    }
}





@media screen and (max-width: 760px) {
    header {
        position: fixed;
        z-index: 1000000;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 10px 10px;
        box-sizing: border-box;
    }



    .header_logo {
        width: 180px;
        height: 50px;
    }



    .header_PCTB {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 30px;

        transition: .5s;
        opacity: 0;
    }
    .header_PCTB.active {
        background: #fff;

        opacity: 1;
    }
    .header_PCTB a {
        padding: 5px 30px;
    
        background: transparent;
        border: solid 1px #383536;
        border-radius: 20px;
    
        color: #383536;
        font-size: 1.6rem;

        pointer-events: none;
    }
    .header_PCTB.active a {
        pointer-events: all;
    }
    .header_PCTB ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .header_PCTB ul li {
        list-style: none;
    }
    .header_PCTB ul li a {
        position: relative;
        padding-bottom: .2rem,;
    
        border: none;
        border-radius: 0;
    
        color: #383536;
        line-height: 20px;
    
        transition: 1s;
    }
    .header_PCTB ul li a:hover {
        border-bottom: solid 1px #383536;
    }
    .header_PCTB ul li:nth-child(2) a:before,
    .header_PCTB ul li:nth-child(3) a:before,
    .header_PCTB ul li:nth-child(4) a:before,
    .header_PCTB ul li:nth-child(5) a:before,
    .header_PCTB ul li:nth-child(6) a:before {
        content: '';
        position: absolute;
        top: 3px;
        left: -9px;
        width: 10px;
        height: 20px;
    
        font-size: 20px;
        font-weight: 100;
    }


    
    .header_sp {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .header_sp a {
        width: 30px;
        height: 30px;
    }
    .header_sp a ion-icon {
        width: 30px;
        height: 30px;

        color: #fff;

        transition: .5s;
    }
    header.stricky .header_sp a ion-icon {
        color: #383536;
    }
    .header_sp.active a ion-icon {
        color: #383536;
    }
    .header_sp-hm {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;

        cursor: pointer;

        transition: .5s;
    }
    .header_sp-hm span {
        position: relative;
        width: 25px;
        height: 2px;
        
        background: #fff;

        transition: .5s;
    }
    .header_sp-hm span::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 0;
        width: 100%;
        height: 100%;

        background: #fff;

        transition: .5s;
    }
    .header_sp-hm span::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 0;
        width: 100%;
        height: 100%;

        background: #fff;

        transition: .5s;
    }
    header.stricky .header_sp-hm span,
    header.stricky .header_sp-hm span::before,
    header.stricky .header_sp-hm span::after {
        background: #383536;
    }
    .header_sp-hm.active span {
        background: transparent;
    }
    header.stricky .header_sp-hm.active span {
        background: #fff;
    }
    .header_sp-hm.active span::before {
        top: 0;

        background: #383536;

        transform: rotate(45deg);
    }
    .header_sp-hm.active span::after {
        top: 0;

        background: #383536;

        transform: rotate(-45deg);
    }
}