@charset "UTF-8";

/* ゲーム紹介と画像 */
.content_game_about {
  display: flex;
  padding: 10px;
  width: 100%;
  gap: 10px;
}

.content_kv_text {
  width: 100%;
  padding: 10px 10px 10px 15px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 30%);
}
.content_kv_image {
  display: flex;
  width: 75%;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 30%);
}

.content_kv_image img {
  padding: 10px;
  margin: auto 0;
  height: max-content;
}

.deco_area {
  position: relative;
}

.bg_deco_1 {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  background-color: #fff;
  border: solid 3px #000;
  border-radius: 5px;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 10%);
}
.bg_deco_2 {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
  background-color: #fff;
  border: solid 3px #000;
  border-radius: 5px;
  box-shadow: -5px -5px 10px 0 rgba(0, 0, 0, 10%);
}

/* プレイスペース */

.play-space_fullsize {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.play-space_fullsize iframe {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
} 


/* クレジット */

.game_credit_table {
  border:5px solid rgba(256, 256, 256, 1%);
  border-radius: 5px;
  margin: 0 auto;
  padding: 5px;
}

.game_credit_table th {
  text-align: left;
  vertical-align: text-top;
  padding: 10px 20px;
}

.game_credit_table td {
  padding: 10px 20px;
}

.bg_polka {
  background: radial-gradient(rgba(0, 0, 0, 3%) 1px, rgba(256, 256, 256, 100%) 1px);
  background-size: 15px 15px;
}



/* SPサイズ */
@media screen and (max-width:1020px) { 
  /* 画面サイズが1020pxまではここを読み込む */

  /* ゲーム紹介と画像 */
  .content_game_about {
    flex-direction: column-reverse;
  }

  .content_kv_text {
    position: relative;
    margin: 0 auto;
    padding: 10px;
  }

  .content_kv_image {
    width: 100%;
  }

}
