.top-msg {
    margin: 10px 0 20px 0;
    padding: 0 10px;
    font-size: 0.8rem;
}
.msg-box {
    margin: 10px 0 10px 0;
    font-size: 0.8rem;
    list-style: circle;
    list-style-position: inside;
}
.msg-box li {
    margin-bottom: 4px;
}
.msg-box p {
    margin-bottom: 4px;
}
#description {
    margin: 32px 0;
    font-size: 0.8rem;
}

.headline {
    margin: 48px 0 16px 0;
    width: 100%;
    line-height: 1.6rem;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: solid 1px #0066CC;
    padding: 4px  0 0 8px;
    border-left: solid 8px #0066CC;
}
.headline h2 {
    display: inline-block;
}
.more {
    margin-left: 8px;
    font-size: 0.6rem;
}
/************************************
ゲームリスト
*************************************/
.game-list-area {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 12px 8px;
    font-size: 0.8rem;
}
.game-list-card {
    width: 100%;
    height: auto;
    overflow: hidden;
    border: solid 1px #a73;
    background-color: transparent;
    position: relative;
}
.game-list-card::before {/*下の線*/
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 5px;
    box-sizing: border-box;  
    border-top: 1px solid #A16EFF;
}
.game-list-card .title {
    width: 100%;
    padding: 6px 0 4px 0;
    text-align: center;
    font-weight: bold;
    position: relative;
    line-height: 24px;
    background-color: rgba(96, 96, 196, 0.2);
}

.game-list-card .title::before,
.game-list-card .title::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    box-sizing: border-box;
}

.game-list-card .title::before {
    top: 4px;
    height: 24px;
    border-top: 1px solid #A16EFF;
    background-color: rgba(0, 256, 110, 0.2);
    z-index: -1;
}

.game-list-card .title::after {
    bottom: 0;
    height: 6px;
    border-top: 1px solid #A16EFF;
    border-bottom: 1px solid #a73;
}

.game-list-card a {
    display: block;
    width: 100%;
    height: 100%;
    transition-duration: 0.5s;
}
.game-list-card a:link, .game-list-area a:visited, .game-list-area a:hover {
    text-decoration: none;
}
.game-list-card:hover {
    transform: scale(1.05, 1.05);
}
.game-list-card .title h3 {
    margin: 0;
}

.game-list-card .recommend_point {
    position: absolute;
    bottom: 0;
}
.recommend_point {
    right: 0;
    width: auto;
    height: 20px;
    padding: 0 12px;
    color: #f33;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px 0 0 0;
}
.recommend_point:before {
    content: '❤';
}
.game-list-card .summary {
    padding: 12px 2% 8px 2%;
    font-size: 0.7rem;
    height: 100%;
    color: #eee;
    position: relative;
    background-color: rgba(96, 96, 196, 0.2);
    z-index: -1;
}

.game-list-card .summary::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 6px;
    box-sizing: border-box;  
    border-top: 1px solid #a73;
    border-bottom: 1px solid #A16EFF;
}
.game-list-card .thumbnail {
    position: relative;
    overflow: hidden;
    width: 94%;
    margin: 3%;
    aspect-ratio: 1/1;
    border-radius: 16px;
}
.game-list-card .thumbnail .shadow {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    box-shadow: inset 0px 0px 12px 6px rgba(32, 0, 64, 0.6);
}
.game-list-card img {
    vertical-align: bottom;
    border: none;
    width: 100%;
    height: 100%;
    transition-duration: 1s;
    /*filter: brightness(1.05) blur(1.02px);*/
}
.game-list-card:hover img {
    transform: scale(1.7, 1.7) rotate(-30deg);
    
}
.game-list-card:hover .summary {
    font-size: 0.69rem;
}


@media screen and ( max-width: 1000px ) {/*1000px以下の場合(タブレット)*/
    .game-list-area {
        font-size: 1rem;  
    }
    .game-list-card .title,
    .recommend_point {
        font-size: 0.7rem;
    }
}
@media screen and ( max-width: 600px ) {
    .game-list-area {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and ( max-width: 450px ) {
    .game-list-area {
        grid-template-columns: 1fr 1fr;
    }
}
/*
新着情報
*/

.news-list-area {
    margin-top: 20px;
}
#news-list {
    font-size: 0.6rem;
    border: solid 1px #FEFEFE;
    overflow-y: scroll;
    width: 100%;
    height: auto;
}
#news-list::-webkit-scrollbar {
    width: 4px;
    height: 8px;
    background-color: #000;
}
#news-list::-webkit-scrollbar-thumb {
    background: #888;
}
#news-list li {
    display: inline-block;
    min-height: 40px;
    width: 100%;
    list-style-type: none;
    border-bottom: dotted 1px #FEFEFE;
    padding: 10px 0 10px 10px;
}
#news-list p {
    display: inline-block; 
    padding-left: 5px;
}
#news-list a:link, #news a:visited, #news a:active {
    text-decoration: none;
    font-weight: bold;
}
#news-list a:hover {
    text-decoration: underline;
}
#news-list .right {
    text-align: right;
    padding-right: 24px;
}

/*******************************
フロントページのジャンル切り替えボタン
********************************/
#btn-area {
    margin: 32px 0 16px 0;
    text-align: center;
}
#btn-area ul {
    vertical-align: top;
    font-size: 0;/*スキマ対策*/
}
#btn-area li{
    display: inline-block;    
}

#genre-btn-area input {
    display: none;
}
#genre-btn-area .label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 12px 2px 12px;
    background-color: #1139A1;
    font-weight: bold;
    border-top: solid 2px  #6495ED;
    border-left: solid 2px  #6495ED;
    border-bottom: solid 6px #000077;
    border-right: solid 4px #000077;
    border-radius: 4px;
    color: #ccc;
    transition: transform 0.1s;
}

#btn-area label {
    cursor: pointer;
    font-size: 0.9rem;
}
#genre-btn-area input:checked + .label {
    border-top: solid 1px #FF6666;
    border-left: solid 1px #FF6666;
    border-bottom: solid 2px #332222;
    border-right: solid 1px #332222;
    margin-left: 6px;
    margin-right: 2px;
    padding: 6px 12px 4px 8px;
    transform: translateY(4px);
    transition: transform 0.2s;
    color: #FFFFFF;
    animation: kirakira-bg-red 1.5s infinite linear;
}
#genre-btn-area label:hover {
    background-color: black;
}
@media screen and (max-width: 1000px) {/*モバイル*/
    #genre-btn-area .label {
        padding: 4px 8px 2px 8px;
        border-top: solid 2px #6495ED;
        border-left: solid 2px #6495ED;
        border-bottom: solid 4px #000077;
        border-right: solid 4px #000077;
        font-size: 0.8rem;
    }
    #genre-btn-area input:checked + .label{
        border-top: solid 1px #FF6666;
        border-left: solid 1px #FF6666;
        border-bottom: solid 2px #332222;
        border-right: solid 1px #332222;
        margin-left: 6px;
        margin-right: 2px;
        padding: 4px 8px 2px 4px;
        transform: translateY(4px);
    }
}
#order-btn-area {
    margin-bottom: 8px;
    height: 24px;
    width: 100%;  
}
#order-btn-area li {
    height: 100%;
    margin-right: 12px;
}
#order-btn-area li:last-child {
    margin-right: 0;
}

#order-btn-area label {
    font-size: 0.8rem;
    vertical-align: 1px;
}

#show-more {
    width: 60%;
    margin: 24px auto 0 auto;
    padding: 6px 12px 4px 12px;
    background-color: #eb6100;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 100vh;
    border-top: solid 2px pink;
    border-bottom: solid 4px #aa3300;
}
#show-more:hover {
    cursor: pointer;
}


/*キラキラ*/
@keyframes kirakira-bg-red {
    0% {
        background-color: #c00;
    }
    50% {
        background-color: #EB0000;
    }
    100% {
        background-color: #c00;
    }
}


/*回転する文字*/
.emblem {
    z-index: -5;
    opacity: 0;
    position: fixed;
    left: calc((100% - 75vh) / 2);
    top: 12.5vh;
    width: 75vh;
    height: 75vh;
    border-radius: 50%;
    font-weight: bold;
    animation: spinZ 20s linear infinite;
    text-align: center;
}
.emblem span {
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 10vh;
    font-weight: bold;
    transition: all .5s cubic-bezier(0, 0, 0, 1);
    color:  #222;
}
@keyframes spinZ {
    0% {
        transform: rotateZ(360deg);
    }
    25% {
        transform: rotateZ(270deg);
    }
    50% {
        transform: rotateZ(180deg);
    }
    75% {
        transform: rotateZ(90deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}
@media screen and (max-width: 600px) {/*モバイル*/
    .emblem {
         left: calc((200% - 75vh) / 2);
    }
}

/*タイトルのウェーブアニメーション*/
#page-title span {
    display: inline-block;
    animation: scale-loop 1.95s infinite;
}

@keyframes scale-loop {
    0% {
        transform: scale(0.9, 0.9);
        color: #0fa;
    }
    50% {
        transform: scale(1.2, 1.2);
        color: orange;
    }
    100% {
        transform: scale(0.9, 0.9);
        color: #0fa;
    }
}
#front-info-box {
    margin: 32px 0 48px 0;    
}
#front-info-box ul li {
    font-size: 0.8rem;
    line-height: 1rem;
    padding: 6px 16px 4px 16px;
}
#front-info-box ul li:nth-child(odd){
    background: rgba(32, 32, 0, 0.4);
}





.manga img {
    margin: 20px 0;
    width: 100%;
}
