@import url("../common.css");

:root {
  --accent: #e67e22;
}

/* 1. 土台の設定：背景色を一旦透明にする */
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  color: var(--white);
  overflow: hidden;
}

/* 2. 背景画像：最背面 (-10) */
.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.bg-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3. オーバーレイ：画像の一枚上 (0) */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 14.4%);
  z-index: -5;
}

/* 4. メインコンテンツ：最前面 (10) */
.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 26px;
}

/* 以降、デザインパーツ */
.status-tag {
  margin: 0;
  background-color: var(--accent);
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
}

.logo {
  margin: 0;
  font-size: 3.5rem;
  letter-spacing: 0.6rem;
  font-weight: bold;
  border: 3px solid var(--white);
  padding: 15px 30px;
  display: inline-block;
}

.tagline {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.3rem;
  text-shadow: 0 2px 10px rgb(0 0 0 / 70%);
}

.footer {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  z-index: 10; /* フッターも最前面に */
}

.back {
  padding: 10px 20px;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--white);
  background-color: transparent;
  border: 2px solid var(--white);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back:hover {
  background-color: var(--accent);
  color: var(--white);
}
