@charset "UTF-8";

/* perform */
h5 {
  text-align: center;
  font-size: 2.0rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.flow-content {
  text-align: left;
  margin: 0 auto;
  padding: 0 30px;
}

.step {
  max-width: 800px;
  display: flex;
  align-items: center;
  margin: 0 40px;
}

.step img {
  width: 50px;
  height: auto;
  margin-right: 20px;
}

.step-content {
  flex: 1;
  justify-content: center
}

.step-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.step-description {
  font-size: 1em;
}


.price-table {

  margin: 0 auto;
  padding: 20px;
}


.price-row {
  font-weight: bold;
  display: flex;
  border-bottom: 1px solid #6C2C2F;
  padding: 20px 0;

}

.price-label {
  width: 30%;
  padding-right: 30px;
  color: #6C2C2F;
  font-weight: bold;
}

.price-content {
  width: 70%;
  text-align: left;
}

.price-row:first-child {
  border-top: 1px solid #6C2C2F;
}

.contact-form {
  background: #F8F4E6;
  padding: 30px;
  border-radius: 8px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group {
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #6C2C2F;
  border-radius: 4px;
  font-size: 16px;
  color: #6C2C2F;
  font-family: 'Shippori Mincho', serif;
  background-color: #FFF;
}

textarea {
  height: 120px;
  resize: vertical;
  margin-bottom: 50px;
}

.required::after {
  content: "※";
  color: #ea7558;
  margin-left: 5px;
}

.submit-button {
  background-color: #ea7558;
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin: 30px auto 0;
  transition: opacity 0.3s ease;
  font-family: 'Shippori Mincho', serif;
  letter-spacing: 0.1em;
}

.submit-button:hover {
  opacity: 0.8;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: #ea7558;
}

input[type="datetime-local"] {
  padding: 8px;
  border: 1px solid #6C2C2F;
  border-radius: 4px;
  width: 100%;
  font-size: 16px;
  color: #6C2C2F;
  font-family: 'Shippori Mincho', serif;
}

.notes {
  margin: 0 0 30px calc(1.6rem * 12);
}

.notes span {
  color: #f00;
}

.thanks {
  margin: 0 auto;
  max-width: 500px;
}

/*--------------------------------------
スマホ
--------------------------------------*/
@media screen and (max-width: 414px) {

  .step {
    margin: 0;
  }


  .contact-form {
    padding: 0;
  }

  .notes {
    margin: 0;
  }

}