@charset "UTF-8";

@media (max-width: 800px) {
    header{color: white ;}
    }

.wrapper {
    padding: 0%;
}
.grid {
    display:grid;
    gap: 1px;
    grid-template-columns:repeat(2, 1fr);
    grid-column-gap: 5px;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 955px;;
}

body {
    margin: 5px;
    padding: 10px;
    scroll-behavior: auto;
    height:auto;

}

.item {
    color: black;
    font-family: "Helvetica Neue", Helvetica;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 1.5pt;
    padding: 0px;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 0px;
    margin-left: 15px;
    margin-right: 5px;
    margin-bottom: 15px;
}

header {
    display: flex;
    color: black;
    font-family: "Helvetica Neue", Helvetica;
    font-size: 12px;
    letter-spacing: 1.5pt;
    line-height:150%; 
    font-weight: 500;
    width: 955px;
    height:150px;
    margin-left: 100px;
} 

a:link { 
    color: black; 
    text-decoration: none;
    border: none; 
    }    /* 未訪問のリンク */

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

a:hover {
    opacity:0.7;
    color: honeydew;
    text-decoration:none;
    } 

.fade7 {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


