body {
  font-family: 'DotGothic16', monospace;
  margin: 0;
  padding: 0;
  background: radial-gradient(circle, #000010 30%, #0a0a0a 100%);
  color: #fff;
  overflow-x: hidden;
}

header {
  font-family: 'DotGothic16', monospace;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-evenly;
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 15px #b86eff, 0 0 30px #b86eff, 0 0 50px #b86eff;
}

.nav-link {
  color: #e0b3ff;
  text-decoration: none;
  font-size: 1.2rem;
  text-shadow: 0 0 5px #d36aff, 0 0 15px #a64dff;
  transition: transform 0.3s, text-shadow 0.3s;
}

.nav-link:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px #ffaa00, 0 0 20px #ff8800;
}

.form-on-screen {
  max-width: 600px;
  margin: 120px auto;
  background-color: rgba(0, 0, 0, 0.85);
  border: 2px solid #00ffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ccff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-on-screen h2 {
  text-align: center;
  text-shadow: 0 0 10px #00ffff;
  margin-bottom: 20px;
}

.form-on-screen label {
  margin-top: 10px;
  display: block;
  text-align: left;
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

.form-on-screen input,
.form-on-screen textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  background-color: #111;
  border: 1px solid #00ffff;
  border-radius: 5px;
  color: #fff;
  font-family: 'DotGothic16', monospace;
}

.form-on-screen button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #00ffff;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ccff;
  transition: transform 0.3s;
}

.form-on-screen button:hover {
  transform: scale(1.05);
}

.footer {
  background-color: rgb(1, 1, 26);
  color: gold;
  padding: 20px;
  border-top: 5px solid gold;
  text-align: center;
  margin-top: 50px;
}

.sns-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.sns-links img {
  width: 100px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-image img {
  width: 100px;
}

.footer-links {
  display: flex;
  gap: 50px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Courier New', Courier, monospace;
}

.footer-links ul li a {
  color: gold;
  text-decoration: none;
}

.back-button {
  text-align: right;
  margin: 20px 40px;
}

.back-button a {
  color: #00ffff;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #00ffff;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffff;
  transition: all 0.3s ease;
}

.back-button a:hover {
  background-color: #00ffff;
  color: #000;
}
#thank-you-message {
  text-align: center;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.9);
  border: 2px solid #0ff;
  border-radius: 10px;
  color: #0ff;
  box-shadow: 0 0 20px #0ff;
  margin-top: 30px;
  font-size: 1.2rem;
  text-shadow: 0 0 5px #0ff;
}
@media (max-width: 768px) {
  header#main-header {
    display: none; /* スマホではヘッダーを非表示 */
  }
}
/* ===== footer内「お問い合わせ」を home.css と同じにする ===== */

/* 見出し（お仕事のご依頼はこちらから！） */
.footer-contact {
  margin-top: 30px;
  text-align: center;
}
.footer-headline {
  font-size: 1.4rem;
  font-family: 'DotGothic16', monospace;
  color: #00ffff;
  text-shadow: 0 0 5px #0ff, 0 0 15px #00ccff;
  margin-bottom: 10px;
}

/* ボタン（フォーム送信ページへ） */
.event-list-button {
  font-size: 1rem;
  padding: 10px 20px;
  color: #00ffff;
  border: 2px solid #00ffff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ccff;
  transition: all 0.3s ease;
  display: inline-block; /* 念のため */
}
.event-list-button:hover {
  background-color: #00ffff;
  color: #000;
}

/* スマホ時のサイズ最適化（home.cssと同等） */
@media (max-width: 640px) {
  .footer-headline {
    font-size: 1.1rem;
    line-height: 1.35;
    max-width: 90vw;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
  }
  .footer-contact .event-list-button {
    width: min(320px, 86vw);
    padding: 12px 16px;
    font-size: 1rem;
  }
}