@charset "utf-8";

/* CSS Document */
@font-face {
  font-family: 'DSEG';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/DSEG7-C-MINI-Bold.woff2') format('woff2'), url('../fonts/DSEG7-C-MINI-Bold.woff') format('woff'), url('../fonts/DSEG7-C-MINI-Bold.ttf') format('truetype');
}

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #ffe000;
  width: 100%;
}

.contents {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 10px;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  display: flex;
}

.txt-pink {
  color: #ff00ff
}

.welcome {
  width: 100%;
  margin-left: 10px;
  font-size: 1.5rem;
}

.counter-area {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #fff;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 20px;
  margin-bottom: 20px;
}

.counter-box {
  display: flex;
  align-items: flex-end;
}

.frame {
  display: inline-block;
  padding: 7px;
  background-color: #2e4111;
  box-shadow:
    inset 0 0 0 2px #a8c1e5,
    inset 0 0 0 6px #6a8ab3;
  position: relative;
  margin: 0 5px;
}

.display {
  font-family: 'DSEG', sans-serif;
  background: #000;
  color: #fff;
  font-size: 28px;
  letter-spacing: 4px;
  padding: 3px 8px;
  border: 2px inset #444;
}

.display a {
  color: #fff;
  text-decoration: none;
  pointer-events: none;
}

.label {
  font-size: 22px;
  letter-spacing: 2px;
}

/* スマホ */
@media (max-width: 768px) {
  .counter-area {
    gap: 10px;
  }

  .display {
    font-size: 16px;
    letter-spacing: 3px;
    padding: 6px 10px;
  }

  .label {
    font-size: 20px;
    padding-bottom: 3px;
  }
}

.update p {
  text-align: center;
}

.mp3 {
  text-align: center;
}

.mp3 .audio-player {
  height: 25px;
  width: 90%;
  max-width: 400px;
}

.ttl {
  text-align: center;
}

.ttl h1 span {
  color: #ff00ff;
  display: inline;
  background-color: #fff;
  padding: 0px 25px 7px;
  line-height: 1.9;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
}

.ttl .catch {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ttl .catch img {
  width: 80%;
  max-width: 600px;
  margin: 0 8px;
}

.ttl .catch span {
  animation: rotation-y 2.5s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #cab7ff;
  padding-bottom: 5px;
  font-size: clamp(26px, 5vw, 60px);
}

@keyframes rotation-y {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.news h2 {
  text-align: center;
  color: #ff00ff;
  font-size: clamp(30px, 6.5vw, 45px);
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 900;
}

.news div {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.news dl dd {
  margin-left: 1rem;
  margin-bottom: 0.8rem;
}

.title {
  text-align: center;
}

.title h2 {
  margin-top: 60px;
  margin-bottom: 16px;
  background-color: #ffe000;
  color: #d20000;
  box-shadow: 5px 5px #808080;
  display: inline-block;
  padding: 12px 20px 16px;
  font-size: clamp(30px, 6.5vw, 45px);
  font-weight: 900;
}

.title h3 {
  margin-top: 40px;
  font-size: clamp(30px, 6.5vw, 45px);
  font-weight: 900;
  margin-bottom: 16px;
}

.kakusibeya {
  margin-top: 500px;
  margin-bottom: 500px;
}

.kakusibeya,
.kakusibeya a,
.kakusibeya a:active,
.kakusibeya a:hover {
  color: #000;
}

.link-bnr {
  list-style: none;
  display: flex;
  padding-left: 0;
}

.link-bnr li {
  margin-right: 1rem;
}

.copy {
  color: #ff00ff;
  font-size: 0.9rem;
  margin-top: 50px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .welcome {
    font-size: 1.2rem;
  }

  .ttl h1 span {
    padding: 0px 20px 5px;
  }
}

@media only screen and (min-width: 769px) {
  .news dl {
    display: flex;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    max-width: 800px
  }

  .news dl dt {
    width: 20%;
    text-align: center;
  }

  .news dl dd {
    width: 80%;
    margin-left: 0;
  }
}