@charset "UTF-8";
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* contact common
---------------------------------------------------------------------------- */
body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.l-main {
  padding-top: 8px !important;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 0;
  }
}

.l-main-column {
  width: 100%;
}
.l-main-column .l-inner {
  max-width: 816px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-main-column .l-inner {
    max-width: inherit;
  }
}

.p-contact-section .c-title03 {
  padding: 16px 8px;
}
@media screen and (max-width: 767px) {
  .p-contact-section .c-title03 {
    padding: 1.6rem 0.8rem;
  }
}

@media screen and (max-width: 767px) {
  .l-main-column {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    align-content: stretch;
    flex-direction: column;
  }
}
/*  p-contact-first
---------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .p-contact-first {
    order: 1;
  }
}
.p-contact-first .c-text a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-contact-first .c-text a:hover {
    text-decoration: none;
  }
}
.p-contact-first .c-comment-box {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-contact-first .c-comment-box {
    margin-top: 0;
    margin-bottom: 3.2rem;
  }
}

/*  p-contact-phone
---------------------------------------------------------------------------- */
.p-contact-phone {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-contact-phone {
    order: 3;
    margin-top: 4.8rem;
    margin-bottom: 3.2rem;
  }
}
.p-contact-phone .c-title03 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-contact-phone .c-title03 {
    margin-bottom: 1.6rem;
  }
}
.p-contact-phone .tel-links {
  display: block;
  margin: 0 auto 24px auto;
  width: 512px;
}
@media screen and (min-width: 768px) {
  .p-contact-phone .tel-links {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-phone .tel-links {
    width: 100%;
    margin-bottom: 0.8rem;
    transition: 0.2s;
  }
  .p-contact-phone .tel-links:hover {
    opacity: 0.7;
  }
}
.p-contact-phone .tel-txt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact-phone .tel-txt {
    font-size: 1.2rem;
    line-height: 1.8333333333;
    font-weight: 400;
  }
}

/*  p-contact-form
---------------------------------------------------------------------------- */
.p-contact-form {
  margin-top: 40px;
  margin-bottom: 82px;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    order: 2;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.p-contact-form .c-title03 {
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form .c-title03 {
    margin-bottom: 0.8rem;
  }
}
.p-contact-form .form-style {
  /* エラーメッセージ */
}
.p-contact-form .form-style__items {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  border-bottom: 1px dashed #CECDC9;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items {
    display: block;
  }
}
.p-contact-form .form-style__items .form__label {
  width: 160px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  padding: 2.4rem 0 0 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__label {
    width: 100%;
    display: block;
    padding: 1.6rem 0;
  }
}
.p-contact-form .form-style__items .form__label .label {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__label .label {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1.625;
    font-weight: 700;
  }
}
.p-contact-form .form-style__items .form__label .any,
.p-contact-form .form-style__items .form__label .required {
  position: relative;
  top: 6px;
  width: 32px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  padding: 0 0 2px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__label .any,
  .p-contact-form .form-style__items .form__label .required {
    display: inline-block;
    top: 0;
    width: 3.2rem;
    padding: 0.2rem 0 0.2rem 0;
    margin-left: 0.8rem;
  }
}
.p-contact-form .form-style__items .form__label .any {
  background: #3F3C3C;
}
.p-contact-form .form-style__items .form__label .required {
  background: #998632;
}
.p-contact-form .form-style__items .form__cnts {
  width: calc(100% - 160px);
  padding: 16px 0 16px 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts {
    width: 100%;
    padding: 0 0 1.6rem 0;
  }
}
.p-contact-form .form-style__items .form__cnts input, .p-contact-form .form-style__items .form__cnts textarea {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  background: #fff;
  border: 1px solid #CECDC9;
  border-radius: 4px;
  padding: 2px 12px 4px 12px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15) inset;
  /* Firefox 18 以前 */
  /* Firefox 19 以降 */
  box-sizing: border-box;
}
.p-contact-form .form-style__items .form__cnts input::-moz-placeholder, .p-contact-form .form-style__items .form__cnts textarea::-moz-placeholder {
  color: #999999;
}
.p-contact-form .form-style__items .form__cnts input::placeholder, .p-contact-form .form-style__items .form__cnts textarea::placeholder {
  color: #999999;
}
.p-contact-form .form-style__items .form__cnts input:-ms-input-placeholder, .p-contact-form .form-style__items .form__cnts textarea:-ms-input-placeholder {
  color: #999999;
}
.p-contact-form .form-style__items .form__cnts input:-moz-placeholder, .p-contact-form .form-style__items .form__cnts textarea:-moz-placeholder {
  color: #999999;
}
.p-contact-form .form-style__items .form__cnts input::-moz-placeholder, .p-contact-form .form-style__items .form__cnts textarea::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.p-contact-form .form-style__items .form__cnts input::-ms-input-placeholder, .p-contact-form .form-style__items .form__cnts textarea::-ms-input-placeholder {
  color: #999999;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts input, .p-contact-form .form-style__items .form__cnts textarea {
    border-radius: 0.4rem;
    padding: 0.8rem;
    height: 5rem;
  }
}
.p-contact-form .form-style__items .form__cnts input.small-input, .p-contact-form .form-style__items .form__cnts textarea.small-input {
  width: 216px;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts input.small-input, .p-contact-form .form-style__items .form__cnts textarea.small-input {
    width: 47.5%;
    vertical-align: top;
  }
}
.p-contact-form .form-style__items .form__cnts input.small-input + .small-input, .p-contact-form .form-style__items .form__cnts textarea.small-input + .small-input {
  margin-left: 14px;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts input.small-input + .small-input, .p-contact-form .form-style__items .form__cnts textarea.small-input + .small-input {
    margin-left: 1.8%;
  }
}
.p-contact-form .form-style__items .form__cnts textarea {
  height: 128px;
  resize: vertical;
  padding: 8px 12px 8px 12px;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts textarea {
    height: 12.8rem;
    padding: 0.8rem;
  }
}
.p-contact-form .form-style__items .form__cnts .select_inner {
  position: relative;
  width: 100%;
  max-width: 432px;
  background: #fff;
  border: 1px solid #3F3C3C;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts .select_inner {
    max-width: inherit;
    border-radius: 0.4rem;
  }
}
.p-contact-form .form-style__items .form__cnts .select_inner:after {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  margin-top: -0.4rem;
  display: block;
  content: "";
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 9px;
  width: 9px;
  border-color: #3F3C3C;
  transform: rotate(45deg);
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts .select_inner:after {
    right: 2rem;
    border-style: solid;
    border-width: 0 1px 1px 0;
    content: "";
    display: inline-block;
    position: absolute;
    height: 0.8rem;
    width: 0.8rem;
    border-color: #3F3C3C;
    transform: rotate(45deg);
    transform: rotate(45deg) translateY(-50%);
  }
}
.p-contact-form .form-style__items .form__cnts .select_inner select {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: #3F3C3C;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  background: none;
  padding: 2px 12px 4px 12px;
  margin: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts .select_inner select {
    padding: 0.8rem;
  }
}
.p-contact-form .form-style__items .form__cnts .select_inner select option {
  color: #000;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts .inputs-list {
    margin-top: -0.8rem;
  }
}
.p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label {
  position: relative;
  cursor: pointer;
}
.p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span {
  position: relative;
  padding-left: 22px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span {
    padding-left: 2.2rem;
  }
}
.p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span:before, .p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span:after {
  position: absolute;
  left: 0;
  top: 5px;
  display: block;
  content: "";
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span:before, .p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span:after {
    top: 0.6rem;
  }
}
.p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span:before {
  display: none;
  left: 4px;
  top: 9px;
  width: 10px;
  height: 10px;
  background: #3F3C3C;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span:before {
    left: 0.4rem;
    width: 1rem;
    height: 1rem;
    top: 1rem;
  }
}
.p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span:after {
  width: 16px;
  height: 16px;
  border: 1px solid #CECDC9;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span:after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-input {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  width: 1px;
}
.p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-input:checked + span:before {
  display: block;
}
.p-contact-form .form-style__items .form__cnts .note {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style__items .form__cnts .note {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    font-weight: 400;
    margin-top: 0.8rem;
  }
}
.p-contact-form .form-style .questionnaire-wrap {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style .questionnaire-wrap {
    margin-top: 1.6rem;
  }
}
.p-contact-form .form-style .questionnaire-wrap .form-style__items {
  align-items: center;
  border-bottom: none;
}
.p-contact-form .form-style .questionnaire-wrap .form__label {
  width: 220px;
  padding: 1.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style .questionnaire-wrap .form__label {
    width: 100%;
    padding: 0 0 1.6rem 0;
  }
  .p-contact-form .form-style .questionnaire-wrap .form__label .label {
    font-weight: 400;
  }
}
.p-contact-form .form-style .questionnaire-wrap .form__cnts {
  width: calc(100% - 220px);
  padding: 16px 0 16px 20px;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style .questionnaire-wrap .form__cnts {
    width: 100%;
    padding: 0 0 1.6rem 0;
  }
}
.p-contact-form .form-style .questionnaire-head .label {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style .questionnaire-head .label {
    margin-bottom: 0;
    font-weight: 700;
  }
}
.p-contact-form .form-style .questionnaire-head .any {
  display: inline-block;
  margin-left: 8px;
  width: 32px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  padding: 0 0 2px 0;
  background: #3F3C3C;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style .questionnaire-head .any {
    margin-left: 0.8rem;
    width: 3.2rem;
    padding: 0.2rem 0;
  }
}
.p-contact-form .form-style .btn_wrap .submit-button {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background: linear-gradient(180deg, #FFE600 0%, #F47500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 448px;
  height: 80px;
  margin: 34px auto 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style .btn_wrap .submit-button {
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 700;
    width: 100%;
    height: 8rem;
    margin: 3.2rem auto 0 auto;
  }
}
.p-contact-form .form-style #orderBtn {
  margin: 34px auto 0 auto;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style #orderBtn {
    margin: 3.2rem auto 0 auto;
  }
}
.p-contact-form .form-style #orderBtn p {
  text-align: center;
}
.p-contact-form .form-style #orderBtn p img {
  cursor: pointer;
}
.p-contact-form .form-style .wpcf7-not-valid-tip,
.p-contact-form .form-style .js-error-text {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: #FF0000;
}
.p-contact-form .form-style .wpcf7 form .wpcf7-response-output {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  padding: 12px;
}
.p-contact-form .form-style .names .js-error-text {
  position: relative;
  top: -16px;
  display: inline-block;
  width: 152px;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style .names .js-error-text {
    top: -1.6rem;
    width: 14.7rem;
  }
}
.p-contact-form .form-style .names .js-error-text:nth-of-type(1) {
  left: 240px;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style .names .js-error-text:nth-of-type(1) {
    left: 0;
  }
}
.p-contact-form .form-style .names .js-error-text:nth-of-type(2) {
  left: 332px;
}
@media screen and (max-width: 767px) {
  .p-contact-form .form-style .names .js-error-text:nth-of-type(2) {
    left: 3.5rem;
  }
}
.p-contact-form .form-style .names_inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 16px;
}
.p-contact-form .form-style .names_inner .js-error-text {
  display: none;
}

@media screen and (max-width: 767px) {
  .android .p-contact-form .form-style__items .form__cnts .inputs-list .form-radio-label span:before {
    top: 0.75rem;
    left: 0.35rem;
  }
}
/*  p-contact-thanks
---------------------------------------------------------------------------- */
.p-contact-thanks {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks {
    margin-top: 0;
  }
  .p-contact-thanks .c-text {
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 400;
  }
}
.p-contact-thanks .btn_wrap {
  margin: 40px auto 64px auto;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks .btn_wrap {
    margin: 2.4rem auto 3.2rem auto;
  }
}
.p-contact-thanks .btn_wrap .to_top_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column;
  width: 168px;
  height: 40px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(180deg, #F5F6F5 0%, #A8A8A8 100%);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-contact-thanks .btn_wrap .to_top_btn {
    width: 16.8rem;
    height: 4rem;
  }
}