@charset "UTF-8";
/* CSS Document */
/* ベース設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.img img{width:92vw;
	align-content: center;
	
}

.img{margin-bottom: 2vw auto;
}

body {
  font-family: "Yu Gothic", "ヒラギノ角ゴ ProN", sans-serif;
  background-color: #FF0004;
  color: #f2f2f2;
  line-height: 1.6;
  padding: 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

.all {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: #1a1a1a;
  border: 2px solid #990000;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* タイトル */
.titlebox {
  text-align: center;
  margin-bottom: 30px;
}

.title {
  font-size: 2rem;
  color: #ff1a1a;
  text-shadow: 0 0 10px red;
  border-bottom: 2px solid #990000;
  display: inline-block;
  padding-bottom: 8px;
}

/* 情報見出し */
.info {
  color: #ff6666;
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-left: 4px solid #990000;
  padding-left: 10px;
}

/* カウンター周辺 */
.count {
  text-align: center;
  margin: 30px 0;
}

#anataha,
#okyakusama {
  font-size: 1rem;
  margin-bottom: 5px;
}

.countbottom {
  display: inline-block;
}

/* 警告文など */
.text {
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.8;
  background: #262626;
  padding: 10px 15px;
  border-left: 4px solid #cc0000;
}

/* ボタン風リンク */
.bottom {
  background: linear-gradient(to right, #990000, #cc0000);
  padding: 15px;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s ease;
  max-width: 300px;
}

.bottom:hover {
  background: linear-gradient(to right, #cc0000, #990000);
  transform: scale(1.05);
  box-shadow: 0 0 10px red;
}

.bottomtext {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .title {
    font-size: 1.6rem;
  }

  .info {
    font-size: 1.1rem;
  }

  .text {
    font-size: 0.95rem;
  }

  .bottomtext {
    font-size: 1rem;
  }
}
