@charset "UTF-8";

/* 共通部分
---------------------------------------- */
html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: #4c4c4c;
    font-family: "メイリオ", Meiryo, "ＭＳ ゴシック", "ヒラギノ角ゴ pro W3","Hiragino Kaku Gothic pro", sans-serif;
    color: #ffffff;
    line-height: 2;
}

header {
    background-color: #222428;
    font-size: 1.2rem;
    text-align: center;
    font-family: 'RocknRoll One', sans-serif;
}

footer {
    background-color: #222428;
    text-align: center;
    padding: 15px 0;    
}

aside {     /* サイドバー部分 スマホでは非表示 */
    display: none;
}

main {
    width: 100%;
    background-color: #4c4c4c;
}

div {
    margin-bottom: 1.2rem;
    font-size: 0.8rem;      /*スマホ表示 基本的な文字のサイズ*/
}

h1 {
    font-family: 'RocknRoll One', sans-serif;
    margin: 1rem auto;
    font-size: 1.3rem;
    border-left: 10px solid orange;
    padding-left: 8px;
    background-color: #222428;
}

h2 {
    background-color: #222428;
    border-left: 10px solid crimson;
    font-family: 'RocknRoll One', sans-serif;
    font-size: 1.1rem;
    text-align: left;
    margin: 8px auto 8px;
    padding: 0 8px;
    font-weight: normal;
}
    .box h2 {
        width: 98%;
    }

h3 {
    background-color: #222428;
    border-left: 10px solid #222428;
    color: #ff8c00;
    font-family: 'RocknRoll One', sans-serif;
    font-size: 1rem;
    text-align: left;
    margin: 10px auto 8px;
    padding: 0 8px;
    font-weight: normal;
}

h4 {
    background-color: #222428;
    color: #ffffff;
    font-family: 'RocknRoll One', sans-serif;
    font-size: 0.9rem;
    text-align: left;
    margin: 16px auto 8px;
    padding: 0 15px;
    font-weight: normal;
}

h5 {
    border-bottom: 2px solid;
    font-family: 'RocknRoll One', sans-serif;
    font-size: 1rem;
    text-align: left;
    margin: 20px auto 8px auto;
    font-weight: normal;
}

h6 {
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
    padding: 0;
    padding-left: 1.3rem;
    background-color: #808893;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.5rem;
}
    .route-A {
        background-image: repeating-linear-gradient(-45deg, #d69eac, #d69eac 3px, #d37390 3px, #d37390 7px);
        color: #ffffff;
    }
    .route-B {
        background-image: repeating-linear-gradient(-45deg, #436b93, #436b93 3px, #808893 3px, #808893 7px);
        color: #ffffff;
    }

p {
    margin: auto 4%;
}

a {
  color: skyblue;
  text-decoration: none;
}
  a:hover {
    text-decoration: underline;
  }
    header a {
        color: #ffffff;
        text-decoration: none;
    }

span {
    font-weight: bold;
    color: mediumaquamarine;
}
    .r { /* 注意箇所のマークアップに使用 */
        color: tomato;
    }
    .enemy {    /* 主にザコ敵名のマークアップに使用 */
        color: #e2041b;
    } 

b {}
.life {color: lightpink}
.score {color: #ffff89}
.other {color: #009944}

.platinum {color: lightsteelblue}
.gold {color: gold}
.silver {color: silver}
.bronze {color: peru}

strong {}
.chart strong {color: gold}

hr {
    margin: 1rem 0;
}

img {
  margin: 10px 10% 30px 10%;
  width: 80%;
}
    .center {  
        display: block;
        margin: 20px auto;
    } 
    .small {    /* 小さいサイズで表示したい画像に使用 */
        width: 25%;
        display: block;
        margin: 20px auto;
        border: 1px solid;
    }
    .large {    /* 大きめに表示したい画像に使用 */
        width: 95% !important;
        display: block;
        margin: 20px auto;
        border: 1px solid;
    }

ul {
  padding-left: 3rem;
  list-style: square;
}
    .bases ul {
        padding-left: 1rem;
    }

ol {
  padding-left: 3rem;
  list-style: decimal;
}

table {
  border: 2px solid;
  border-collapse: collapse;
  width: 90%;
  margin: 0.75rem auto;
}
    .headless {
        width: 85%;
    }
        .headless tr:nth-child(odd) {
            background-color: #333;
        }
    .intro table {
        width: 85%;
    }
    .bases table {
        width: 90%;
    }
    .items img {
        display: block;
    }
    .items b {
        color: gold;
    }
    .grid3 {width:95%;}
        
th,td {
  border: 2px solid;
  padding: 0 0.5rem;
}

th {
    background-color: #cc0000;
    vertical-align: middle;
    text-align: center;
}

td {
    line-height: 1.5;
    vertical-align: middle;
    padding: 5px;
}
    .p1 {
        font-weight: bold;
        background-color: #66cdaa;
    }
    .p2 {
        font-weight: bold;
        background-color: #e9bc00;
    }
    .p3 {
        font-weight: bold;
        background-color: hotpink;
    }
    .p4 {
        font-weight: bold;
        background-color: #4d4398;
}
    .items td:nth-child(odd) {
        width: 5rem;
    }
    .trophy td:nth-child(1) {font-weight: bold;}
    .trophy td:nth-child(3) {width: 5rem;}
    .grid3 td{
            width: 20%;
            font-size: 0.7rem;
            font-weight: bold;
            text-align: center;
        }
            .grid3 td img{
                margin: 0 auto;
            }

dl {
    margin: auto 2%;
    overflow: hidden;
}

dt {
    font-size: 1rem;
    color: #f8e58c;
}
    .keys-Wii dt {
        float: left;
        width: 7.5rem;
        margin-right: 0.7rem;
        padding: 0 0.7rem;
        border-radius: 0.5rem;
        text-align: center;
        font-size: 0.8rem;
        color: #222428;
        background-color: ghostwhite; 
    }
    .keys-PS dt {
        float: left;
        width: 7.5rem;
        margin-right: 0.7rem;
        padding: 0 0.7rem;
        border: ghostwhite solid 1px;
        border-radius: 0.5rem;
        text-align: center;
        font-size: 0.8rem;
        color: ghostwhite;
        background-color: #222428; 
    }
    .chart dt {
        float: left;
        width: 3rem;
        margin-right: 0.7rem;
        padding: 0 0.7rem;
        border: ghostwhite solid 1px;
        border-radius: 0.8rem;
        text-align: center;
        font-size: 0.8rem;
        color: ghostwhite;
        background-color: #222428;
    }

dd {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    line-height: 1.5rem;
    border-bottom: 1px dashed silver;
}
dd:last-of-type {
    border-bottom: none;
}
    .keys-Wii dd, .keys-PS dd {
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .chart dd {
        margin-bottom: 0.3rem;
        padding-bottom: 0.5rem;
    }

details {
    transition: 0.5s;
}
    details b {
        background-color: #b22222;
        padding: 0 0.5rem;
    }

summary {}
.accordion-A summary {    /*-- h4と同じ装飾 --*/
    display: flex;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    background-color: #222428;
    color: #ffffff;
    font-family: 'RocknRoll One', sans-serif;
    font-size: 1rem;
    text-align: left;
    margin: 8px auto 8px;
    padding: 0 8px;
    font-weight: normal;
    cursor: pointer;
}
.accordion-A summary::before {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin: auto 8px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}
.accordion-A[open] summary::before {
    transform: rotate(225deg);
}



/* メイン部分・個別設定
---------------------------------------- */

.fw {display: none;}

.big-bg {
    background-image: url(../images/dark_red.jpg);
    background-size: cover;
    background-position: center top;
    min-height: 100vh;
    margin-bottom: 0;
    background-attachment: fixed;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

.contents {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    background-color: #4c4c4c;
}

    .contents a {
        color: skyblue;
        text-decoration: none;
    }
    .contents a:hover {
        color: tan;
        text-decoration: underline;
    }

.top h2 {
    margin: 8px auto;
}

/* トップページ用 */
.intro {
    text-align: center;
}
    .intro p {
        font-size: 1rem;
    }
    .intro th {
        width: 5rem;
        background-color: #303030;
    }
    .intro td {
        text-align: left;
    }

.top-menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: 0;
}
    .top-menu ul {
        list-style: none;
        padding-left: 0;
    }
    .top-menu li {
        font-weight: bold;
        border: 1px solid #a22041;
        border-left: 5px double #a22041;
        margin-bottom: 2px;
        padding-left: 0.4rem;
        vertical-align: middle;
        white-space: wrap;
        background-color: aliceblue;
    }
        .top-menu li:hover {
            background-color: #111;
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }
        .top-menu a {
            color: #444444;
        }
        .top-menu a:hover {
            text-decoration: none;
        }
        .top-menu ul img {
            display: inline-block;
            margin: 0;
            width: 1.7rem;
        }

.box2 {     /* トップページ用・2つ並びにしたい部分 */
    width: 49%;
    justify-content: space-between;
    font-size: 0.9rem;
}
.picture {      /* トップページ用・画像のみを入れる部分 */
    text-align: center;
    vertical-align: middle;
}
    .picture img {
        display: inline-block;
        margin: 0 auto;
}

.PageList {     /* <ul>タグに指定 */
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}
    .PageList div {
        margin-bottom: 0;
    }
    .PageList img {
        width: 100%;
        margin: 0;
    }
    .PageList h3 {
        font-size: 1.1rem;
        color: skyblue;
        letter-spacing: 1px;
        background-color: rgba(0,0,0,0);
        border-left: none;
        margin: 0;
    }
        .PageList h3:hover {
            background: #e6eae3;
            color: #887f7a;
        }
.PageList a:hover {
    color: #887f7a;
    text-decoration: none;
}
    .PageList li {
        width: 100%;
        flex-flow: column;
        margin-bottom: 10px;
        border: 1px solid;
    }
    .PageList p {
        font-size: 0.8rem;
        margin: 0;
        padding: 10px;
        padding-top: 5px;
    }

.list_update {
    list-style: none;
    margin: auto 5%;
    border: 2px solid;
    height: 150px;
    overflow-y: scroll;
}
    .list_update li {
        border-bottom: 1px dashed;
        margin-left: -1.5rem;
    }
    .list_update li:nth-child(1) {
        margin-top: 0.3rem;
    }

/* 各ページ用 */
.toc ol {      /* ページの目次の装飾など */
    border: solid 2px #ff8c00;
    position: relative;
    margin-top: 3em;
    padding: 0 0.5em;
    list-style: none;
}
    .toc ol li{
        line-height: 1.5em;
        padding: 0.5em 0 0.5em 1.4em;
        border-bottom: dashed 1px silver;
        list-style-type: none!important;
        font-weight: bold;
    }
        .toc ol li:before {   /* リスト内アイコンについて*/
            font-family: "FontAwesome";
            content: "\f138";   /*アイコンの種類を指定*/
            position: absolute;
            left : 0.5em; /* 左端からアイコンまでの空き */
            color: #fff; /* アイコン色 */
        }
        .toc ol li:after {  /* タブの部分*/
            background: #ff8c00;
            color: #fff;
            font-size: 1rem;
            font-weight: bold;
            position: absolute;
            left: -2px;
            bottom: 100%;
            padding: 2px 7px 1px;
            content: "目次（クリック・タップで各項目へ移動）";
            letter-spacing: 0.05em;
        }
        .toc ol li:hover {
            color: dimgray;
            background-color: aliceblue;
        }
            .toc ol li:hover:before {
                color: dimgray;
                transform: rotate(90deg);
                transition: transform .3s; 
            }

    .toc a { color: aliceblue;}
    .toc a:hover {
        text-decoration: none;
    }

.bases td img {
    margin: auto;
}

.collection table {
    border: double;
    font-size: 0.8rem;
    width: 90%;
}
    .collection table a {
        font-weight: bold;
        text-decoration: underline;
    }
    .collection tr:nth-child(even) {background-color: #222;}
    .collection tr:nth-child(odd) {background-color: #333;}
    .collection th {
        border: double;
        background-color: #e83929;
    } 
    .collection td {
        border: double;
        height: 1.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

.guide h2 {
    margin-top: 2rem;
}
.guide p,.bases p {
    margin: auto 1rem;
    margin-bottom: 1.5rem;
}
.guide img {
    width: 70%;
}
.guide .small {    /* 小さいサイズで表示したい画像に使用 */
    width: 25%;
    display: block;
    margin: 20px auto;
    border: 1px solid;
}

.chart p {
    margin-bottom: 1.5rem;
}

.chart ol {
    list-style:decimal-leading-zero;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.videoWrap {
    padding-top: 56.25%;
    width: 100%;
    position: relative;
}
    .videoWrap iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
    }

.pu { /*--pickup　重要な部分の表示--*/
    padding: 0.7rem;
    border: double;
    border-radius: 0.8rem;
    background-color: #dcdcdc;
    color: black;
}

.pagenation ul{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid;
    padding-top: 0.4rem;
    padding-left: 0;
    margin-bottom: 2.5rem;
    list-style: none;
    font-weight: bold;
}

/* 下部ナビゲーション */
.bottom_nav {
    position: fixed;
    width: 100%;
    border-top: 1px solid;
    margin-bottom: 0;
    bottom: 0;
}

nav ul {
  display: flex;
  list-style: none;
  padding: inherit;
  margin: 0;
}

nav ul li {
  height: 50px;
  background-color: white;
  color: dimgray;
  text-align: center;
  padding: 1px 0;
  font-size: 0.7rem;
  flex: 1;
}

nav ul li a {
  color: dimgray;
}

li img {
  width: 10%;
  margin: 2px auto 0px auto;
}

/* フッター部分 */
.page-footer {
  margin-bottom: 50px;
}
footer a {
  color: #ffffff;
  text-decoration: none;
}
.copy {     /* 権利表記部分のゲームタイトルをマークアップ */
    color: gold;
}


/* デスクトップPC表示
---------------------------------------- */
@media screen and (min-width: 768px){
    
.fm {display: none;}
.fw {display: contents;}
    
header {font-size: 1.5rem;}


div {font-size: 0.9rem;}

main {width: 71%;}

.chart p {
    margin-bottom: 2rem;
    }
    
.bottom_nav {display: none;}
.page-footer {margin-bottom: 0;}

/* サイドメニュー部分 */
aside {
    display: block;
    width: 25%;
    border-right: 2px double;
    padding-right: 15px;
    margin-left: -3%;
    font-size: 0.9rem;
}
    aside ol,aside ul {
        padding: 0 1rem 0 1.5rem;
        margin-left: 0.5rem;
        border-left: 3px double;
    }
    aside li {font-size: 0.8rem;}
    aside li::after {   /* list-styleの部分にも下線を表示する為の記述 */
        content: "";
        display: block;
        border-bottom: 1px dashed #fff;
        margin-left: -1rem;
    }
    aside h2 {font-size: 1.2rem;}
    aside h3 {font-size: 1rem;}
    aside h4 {font-size: 1rem;
              margin-top: 2rem;
              text-align: center;
    }
    
.PageList .two-col {
    width: 50%;
}
    .two-col h3 {
        font-size: 1.1rem;
    }

.lift { position: sticky;   /* ホームへ移動＆上部へスクロール用のボタン */
        top: 1rem;
}
    .lift ul {
        padding: 0;
        list-style: none;
        font-weight: bold;
        text-align: center;
        border-left: none;
    }
        .lift ul li {
            padding: 0.3rem;
            font-size: 1.1rem;
            border: 1px solid;
            color: dimgray;
            background-color: #f5f5f5;
        } 
        .lift ul li::after {border-bottom: none;}
        .lift ul li:hover {
            color: skyblue;
            background-color: #222428;
        }  
        .lift ul a:hover {text-decoration: none;}

.scroll {transition: 0.3s;}