/* form.css - フォーム共通スタイル */

/* padding、borderの分も含めて、合計で100%の幅にする */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  color: #1a1a1a;
  font-family: Merriweather, Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.entry-title {
    font-family: Montserrat, "Helvetica Neue", sans-serif;
		font-size: 2.5rem;
    font-weight: 700;
		line-height: 1.25;
		margin-bottom: 1.5em;
}

input, textarea {
  background: #f7f7f7;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  border: 1px solid #d1d1d1;
  border-radius: 2px;
  color: #686868;
  padding: 0.7em 0.5em;
  margin-bottom: 2em;
  width: 100%;
}
input[type="radio"], input[type="checkbox"] {
  width: auto;
  margin-left: 1em;
}
.serviceform input[type="checkbox"] {
  margin-bottom: 3em;
}
label {
  cursor: pointer;
}

button {
  background: #1a1a1a;
  border: 0;
  border-radius: 2px;
  color: #fff;
  font-family: Montserrat, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: 0.5em;
  padding: 0.85em 0.85em 0.85em;
  text-transform: uppercase;
  cursor: pointer;
}

.form {
  width: 100%;
  margin: 40px 0;
}
.form dd {
  margin-left: 0;
}
.form .action {
  margin-top: 2em;
}
.form .action button:hover {
  opacity: 0.85;
}

/* 確認画面 */
.form.confirm dl {
  margin: 3em 0;
}
.form.confirm dl dt {
  border-bottom: 1px solid #ddd;
}
.form.confirm dl dd {
  margin: 0 0 2em 1em;
  padding: 0.4rem 0 0.8rem 0.5rem;
  font-family: Montserrat, "Helvetica Neue", sans-serif;

}