@charset "UTF-8";
.titleArea {
  padding: max(4vw, 40px) max(5vw, 20px);
  background-color: #F9F8F5;
}
.titleArea h2 {
  font-size: clamp(40px, 6.25vw, 75px);
  line-height: 130%;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  margin-bottom: 10px;
}
.titleArea .ja {
  font-size: clamp(17px, 2.0833333333vw, 25px);
  line-height: 130%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

.mainArea {
  padding: max(5vw, 20px) max(5vw, 20px) max(8vw, 50px);
}
.mainArea .firstText {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.mainArea .firstText p {
  margin-bottom: 20px;
}
.mainArea .firstText p a {
  font-size: 1.5em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
.mainArea .firstText p small {
  font-size: 0.9em;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .mainArea .firstText p small {
    display: block;
  }
}
.mainArea .formLayout {
  max-width: 1200px;
  margin: 0 auto;
}
.mainArea .formLayout table.formTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.mainArea .formLayout table.formTable tr th, .mainArea .formLayout table.formTable tr td {
  vertical-align: top;
  padding: 25px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(34, 34, 34, 0.4);
}
@media screen and (max-width: 668px) {
  .mainArea .formLayout table.formTable tr th, .mainArea .formLayout table.formTable tr td {
    display: block;
  }
}
.mainArea .formLayout table.formTable tr th {
  width: 260px;
}
@media screen and (max-width: 960px) {
  .mainArea .formLayout table.formTable tr th {
    width: 230px;
  }
}
@media screen and (max-width: 668px) {
  .mainArea .formLayout table.formTable tr th {
    width: 100%;
    padding: 20px 0 0;
    border-bottom: 0;
  }
}
.mainArea .formLayout table.formTable tr th span {
  display: block;
}
.mainArea .formLayout table.formTable tr th span.required {
  padding-right: 1em;
  position: relative;
}
.mainArea .formLayout table.formTable tr th span.required::after {
  content: "※";
  color: #f00;
  font-size: 1.3rem;
  position: absolute;
  right: 0;
  top: 0;
}
.mainArea .formLayout table.formTable tr td label:has(input[type=radio]):not(:last-child) {
  margin-right: 15px;
}
.mainArea .formLayout table.formTable tr td input[type=text].sizeL:last-child:not(:first-child) {
  margin-top: 10px;
}
.mainArea .formLayout table.formTable tr td.syurui label {
  display: block;
}
.mainArea .formLayout table.formTable tr td.syurui label:not(:last-child) {
  margin-bottom: 5px;
}
.mainArea .formLayout table.formTable tr td.name input:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 668px) {
  .mainArea .formLayout table.formTable tr td {
    padding: 8px 0 20px;
  }
}
.mainArea .formLayout table.formTable tr td span.required {
  padding-right: 1em;
  position: relative;
  display: inline;
}
.mainArea .formLayout table.formTable tr td span.required::after {
  content: "※";
  color: #f00;
  font-size: 1.3rem;
  position: absolute;
  right: 0;
  top: 0;
}
.mainArea .formLayout .policy {
  text-align: center;
  margin-bottom: 40px;
}
.mainArea .formLayout .policy p a {
  text-decoration: underline;
}
.mainArea .formLayout .submit {
  display: flex;
  justify-content: center;
}
.mainArea .formLayout .submit #retouchBtn {
  opacity: 0.5;
}

.okArea {
  padding: 100px 5vw;
  text-align: center;
}
.okArea h3 {
  font-size: clamp(30px, 4.1666666667vw, 50px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}
.okArea .textBtn {
  margin-top: 50px;
}

input[type=text],
input[type=email],
input[type=date],
input[type=tel],
textarea,
select {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  appearance: none;
  outline: none;
  border: 0;
  background-color: #F9F8F5;
  border-radius: 20px;
  color: #333;
  padding: 10px 20px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  margin-right: 5px;
}

input[type=submit] {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  appearance: none;
  outline: none;
  background-color: #222;
  border: 0;
  border-radius: 50px;
  color: #fff;
  padding: 15px 20px;
  transition: 0.5s;
  cursor: pointer;
  display: block;
  max-width: 250px;
  width: 100%;
  margin: 0 10px;
}
input[type=submit]:focus {
  outline: none;
}
input[type=submit]:hover {
  transform: translateY(-5px);
}

::placeholder {
  color: #ccc;
}

.sizeXS {
  width: 30%;
  max-width: 150px;
}

.sizeS {
  width: 38%;
  max-width: 300px;
}

.sizeM {
  width: 65%;
}
@media screen and (max-width: 960px) {
  .sizeM {
    width: 100%;
  }
}

.sizeL {
  width: 100%;
}

/* エラーメッセージ
-------------------------------------------------*/
.formLayout .errmsg,
.formLayout #errorMessage {
  box-sizing: border-box;
  width: 100%;
  border-radius: 30px;
  background-color: rgba(255, 0, 0, 0.1);
  padding: 30px;
  margin: 0 auto 10px;
  color: #f00;
}
@media screen and (max-width: 668px) {
  .formLayout .errmsg,
  .formLayout #errorMessage {
    padding: 20px;
  }
}
.formLayout .errmsg a,
.formLayout #errorMessage a {
  color: #f00;
}

/* 画面別表示/非表示
-------------------------------------------------*/
.formLayout.input_now .display_check,
.formLayout.check_now .display_input {
  display: none;
}/*# sourceMappingURL=index.css.map */