* {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: black;
    text-decoration: none;
}

/* a:visited{
    color: red;
    
} */
img {
    vertical-align: bottom;
}


body {
    font-family: "Noto Sans JP", serif;

}

header {
    height: 50px;
    width: 1000px;
    margin: 0 auto;
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    position: sticky;
    top: 0;
    z-index: 999;

}


.logo {
    float: left;
    font-size: 30px;
    padding: 10px;
}

.gnav {
    /* background-color: red; */
    float: right;


}

.gnav li {
    float: left;
    margin: 50px 20px 0px 20px;

}

/* indexページ */

.container {
    clear: both;
    width: 1000px;
    margin: 0 auto;
    /* background-color: aqua; */
}
.index-image {
    /* background-color:red; */
    /* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
}
.image {
    position: relative;
    margin: 0 auto;
    width: 400px;
    height: 400px;
    
    /* object-fit: cover; */
    

}

.photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* filter: drop-shadow(10px 10px 10px #000); */
    animation: img-change 30s infinite;
    opacity: 0;
}

.photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo:nth-child(1) {
    animation-delay: 0s;
}

.photo:nth-child(2) {
    animation-delay: 10s;
}
.photo:nth-child(3) {
    animation-delay: 20s;
}


.name-logo img {
    width: 400px;
}

.name-logo {
    position: absolute;
    top: 150px;
    left: 40px;
    width: 100px;
    filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%) drop-shadow(5px 5px 0px rgb(58, 58, 58));
    ;
}

@keyframes img-change {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

.view {
    padding-top: 30px;
    margin: 0 auto;
    text-align: center;

}

/* .news {
    border: 5px double rgb(121, 121, 121);
    height: 200px;

} */






/* プロフィールページ */

.profile-main {
    display: flex;
    margin-top: 20px;
    /* height: 500px; */
}


.profile-main img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.profile {
    /* height: 500px; */
}

.profile-text {
    padding-top: 50px;
    padding-left: 100px;
}
.profile-text p{
    padding-top: 100px;
}


/* LIVEページ */

/* .live-info {
    text-align: center;
} */

/* .live-info h2 {
    padding: 20px;

} */

.portfolio {
    width: 1000px;
    border: 5px double rgb(121, 121, 121);
    height: 100%;

  
}
#lightbox .lb-image {
    /* ライトボックスの白枠を消す */
    border: none; 
}


.portfolio {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}

.portfolio img {
    width: 300px;
    /* margin:  auto; */
    /* object-fit: cover; */
}





/* mailフォーム */
.mail-form {
    margin: 0 auto;
}


footer {
    clear: both;
    text-align: center;
    /* padding-top: 10px; */
    position: fixed;
    bottom: 0;
    width: 100%;
}