/* 全体設定 */

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro",
    "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "メイリオ", sans-serif;
  color: #282828;
}

/* ヘッダー部分 */

.header-logo {
  height: 48px;
  width: 100%;
  background: #282828;
}

.header-logo-img-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo-img {
  height: 24px;
}

.header-bottom-line {
  height: 28px;
  width: 100%;
  background: #f9c74f;
}

.header-bottom-notify-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-bottom-notify {
  color: #282828;
  font-size: 0.6px;
}

/* トップ画面 */

.top-headline-wrapper {
  background: #282828;
}

.top-headline {
  display: flex;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
}

.top-headline-img-wrapper {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.top-headline-img {
  width: 100%;
  max-width: 400px;
  margin: 32px 0;
}

.top-headline-tagline {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 16px;
  line-height: 2;
  box-sizing: border-box;
  margin: 32px 0;
}

.top-headline-tagline-title {
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 16px;
}

@media only screen and (max-width: 990px) {
  .top-headline {
    flex-direction: column;
  }
}

/* 投稿作品一覧 */
.top-game-items {
  max-width: 990px;
  margin: 0 auto;
  margin-bottom: 32px;
}

.top-game-items-title {
  margin: 32px 0;
  font-size: 1.6rem;
  padding: 16px;
}

.top-item-col {
  display: flex;
}

.top-item {
  flex: 1;
  padding: 16px;
}

.top-item img {
  max-width: 100%;
}

.top-item h3 {
  font-size: 1.4rem;
  margin: 8px 0;
}

.top-item a {
  color: #282828;
  text-decoration: none;
}

/* フッター */

footer {
  background: #282828;
  color: #fff;
  text-align: center;
}

footer p {
  padding: 16px 0;
  font-size: 0.7rem;
}

/* itemページ */

/* itemページアイキャッチ */

.item-eyecatch {
  width: 100%;
  background-color: #282828;
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-eyecatch-container {
  max-width: 480px;
}

.item-eyecatch-container > img {
  max-width: 100%;
}

/* itemページmain */

.item-site-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.item-main-game-detail {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #ebe6e4;
  padding: 8px;
}

.item-main-game-control {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-main-game-control img {
  margin: 0 8px;
  max-width: 50%;
}

@media only screen and (max-width: 990px) {
  .item-main-game-detail {
    flex-direction: column;
  }
}

.item-main-game-title {
  margin: 16px 0;
  padding-bottom: 16px;
}

.item-main-game-title > h2 {
  font-size: 1.8rem;
  line-height: 2;
}

.item-main-contents {
  width: 100%;
  line-height: 2;
}

.item-main-contents > h1 {
  font-size: 1.8rem;
  margin: 1rem 0;
}

.item-main-contents > h2 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.item-main-contents > h3 {
  font-size: 1.3rem;
  margin: 1rem 0;
}

.item-main-contents p {
  margin: 1rem 0;
}

.item-main-contents img {
  max-width: 95%;
  height: auto;
  margin: 16px auto;
  display: block;
}

.item-main-contents ul {
  margin: 16px 0;
  margin-left: 1rem;
}

.item-main-contents ol {
  margin: 16px 0;
  margin-left: 1rem;
}

/* itemページレビュー部分 */
.item-review {
    max-width: 1000px;
    margin: 32px auto;
    padding: 0 1rem;
}

.item-review-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.item-review-detail-score {
    font-size: 3.0rem;
    color: #F9C74F;
    font-weight: 700;
}

.item-review-detail-wrapper {
    display: flex;
    justify-content: space-between;
}

.item-review-item {
    margin: 16px 0;
    border: 1px solid #282828;
    padding: 1.5rem;
}

.item-review-item-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.item-review-item-username {
    font-weight: 700;
}

.item-review-item-stars {
    color: #F9C74F;
    font-weight: 700;
}

.item-review-item-content {
    line-height: 2;
}
