﻿@charset "utf-8";


色 {
    color: #a3bccc;
    color: #6D6D6D;
    color: white;
}











body {
    color: #6D6D6D;
    background-color: white;
    background-attachment: fixed;
    background-image: linear-gradient(90deg, transparent 98%, #EEEEEE 0%), linear-gradient( 0deg, transparent 98%, #EEEEEE 0%);
    background-size: 40px 40px;
    background-position: 20px 20px;
}

.中央 {
    text-align: center;
}

.a {
    max-width: 600px;
    margin: 0 auto;
}








/*　box　*/
/*　box　*/
/*　box　*/







.box1 {
    padding: 40px 40px 0px 40px;
    font-size: 90%;
}

.box2 {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}


.box3 {
    position: relative;
    padding: 40px 40px 0px 40px;
    font-size: 90%;
}

.box4 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    background-color: transparent;
    background-image: linear-gradient(90deg, transparent 90%, rgba(255, 255, 255, 0.1) 0%), linear-gradient(0deg, transparent 90%, rgba(255, 255, 255, 0.1) 0%);
    background-size: 10px 10px;
    background-position: 20px 20px;
}

.footerimg {
    position: absolute;
    padding: 0px 0px 20px 0px;
    width: 40px;
    height: auto;
    left: 75%;
}










/*　hr　*/
/*　hr　*/
/*　hr　*/








.hr1 {
    border: none;
    height: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.hr2 {
    border: none;
    margin-bottom: 10px;
}

.hr3 {
    border: none;
    height: 5px;
    max-width: 70%;
    border-radius: 10px;
    background: rgba(109, 109, 109, 0.5);
    margin-bottom: 5px;
}


.link {
    text-decoration: none;
    color: #6B819D;
}








/*　gif　*/
/*　gif　*/
/*　gif　*/









.gif {
    position: relative;
}

    .gif img {
        position: absolute;
        width: auto;
        opacity: 1;
        animation: toggleImage 2s steps(1, end) infinite;
    }

        .gif img:nth-child(2) {
            animation: toggleImage2 2s steps(1, end) infinite;
        }

@keyframes toggleImage {
    0% {
        opacity: 1;
    }

    49.9% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes toggleImage2 {
    0% {
        opacity: 0;
    }

    49.9% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}








/*　img　*/
/*　img　*/
/*　img　*/














.e {
    max-width: 100%;
}

.eee {
    max-width: 250PX;
}

.ei {
    width: 100px;
}

.ee {
    height: 100px;
}

.e中 {
    width: 260px;
}

.eh {
    margin-top: 50px;
    max-width: 750px;
}

.Illust {
    width: 120px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}







/*　modal　*/
/*　modal　*/
/*　modal　*/











.modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    display: block;
    margin: auto;
    width: auto;
    max-height: 98vh;
    max-width: 98vw;
}

#close {
    position: absolute;
    color: white;
    mix-blend-mode: difference;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}



/*
.Arrow {
    position: absolute;
    color: white;
    mix-blend-mode: difference;
    top: 50%;
    width: 50px;
    font-size: 24px;
    text-align: center;
    line-height: 50px;

    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    padding: 0.2em 0.4em;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    display: none;
    z-index: 10;
}

.onelogbody:hover .Arrow {
    display: block;
}

.Arrow.prev {
    left: 0;
}

.Arrow.next {
    right: 0;
}
*/