@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&family=Stick&display=swap");

:root{
  font-size: 16px;
}

body {
  padding-top: 0;
  margin: 0;
  background-color: #433a58;
  background-image: url(img/download/yakei.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

/* 画像領域 */
.image-cnf {
  width: 100%;
  margin: 100px 0px 360px;
  text-align: center;
}

.image-cnf-img {
  width: 50%;
  text-align: center;
}

img {
  width: 27%;
  text-align: center;
}

/* セクション領域 */
section {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ヘッダ領域 */
header {
  background-color: #000000;
  width: 100%;
  position: fixed;
}

/* ボタン領域 */
.button {
  display: inline-block;
  width: 18%;
  height: 50px;
  font-size: clamp(0%, 1.2vw, 24px);
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;

  -webkit-transition: all .1s;
  transition: all 1s;
}

/* マウスオーバー時 */
.button:hover {
  background-color: #aaaaaa;
  color: #000000;
  cursor: pointer;
}

/* コンテナ */
.container {
  display: flex;
  justify-content: center;
}

.top-button {
  background-color: #000000;
  border-radius: 0;
  /* 四角いボタン */
}

/* マウスオーバー時に何も起こらない */
.top-button:hover {
  background-color: #000000;
  border-radius: 0;
  /* 四角いボタン */
}

.info-button {
  background-color: #000000;
  border-radius: 0;
  /* 四角いボタン */
}

.player-section-button {
  background-color: #000000;
  border-radius: 0;
  /* 四角いボタン */
}

.dealer-section-button {
  background-color: #000000;
  border-radius: 0;
  /* 四角いボタン */
}

.session-button {
  background-color: #aa0000;
  border-radius: 0;
  /* 四角いボタン */
}

/* メイン領域 */
main {
  padding: 120px;
}

/* メイン横並び */
.main-contents {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 120px;
  background-color: rgb(0 0 0 / 50%);
}
.main-line {
  display: flex;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 0%;
  background-color: rgb(0 0 0 / 50%);
}
/* infomation*/
.infomation-option {
  text-align: start;
}

/* 本文 */
article {
  text-align: center;
  width: 80%;
}
/* サイド */
aside {
  width: 24%;
}

/* フッター領域 */
footer {
  background-color: #000000;
  text-align: center;
  padding: 26px 0;
}
footer p {
  color: #ffffff;
  font-size: clamp(0%, 1.2vw, 14px);
}

/* 見出し1 */
h1 {
  color: #dd0000;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0%, 2.9vw, 32px);
}

/* 本文 */
p {
  font-family: "BIZ UDPGothic", sans-serif;
  color: #ffffff;
  font-size: clamp(0%, 1.2vw, 18px);
}

/* 注釈 */
.blockquote-p {
  color: #aaaaaa;
  font-size: clamp(1%, 1.2vw, 14px);
}
.blockquote-a {
  color: #3399ff;
  font-size: clamp(1%, 1.2vw, 14px);
}

/* テーブル領域 */
table {
  font-family: "BIZ UDPGothic", sans-serif;
  color: #ffffff;
  font-size: clamp(1%, 1.2vw, 18px);
  text-align: center;
  table-layout: auto;
  width: 100%;
  height: 100%;
}
th {
  width: 25%;
}
td {
  width: 25%;
}

/* ポップアップ */
input {
  display: none;
}

/* ポップアップwindow部分 */
#overlay_PL {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 70;
  width: 100%;
  height: 100%;
}
#overlay_DL {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 70;
  width: 100%;
  height: 100%;
}
#overlay_GO {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 70;
  width: 100%;
  height: 100%;
}
/* オーバーレイの背景部分 */
#bg_gray {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
}
/* ウィンドウ部分 */
#window {
  width: 50%;
  padding: 20px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.6);
  z-index: 90;
  opacity: 0;
}
/* 閉じるボタン */
#btn_cloth {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dd0000;
  border-radius: 5px;
  z-index: 100;
  cursor: pointer;
}
#btn_cloth:hover {
  opacity: 0.7;
}
#btn_cloth span,
#btn_cloth span::before {
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
}
#btn_cloth span {
  transform: rotate(45deg);
}
#btn_cloth span::before {
  content: "";
  position: absolute;
  bottom: 0;
  transform: rotate(-90deg);
}

/* クリックで表示 */
#popup-PL:checked ~ #overlay_PL {
  visibility: visible;
}
#popup-PL:checked ~ #overlay_PL #window {
  animation: fadein 500ms forwards;
  animation-timing-function: ease-in-out;
}
#popup-DL:checked ~ #overlay_DL {
  visibility: visible;
}
#popup-DL:checked ~ #overlay_DL #window {
  animation: fadein 500ms forwards;
  animation-timing-function: ease-in-out;
}
#popup-GO:checked ~ #overlay_GO {
  visibility: visible;
}
#popup-GO:checked ~ #overlay_GO #window {
  animation: fadein 500ms forwards;
  animation-timing-function: ease-in-out;
}
@keyframes fadein {
  100% {
      opacity: 1;
  }
}

/* コンテンツ部分のスタイル */
#msg a {
  display: inline-block;
  color: #fff;
  background: #dd0000;
  border-radius: 20px;
  padding: 0.5em 1.5em;
  text-decoration: none;
}
#msg a:hover {
  opacity: 0.7;
}
#msg p {
  color: #000000
}