@charset "UTF-8";
/* ------------------------------------------------------
*	scrollTest.jsとともに使用
* ------------------------------------------------------ */
.step {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-bottom: 40px;
}
.step li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  background-color: #f6f6f6;
  font-weight: 600;
  color: var(--c-1st);
  text-align: center;
}
.step li:not(:first-child)::before, .step li:not(:first-child)::after {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  top: 0;
  left: 0;
}
.step li:not(:first-child)::before {
  width: 34px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 4px 0, 100% 50%, 4px 100%, 0 100%);
          clip-path: polygon(0 0, 4px 0, 100% 50%, 4px 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .step li:not(:first-child)::before {
    width: 14px;
  }
}
.step li:not(:first-child)::after {
  width: 30px;
  background-color: #f6f6f6;
  -webkit-clip-path: polygon(-1px 0, 0 0, 100% 50%, 0 100%, -1px 100%);
          clip-path: polygon(-1px 0, 0 0, 100% 50%, 0 100%, -1px 100%);
}
@media screen and (max-width: 767px) {
  .step li:not(:first-child)::after {
    width: 10px;
  }
}
.step li.active {
  background-color: var(--c-1st);
  color: #fff;
}
.step li.active + li::after {
  background-color: var(--c-1st);
}
.step li p br {
  display: none;
}
@media screen and (max-width: 767px) {
  .step li p br {
    display: inline;
  }
}
.step li p:nth-child(1) {
  margin-bottom: 0.5em;
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .step li p:nth-child(1) {
    font-size: 1rem;
  }
}
.step li p:nth-child(2) {
  font-size: 1.6rem;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .step li p:nth-child(2) {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------------

    Customize

------------------------------------------------------ */
.inquiry-ttl {
  position: relative;
  display: grid;
  margin-bottom: 40px;
}
.inquiry-ttl > picture, .inquiry-ttl > div {
  grid-area: 1/1;
}
.inquiry-ttl > picture {
  overflow: hidden;
}
.inquiry-ttl > picture img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .inquiry-ttl > picture img {
    height: auto;
    aspect-ratio: 750/235;
  }
}
.inquiry-ttl > div {
  place-self: center;
  display: grid;
  place-items: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(35, 24, 21, 0)), color-stop(50%, rgba(35, 24, 21, 0.9)), to(rgba(35, 24, 21, 0)));
  background: linear-gradient(to right, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0.9) 50%, rgba(35, 24, 21, 0) 100%);
  width: calc(100% - var(--space) * 2);
  padding: 0.6330754em 0;
  max-width: 360px;
}
.inquiry-ttl > div h1 {
  font-size: 3.4rem;
  font-size: clamp( 2.2rem, 2.2rem + ((1vw - 0.32rem) * 2.6785714286), 3.4rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  color: #fff;
}

.inquiry:not([data-status=show]) .inquiry-ttl {
  opacity: 0;
}
.inquiry[data-status=show] .inquiry-ttl {
  opacity: 1;
  -webkit-transition: opacity 600ms cubic-bezier(0.26, 0, 0.6, 0.2);
  transition: opacity 600ms cubic-bezier(0.26, 0, 0.6, 0.2);
}

/* ------------------------------------------------------

    Customize

------------------------------------------------------ */
.inquiry .page-hero3 {
  margin-bottom: 85px;
}
@media screen and (max-width: 767px) {
  .inquiry .page-hero3 {
    margin-bottom: 40px;
  }
}
.inquiry .inner {
  max-width: 980px;
  padding-bottom: 85px;
}

.inquiry:not([data-status=show]) .page-hero3 {
  opacity: 0;
}
.inquiry[data-status=show] .page-hero3 {
  opacity: 1;
  -webkit-transition: opacity 600ms cubic-bezier(0.26, 0, 0.6, 0.2);
  transition: opacity 600ms cubic-bezier(0.26, 0, 0.6, 0.2);
}
.inquiry:not([data-status=show]) .inner {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.inquiry[data-status=show] .inner {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
  transition: opacity 300ms cubic-bezier(0.26, 0, 0.6, 0.2), transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1), -webkit-transform 600ms cubic-bezier(0.32, 0.94, 0.6, 1);
}

/* ------------------------------------------------------

    Customize

------------------------------------------------------ */
.errorArea {
  background: #fff6f6;
  color: #f00;
  padding: 18px 19px;
  margin: 0 0 30px;
}
.errorArea ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.errorArea ul li::before {
  content: "・";
  display: inline-block;
  width: 1em;
  text-align: center;
  text-indent: 0;
}

.select-wrap {
  position: relative;
  width: 100%;
}

.select-wrap::before {
  position: absolute;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid #666;
  border-top: none;
  border-right: none;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  pointer-events: none;
}

.select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  color: inherit;
}

.select-test select:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.requirements {
  margin-bottom: 50px;
}
.requirements > div {
  display: grid;
  grid-template-columns: 220px 1fr;
}
@media screen and (max-width: 767px) {
  .requirements > div {
    grid-template-columns: 1fr;
  }
}
.requirements > div:not(:last-child) {
  border-bottom: 1px dotted #ccc;
}
@media screen and (max-width: 767px) {
  .requirements > div:not(:last-child) {
    border-bottom: none;
  }
}
.requirements .error dt {
  background: #fff6f6;
}
.requirements .error input,
.requirements .error textarea,
.requirements .error select {
  border-color: #f8bdbd !important;
}
.requirements dt, .requirements dd {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .requirements dt, .requirements dd {
    padding: 10px;
  }
}
.requirements dt {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: center center;
  background: #f6f6f6;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .requirements dt {
    width: auto;
    gap: 10px;
  }
}
.requirements dt small {
  display: block;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .requirements dt small {
    display: inline-block;
    margin-left: 1em;
  }
}
.requirements dt.important::after {
  display: block;
  content: "必須";
  padding: 0 5px;
  margin-left: auto;
  background: #e20000;
  font-size: 1rem;
  color: #fff;
}
.requirements dd ::-webkit-input-placeholder {
  color: #a5a5a5;
}
.requirements dd ::-moz-placeholder {
  color: #a5a5a5;
}
.requirements dd :-ms-input-placeholder {
  color: #a5a5a5;
}
.requirements dd ::-ms-input-placeholder {
  color: #a5a5a5;
}
.requirements dd ::placeholder {
  color: #a5a5a5;
}
.requirements dd input[type=text],
.requirements dd input[type=email],
.requirements dd input[type=tel] {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #e8e8e8;
}
.requirements dd.name, .requirements dd.kana {
  display: grid;
  grid-template-columns: 2em 1fr 2em 1fr;
  place-items: center start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .requirements dd.name, .requirements dd.kana {
    grid-template-columns: auto 1fr;
  }
}
.requirements dd.addr .zip,
.requirements dd.addr .address1,
.requirements dd.addr .address2,
.requirements dd.addr .address3 {
  display: grid;
  grid-template-columns: 100px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .requirements dd.addr .zip,
.requirements dd.addr .address1,
.requirements dd.addr .address2,
.requirements dd.addr .address3 {
    grid-template-columns: 1fr;
  }
}
.requirements dd.addr .zip {
  margin-bottom: 20px;
}
.requirements dd.addr .zip > div {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.requirements dd.addr .zip > div input {
  width: 100%;
}
.requirements dd.addr .address1,
.requirements dd.addr .address2 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .requirements dd.addr .address3 br {
    display: none;
  }
}
.requirements dd.tel {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.requirements dd.matter textarea {
  width: 100%;
  height: 180px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  resize: none;
  line-height: 1.5em;
}

.g-recaptcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.consent {
  margin-bottom: 50px;
  text-align: center;
}
.consent p {
  margin-bottom: 10px;
}

.privacy {
  height: 160px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #e8e8e8;
  font-size: 1.4rem;
}
.privacy__inner {
  height: 100%;
  overflow: auto;
  padding-right: 10px;
  --sb-track-color: #f0f0f0;
  --sb-thumb-color: #d6d6d6;
  --sb-size: 8px;
  scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
}
.privacy__inner::-webkit-scrollbar {
  width: var(--sb-size);
}
.privacy__inner::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 8px;
}
.privacy__inner::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 8px;
}
.privacy dl {
  padding-bottom: 15px;
  border-bottom: 1px dotted #cccccc;
  margin-bottom: 15px;
}
.privacy dl dt {
  font-weight: bold;
  margin-bottom: 10px;
}
.privacy dl dd {
  text-indent: -1em;
  padding-left: 1em;
}
.privacy dl dd:before {
  content: "※";
  display: inline-block;
  width: 1em;
  text-indent: 0;
}
.privacy p {
  margin-bottom: 30px;
}

.btn-auto,
.btn-confirm,
.btn-submit,
.btn-reset {
  display: block;
  padding: 15px;
  margin: 0 auto;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1;
}
.btn-auto:hover,
.btn-confirm:hover,
.btn-submit:hover,
.btn-reset:hover {
  opacity: 0.8;
}

.btn-auto {
  padding: 12px 14px 11px;
  background: var(--c-1st);
  margin-left: 0;
  font-size: 1.4rem;
  color: #fff;
}

.btn-confirm,
.btn-submit {
  width: 100%;
  max-width: 310px;
  margin-bottom: 20px;
  background: var(--c-1st);
  color: #fff;
}

.btn-reset {
  width: 250px;
  background: #e6e6e6;
}