@charset "UTF-8"; /* ======================================== Page - Message ======================================== */ /* ### ===== Form - Reset ===== ### */
.form-wrap {
  box-sizing: border-box;
}
.form-wrap *,
.form-wrap *::after,
.form-wrap *::before {
  box-sizing: inherit;
}
.form-wrap input,
.form-wrap button,
.form-wrap textarea,
.form-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-wrap input,
.form-wrap button,
.form-wrap textarea,
.form-wrap select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-wrap select::-ms-expand {
  display: none;
}
.form-wrap dl,
.form-wrap dt,
.form-wrap dd,
.form-wrap ol,
.form-wrap ul,
.form-wrap li,
.form-wrap form,
.form-wrap label {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}
.form-wrap ol,
.form-wrap ul {
  list-style: none;
}
.form-wrap i,
.form-wrap b,
.form-wrap em,
.form-wrap strong {
  font-style: normal;
  font-weight: inherit;
} /* | | | */ /* ### ===== Form - Custom ===== ### */
.form-wrap {
  /* form-areea */
  --form-fz: 16px;
  --form-txtcolor: #000;
  --form-txtcolor-link: #f00;
  --form-txtcolor-link-hover: #ff007b;
  --form-txtcolor-link-attention: #f70; /* input */
  --input-txtcolor: #000;
  --input-bgcolor: #fff;
  --input-bgcolor-wrote: #f5f5f5;
  --input-border: 2px solid #666;
  --input-border-radius: 8px;
  --input-boxshadow: 0 0 0 rgba(0, 0, 0, 0) inset;
  --input-boxshadow-focus: 0 2px 6px rgba(0, 0, 0, 0.3) inset;
  --input-transition: box-shadow 0.4s ease-out 0s, background-color 0.4s ease-out 0s;
  --input-fz: 16px;
  --input-letter-spacing: 0.08em;
  --input-line-height: 1.5;
  --input-padding: 2px 12px; /*
select */
  --select-padding: 4px 10px 4px 10px; /* label */
  --label-fz: 15px;
  --label-fw: inherit;
  --label-line-height: 1.3; /* button */
  --btn-height: 60px;
  --btn-txtcolor: #fff;
  --btn-bgcolor: #000;
  --btn-bgcolor-hover: #505050;
  --btn-border: 1px solid #000;
  --btn-border-radius: 8px;
  --btn-fz: 18px;
  --btn-fw: bold;
  --btn-letter-spacing: 0.15em;
  --btn-line-height: 1.2;
  --btn-transition: all 0.4s ease-out 0s; /* button - submit */
  --submit-txtcolor: #000;
  --submit-bgcolor: #fff155;
  --submit-txtcolor-hover: var(--submit-txtcolor);
  --submit-bgcolor-hover: #ffc655;
  --submit-border: var(--btn-border); /* radio button / check button */
  --checked-bgcolor: #000;
} /* === input === */
.form-wrap {
  /* === Placeholder Text Color === */ /* ::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder, :placeholder-shown { color: rgba(0,0,0,0.6); font-size:
1.4rem; letter-spacing: 0; } */
}
.form-wrap input[type="text"],
.form-wrap input[type="password"],
.form-wrap input[type="email"],
.form-wrap input[type="tel"],
.form-wrap textarea {
  width: 100%;
  color: var(--input-txtcolor);
  background-color: var(--input-bgcolor);
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  box-shadow: var(--input-boxshadow);
  transition: var(--input-transition);
  font-size: var(--input-fz);
  letter-spacing: var(--input-letter-spacing);
  line-height: var(--input-line-height);
  padding: var(--input-padding);
}
.form-wrap input[type="text"]:focus,
.form-wrap input[type="password"]:focus,
.form-wrap input[type="email"]:focus,
.form-wrap input[type="tel"]:focus,
.form-wrap textarea:focus {
  box-shadow: var(--input-boxshadow-focus);
}
.form-wrap input.wrote,
.form-wrap textarea.wrote {
  background-color: var(--input-bgcolor-wrote);
}
.form-wrap input {
  width: 100%;
}
.form-wrap textarea.size-large,
.form-wrap input.size-large {
  max-width: 800px;
}
.form-wrap input.size-medium {
  max-width: 320px;
}
.form-wrap input.size-small {
  max-width: 240px;
}
.form-wrap input.size-xsmall {
  width: 60px;
  text-align: center;
} /* | | | */ /* === select
=== */
.form-wrap select {
  text-align: left;
  width: min(100%, 240px); /* color: var(--clrGrn); */
  background-color: #fff;
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  box-shadow: var(--input-boxshadow);
  transition: var(--input-transition);
  font-size: var(--input-fz);
  letter-spacing: var(--input-letter-spacing);
  line-height: var(--input-line-height);
  padding: var(--select-padding);
}
.form-wrap select.size-fixed {
  max-width: 560px;
  width: 100%;
}
.form-wrap select:focus {
  box-shadow: var(--input-boxshadow-focus);
}
.form-wrap select.selected {
  background-color: var(--input-bgcolor-wrote);
} /* | | | */ /* === label === */
.form-wrap label {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: var(--input-fz);
  line-height: var(--label-line-height);
} /* | | | */ /* === button === */
.form-wrap button {
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  height: var(--btn-height);
  margin: 0 auto;
  padding: 0 3%;
  color: var(--btn-txtcolor);
  background-color: #cecece;
  border: 2px solid #000;
  border-radius: var(--btn-border-radius);
  font-size: var(--btn-fz);
  font-weight: var(--btn-fw);
  letter-spacing: var(--btn-letter-spacing);
  line-height: var(--btn-line-height);
  transition: var(--btn-transition);
}
.form-wrap button em {
  font-weight: inherit;
  display: inline-block;
}
.form-wrap button:hover {
  background-color: #000;
  filter: var(--hover-filter-shadow);
}
.form-wrap button[type="submit"] {
  background-color: var(--clrOr);
  border: 2px solid #000;
  border-radius: var(--kadoR16);
  color: #000;
}
.form-wrap button[type="submit"]:hover {
  /* color: var(--submit-txtcolor-hover); */
  background-color: #000;
  color: #fff;
}
.form-wrap button[type="submit"]::before {
  content: "";
  background: url("../img/icon/icon_mail.svg") no-repeat;
  position: absolute;
  width: 35px;
  height: 35px;
  left: 5%;
  top: 50%;
  transform: translate(0, -50%);
  background-size: cover;
  content: none;
}
.form-wrap button[type="reset"]::before {
  content: none;
  background: url("../img/icon/icon_clear.svg") no-repeat;
  position: absolute;
  width: 35px;
  height: 35px;
  left: 5%;
  top: 50%;
  transform: translate(0, -50%);
  background-size: cover;
} /* | | | */ /* === radio button === */
.form-wrap input[type="radio"] {
  display: none;
}
.form-wrap label.type-radio {
  cursor: pointer;
  position: relative;
  display: inline-block;
  height: 32px;
  padding: 7px 0 0 40px;
}
.form-wrap label.type-radio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: var(--input-border);
  background: var(--input-bgcolor);
}
.form-wrap input[type="radio"]:checked + label.type-radio::before {
  background-color: var(--input-bgcolor-wrote);
}
.form-wrap input[type="radio"]:checked + label.type-radio::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #000;
} /* | | | */ /* === check button
=== */
.form-wrap {
  /* === Input Error - Alert Text === */ /* .error-alert { display: inline-block; animation: txtFlashing 1.4s ease-out 0s 5; color: rgba(255,80,20,1); } @keyframes txt-flashing { 0% { color: rgba(255,80,20,1); } 30% { color: rgba(255,80,20,0); } to { color: rgba(255,80,20,1); } }
*/
}
.form-wrap input[type="checkbox"] {
  display: none;
}
.form-wrap label.type-check {
  cursor: pointer;
  position: relative;
  display: inline-block;
  height: 32px;
  padding: 6px 0 0 45px;
}
.form-wrap label.type-check::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: var(--input-bgcolor);
  border: var(--input-border);
  border-radius: var(--input-border-radius);
}
.form-wrap input[type="checkbox"]:checked + label.type-check::before {
  background-color: var(--input-bgcolor-wrote);
}
.form-wrap input[type="checkbox"]:checked + label.type-check::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 10px;
  height: 14px;
  border-right: 4px solid var(--checked-bgcolor);
  border-bottom: 4px solid var(--checked-bgcolor);
  transform: rotate(45deg);
} /* ### ===== Form - Custom Layout ===== ### */
.form-wrap {
  position: relative;
  width: min(94%, 800px);
  margin-inline: auto;
  font-size: var(--form-fz);
  background: #fff;
  border: 2px solid;
  margin: 40px auto 0;
  padding: 40px;
  border-radius: 0 var(--kadoR80) var(--kadoR80) var(--kadoR80);
}
@media (width <=900px) {
  .form-wrap {
    width: clamp(320px, 94%, 640px);
    overflow: hidden;
    padding: 20px 10px;
  }
} /* | | | */ /* ------------------------------ .form-head ------------------------------ */
.form-head {
  margin-bottom: 3em;
}
.form-head .form-notice {
  text-align: center;
  margin-bottom: 2em;
  font-size: 86%;
}
.form-head dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 0.8em;
}
.form-head dl dt {
  width: 160px;
  text-align: right;
  padding-top: 7px;
  margin-bottom: 5px;
}
.form-head dl dd {
  width: calc(100% - 180px);
  text-align: left;
}
@media (width <=900px) {
  .form-head dl {
    justify-content: flex-start;
  }
  .form-head dl dt {
    width: 100%;
    text-align: left;
  }
  .form-head dl dd {
    width: 100%;
    text-align: left;
  }
} /* | | | */ /* ------------------------------ jme-member & jme-visitor ------------------------------ */
.form-section {
  /* margin-bottom: 3em; */ /* background:
#f3f3f3; */
  padding: 3em 1em;
  border-top: 3px solid;
}
.form-section .section-title {
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
  color: var(--clrBr);
}
.form-section dl {
  margin-bottom: 0.8em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}
.form-section dl dt {
  text-align: right;
  width: 220px;
  margin-bottom: 5px;
  padding-top: 7px;
  font-size: var(--label-fz);
  font-weight: var(--label-fw);
  line-height: var(--label-line-height);
}
.form-section dl dt > span {
  font-size: 80%;
  letter-spacing: 0;
  margin-left: 0.1em;
}
.form-section dl dd {
  width: calc(100% - 240px);
  text-align: left;
}
.form-section dl dd > span {
  display: inline-block;
  vertical-align: middle;
}
.form-section dl dd input + span {
  margin-left: 12px;
}
.form-section dl .radio-set {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.form-section dl .radio-set .list {
  margin-right: 1.5em;
  margin-bottom: 1em;
}
.form-section dl .radio-set .list:not(:first-child) {
  /*margin-left: 30px;*/
}
.form-section .forget {
  /*width: calc(100% - 260px); margin: 20px 0 0 auto;
text-align: left;*/
  text-align: center;
  margin: 1em 0;
  font-size: 86%;
}
.form-section .forget a {
  /* color: var(--form-txtcolor-link); */
  text-decoration: underline;
  color: #866d59;
}
.form-section .forget a:hover {
  color: #4c3a2c;
}
.form-section .member-links {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  margin: 40px auto 0;
}
.form-section .member-links li a {
  color: var(--clrBr);
  border: 1px solid;
  border-radius: var(--kadoR8);
  padding: 0.85em 1em 0.85em 2em;
  line-height: 1;
  position: relative;
  margin: 0 10px;
}
.form-section .member-links li a::before {
  content: "";
  position: absolute;
  background: url("../img/icon/icon_arrow.svg") no-repeat;
  width: 1em;
  height: 1em;
  left: 10px;
  top: 50%;
  transform: translate(0, -50%);
  background-size: contain;
}
.form-section .member-links li a:hover {
  color: #4c3a2c;
}
@media (width <=900px) {
  .form-section dl {
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .form-section dl dt {
    width: 100%;
    text-align: left;
    margin-bottom: 4px;
    padding-top: 0;
  }
  .form-section dl dd {
    width: 100%;
    text-align: left;
  }
  .form-section .forget {
    width: 100%;
    text-align: center;
  }
  .form-section .member-links {
    display: block;
    margin-top: 2em;
  }
  .form-section .member-links li:not(:first-child) {
    margin-top: 1em;
  }
  .form-section dl.no-wrap {
    flex-wrap: nowrap;
  }
  .form-section dl.no-wrap dt {
    width: 60px;
    margin-bottom: 0;
    padding-top: 5px;
  }
  .form-section dl.no-wrap dd {
    width: calc(100% - 60px);
    flex-wrap: wrap;
  }
  .form-section dl.margin-plus {
    margin-top: 2em;
  }
} /* | | | */ /* ------------------------------ .form-foot ------------------------------ */
.form-foot .form-attention {
  text-align: left;
  border-radius: var(--kadoR16);
  margin-inline: auto;
  margin-block: 3em;
  padding: 1em;
  background: #fbf8f4;
  margin: 0 auto 3em;
}
.form-foot .form-attention p {
  /* color: var(--clrGrn); */
  font-size: var(--fz-15);
}
.form-foot .form-attention p + p {
  margin: 1em 0;
  color: var(--clrBr);
}
.form-foot .form-attention p a {
  color: var(--form-txtcolor-link-attention);
  text-decoration: underline;
  transition: none;
}
.form-foot .form-attention p a:hover {
  text-decoration: none;
}
.form-foot .form-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.form-foot .form-button li {
  width: calc(45% - 15px);
  margin: 0 10px;
}
.form-foot .form-button li::before {
}
.form-foot .form-button li::before {
}
.form-foot .form-button li button {
  overflow: hidden;
  border-radius: var(--kadoR16);
}
@media (width <=900px) {
  .form-foot .form-button li {
    width: 100%;
  }
  .form-foot .form-button li:not(:first-child) {
    margin-top: 2em;
  }
} /* | | | */ /* ======================================== Page - Thanks ======================================== */
.thanks-wrap {
  background: var(--clrBe1);
  width: 90%;
  margin: 40px auto;
  padding: 120px 0;
  text-align: center;
  border-radius: 0 var(--kadoR80) var(--kadoR80) var(--kadoR80);
  color: #000;
  max-width: 800px;
  background: #fff;
  border: 2px solid;
}
.thanks-wrap b {
}
.thanks-wrap p {
}
.thanks-wrap p + p {
  margin: 20px auto 0;
  font-size: 16px;
}
@media (width <=900px) {
  .thanks-wrap {
    padding: 70px 0;
  }
  .thanks-wrap b {
  }
  .thanks-wrap p {
  }
  .thanks-wrap p + p {
  }
} /* | | | */
