@charset "utf-8";
/*ヘッダーのデザイン調整*/
header{
    width: 100%;
    background-size: contain;
    background: whitesmoke;
    align-items: center;
}
.headerbox1{
    display: flex;
    justify-content: space-around;
    height: 120px;
}
.logo{
    position: absolute;
    left: 0;
    margin-top: 10px;
    margin-left: 10px;
    max-width: 70%;
    height: auto;
    vertical-align: middle;
}  
.mailform{
    height: 60px;
    position: absolute;
    right: 0;
    text-align: right;
    margin-top: 10px;
    margin-right: 10px;
    padding: 0.8em;
    color: #000;
    text-decoration: none;
    background-color:  #00A5BF;
    border-radius: 20px;
    vertical-align: middle;
}
.headerbox2{
    width: 100%;
}
/*PCのcss*/
@media (min-width: 992px){
    header{
        height: 230px;
    }
    .mailform{
        font-size: 18px;
    }
    .adjust{
        text-decoration: none;
        color: black;
        font-size: 16px;
    }
    .line{
        width: 3px;
        height: 80px;
    }
    .headerbox1{
    padding-bottom: 1vw;
    }
    header li{
        width: 12%;
    }
}
/*タブレットのcss*/
@media (max-width: 992px){
    header{
        height: 280px;
    }
    .mailform{
        font-size: 24px;
    }
    .adjust{
        text-decoration: none;
        color: black;
        font-size: 24px;
    }
    .line{
        width: 1px;
        height: 150px;
    }
    .headerbox1{
    padding-bottom: 4vw;
    }
    header li{
        width: 15%;
    }
}
.mailform:hover{
	opacity: 0.5;
}
header ul{
    display:flex;
    justify-content: center;
    list-style: none;
    flex-wrap: nowrap;
    margin: 0 auto;
    z-index: 2;
}
header li{
    height: 1em;
    display: inline-block;
    position: relative;
    text-align: center;
}
header li img{
    width: 100%;
    max-width: 70px;
}
.rotate:hover{
    opacity: 0.6;
}
header li p{
    text-align: center;
}
.line{
    margin: 0 0.1rem;
    background-color: #000;
}