

header{
    position: relative;
    width: 100%;
}

header #logo{}
header #logo h1{
    font-size: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    width: 200px;
    height: 60px;
    
}

header #menu{}
header #menu .pc{}
header #menu .pc ul{}
header #menu .pc ul li{}
header #menu .pc ul li a{
    padding: 0px 15px;
    line-height: 40px;
}

header #menu{}
header #menu .button{
    width:40px;
    height: 40px;
    position: relative;
    opacity: .8;
    transition: opacity .5s 0s;
    cursor: pointer;
}


header #menu .button:hover{
    opacity: 1;
}


header #menu .button span{
    width: 20px;
    height: 2px;
    background-color: var(--main-black-color);
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all .4s 0s;
}

header #menu .button span:nth-child(1){
    transform: translate(-50%,-50%) translateY(-6px);
}
header #menu .button span:nth-child(3){
    transform: translate(-50%,-50%) translateY(6px);
}

header #menu.view .button span:nth-child(1){
    transform: translate(-50%,-50%) rotate(45deg);
}

header #menu.view .button span:nth-child(3){
    transform: translate(-50%,-50%) rotate(-45deg);
}

header #menu.view .button span:nth-child(2){
    opacity: 0;
}

header #menu .menuBox,
header #menu .menuBg{
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100%;
    transform: translateX(100%);
    opacity: 0;
}

header #menu.view .menuBox,
header #menu.view .menuBg{
    transform: translateX(0%);
    opacity: 1;
}


header #menu .menuBox{
    background-color: var(--main-white-color);
    width: 320px;
    z-index: 999;
    transition: opacity 0.6s 0s, transform .4s 0s;
}

header #menu.view .menuBox{
}

header #menu .menuBg{
    width: 100%;
    background-color: #000c;
    z-index: 998;
    transition: opacity .8s 0s, transform 0s .8s;
}

header #menu.view .menuBg{
    transition: opacity .8s 0s, transform 0s 0s;
}


main .section{
    padding: 40px 0px 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

main .section{}
main .section .wrap{}
main .section .wrap > .title{
    margin-bottom: 50px;
}
main .section .wrap > .title .name{
    font-size: 2.5rem;
    font-weight: bold;
}
main .section .wrap > .title .sub{
    color:var(--main-gray-color); 
}

footer{
    padding: 20px 0px 100px;
    background-color: var(--main-black-color);
    margin-top: 60px;
}



input{
    padding: 0px 15px;
    border: 0px;
    line-height: 40px;
    background-color: var(--main-white-color);
    color: var(--main-black-color);
    transition: all .5s 0s;
    opacity: .9;
}

input:hover,
input:focus{
    opacity: 1;
}

input[type="button"],
input[type="submit"]{
    color: var(--main-white-color);
    background-color: var(--main-black-color);
    border-radius: 2px;
}


input[type="button"],
input[type="submit"]{
    cursor: pointer;
}


textarea::placeholder,
input::placeholder{
    color: var(--main-black-color);
    opacity: .7;
    transition: all 1s 0s;
}


.radio,
.checkbox{
    
    display: inline-flex;
    justify-content: center;
    align-content: center;
    align-items: center;

    cursor: pointer;
    position: relative;
    margin: 0px 10px;
    
}


.radio input,
.checkbox input{
    display: none;
}


.radio:before,
.checkbox:before,
.radio:after,
.checkbox:after{
    content: "";
    display: inline-block;
    border: 2px solid var(--main-black-color);
    transition: all .5s 0s;
}


.radio:before,
.checkbox:before{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: var(--main-black-color);
    border-radius: 2px;
}

.radio:after,
.checkbox:after{
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    background-color: var(--main-white-color);
    border-radius: 3px;
}






.radio,
.radio:before,
.radio:after{
    border-radius: 100%;
}



.radio:has(input[type="radio"]:checked):after,
.checkbox:has(input[type="checkbox"]:checked):after{
    opacity: 1;
}





.table{
    overflow-x: auto;
}
.table table{
    display: inline-table;
    border-collapse: collapse;
    table-layout: fixed;
}
.table table th,
.table table td{
    border: 1px solid var(--main-gray-color);
    padding: 10px 2vw;
    cursor: pointer;
    min-width: 120px;
}

.table table th{
    background-color: var(--main-black-color);
    color: var(--main-white-color);
}

.table table tr td{
    opacity: .8;
    transition: all .3s 0s;
}

.table table tr:hover td{
    opacity: 1;
    background-color: #f2f2f2;
}





