/* =====================================================================
 * TEASER 専用スタイル（2026 SUMMER RELEASE ティザー版）
 * style.css の DOWNLOAD 導線（.download-section / .last-download /
 * .floating-download）はこのフォルダの HTML に存在しないため未使用。
 * ここでは代わりに掲出する "COMING / 2026 SUMMER RELEASE" 表示のみを追加する。
 * 視覚言語は style.css に合わせる（Special Gothic の英字ラベル・細線・赤 #d35b4b）。
 * ===================================================================== */

/* ---- Hero: DOWNLOAD ブロックの代わりに掲出するリリースバッジ ---- */
.release-badge {
  position: absolute;
  bottom: 60px;
  right: 50px;
  z-index: 4;
  text-align: right;
}

.release-badge-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 8px;
}

.release-badge-text {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 20px;
  color: #000;
  letter-spacing: 0.02em;
}

.release-badge-line {
  width: 60px;
  height: 1px;
  background-color: #000;
}

.release-badge-year {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 24px;
  color: #d35b4b;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .release-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 92%);
    margin: 0 auto 6px;
    z-index: 2;
    text-align: center;
  }
  .release-badge-header {
    justify-content: center;
    gap: 10px;
  }
  .release-badge-text {
    font-size: 16px;
  }
  .release-badge-line {
    display: none;
  }
  .release-badge-year {
    font-size: 18px;
  }
}

/* ---- Last section: DOWNLOAD バッジの代わりに掲出するリリース告知 ---- */
.last-release {
  position: absolute;
  left: 50%;
  top: clamp(22px, 5vh, 56px);
  transform: translateX(-50%);
  width: min(1180px, 100% - 56px);
  display: grid;
  gap: 10px;
  justify-items: center;
  color: #fff;
  z-index: 3;
  pointer-events: auto;
  padding: 22px 28px;
  text-align: center;
}

.last-release::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #000;
  z-index: -1;
}

.last-release-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.last-release-text {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: #d35b4b;
}

.last-release-line {
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.last-release-note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 600px) {
  .last-release {
    width: min(420px, 100% - 24px);
    padding: 16px 12px;
    gap: 8px;
  }
  .last-release-header {
    gap: 12px;
    justify-content: center;
  }
  .last-release-text {
    font-size: 18px;
  }
  .last-release-line {
    display: none;
  }
  .last-release-note {
    font-size: 11.5px;
  }
}
