@import 'reset.css';
@import 'base.css';
@import 'footer.css';
/* --------------------------------------
    スクリーン
-------------------------------------- */
.game-screen {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
    z-index: 0;
}
@media screen and (max-width: 599px) {
    .game-screen {
        padding: 64px 0;
    }
}
.game-screen:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
}
.game-screen.blur:after {
    content: '';
    background: inherit;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
}
.game-screen-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.game-screen-img {
    width: 150px;
}
.game-screen-img.cover-iPhone {
    padding: 7px;
    height: 320px;
    padding: 38px 5px 38px;
    background: center/cover no-repeat url(/image/game-frame.png);
}
.cover-iPhone-inner {
    position: relative;
    width: 100%;
    border-radius: 1px;
    overflow: hidden;
    height: 100%;
}
@media screen and (max-width: 599px) {
    .game-screen-img {
        width: 103px;
    }
    .game-screen-img.cover-iPhone {
        padding: 26px 6px 26px;
        height: 215px;
    }
}
.game-screen-img.cover-iPhone img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.game-screen-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
@media screen and (max-width: 599px) {
    .game-screen-tag {
        margin-bottom: 8px;
    }
}
.game-screen-tag li {
    background: #fff;
    padding: 4px 16px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111;
}
@media screen and (max-width: 599px) {
    .game-screen-tag li {
        font-size: 12px;
        padding: 2px 10px;
    }
}
.game-screen-tag li:not(:last-child) {
    margin-right: 4px;
}
.game-screen-desc {
    flex: 1;
    padding-left: 24px;
}
@media screen and (max-width: 599px) {
    .game-screen-desc {
        padding-left: 16px;
    }
}
.game-screen-desc p,
.game-screen-desc h1 {
    color: #fff;
}
.game-screen-desc h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
}
@media screen and (max-width: 599px) {
    .game-screen-desc h1 {
        font-size: 22px;
    }
}
.game-screen-desc p {
    line-height: 1;
}
.game-screen-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.game-screen-link li:not(:last-child) {
    margin-right: 8px;
}
.game-screen-link li img {
    height: 47px;
    width: auto;
}
@media screen and (max-width: 599px) {
    .game-screen-link li img {
        height: 30px;
    }
}

.game-screen-link li a {
    transition: .3s all;
}
.game-screen-link li a:hover {
    opacity: 0.7;
}

/* --------------------------------------
    コンテンツ
-------------------------------------- */
/* ゲーム詳細のもっと見る機能 */
.wrap-detail-more {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.wrap-detail-more.is-open {
    height: auto;
}
.wrap-detail-more:not(.is-open):before {
    content: "";
    display: block;
    height: 90px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(rgba(255, 244, 216, 0), rgba(255, 244, 216, 1));
    background: -webkit-linear-gradient(rgba(255, 244, 216, 0), rgba(255, 244, 216, 1));
    background: -moz-linear-gradient(rgba(255, 244, 216, 0), rgba(255, 244, 216, 1));
}
.wrap-detail-more #detail-open {
    position: absolute;
    left: 50%;
    top: 260px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.wrap-detail-more.is-open #detail-open {
    display: none;
}



/* キャラクターのボタン */
.character-box {
    text-align: center;
}
.character-box p {
    text-align: left;
}
.wrap-chractor-more {
    position: relative;
    height: 40px;
    overflow: hidden;
}
.wrap-chractor-more.is-open {
    height: auto;
}
.wrap-chractor-more:not(.is-open):before {
    content: "";
    display: block;
    height: 90px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: #FFF4D8;
}
.wrap-chractor-more #chractor-open {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.wrap-chractor-more.is-open #chractor-open {
    display: none;
}