@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size:100%;
    background-color: black;
}
body{
    line-height: 1.7;

}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}



.align-center{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 12px;
    text-align: center;
}

.page-header{

    padding-top:  0.5rem; 
    color: #fff;
}
.teampaz{
    font-size: 2.5rem;
    padding-top: 30px;
}
.logo{
    width: 90px;
    height:auto;
}
.main-nav{
    display: flex;
   justify-content: center;
    gap: 60px;
    font-size: 2rem;
    list-style: none;
}
.main-nav a {
    color: #f1f1f1;
}
.main-nav a:hover{
    color: #0bd;
}
.hero{
    padding-top: 20px;
    width: 100%;
    height: auto;
    display: block;
}


.sub-title{
    text-align: center;
    font-size: 1.5rem;
    margin: 20px;
}
.honbun{
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
    
}
.about{
    color: #fff;
   width: 80%;
   margin: 0 auto;
}

.item0{
    color: #fff;
}



.copyright{
background-color:rgba(0, 0, 0, 0.8) ;
text-align: center;
padding: 1rem 0;
margin-top: 3rem;
color: #fff;
}

.shokai{
    width: 80%;
    max-width: 430px;
    margin: 0 auto;
    padding-bottom: 50px;
    text-align: center;
}
.items{
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.item{
    font-size: 1.8rem;
    font-weight: bold;
    margin: 25px 0;
    color: #fff;

}
.item-card{
    background-color: #fff;
    color: #000;
    padding: 15px;
    margin-bottom: 35px;
    border-radius: 4px;
    text-align: center;
    display: block;
    text-decoration: none;

}

.item-img-wrap{
    width: 250px;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}
.item-img-wrap img{
    width: 100%;
    height: auto;
    object-fit: contain;
}



.item-name{
    font-size: 1.5rem;
    color: #000;
}
.item-card:hover{
    background: #0bd;
    color: #0bd;
}

@media(min-width:800px){
    .page-header{
        display: flex;
        align-items: center;
        justify-content: space-between;
        
    }
    .align-center{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        margin-left: 40px;

    }
    .main-nav{
        display: flex;
        align-items: center;
        gap: 40px;
        margin-top: 40px;
        margin-right: 30px;
    }
    .main-nav li{
        list-style: none;

    }
    .sub-title{
        font-size: 3rem;
    }
    .honbun{
        font-size: 2rem;
    }
    .teampaz{
        font-size: 3rem;
    }
    .logo{
        width: 110px;
        height: auto;
    }
.item{
    font-size: 3rem;
   
}

.items{
    flex-direction: row;
    justify-content: center;
    gap: 80px;
}
.item-card{
    width: 300px;
}



}

