/* 初期設定 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 24px;
}
body{
    background-color: rgba(231, 245, 240, 1);
}

.anime{
    width: 20rem;
    height: 3rem;
    background-color: #777;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    /* position: absolute;
    top:15rem;
    left: 0; */

    display: flex;
    align-items: center;
    justify-content: center;
    border-top: .5rem  solid red;
    border-bottom: .5rem  solid red;
    animation: update 12s linear infinite;
	/* animation-direction:alternate;
	animation-timing-function:steps(10); */
}
@keyframes update{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(100vw);
    }
}

.title{
    position: fixed;
    top: 0;
    width: 100%;
    height: 2rem;
    line-height: 2rem;
    background-color: #ddeeff;
    text-align: center;
}
.sp_title1{
    font-size: 1rem;
    font-weight: bold;
}
/* .sp_title2{
    font-size: .8rem;
    color: darkblue;
} */

.nav{
    background-color:#ccccff;
    height: 2rem;
    position: fixed;
    top: 2rem;
    width: 100%;
    text-align: center;
}
.nav ul li{
    display: inline-block;
    height: 2rem; 
    background-color:#ccccff;
    position: relative;
}
.nav ul li:not(:last-child){
    margin-right: 1.5rem;
}

.nav a{
    color:#333;
    height: 2rem;
    line-height: 2rem;
    font-size: 1.1rem;
    display: block;
}

.nav a:hover{
    background-color:#cc9999;    
}

.nav ul li:hover>ul{
    visibility: visible;
}

.status{
    background-color:#1d80e9;
    height: 2rem;
    position: fixed;
    top: 4rem;
    width: 100%;
    line-height: 2rem;
    text-align: center;
}
.status>p{
    color: #fff;
}
.status>p>span{
    font-size: .8rem;
    margin-left: .55rem;
}

.container02{
    margin: 6rem 0 2rem 0;
    /* height: 70vw; */
    display: flex;
    justify-content: center;

}
.box{
    /* width: 100vw; */
    margin: 0 auto;
    padding: 2rem .5rem;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}
.box>p{
    font-weight: bold;
    margin: 0 auto;
}
.box>p::before{
    content: '■ ■ ■ ■ ■  ';
    color: #aaaaff;
}
.box>p::after{
    content: '　■ ■ ■ ■ ■';
    color: #aaaaff;
}
.information{
    margin-top: 1rem;
    background-color: #fff;
    height: 10rem;
    border: 1px solid #555 ;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.information>p{
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.5rem;
    white-space: pre;
}


@media (max-width:700px) {

    html{
        font-size: 16px;
    }
    .nav a{
        font-size: 1rem;
    }
    .box{
        padding: .5rem .5rem;
    }

}