@charset "UTF-8";

/*
デスクトップサイズ
================================================*/

html {
    font-size: 100%;
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: #949087;
    font-family: sans-serif;
    background-color: #000;
    height: 100%;
    /* height: auto; */
    background-image: url(../images/bg-main2.jpg);
    background-attachment: fixed;
}

* {
    margin: 0;
}

/*
COMMON
================================================ */
p {
    line-height: 1.6;
}
.container {
    display: flex;
    justify-content: center;
    /* max-width: 1200px; */
    margin: 0 50px 0px 50px;
    padding: 0rem;
    /*背景色#666は仮 */
    background: #111;
  }

/*
ヘッダ
================================================ */
header {
    margin: 0px 50px 0 50px;
    background: #222;
    text-align: center;
    box-shadow: 15px -1px 10px 0px rgba(120,120,120,0.5);
}

.page-title {
    font-size: 1.6rem;
    font-family: 'Press Start 2P', cursive;
    margin: 0rem 0;
    padding-top: 1.6rem;

}
.page-title, .page-desc {
    text-align: center;
}
.page-title span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;

}

.page-desc {
    font-size: 0.9rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.main-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-bottom: 0.5rem;
}
.main-nav li {
    padding: 0 1rem;
}
.main-nav a {
    width: auto;
}

.main-nav a {
	display: inline-block;
	position: relative;
 	text-decoration: none;
}
.main-nav a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transition: 0.4s;
}
.main-nav a:hover {
	color: #fff;
}
.main-nav a:hover:before {
	transform: scale(1);
}

/*
aside(ページタイトルとかメニューとか更新履歴とか)
サイズは可変
================================================ */
aside {
    width: 50%;
    /* height: 100vh; */
}
aside img {
    margin-bottom: 0px;
    filter: brightness(30%);
}
img {
    max-width: 100%;
}

/* 画像の上にテキストを置くために必要 */
.box {
    position: relative;
}

/* 左メニュー全体をスクロール時、上部固定する設定 */
.menu-fixed {
  /* スクロール固定はこのstickyが必要 */
    position: sticky;
    top: 0rem;
}
.box h2 {
    position: absolute;
    left: 20px;
    top: 40px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
}
.box p {
    position: absolute;
    left: 20px;
    top: 100px;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}

/* 左メニュー仮 */
.box ul {
    position: absolute;
	  list-style-type: none;
    right: 0px;
    top: 275px;
}
.box ul a {
	  background-color: #000;
	  color: #fff;
	  display: block;
	  width: 150px;
	  padding: 5px 10px;
	  text-decoration: none;
    border-radius: 8px 0 0 8px;
}
.box li {
    margin: 5px 0px 5px 5px;
}
.box a:hover {
    color: #000;
    font-weight: bold;
	  background-color:#ddd;
    transition: 0.4s;
}
/* aside news */
.news h3 {
    background-color: #ddd;
    color: #222;
    display: block;
    font-weight: bold;
    width: 200px;
    margin: 10px 0px 10px 10px;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 10px;
    border-bottom: solid 5px #444;
}

/* 更新内容の見た目 */
.news-list {
  /* 更新履歴内容でレイアウトが崩れたらここを変えてみる */
    max-height: 600px;
    letter-spacing: 1px;
    font-size: 0.9rem;
    overflow-y: auto;
    margin-bottom: 0px;
    list-style-type: none;
    line-height: 1.5rem;
}
.news-list .news-item a {
    display: block;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

/* 更新内容にマウスを合わせた時の動き */
.news-list .news-item a:hover {
    background-color: #222;
}

.news-list .date {
    display: inline-block;
    width: auto;
    font-size: 0.7rem;
}

.news-list .category {
    display: inline-block;
    width: 60px;
    border-radius: 5px;
    font-weight: bold;
    background-color: #be4335;
    color: #000;
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.6rem;
    line-height: 16px;
}
.news-list .category.sw {
    color: #fff;
    background-color: #FF0000;
}
.news-list .category.ps4 {
    background-color: #1DA1F2;
}
.news-list .category.ps5 {
    background-color: #fff;
}
.news-list .title {
    display: inline-block;
    width: auto;
    padding-left: 0pt;
    font-size: 0.9rem;
}
/*
main(レビュー記事のせるところ)
サイズは固定
================================================ */
main {
    width: 50%;
    background-color: #ddd;
    /* background-color: #afa07f; */
    padding: 10pt;
    box-shadow: 15px -1px 10px 0px rgba(120,120,120,0.5);
}
.container-main h4 {
    position: sticky;
    top: -0.2rem;
    background-color: #fff;
    color: #222;
    display: block;
    font-weight: bold;
    width: auto;
    margin: 0px 10px 10px 10px;
    padding: 5px 10px;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    border-bottom: solid 3px #444;
    z-index: 1;　/* aと重なった時の対応 */
}



/* メインコンテンツ入れ物 */
.main-box1 {
    display: flex;
    align-items: flex-start;
    margin: 0px 10px 10px 10px;
    padding: 5px 10px;
    /* ↓横並びのボックスの高さを合わせる */
    align-items: stretch;
}

.box1-text {
    width: 100%;
}

.main-box1 .box1-text {
    display: block;
    padding: 10px 10px 10px 15px;
    font-size: 0.9rem;
    background-color: #fff;
    /* 行間 */
    line-height: 1.4rem;
    border-radius: 0px 10px 10px 0px;
    border-bottom: solid 3px #444;
}
/* パッケージ画像の背景装飾 */
.box1-img {
    background-color: #fff;
    border-radius: 0px 0px 0px 10px;
    border-bottom: solid 3px #444;
}
.box1-img img {
    max-width: 150px;
    height: 200px;
}

/* メインコンテンツ_ゲームタイトル */
.main-box1 .box1-text h5 {
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 0.1rem;
    font-weight: bold;
    color: #000;
    margin-top: 0px;
    margin-bottom: 5px;
    padding: 0px;
    background-color: #eee;
    /* 行間 */
    line-height: 1.4rem;
}
/* メインコンテンツ_小見出し用 */
.main-box1 .box1-text p {
    font-size: 0.9rem;
    color: #000;
    margin-top: 5px;
    margin-bottom: -5px;
    padding: 10px 5px 5px 10px;
    background-color: #eee;
    /* 行間 */
    line-height: 1.4rem;
}

/* 更新内容にマウスを合わせた時の動き */
/* hoverをボックス全体に適応する場合（超重要） */
/* hoverを適応したいaのすぐ上のclassにこれを書く */
.main-box0 a {
    display: block;　/* この記述が必要 */
    width: 100%;　　 /* この記述が必要 */
    z-index: 2;      /* h4と重なった時の対応 */
}
.main-box0 a:hover {
  opacity: 0.7;
  transition: 0.4s;
  color: #000;
}
/*
フッタ(コピーライトとか)
================================================ */
.footer {
    height: 40px;
    font-size: 0.8rem;
    margin: 0px 50px 0 50px;
    background: #222;
    text-align: center;
    padding-top: 10px;
    box-shadow: 15px 6px 10px 0px rgba(120,120,120,0.5);
}
.copyright::before,
.copyright::after {
    content: '';
    display: inline-block;
    width: 100px;
    height: 1px;
    margin: 0 10px;
    background-color: #fff;
    vertical-align: middle;
}
/* flex-boxためし */
.container-ft {
    display: flex;
    justify-content: space-between;
}
.back-bt {
    padding: 5px 10px;
    margin: 0 10px;
    display: inline-block;
    width: 30px;
    border-radius: 5px;
    background-color: #aaa;
    color: #000;
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.6rem;
    font-weight: bold;
}
/* ================================================ */
/* ここまでがindex(home) */

/* ここからcontact */
/* ================================================ */

.contact {
    /* position: relative; */
    /* 背景画像が下へはみ出さない設定overflow: hidden; */
    overflow: hidden;
    width: 100%;
    height: 600px;
    box-shadow: 15px -2px 10px 0px rgba(120,120,120,0.5);
}
/* 画像の上にテキストを置くために必要 */
.box-co {
    position: relative;

}
.contact .box-co img {
    position: relative;
    margin-bottom: 0px;
    filter: sepia(100%) brightness(30%);
    z-index: -1;
}
.contact .box-co h2 {
    position: absolute;
    left: 20px;
    top: 40px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    z-index: 2;
}
.contact .box-co p {
    position: absolute;
    left: 20px;
    top: 100px;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}
.my-tw {
    position: absolute;
    font-size: 0.6rem;
    right: 20px;
    top: 290px;
    width: 500px;
    z-index: 5;
}
.container-co {
    display: flex;
    justify-content: center;
    /* max-width: 1200px; */
    margin: 0 50px 0px 50px;
    padding: 0rem;
    /*背景色#666は仮 */
    background: #111;
    position: relative; /*boxshadowが上にはみ出すのをふせぐ*/
    z-index: -1;        /*ここをヘッダよりしたの値にする*/
    /* ここの記述によりヘッダの上にshadowが重ならない */
    /* メインコンテンツのcontainerとほぼ同じ内容だがz-indexをつけて */
    /* 動作に違いが出たので別classにした */
}
/* ================================================ */
/* ここまでcontact */


/* ここからabout */
/* ================================================ */

/* gategoryを流用 */
.news-list .category.my {
    font-size: 0.8rem;
    width: auto;
    text-align: center;
    padding: 5px;
    margin-top: 10px;
    color: #222;
    background-color: #aaa;
}
/* news-listを流用（.titleをself‐intrに変更） */
.news-list .self‐intr {
    display: inline-block;
    width: auto;
    margin-top: 5px;
    padding-left: 0pt;
    font-size: 0.9rem;
}
.box1-about {
    width: 15px;
    background-color: #000;
    border-radius: 10px 0px 0px 10px;
}
.box1-about-red {
    width: 15px;
    background-color: #ed1c24;
    border-radius: 10px 0px 0px 10px;
}
.box1-about-blue {
    width: 15px;
    background-color: #0c4da2;
    border-radius: 10px 0px 0px 10px;
}
.box1-about-green {
    width: 15px;
    background-color: #28a44a;
    border-radius: 10px 0px 0px 10px;
}
/* ================================================ */
/* ここまでabout */






/* ここからdiary */
/* ================================================ */

/* 更新内容にマウスを合わせた時の動き */
/* hoverをボックス全体に適応する場合（超重要） */
/* hoverを適応したいaのすぐ上のclassにこれを書く */
.diary-box-0 a {
    display: block;　/* この記述が必要 */
    width: 100%;　　 /* この記述が必要 */
    z-index: 2;      /* h4と重なった時の対応 */
}
.diary-box-0 a:hover {
  opacity: 0.9;
  transition: 0.4s;
  color: #000;
}
/* メインコンテンツ入れ物 */
.diary-box-1 {
    display: flex;
    align-items: flex-start;
    margin: 0px 10px 10px 10px;
    padding: 5px 10px;
    /* ↓横並びのボックスの高さを合わせる */
    align-items: stretch;
}
.diary-box-1 .box1-text-dy {
    display: block;
    color: #111;
    padding: 10px 10px 10px 15px;
    font-size: 0.9rem;
    background-color: #fff;
    /* 行間 */
    line-height: 1.4rem;
    border-radius: 0px 10px 10px 0px;
    border-bottom: solid 3px #444;
}
/* メインコンテンツ_ゲームタイトル */
.diary-box-1 .box1-text-dy h5 {
    font-size: 0.8rem;
    font-family: 'Press Start 2P', cursive;
    text-align: left;
    letter-spacing: 0.1rem;
    color: #eee;
    margin-top: 0px;
    margin-bottom: 5px;
    padding-left: 10px;
    padding-top: 3px;
    background-color: #222222;
    /* 行間 */
    line-height: 1.4rem;
    border-radius: 0px 10px 0px 0px;
}
/* メインコンテンツ_小見出し用 */
.diary-box-1 .box1-text-dy p.caption {
    font-size: 0.9rem;
    color: #000;
    margin-top: 5px;
    margin-bottom: -5px;
    padding: 3px 5px 3px 10px;
    background-color: #eee;
    /* 行間 */
    line-height: 1.4rem;
}
.diary-box-1 .box1-text-dy p {
    font-size: 0.9rem;
    color: #000;
    margin-top: 5px;
    margin-bottom: -5px;
    padding: 3px 5px 3px 10px;
    /* 行間 */
    line-height: 1.4rem;
}

/* ここからreview */
/* ================================================ */

/* メインコンテンツ入れ物 */
/* から流用 */
.main-box-review1 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0px 10px 10px 10px;
    padding: 5px 10px;
    /* ↓横並びのボックスの高さを合わせる */
    align-items: stretch;
}

.main-box-review1 .box1-text {
    display: block;
    padding: 10px 10px 10px 15px;
    font-size: 0.9rem;
    background-color: #fff;
    /* 行間 */
    line-height: 1.4rem;
    border-radius: 0px 10px 10px 0px;
    border-bottom: solid 3px #444;
}
/* メインコンテンツ_ゲームタイトル */
.main-box-review1 .box1-text h5 {
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 0.1rem;
    font-weight: bold;
    color: #eee;
    margin-top: 0px;
    margin-bottom: 5px;
    padding: 0px;
    background-color: #444;
    /* 行間 */
    line-height: 1.4rem;
}


/* メインコンテンツ_小見出し用 */
/* パッケージ横の文字 */
.main-box-review1 .box1-text p {
    /* font-size: 0.9rem; */
    color: #000;
    padding: 10px 5px 5px 10px;
    background-color: #eee;
    /* 行間 */
    line-height: 1.4rem;
}

.review-text {
    margin-top: 15px;
}

/* 良いところ、見出し */
.review-text .category {
    display: inline-block;
    width: 60px;
    height: 30px;
    padding-top: 5pt;
    border-radius: 5px 5px 0px 0px;
    font-weight: bold;
    background-color: #be4335;
    color: #000;
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.8rem;
    line-height: 16px;
}

.review-text .category.good {
    color: #fff;
    background-color: #95b58d;
}
.review-text .category.bad {
    color: #fff;
    background-color: #f15922;
}
.review-text .category.etc {
    color: #fff;
    background-color: #000;
}
.review-text .category.etcetc {
    color: #fff;
    background-color: #888;
}

.re-title {
    font-size: 0.8rem;
    color: #000;
}

/* レビュースペース親要素 */
.review-box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin: 0px;
  padding: 0px;
  /* ↓横並びのボックスの高さを合わせる */
  align-items: stretch;
}
.box1-img-r {
  display: block;
  width: auto;
    /* background-color: #fff; */
    /* border-radius: 0px 0px 0px 10px; */
    /* border-bottom: solid 3px #444; */
}
.box1-img-r img {
    max-width: 150px;
    height: 150px;
}
.text-pake {
  display: block;
  /* 領域全体へのばしたいとき */
  flex-grow: 2;
  width: auto;
  text-align: left;
}










/*
XXXXXXX
================================================ */













/*
レスポンシブ対応
================================================ */
@media (max-width: 950px) {
    body {
        background-image: none;
    }

/* header部分のboxを縦ならびに */
    header {
        margin: 0px;
        text-align: center;
    }
    .page-title {
        font-size: 1.3rem;
        margin: 0;
        padding-top: 1rem;
    }
    .page-title, .page-desc {
        text-align: center;
    }
    .page-desc {
        font-size: 0.8rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .main-nav {
        justify-content: center;
        padding-bottom: 0.5rem;
        font-size: 0.8rem
    }
/* container */
    .container {
        width: 100%;
        /* flexbox解除 */
        flex-direction: column;
        /* 中央ぞろえ */
        align-items: center;
        /* 背景表示用のマージン解除 */
        margin: 0px;
    }
    aside {
        margin-bottom: 40px;
        /* レスポンシブのため横幅を50%から100%へ */
        width: 100%;
    }
/* mein部分のboxを縦ならびに */
    main {
        width: 100%;
        margin: 0;
        /* 影削除 */
        box-shadow: none;
    }
    .footer {
        height: 40px;
        font-size: 0.8rem;
        margin: 0px;
        background: #222;
        text-align: center;
        padding-top: 10px;
        box-shadow: none;
    }
    .copyright::before,
    .copyright::after {
        content: '';
        width: 10px;
    }


/* contactページ */
    .my-tw {
        position: absolute;
        font-size: 0.6rem;
        right: 20px;
        top: 190px;
        width: 380px;
        z-index: 5;
    }
    .contact {
        box-shadow: none;
        overflow: hidden;
    }

    .container-co {
        width: 100%;
        /* flexbox解除 */
        flex-direction: column;
        /* 中央ぞろえ */
        align-items: center;
        /* 背景表示用のマージン解除 */
        margin: 0px;
    }

/* contactページここまで */


/* aboutページ */
    .box1-about,
    .box1-about-red,
    .box1-about-blue,
    .box1-about-green {
        width: 20px;
    }
/* reviewページ */
    .text-pake p {
      font-size: 0.7rem;
    }
    /* メインコンテンツ_ゲームタイトル */
    .main-box-review1 .box1-text h5 {
        font-size: 0.7rem;
    }
}
