body{
    font-size: 18px;
    font-family: "Noto Sans", sans-serif;
    background-image: url('../images/bg_body.jpg');
    background-repeat: repeat;
    background-size: 80px 80px;
    background-attachment: fixed;
}

p{
    line-height: 2.5;
}

.container{
    max-width: 900px !important;
    background-color: white;
}

h2.title{
    text-align: center;
    padding: 10px 0;
    border-bottom:3px dotted #ffdd00;
    margin:0 auto;
    font-weight: 600;
    font-size:1.4rem;
}

span.br{
    display: block;
}

span.red{
    color:#a00;
}

.main{
    position: absolute;
    width: 90%;
    top: 5%;
    left: 50%;
    margin-left: -45%;

}

.main_text{
    position: absolute;
    top: 67.5%;
    width: 90%;
    left: 50%;
    margin-left: -45%;
}

.ataru{
    position: absolute;
    top: 77%;
    width: 90%;
    left: 50%;
    margin-left: -45%;
    cursor: pointer;
}

.yellow-back{
    background: #ffdd00;
}

.title-lg{
    border-bottom:3px dotted #ffffff;

}

.title-lg-svg{
    width: 80%;
    max-width: 450px;
    padding-bottom: 20px;
}

.entry-text{
    line-height: 1.3rem;
    font-weight: bold;
}

.myscue{
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
}

#modal{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    display: none;
}

#modal.active{
    display: flex;
}

#modal-close{
    width: 5.5vw;
    height: 5.5vw;
    max-width: 30px;
    max-height: 30px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 2%;
    right: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#modal-close svg{
    stroke: 2px;
}

.modal_inner{
    position: relative;
    overflow-y: scroll;
    display: inline-block;
    width: 80vw;
    max-width: 500px;
    margin: 2.5vh auto;
}

.modal_inner img{
    width: 100%;
}

.scrollanime {
    opacity: 0;
}

.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 2s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

.slide-right {
    transform: translateX(200px);
}

.slide-left {
    transform: translateX(-200px);
}

@keyframes fadeInDown {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

.updown {
    transform: translateY(-100px);
}

.downup {
    transform: translateY(100px);
}

@media screen and (max-width:767px){
    body{
        font-size: 16px;
    }
}


@media screen and (max-width:500px){
    body{
        font-size: 16px;
    }
}