/*
Theme Name: psimple
*/

@charset "UTF-8";

/** header **/
header{
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0 30px;
}

header .header-container{
    height: 100px;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}

header .header-container .header-left .company-name{
    display: block;
    width: 260px;
    margin-left: 20px;
}

header .header-container .header-left .header-left--img{
    display: block;
    width: 60px;
    height: auto;
}

header .header-container .header-right{
    position: relative;
    align-self: end;
}

header .header-container .header-right .tel__box{
    position: absolute;
    right: 16px;
    top: -12px;
    border-radius: 0 0 10px 10px;
    padding: 4px 10px;
}

header .header-container .header-right ul{
    display: flex;
    align-items: center;
}

header .header-container .header-right ul li{
    padding: 0 16px;
    transition: .3s ease-in-out;
}

header .ham-btn{
    display: none;
}

header .header-container .header-right ul a{
    padding: 28px 0 36px 0;
}

/** footer **/
footer .footer-menu{
    margin: 0 auto;
    padding: 50px 20px;
    line-height: 1.8;
}

@media screen and (min-width: 550px){
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

@media screen and (max-width: 1200px){
    header .header-container .header-right ul li{
        padding: 0 6px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 960px){
    header .header-container .header-right{
        position: absolute;
        width :100%;
        height: 0;
        transition: .3s ease-in-out;
        top: 0;
        left: 0;
        overflow: hidden;
    }

    header .header-container .header-right.active{
        background-color: #ffffff;
        height: 100vh;
        z-index: 10;
    }

    header .header-container .header-right ul{
        flex-direction: column;
        height: 100vh;
        align-items: start;
        padding: 0 60px;
        background-color: #e5ede4;
        margin-top: 60px;
    }

    header .header-container .header-right ul li{
        padding: 0 10px;
    }

    header .header-container .header-right ul a{
        padding: 20px 0;
        width: 70%;
    }

    header .header-container .header-right .tel__box{
        left: 60px;
        top: 0;
        right: auto;
    }

    header .ham-btn{
        display: block;
        position: fixed;
        width: 60px;
        height: 80px;
        top: 0;
        right: 0;
        cursor: pointer;
        z-index: 100;
    }

    header .ham-btn span{
        position: absolute;
        height: 2px;
        background-color: #707070;
        display: block;
        transition: .3s ease-in-out;
    }

    header .ham-btn span:nth-of-type(1){
        width: 25px;
        top: 45%;
    }

    header .ham-btn span:nth-of-type(2){
        width: 15px;
        top: 55%;
    }

    header .ham-btn.active span:nth-of-type(1){
        width: 25px;
        top: 50%;
        transform: rotate(45deg);
    }

    header .ham-btn.active span:nth-of-type(2){
        width: 25px;
        top: 50%;
        transform: rotate(-45deg);
    }

    header .header-right.active + div{
        opacity: 0;
    }

    header .ham-btn.active{
        opacity: 1 !important;
    }
}

@media screen and (max-width: 768px){
    header{
        padding: 0 10px;
    }

    header .header-container{
        height: 60px;
    }

    header .header-container .header-left{
        width: 270px;
    }

    header .header-container .header-right ul li{
        font-size: 1.4rem;
    }

    header .header-container .header-left .company-name{
        width: 200px;
    }

    header .header-container .header-left .header-left--img{
        width: 46px;
        height: auto;
        left: 13px;
        top: 2px;
    }

    header .ham-btn{
        width: 40px;
        height: 40px;
    }

    header .ham-btn span:nth-of-type(1){
        top: 40%;
    }

    header .ham-btn span:nth-of-type(2){
        top: 60%;
    }

    /** footer **/
    footer .footer-menu{
        font-size: 1.4rem;
        line-height: 1.6;
        padding: 20px 10px;
    }

    footer .footer-menu .dp-flex{
        display: block;
    }

    footer .footer-menu .dp-flex>div{
        border-bottom: 1px solid #ffffff;
        padding: 10px 0;
    }

    footer .footer-menu ul li{
        display: block;
        width: 40%;
    }
}