@charset "utf-8";
@import url("./setting.css");

div.header {
    font-size: 1.2rem;
    padding-top: 1rem;
    padding-bottom: 4px;
    border-bottom: solid 1px #999999;
    margin: 0 auto 0.5rem auto;
/*    display: flex;*/
    justify-content: space-between;
    position: relative;
    width: 95%;
}
p.back {
    text-align: left;
    display: inline-block;
    margin-left: 0.5rem;
    position: absolute;
    left: 0;
}
p.back a {
    padding-left: 0.2rem;
    border: solid 1px #999;
    background-color: #72003f;
    color: white;
    border-radius: 5px;
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
}
p.blank {
    text-align: right;
    display: inline-block;
    margin-right: 0.5rem;
    border-radius: 5px;
    padding: 0.25rem 0.2rem;
    font-size: 0.9rem;
    font-weight: bold;
}
h2 {
    font-size: 1.2rem;
    text-align: center;
}
details {
    max-width: 95%;
    margin: 0 auto 0.5rem auto;
}
summary {
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.1rem;
    padding: 0.5rem 0.1rem 0.5rem 0.5rem;
    background-color: var(--main-color);
    color: white;
    border-bottom: 1px solid #999;
    border-radius: 8px 8px 8px 8px;
    list-style: none;
}
details div {
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    background-color: rgba(255,255,255,0.75);
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
}
p.right {
    text-align:right;
}









div.navi {
    font-size: 1.2rem;
    border-top: solid 1px #999999;
    margin: 2rem auto 0.5rem auto;
    justify-content: space-between;
    position: relative;
    width: 95%;
}
p.back {
    text-align: left;
    display: inline-block;
    margin-left: 0.5rem;
}
p.back a {
    padding-left: 0.2rem;
    border: solid 1px #999;
    background-color: #72003f;
    color: white;
    border-radius: 5px;
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
}




body {
    background-image: url('../images/bg4.png');
    background-repeat: repeat;
    animation: slide 45s linear infinite;
}
@keyframes slide {
    0% {
    background-position: 0 0;
    }
    100% {
    /* 画像のサイズに応じて値を調整してください */
    background-position: 256px -256px;
    }
}
