.xenoword_main {
    background: #000;
}

.xenoword-background:before {
    content: '';
    background-image: url(../../images/ingame.jpg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main_inner {
    display: grid;
    grid-template-columns: 1fr minmax(80%, 1000px);
    gap: 20px;
    background-color: #000;
    box-sizing: border-box;
}

@media screen and (max-width:768px) {
    .main_inner {
        display: block;
    }

    .main_inner.active {
        display: grid;
        grid-template-columns: 1fr minmax(80%, 300px);
    }
}

.side_menu {
    display: flex;
    width: calc(100vw * (550/2732));
    box-sizing: border-box;
    /* text-align: center; */
}

@media screen and (max-width:768px) {
    .side_menu {
        width: calc(100vw * (500/2732));
        border-right: 0.1px solid #fff;
    }
}

.side_menu.is-closed {
    transform: translateX(-16em);
}

.sidemenu-toggle {
    content: "";
    position: fixed;
    z-index: 1;
    outline: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: 1em;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .5s;
}

.sidemenu-toggle.is-closed {
    transform: translateX(.3em) rotate(0deg);
}

.sidemenu-toggle.icon {
    font-size: 1.5rem;
    color: white;
}

.accordio_txt {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    height: fit-content;
    /* margin-left: 1px; */
    background: #4285b7d4;
    border: 0.1px solid #ffffff;
    border-radius: 0 8px 8px 0;
    padding: 8px 0;
    position: fixed !important;
    transition: all 0.5s;
}

.accordio_txt.active {
    left: calc(100vw * (497/2732));
}



.mainTopHalf {
    height: 200px;
    width: 100%;
    background-color: #192349;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: inset 0 0 10px 15px #192349;

}

.mainTopInner {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../../images/ingame.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 10px 15px #192349;
    opacity: 0.45;
}

.topTxtInner {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    position: absolute;
}

.topImgTitle {
    font-size: 28px !important;
    font-weight: bold;
    text-shadow: 2px 2px #000;
}

@media screen and (max-width:768px) {
    .sticky {
        display: none;
    }

    .sticky.active {
        display: block;
    }
}

.data {
    font-size: 16px !important;
    line-height: 1.5;
    color: #fff;
    cursor: pointer;
}

.data :hover {
    transition: all 0.4s;
}

.main_page {
    /* margin: 8px 0; */
    height: 100%;
    width: 100%;
    line-height: 32px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .main_page {
        width: 95%;
        line-height: 24px;
        padding: 0 0 0 32px;
    }

    .main_page.active {
        width: 100%;
        padding: 0 8px 0;
        ;
    }
}

.main_page a {
    color: #4c8cfa;
    cursor: pointer;
}

/* .title {
    background: linear-gradient(135deg, #FF007A 0%, #00DBF9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px !important;
    width: fit-content;
} */

.subtitle {
    color: #fff;
    font-size: 18px !important;
    border-bottom: 2px solid;
    border-image: linear-gradient(140deg, #FF007A 20%, #00DBF9 80%) 1;
}

@media (max-width: 768px) {
    .subtitle {
        border-bottom: 1px solid;
    }
}

.contents {
    color: #bbbbbb;
    margin: 32px 0;
    width: 90%;
}

@media (max-width: 768px) {
    .contents {
        margin: 16px 0;
        width: 100%;
    }
}

.text {
    padding: 12px;
}

.text span {
    font-weight: bold;
}

.main_page tr {
    background: #00000084;
}

.main_page th,
.main_page td {
    border: 0.1px solid #ffffff;
    padding: 4px 8px;
    font-size: 12px;
}

.main_page th {
    background: #474747;
}

/* ナビゲーションメニュー */
nav {
    width: 15%;
    /*navの外側のheaderなどに横幅を指定する場合は削除してください*/
}


nav ul {
    list-style: none;
    text-align: center;
}


/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
    position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a,
nav ul li p {
    display: block;
    text-decoration: none;
    /* color: #000; */
    padding: 14px;
    transition: all .3s;
    cursor: pointer;
}

@media screen and (max-width:768px) {

    nav ul li a,
    nav ul li p {
        padding: 8px;
    }
}

nav ul li a:hover {
    color: #666;
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
    content: '';
    position: absolute;
    right: 60px;
    top: 25px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(45deg);
}

@media screen and (max-width:768px) {
    nav ul li.has-child::before {
        right: 2px;
        top: 25px;
        width: 60px;
        height: 2px;
        border-bottom: 0.1px solid;
        border-top: none;
        border-right: none;
        transform: none;
    }

    nav ul li.has-child::after {
        content: '';
        position: absolute;
        right: 4px;
        bottom: 13px;
        height: 5px;
        border-right: 0.1px solid;
        rotate: -45deg;
    }
}

/*下の階層を持っているulの指定*/
nav li.has-child ul {
    display: grid;
    grid-template-columns: repeat(2, 150px);
    border: 4px solid #235fa7;
    border-radius: 10px;
    /*絶対配置で位置を指定*/
    position: absolute;
    left: 85%;
    top: 50%;
    z-index: 100;
    /*形状を指定*/
    background: #000;
    width: 308px;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
    transform: translate(16px, -10%);
}

@media screen and (max-width:768px) {
    nav li.has-child ul {
        border: 2px solid #235fa7;
        left: 95%;
        transform: translate(16px, -15%);
    }
}

/*hoverしたら表示*/
nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul,
nav li.has-child:active>ul,
nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
    color: #fff;
    position: relative;
    font-size: 14px;
}

@media screen and (max-width:768px) {
    nav li.has-child ul li a {
        font-size: 12px;
    }
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
    background: #3577CA;
}

.sp_only {
    display: none;
}

@media screen and (max-width:768px) {
    .sp_only {
        display: block;
    }
}