@charset "UTF-8";

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', sans-serif;
  background-color: #f0f0f0;
  color: #111;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ===== Layout ===== */
.wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* ===== Form Area (UTAGE) ===== */
.form-area {
  background-color: #C8185A;
  padding: 30px 20px;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
}
.form-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.font-weight-bold {
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}
.badge-danger {
  background-color: #dc3545;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus {
  border-color: #22B573;
}
.btn-success {
  width: 100%;
  background: linear-gradient(180deg, #28a745 0%, #1e7e34 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(40,167,69,0.3);
  transition: transform 0.1s;
}
.btn-success:hover {
  transform: scale(1.02);
}
.form-note {
  font-size: 11px;
  color: #fff;
  line-height: 1.5;
  margin-top: 16px;
  text-align: justify;
}

/* ===== Text Sections ===== */
.text-section {
  padding: 40px 20px;
  text-align: center;
}
.text-section h2 {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
}
.text-section p {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== Utilities ===== */
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }

/* ===== Footer ===== */
.footer {
  background-color: #111;
  color: #888;
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
}
.footer a {
  color: #bbb;
  text-decoration: underline;
  margin: 0 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.footer p {
  margin-bottom: 10px;
}
