.pg-page {
    padding-top: 200px;
    width: 100vw;
}

.pg-page .content_top_left {
    width: min(1300px, 90vw);
    margin: 0 auto 100px;
    font-size: 16px;
}

.pg-page .page_gamelist_box {
    margin-top: 20px;
    display: flex;
    line-height: 1.8em;
}
.pg-page .page_gamelist_left {
    padding: 20px;
    border: solid 1px #EA0015;
    width: 80%;
}
.pg-page .page_gamelist_right {
    padding: 10px;
    background-color: #EA0015;
    color: #fff;
    font-weight: bold;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pg-page .page_gamelist_btn {
    cursor: pointer;
}

.pg-page .page_detail {
    margin: 50px 0;
    text-align: left;
    line-height: 1.5;
}

.pg-page .page_detail_schedule {
    margin-top: 80px;
}
.pg-page .page_detail_schedule p {
    margin: 0 1em;
}
.pg-page .page_detail_schedule p strong {
    font-weight: bold;
    margin-right: 0.5em;
}

.pg-page .page_detail_buy-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 80px;
}
.pg-page .page_detail_buy-box {
    width: 33.333333%;
    display: flex;
    flex-direction: column;
}

.pg-page .page_detail_buy-box span {
    font-size: 14px;
    color: #555;
    margin-bottom: 1em;
}
.pg-page .page_detail_buy-box a {
    display: block;
    border: solid 1px #EA0015;
    border-radius: 4px;
    text-decoration: none;
    color: #000;
    display: block;
    padding: 1em;
    margin-top: auto;
}

.pg-page .page_detail_price {
    font-weight: bold;
    margin: 0 auto;
    text-align: center;
    width: min(100%, 1000px);
    display: flex;
    gap: 30px;
    padding: 15px 0;
}
.pg-page .page_detail_price-title {
    width: 50%;
}
.pg-page .page_detail_price-title h5 {
    width: min(100%, 500px);
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.pg-page .page_detail_price table {
    width: 50%;
    border-spacing: 20px;
	border-collapse:separate;
}

/* ここから個別ページのレイアウト */
.page_share {
    display: flex;
    gap: 10px;
}
.page_share h3 {
    color: #8E8E8E;
    font-size: 20px;
}
.page_single_title {
    margin: 100px 0;
    font-size: 28px;
    text-align: left;
    font-weight: bold;
    line-height: 1.5;
}
.page_single_content {
    text-align: left;
    font-size: 16px;
    line-height: 1.5em;
}
.page_single_content img {
    margin: 10px 0;
    display: block;
    max-width: 100%;
    height: auto;
}

.page_single_content strong {
    font-weight: bold;
}

/* CKEditor リンククラスのスタイル */
/* .page_single_content .external-link {
    padding: 20px 60px 20px 20px;
    font-size: 15px;
    position: absolute;
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    width: min(400px, 50%);
    border-radius: 10px;
    border: 2px solid red;
} */


.page_single_back {
    display: inline-block;
    margin: 100px;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 50px;
    border: solid 2px #EA0015;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: .2s;
    position: relative;
    top: 0;
}
.page_single_back:hover {
    top: -3px;
    opacity: .5;
}

@media screen and (max-width:767px) {
    .pg-page {
        padding-top: 100px;
    }
    .pg-page .page_h2 {
        margin: 50px 0;
        font-size: 50px;
    }

    .pg-page .page_detail_buy-list {
        display: block;
    }
    .pg-page .page_detail_buy-box {
        width: 100%;
    }

    .pg-page .page_detail_price {
        display: block;
    }
    .pg-page .page_detail_price-title h5 {
        padding: 1em;
        margin-top: 20px;
        box-sizing: border-box;
    }
}