* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
}

body {
  line-height: 1.7;
  color: #333;
}

/* ===== HERO ===== */
.hero {
  background: url("../image/hero.jpg") center/cover no-repeat;
  height: 90vh;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  height: 100%;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ffd700;
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

/* ===== FEATURES ===== */
.feature-list {
  list-style: none;
  max-width: 600px;
  margin: auto;
}

.feature-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* ===== STEPS ===== */
.step {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: center;
}

.step img {
  width: 180px;
  border-radius: 10px;
}

.step h3 {
  margin-bottom: 10px;
}

/* ===== INFO ===== */
.info ul {
  max-width: 500px;
  margin: auto;
  list-style: disc;
  padding-left: 20px;
}

/* ===== CONTACT ===== */
.contact {
  text-align: center;
  background: #f5f5f5;
}

.contact p {
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: #fafafa;
}

.form-lead {
  text-align: center;
  margin-bottom: 30px;
}

.form {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.form-group span {
  color: #e53935;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

/* ===== MOVIE SECTION ===== */
.movie-section {
  background: #f9f9f9;
  text-align: center;
}

.movie-wrapper {
  max-width: 300px;
  margin: 0 auto 20px;
}

.movie-wrapper video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.movie-caption {
  font-size: 1rem;
  color: #555;
}

.aColor{
  color:white;
}

