* {
    box-sizing: border-box;
}

p {
    font-size: 18px;
}

body {
    max-width: 1080px;
    margin: 0 auto 0 auto;
    font-family:"Noto Sans Japanese,sans-serif"; 
}

/*ヘッダー*/
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
}

#home {
    font-size: 34px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    border: 2px solid #000;
    padding: 2px 12px;
    border-radius: 2px;
    box-shadow: none;
}


#nav-pc ul {
    display: flex;
    gap: 20px; 
    margin: 0;
    padding: 0;
}

#nav-pc li {
    list-style: none;

}

#nav-pc li a  {
    text-decoration: none;
    color:#000000;
    font-size: 34px;
    font-weight: bold;
    padding: 0 8px;
}

#nav-pc li a:hover {
    text-decoration: underline;
}

/*メイン画像*/
#main-camera img {
    width: 100%;
    height: 100%;
}

/*About*/
#aboutme {
    margin-top: 20px ;
    margin-bottom: 20px ;
}

#aboutme > div {
    display: flex;
    justify-content: space-around;
}

#aboutme img {
    border-radius: 150px 150px 150px 150px;
}

.index-h2 {
    font-size: 34px;
    text-align: center;

}

.about-pc > h3 {
    font-size: 24px;
}

.about-pc > p::before {
    content: "・";

}

#worksme {
    margin: 20px;
    
}


.worksme-pc {
    display: flex;  
    justify-content: space-between;
    gap: 20px;
    text-align: center;
    width: 50%;
    height: 50%;
}

.works-pc p {
    width: 100%;
    text-align: center;
    padding-bottom: 40px;
}

footer {
    text-align: center;
}


@media screen and (max-width: 767px) {

    
#home  {
    font-size: 20px;
}

#nav-pc li a  { 
    font-size: 18px;
}


#main-camera img {
    width: 100%;
    height: 120%;
}

#aboutme {
    padding-left: 20px;
}

.aboutme-pc {
    display: flex;
    flex-direction: column;
}

.about-pc h3 {
    text-align: center;
}

.about-pc p {
    font-size: 14px;

}

#aboutme img {
    border-radius: 188px 188px 188px 188px;
    width: 70%;
    height: 70%;
    margin-left: 60px;
}

#worksme{
    margin: 20px;
}



.worksme-pc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    
}

.works-pc {
    background-color: #fff;
    width: 300Px;
    padding: 16px 0 0 0;
    margin-right: -150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.works-pc img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.works-pc p {
    margin: 10px 0 24px 0;
    padding: 0;
    font-size: 16px;
    width: 90%;
    text-align: center;
    word-break: break-all;
}

}




    