/* LESS Document */
body {
  background: url(../img/bg_entry_pc.webp) repeat right 0;
}
@media screen and (max-width: 767px) {
  body {
    background: url(../img/bg_entry_sp.webp) repeat center 0;
  }
}
body::before {
  content: none;
}
a {
  color: #E9656B;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	pageHeader
+++++++++++++++++++++++++++++++++++++++++++ */
.pageHeader hgroup {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .pageHeader hgroup {
    padding-left: 18vw;
  }
}
.pageHeader hgroup p {
  color: #E9656B;
}
.pageHeader hgroup p span {
  top: -94px;
  left: -130px;
}
@media screen and (max-width: 767px) {
  .pageHeader hgroup p span {
    top: -14vw;
    left: -14vw;
  }
}
h2 {
  max-width: max-content;
  margin: 0 0 30px;
  padding: 12px 40px 12px 0;
  border-radius: 0 60px 60px 0;
  background: #E9656B;
  font-size: 3.2rem;
  color: #FFF;
  position: relative;
}
@media screen and (max-width: 767px) {
  h2 {
    margin-left: -10px;
    padding: 10px 40px 10px 10px;
    font-size: 4.8vw;
  }
}
h2::before {
  content: '';
  display: block;
  width: calc(100vw - 1080px);
  height: 100%;
  background: linear-gradient(to right, rgba(233, 101, 107, 0), #e9656b);
  position: absolute;
  top: 0;
  left: calc(-1 * (100vw - 1080px));
}
@media screen and (max-width: 767px) {
  h2::before {
    content: none;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	section
+++++++++++++++++++++++++++++++++++++++++++ */
section {
  margin: 0 0 40px;
  padding: 5px 0 5px 20px;
  border-left: #E9656B 4px solid;
}
section:nth-last-of-type(1) {
  margin-bottom: 0;
}
section h3 {
  margin: 0 0 10px;
  padding: 0;
  border: none;
  color: #E9656B;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  section h3 {
    font-size: 4.8vw;
  }
}
article {
  position: relative;
}
.formArea {
  max-width: 800px;
  width: 100%;
  margin: 70px auto 0;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .formArea {
    flex-direction: column-reverse;
  }
}
form .req {
  display: inline-block;
  width: 58px;
  padding: 4px 0;
  margin-left: 5px;
  line-height: 1;
  background: #E9656B;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  border-radius: 30px;
}
form .req[data-label="任意"] {
  background: #B2B2B2;
}
@media screen and (max-width: 767px) {
  form .req {
    order: -1;
  }
}
form dl dt {
  margin: 0 0 15px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  form dl dt {
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 5px;
  }
}
form dl dd {
  margin: 0 0 40px;
}
.pref {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 15px;
  align-items: center;
  margin: 0 0 15px;
}
.pref span {
  flex-shrink: 0;
}
.pref input {
  width: 55%;
}
.pref select {
  width: 45%;
}
.privacy {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding: 0;
  }
}
.privacy input {
  margin-right: 10px;
}
.inputList {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 60px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .inputList {
    flex-direction: column;
    gap: 15px;
  }
}
.inputList label input {
  width: auto;
  margin-right: 10px;
}
input {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-size: 1.8rem;
  width: 100%;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
  padding: 10px 16px;
  border: #B2B2B2 2px solid;
  border-radius: 5px;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="checkbox"],
input[type="radio"] {
  width: auto;
}
input[type="submit"] {
  -webkit-appearance: none;
  cursor: pointer;
}
input[type="button"] {
  -webkit-appearance: none;
  cursor: pointer;
}
label.radio {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
label.radio input {
  display: none;
}
label.radio .icon {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: #B2B2B2 2px solid;
  border-radius: 22px;
  background: #FFF;
  position: relative;
}
label.radio .icon::before {
  content: none;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #E9656B;
}
label input[type="radio"]:checked + .icon::before {
  content: '';
}
label.checkbox {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
label.checkbox input {
  display: none;
}
label.checkbox .icon {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: #B2B2B2 2px solid;
  border-radius: 2px;
  background: #FFF;
  position: relative;
}
label.checkbox .icon::before {
  content: none;
  color: #E9656B;
}
label input[type="checkbox"]:checked + .icon::before {
  content: '\f00c';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
textarea {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-size: 1.8rem;
  width: 100%;
  padding: 10px 16px;
  border: #B2B2B2 2px solid;
  border-radius: 5px;
}
select {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-size: 1.8rem;
  width: 100%;
  padding: 10px 16px;
  border: #B2B2B2 2px solid;
  border-radius: 5px;
}
label {
  display: inline-block;
  cursor: pointer;
}
button {
  -webkit-appearance: none;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-size: 1.8rem;
  width: 100%;
}
::-webkit-input-placeholder {
  color: #B2B2B2;
}
::-moz-placeholder {
  color: #B2B2B2;
}
::placeholder {
  color: #B2B2B2;
}
.inputL {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .inputL {
    width: 100%;
  }
}
.inputM {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .inputM {
    width: 80%;
  }
}
.inputS {
  width: 100px;
}
.inputSS {
  width: 60px;
}
.help {
  color: #666;
  font-size: 92.8%;
  vertical-align: middle;
}
.submit {
  margin: 20px 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .submit {
    padding: 0;
  }
}
.submit button {
  display: block;
  max-width: 314px;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  background: #E9656B;
  color: #FFF;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  transition: opacity 0.2s;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .submit button {
    font-size: 4vw;
    height: auto;
    padding: 10px 20px;
  }
}
.submit button.returnBtn {
  margin-top: 30px;
  background: #999;
}
.submit button.returnBtn i {
  left: 30px;
  right: auto;
}
.submit button i {
  position: absolute;
  top: 15px;
  right: 30px;
}
.submit button:hover {
  opacity: 0.7;
}
.g-recaptcha {
  width: max-content;
  margin: 10px auto;
}
.btn a {
  background: #E9656B;
}
.complete h2 {
  background: none;
  color: #E9656B;
  font-size: 2.4rem;
  padding: 3px 0 5px 15px;
  border-left: #E9656B 4px solid;
}
@media screen and (max-width: 767px) {
  .complete h2 {
    font-size: 4.8vw;
  }
}
.complete h2::before {
  content: none;
}
