@charset "UTF-8";
/*=============================================/
/[読み込み]
/=============================================*/
/*[アイコンフォント]*/
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');
/* [ https://remixicon.com/ ] */
/* [英字フォント] */
@import url('https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap');
/* [日本語フォント] */
@import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&display=swap');
/*=============================================/
/[リセット]
/=============================================*/
html, body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #f2f2f2;
}
body {
  height: 100vh;
  padding-top: 100px;
  color: #212121;
  display: flex;
  flex-direction: column;
}
a { color: #f38181; }
a:hover { text-decoration: none; }
::selection {
  color: #fff;
  background: #68acf8;
}
/*=============================================/
/[ヘッダ]
/=============================================*/
header {
  width: 100%;
  height: 70px;
  padding: 10px;
  color: #111;;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: rgba(253,253,253,.6);
  box-shadow: 0 2px 3px rgba(0,0,0,.1);
  position: fixed;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}
  .head-logo {
    width: 200px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    .head-logo a {
      text-decoration: none;
      color: #68acf8;
      display: block;
    }
    /* [アイコン] */
    .head-logo i {
      /* margin-right: 5px; */
      color: #68acf8;
      font-size: 32px;
      position: relative;
      top: 5px;
    }
    /* [タイトル] */
    .head-logo .site-name {
      color: #68acf8;
      font-family: 'Tilt Warp', cursive;
      font-size: 32px;
    }
/* [説明] */
header .desc {
  width: 200px;
  color: #91bef1;
  font-family: 'Tilt Warp', cursive;
  font-size: 14px;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*=============================================/
/[フッタ]
/=============================================*/
footer {
  /* height: 30px; */
  padding: 10px 0;
  margin-top: auto;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  background: #68acf8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
  footer .navi {
    padding: 10px 0;
  }
    footer .navi a {
      color: #fff;
    }
    footer .navi a:hover {
    }
  footer small a {
    margin-left: 3px;
    color: #fff;
    font-size: 12px;
    display: inline-block;
  }
  footer small a:hover {
  }
/*=============================================/
/[リスト]
/=============================================*/
.game-lists {
  width: 800px;
  margin: 0 auto 50px;
  border: 1px solid #68acf8;
  background: #fff;
  border-collapse: collapse;
}
  .game-lists tr:nth-of-type(2n) {
    background: #f0f7ff;
  }
  .game-lists th {
    padding: 5px;
    color: #fff;
    font-weight: normal;
    font-size: 13px;
    letter-spacing: .6em;
    background: #68acf8;
    border: 1px solid #c3dfff;
    border-bottom: none;
  }
  .game-lists tr:first-child th:first-child {
    border-left: none
  }
  .game-lists tr:first-child th:last-child {
    border-right: none;
  }
  .game-lists td {
    padding: 10px;
    text-align: center;
    border: 1px solid #c3dfff;
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
  .game-lists tr:nth-of-type(2) td {
    border-top: none;
  }
  .game-lists td.game-name {
    width: 270px;
  }
    .game-lists td.game-name a {
      width: 90%;
      height: 30px;
      color: #fff;
      font-size: 14px;
      letter-spacing: .1em;
      text-decoration: none;
      background: #f38181;
      border-radius: 3px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 150ms;
    }
    .game-lists td.game-name a:hover {
      background: #ff3636;
      box-shadow: 0 0 20px #f38181;
    }
      .game-lists td.game-name a > i {
        margin-right: 5px;
        font-size: 18px;
      }
  .game-lists td.screen-shot {
    width: 120px;
  }
  .game-lists td.category {
    width: 150px;
    font-size: 13px;
  }
  .game-lists td.description {
    width: 200px;
    color: #4188d7;
    font-size: 13px;
    letter-spacing: .1em;
    line-height: 1.6;
    text-align: justify;
  }
    .game-lists td.description > i {
      margin: 0 5px 0 0;
      font-size: 20px;
      display: inline-flex;
      height: 20px;
      vertical-align: middle;
      align-items: center;
      transform: scaleX(-1);
      float: left;
      clear: left;
    }
    .game-lists td.description > .release {
      height: 16px;
      font-size: 11px;
      font-weight: bold;
      letter-spacing: .05em;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
      .game-lists td.description > .release > i {
        margin-right: 3px;
        font-size: 16px;
        font-weight: normal;
      }
    .game-lists td.screen-shot > a {
      width: 80px;
      height: 80px;
      padding: 2px;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 2px;
      display: inline-flex;
      overflow: hidden;
      transition: 150ms;
    }
    .game-lists td.screen-shot > a:hover {
      border-color: #ff3636;
    }
      .game-lists td.screen-shot > a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: 150ms;
      }
      .game-lists td.screen-shot > a:hover img {
        opacity: .7;
      }
/*=============================================/
/[コンテンツタイトル]
/=============================================*/
.content-title {
  margin-bottom: 30px;
  color: #68acf8;
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: 22px;
  letter-spacing: .2em;
  text-align: center;
  position: relative;
}
.content-title:before,
.content-title:after {
  content: '';
  width: 100px;
  height: 0;
  border-bottom: 3px double #68acf8;
  display: inline-block;
  transform: translateY(-5px);
}
.content-title:before {
  margin-right: 10px;
}
.content-title:after {
  margin-left: 10px;
}
  .content-title > span {
    font-size: 13px;
    letter-spacing: .1em;
  }

/*=============================================/
/[クレジット]
/=============================================*/
.credit {
  width: 800px;
  margin: 0 auto 50px;
  padding: 20px 0 20px 12px;
  box-sizing: border-box;
}
  .credit-lists {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
  }
    .credit-lists-item {
      width: 250px;
      border: 1px solid #68acf8;
      display: inline-flex;
    }
      .credit-lists-item .icon {
        padding: 10px;
        background: #68acf8;
        box-sizing: border-box;
      }
        .credit-lists-item .icon i {
          color: #fff;
          font-size: 26px;
        }
      .credit-lists-item .name {
        width: 100%;
      }
        .credit-lists-item .name a {
          height: 100%;
          padding: 0 10px;
          font-size: 14px;
          text-decoration: none;
          display: flex;
          align-items: center;
          box-sizing: border-box;
          transition: 150ms;
        }
        .credit-lists-item .name a:hover {
          color: #fff;
          background: #ff3636;
        }
          .credit-lists-item .name a > i {
            margin-left: 5px;
            display: inline-block;
          }
/*=============================================/
/[トップあいさつ]
/=============================================*/
.greeting {
  width: 800px;
  margin: 0 auto 50px;
  padding: 20px;
  color: #68acf8;
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 1.6;
  background: #f0f7ff;
  border: 3px dashed #68acf8;
  border-radius: 7px;
  box-sizing: border-box;
}
  .greeting > span {
    margin: 0 3px;
    font-size: 11px;
    letter-spacing: 0;
    display: inline-block;
  }
/*=============================================/
/[規約]
/=============================================*/
.guide-greeting {
  width: 800px;
  margin: 0 auto 30px;
  color: #333;
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 1.6;
}
.guide-item {
  width: 800px;
  margin: 20px auto;
}
  .guide-subject {
    padding: 5px 10px;
    color: #111;
    font-size: 20px;
    letter-spacing: .2em;
    border-left: 5px solid #68acf8;
    display: block;
  }
  .guide-body {
    padding: 10px 18px;
    color: #333;
    font-size: 14px;
    letter-spacing: .1em;
    line-height: 1.6;
    text-align: justify;
    box-sizing: border-box;
  }
/*=============================================/
/[]
/=============================================*/

