/* common
---------------------------------------------------------------------------- */
.m-mh {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3333;
  background: url(../images/common/icn_circle.svg) no-repeat;
  background-size: 5rem;
  background-position: left top;
  margin: 0 0 0 -2.3rem;
  padding-left: 1.4rem;
}
.m-mh span {
  display: block;
  font-weight: 700;
  font-family: "Lexend Exa", sans-serif;
  font-size: 6rem;
  letter-spacing: -0.05em;
  color: #0064B6;
}

@media screen and (max-width: 768px) {
  .m-mh {
    font-size: 3.7209302326vw;
    background-size: 6.976744186vw;
    margin: 0;
    padding-left: 3.2558139535vw;
  }
  .m-mh span {
    font-size: 6.976744186vw;
  }
}
/* p-contact
---------------------------------------------------------------------------- */
.p-contact {
  background: #0064B6;
  padding: 6rem 0 4.5rem 0;
  margin: 0 5rem 4rem 5rem;
  border-radius: 1.6rem;
}
.p-contact .l-content-inner {
  max-width: 76rem;
}

.p-contact-table {
  margin: 4rem 0 3rem 0;
  width: 100%;
  color: #fff;
}
.p-contact-table th {
  padding: 1.2rem 0.9rem 1.2rem 0;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
}
.p-contact-table th span {
  display: inline-block;
  padding: 0 1rem;
  background: #C90000;
  border-radius: 15rem;
  font-size: 1.2rem;
  margin-left: 0.6rem;
  line-height: 2.7rem;
}

.p-contact-table td span.error{
color:#E29E1D;
}


.p-contact-table td {
  padding: 1.2rem 0 1.2rem 0.9rem;
  font-size: 1.6rem;
  width: 56rem;
}
.p-contact-table td span {
  display: block;
  font-size: 1.4rem;
  margin-top: 1rem;
}
.p-contact-table input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 1.6rem;
}
.p-contact-table textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  background: transparent;
}
.p-contact-table textarea.p-textarea {
  border-radius: 0.8rem;
  padding: 0.8rem;
  background: #fff;
  width: 100%;
  height: 15rem;
}
.p-contact-table input[type=text] {
  border-radius: 0.8rem;
  padding: 0.8rem;
  background: #fff;
  width: 100%;
}
.p-contact-table input[type=text].p-kana {
  width: 17rem;
  margin: 0 1.6rem;
}

.p-label {
  position: relative;
  padding-left: 4rem;
  cursor: pointer;
}
.p-label::before, .p-label::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 2rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  /*transition: .1s;*/
}
.p-label::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0.5rem solid #fff;
  background: #DBDBEA;
}
.p-label::after {
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  background-color: #0064B6;
  border: 0.5rem solid #0064B6;
}

.p-contact-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
.p-contact-radio li {
  line-height: 3rem;
}

.p-radio:checked + label::before {
  border-color: #fff;
}
.p-radio:checked + label::after {
  -webkit-transform: translateY(-50%) scale(0.666666);
          transform: translateY(-50%) scale(0.666666);
  opacity: 1;
}

.p-label-check {
  position: relative;
  padding-left: 3rem;
  cursor: pointer;
}
.p-label-check::before, .p-label-check::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  position: absolute;
  left: 0;
  top: 50%;
  /*transition: .1s;*/
}
.p-label-check::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
}
.p-label-check::after {
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  background: url(../images/common/check.svg) no-repeat center;
  background-size: 1.3rem auto;
}

.p-checkbox:checked + label::before {
  border-color: #fff;
}
.p-checkbox:checked + label::after {
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  opacity: 1;
}

.p-contact-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
}
.p-contact-checkbox li:nth-child(2n+1) {
  width: 24rem;
}

.p-contact-company {
  display: none;
}

.p-contact-privacy-ttl {
  font-weight: 600;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.12rem;
}

.p-contact-privacy {
  background: #fff;
  border-radius: 0.8rem;
  width: 100%;
  height: 10.4rem;
  overflow-y: auto;
  padding: 1.8rem 3rem;
  font-size: 1.4rem;
  line-height: 1.7857;
}
.p-contact-privacy::-webkit-scrollbar {
  width: 1rem;
}
.p-contact-privacy::-webkit-scrollbar-track {
  background-color: #E7E7F0;
  border-radius: 0 0.8rem 0.8rem 0;
}
.p-contact-privacy::-webkit-scrollbar-thumb {
  background-color: #E29E1D;
  border-radius: 0 0.8rem 0 0;
}

p.tac{

}

.inline{
  display: inline-block;
  position: relative;
  left: 35%;
  transform: translateX(-35%);
}

.p-contact-btn {
  margin: 3rem auto 0 auto;
  padding: 1.6rem 3.2rem 1.6rem 6.6rem;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  background: url(../images/common/icn_send.svg) no-repeat 3.2rem center #E29E1D;
  background-size: 1.8rem auto;
  border-radius: 15rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-contact-btn:hover {
  opacity: 0.7;
}

.p-contact-btn-confirm {
  margin: 3rem auto 0 auto;
  padding: 1.6rem 3.2rem 1.6rem 3.2rem;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  background: #E29E1D;
  border-radius: 15rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-contact-btn-confirm:hover {
  opacity: 0.7;
}

.p-contact-btn-back {
  margin: 3rem auto 0 3rem;
  padding: 1.6rem 3.2rem 1.6rem 3.2rem;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  background: #949191;
  border-radius: 15rem;
  cursor: pointer;
  min-width: 17rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-contact-btn-back:hover {
  opacity: 0.7;
}

.p-contact-link {
  text-align: center;
}
.p-contact-link a {
  display: inline-block;
  margin: 3rem auto 0 auto;
  padding: 1.6rem 3.2rem 1.6rem 6.6rem;
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  background: url(../images/common/icn_send.svg) no-repeat 3.2rem center #E29E1D;
  background-size: 1.8rem auto;
  border-radius: 15rem;
}

.p-contact-top {
  text-align: center;
}
.p-contact-top a {
  display: inline-block;
  margin: 8.6rem auto 0 auto;
  padding: 1.6rem 3.2rem;
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  background: #E29E1D;
  border-radius: 15rem;
}

@media screen and (max-width: 768px) {
  .p-contact {
    background: #0064B6;
    padding: 13.9534883721vw 0;
    margin: 0;
  }
  .p-contact .l-content-inner {
    max-width: 100%;
  }
  .p-contact-table {
    margin: 5.5813953488vw 0 4.6511627907vw 0;
    width: 100%;
  }
  .p-contact-table th {
    padding: 0;
    font-size: 3.7209302326vw;
    width: 100%;
    display: block;
  }
  .p-contact-table th span {
    padding: 0 2.3255813953vw;
    border-radius: 34.8837209302vw;
    font-size: 2.7906976744vw;
    margin-left: vww(12);
    line-height: 6.2790697674vw;
  }


  .p-contact-table td {
    width: 100%;
    display: block;
    padding: 3.488372093vw 0 4.6511627907vw 0;
    font-size: 3.7209302326vw;
  }
  .p-contact-table td span {
    font-size: 3.2558139535vw;
    margin-top: 2.3255813953vw;
  }
  .p-contact-table input {
    font-size: 3.7209302326vw;
  }
  .p-contact-table textarea.p-textarea {
    border-radius: 1.8604651163vw;
    padding: 1.8604651163vw;
    height: 34.8837209302vw;
  }
  .p-contact-table input[type=text] {
    border-radius: 1.8604651163vw;
    padding: 1.8604651163vw;
  }
  .p-contact-table input[type=text].p-kana {
    width: 27.9069767442vw;
    margin: 0 3.7209302326vw;
  }
  .p-label {
    padding-left: 9.3023255814vw;
    padding-right: 0;
  }
  .p-label::before, .p-label::after {
    width: 4.6511627907vw;
    /*transition: .1s;*/
  }
  .p-label::before {
    border: 1.1627906977vw solid #fff;
  }
  .p-label::after {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
    border: 1.1627906977vw solid #0064B6;
  }
  .p-contact-radio {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.3255813953vw;
  }
  .p-contact-radio li {
    width: 100%;
    line-height: 6.976744186vw;
  }
  .p-label-check {
    padding-left: 6.976744186vw;
  }
  .p-label-check::before, .p-label-check::after {
    width: 4.6511627907vw;
    height: 4.6511627907vw;
    border-radius: 0.9302325581vw;
    /*transition: .1s;*/
  }
  .p-label-check::after {
    background-size: 3.023255814vw auto;
  }
  .p-contact-checkbox {
    gap: 2.3255813953vw 4.6511627907vw;
  }
  .p-contact-checkbox li:nth-child(2n+1) {
    width: 100%;
  }
  .p-contact-privacy-ttl {
    font-size: 3.7209302326vw;
    margin-bottom: 2.5581395349vw;
  }
  .p-contact-privacy {
    border-radius: 1.8604651163vw;
    height: 24.1860465116vw;
    padding: 4.1860465116vw 6.976744186vw;
    font-size: 3.2558139535vw;
  }
  .p-contact-privacy::-webkit-scrollbar {
    width: 2.3255813953vw;
  }
  .p-contact-privacy::-webkit-scrollbar-track {
    border-radius: 0 1.8604651163vw 1.8604651163vw 0;
  }
  .p-contact-privacy::-webkit-scrollbar-thumb {
    border-radius: 0 1.8604651163vw 0 0;
  }
  .p-contact-btn {
    margin: 6.976744186vw auto 0 auto;
    padding: 3.7209302326vw 7.4418604651vw 3.7209302326vw 15.3488372093vw;
    font-size: 4.1860465116vw;
    color: #fff;
    background-position: 7.4418604651vw center;
    border-radius: 34.8837209302vw;
    background-size: 4.1860465116vw auto;
  }
  .p-contact-btn-confirm {
    margin: 6.976744186vw auto 0 auto;
    padding: 3.7209302326vw 7.4418604651vw;
    font-size: 4.1860465116vw;
    color: #fff;
    background-position: 7.4418604651vw center;
    border-radius: 34.8837209302vw;
  }
  .p-contact-btn-back {
    margin: 6.976744186vw auto 0 6.976744186vw;
    padding: 3.7209302326vw 7.4418604651vw;
    font-size: 4.1860465116vw;
    color: #fff;
    background-position: 7.4418604651vw center;
    border-radius: 34.8837209302vw;
    min-width: 34.8837209302vw;
  }
  .p-contact-link a {
    margin: 6.976744186vw auto 0 auto;
    padding: 3.7209302326vw 7.4418604651vw 3.7209302326vw 15.3488372093vw;
    font-size: 4.1860465116vw;
    background-position: 7.4418604651vw center;
    border-radius: 34.8837209302vw;
    background-size: 4.1860465116vw auto;
  }
  .p-contact-top a {
    margin: 11.6279069767vw auto 0 auto;
    padding: 3.7209302326vw 7.4418604651vw;
    font-size: 4.1860465116vw;
    background-position: 7.4418604651vw center;
    border-radius: 34.8837209302vw;
  }


.inline{
  display: inline;
  position: relative;
  left: 5%;
  transform: translateX(-5%);
}

}
/*confirm*/
.p-contact-confirm {
  padding: 0;
  margin: 0 5rem 4rem 5rem;
}

.p-contact-confirm-txt {
  font-size: 1.6rem;
  line-height: 2;
}

.p-contact-confirm-table {
  width: 100%;
  border-radius: 1.6rem 1.6rem 0 0;
  background: #F9F9FC;
  margin-top: 4rem;
}
.p-contact-confirm-table tr:nth-child(2n) {
  background: #E7E7F0;
}
.p-contact-confirm-table th {
  padding: 2.4rem 0.4rem 2.4rem 5rem;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: left;
  white-space: nowrap;
}
.p-contact-confirm-table td {
  padding: 2.4rem 5rem;
  font-size: 1.6rem;
  line-height: 2;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-contact-confirm {
    margin: 0;
  }
  .p-contact-confirm-txt {
    font-size: 3.7209302326vw;
  }
  .p-contact-confirm-table {
    width: 100%;
    border-radius: 2.3255813953vw 2.3255813953vw 0 0;
    margin-top: 5.5813953488vw;
  }
  .p-contact-confirm-table tr:nth-child(2n) {
    background: #F9F9FC;
  }
  .p-contact-confirm-table tr:first-of-type th {
    border-radius: 2.3255813953vw 2.3255813953vw 0 0;
  }
  .p-contact-confirm-table th {
    display: block;
    width: 100%;
    padding: 4.1860465116vw;
    font-size: 3.7209302326vw;
    background: #E7E7F0;
  }
  .p-contact-confirm-table td {
    display: block;
    width: 100%;
    padding: 4.1860465116vw;
    font-size: 3.7209302326vw;
    background: #F9F9FC;
  }
}