html {   
    height: 100%;
    font-family: "HelveticaNeue_regular", "Helvetica Neue regular", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 18px;
    color: #333;
    a:link { text-decoration: none; color: red; cursor: pointer;}
    a:visited { text-decoration: none; color: red; }
    a:hover { text-decoration: none; }
    a:active { text-decoration: none; }
}
a {cursor: pointer;}
body {
    padding 0;
    margin: 0;
}
* {
    box-sizing: border-box;
}
.home {
    color: #fff;
}
.not_home {
    color: #0000FF;
    background-color: #fff;
}
.top {
    font-size: 36px;    
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 10px 10px 20px;

}
.name {
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    z-index: 2;
}
.name > a{
    color: #0000FF !important;
    
}
.title {
    font-weight: normal;
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    color: blue !important; 
    z-index: -1;
}

.out {
    opacity: 0.3;
}
.grid-index-container {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 100px 20px 0px;
    gap: 20px;
}

.grid-container {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    xgrid-template-columns: auto auto;
    padding: 100px 20px 0px;
    gap: 67px;
}

figure{
    margin: 0;
    cursor: pointer;
    color: black;
}

.arrow {
    font-weight: normal;
    cursor: pointer;
    font-size: 36px;
    color: red;
}

img {
    width: 100%;
    height:auto
}

q {
    font-style: italic;
}




@media (orientation: portrait) {

    .grid-container {
        grid-template-columns: 1fr;  }
    .grid-item-01 {
        order: 2;
    }

    .grid-item-02 {
        order: 1;
    }

    .grid-container {
        gap: 24px;

    }

    .grid-index-container {
        grid-template-columns: 1fr;
        gap: 67px;
    }
    img {
        width: 100%!important;
    }
    
    .title {
        margin-top: 1.2em;
        text-align: left;
    }

}














#menuToggle {   
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle input {
    display: block;
    width: 55px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -9px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 50px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: red;
    z-index: 1;
    xtransform-origin: 10px 10px;

}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}
/*kruis*/
/*\*/
#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-1px, 14px);
    background: red;
    width: 30px;

}

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);

}
/*/*/
#menuToggle input:checked~span:nth-last-child(2) {
    opacity: 1;
    transform: rotate(-45deg) translate(-4px, -2px);
    width: 30px;

}

#menu {
    position: absolute;
    width: 244px;
    margin: 10px;
    padding:  0px 0px 10px 10px;
    right: 0px;
    background: #fff;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(120%, 0);

    xtransition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
    padding: 3px 0;
    font-size: 24px;
    color: red;
    text-decoration: none;
    font-weight: normal;
    text-decoration-color: red;
}

#menuToggle input:checked~ul {
    transform: scale(1.0, 1.0);
    opacity: 1;
}