/* break point */
/* base setting */
html {
  font-size: 0.78125vw;
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (min-width: 1280px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
  line-height: inherit;
}

picture {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.4s ease;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: inherit;
}

ul {
  list-style: none;
}

input,
button,
select,
textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input::-webkit-input-placeholder {
  color: #777;
}

input:-ms-input-placeholder {
  color: #777;
}

input::-ms-input-placeholder {
  color: #777;
}

input::placeholder {
  color: #777;
}

/* IE */
input:-ms-input-placeholder {
  color: #777;
}

/* Edge */
input::-ms-input-placeholder {
  color: #777;
}

@media only screen and (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
}

.nowrap {
  white-space: nowrap;
}

.p-form {
  background: #fff;
  color: #131314;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 4rem);
  padding-bottom: 2rem;
  padding-top: 3.8rem;
}
.p-form .mw_wp_form .horizontal-item + .horizontal-item {
  margin: 0;
}
.p-form .mw_wp_form .error,
.p-form .wpcf7-not-valid-tip {
  bottom: -0.4rem;
  color: #d94141;
  font-size: 1.2rem;
  font-weight: 400;
  left: 0;
  letter-spacing: 0.04em;
  line-height: 1.4166666667;
  position: absolute;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
@media only screen and (max-width: 768px) {
  .p-form .mw_wp_form .p-form__privacy .error,
  .p-form .p-form__privacy .wpcf7-not-valid-tip {
    position: static;
    -webkit-transform: none;
    margin-left: 1.6rem;
    transform: none;
  }
}
@media only screen and (min-width: 769px) {
  .p-form {
    padding-bottom: 4rem;
    padding-top: 12rem;
  }
}
.p-form__inner {
  flex: 1 1 auto;
  margin: 0 auto;
  padding: 0 1.6rem;
  padding-bottom: 4rem;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .p-form__inner {
    max-width: 116rem;
    padding: 0 3rem;
    padding-bottom: 8rem;
  }
}
.p-form__ttl {
  color: #135477;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-form__ttl {
    font-size: 3.2rem;
    line-height: 1.4375;
    margin-bottom: 4rem;
  }
}
.p-form__txt {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2.8rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-form__txt {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    margin-bottom: 6rem;
  }
}
.p-form__item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.4rem 0;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-form__item {
    flex-direction: row;
    gap: 2rem;
    padding: 3.2rem 0;
  }
  .p-form__item.-center {
    align-items: center;
  }
}
.p-form__item.is-error .p-form__item-field input[type=text],
.p-form__item.is-error .p-form__item-field input[type=email],
.p-form__item.is-error .p-form__item-field input[type=tel],
.p-form__item.is-error .p-form__item-field input[type=number],
.p-form__item.is-error .p-form__item-field select,
.p-form__item.is-error .p-form__item-field textarea {
  border-color: #d94141;
}
.p-form__item.is-error .p-form__privacy input[type=radio] + span::before,
.p-form__item.is-error .p-form__privacy input[type=checkbox] + span::before {
  border-color: #d94141;
}
.p-form__item:last-child::after {
  display: block;
}
.p-form__item::before, .p-form__item::after {
  background: #d5d5d5;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.p-form__item::before {
  top: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.p-form__item::after {
  bottom: 0;
  display: none;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.p-form__item-label {
  align-items: center;
  display: flex;
}
@media only screen and (min-width: 769px) {
  .p-form__item-label {
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 0.7rem 0;
    min-height: 5rem;
    width: 26rem;
  }
}
.p-form__item-label .sm {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-left: 0.4rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-form__item-label .sm {
    margin-left: 0;
    order: 3;
    width: 100%;
  }
}
.p-form__item-label .txt {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media only screen and (min-width: 769px) {
  .p-form__item-label .txt {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.p-form__item-label .txt a {
  color: #0072f7;
  text-decoration: underline;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-form__item-label .txt a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-form__item-label .txt a:active {
    opacity: 0.7;
  }
}
.p-form__item-label .required,
.p-form__item-label .optional {
  align-items: center;
  border-radius: 0.2rem;
  color: #fff;
  display: flex;
  font-size: 1.2rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1.4166666667;
  margin-left: 1.5rem;
  padding: 0.3rem 0.7rem 0.4rem;
}
@media only screen and (min-width: 769px) {
  .p-form__item-label .required,
  .p-form__item-label .optional {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    margin-left: 2rem;
    padding: 0.3rem 0.9rem;
  }
}
.p-form__item-label .required {
  background: #d94141;
}
.p-form__item-label .optional {
  background: #a5a5a5;
}
.p-form__item-field {
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-form__item-field {
    flex: 1 1 auto;
  }
}
.p-form__item-field input[type=text],
.p-form__item-field input[type=url],
.p-form__item-field input[type=email],
.p-form__item-field input[type=tel],
.p-form__item-field input[type=number],
.p-form__item-field select,
.p-form__item-field textarea {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 0.4rem;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  min-height: 4rem;
  padding: 0.7rem 1.1rem;
  width: 100%;
}
.p-form__item-field input[type=text]::-webkit-input-placeholder, .p-form__item-field input[type=url]::-webkit-input-placeholder, .p-form__item-field input[type=email]::-webkit-input-placeholder, .p-form__item-field input[type=tel]::-webkit-input-placeholder, .p-form__item-field input[type=number]::-webkit-input-placeholder, .p-form__item-field select::-webkit-input-placeholder, .p-form__item-field textarea::-webkit-input-placeholder {
  color: #a5a5a5;
}
.p-form__item-field input[type=text]:-ms-input-placeholder, .p-form__item-field input[type=url]:-ms-input-placeholder, .p-form__item-field input[type=email]:-ms-input-placeholder, .p-form__item-field input[type=tel]:-ms-input-placeholder, .p-form__item-field input[type=number]:-ms-input-placeholder, .p-form__item-field select:-ms-input-placeholder, .p-form__item-field textarea:-ms-input-placeholder {
  color: #a5a5a5;
}
.p-form__item-field input[type=text]::-ms-input-placeholder, .p-form__item-field input[type=url]::-ms-input-placeholder, .p-form__item-field input[type=email]::-ms-input-placeholder, .p-form__item-field input[type=tel]::-ms-input-placeholder, .p-form__item-field input[type=number]::-ms-input-placeholder, .p-form__item-field select::-ms-input-placeholder, .p-form__item-field textarea::-ms-input-placeholder {
  color: #a5a5a5;
}
.p-form__item-field input[type=text]::placeholder,
.p-form__item-field input[type=url]::placeholder,
.p-form__item-field input[type=email]::placeholder,
.p-form__item-field input[type=tel]::placeholder,
.p-form__item-field input[type=number]::placeholder,
.p-form__item-field select::placeholder,
.p-form__item-field textarea::placeholder {
  color: #a5a5a5;
}
@media only screen and (min-width: 769px) {
  .p-form__item-field input[type=text],
  .p-form__item-field input[type=url],
  .p-form__item-field input[type=email],
  .p-form__item-field input[type=tel],
  .p-form__item-field input[type=number],
  .p-form__item-field select,
  .p-form__item-field textarea {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    padding: 1.1rem 1.9rem;
  }
}
.p-form__item-field input[type=text].wpcf7-not-valid,
.p-form__item-field input[type=url].wpcf7-not-valid,
.p-form__item-field input[type=email].wpcf7-not-valid,
.p-form__item-field input[type=tel].wpcf7-not-valid,
.p-form__item-field input[type=number].wpcf7-not-valid,
.p-form__item-field select.wpcf7-not-valid,
.p-form__item-field textarea.wpcf7-not-valid {
  border-color: #d94141;
}
.p-form__item-field textarea {
  height: 27rem;
  resize: none;
}
@media only screen and (min-width: 769px) {
  .p-form__item-field textarea {
    height: 26rem;
  }
}
.p-form__privacy {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.4rem;
}
@media only screen and (min-width: 769px) {
  .p-form__privacy {
    padding-top: 0;
  }
}
.p-form__privacy .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-form__privacy .wpcf7-not-valid input[type=radio] + span::before,
.p-form__privacy .wpcf7-not-valid input[type=checkbox] + span::before {
  border-color: #d94141;
}
.p-form__privacy input[type=radio]:checked + span::after,
.p-form__privacy input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-form__privacy input[type=radio] + span,
.p-form__privacy input[type=checkbox] + span {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: 2.8rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-form__privacy input[type=radio] + span,
  .p-form__privacy input[type=checkbox] + span {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.p-form__privacy input[type=radio] + span::before, .p-form__privacy input[type=radio] + span::after,
.p-form__privacy input[type=checkbox] + span::before,
.p-form__privacy input[type=checkbox] + span::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  box-sizing: border-box;
  transform: translate(0, -50%);
}
.p-form__privacy input[type=radio] + span::before,
.p-form__privacy input[type=checkbox] + span::before {
  border: 1px solid #cccccc;
  height: 2rem;
  height: 2rem;
  left: 0;
  width: 2rem;
  width: 2rem;
}
.p-form__privacy input[type=radio] + span::after,
.p-form__privacy input[type=checkbox] + span::after {
  background: #135477;
  height: 1.2rem;
  left: 0.4rem;
  opacity: 0;
  width: 1.2rem;
}
.p-form__checkbox {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.5rem;
  padding-top: 0.4rem;
}
@media only screen and (min-width: 769px) {
  .p-form__checkbox {
    gap: 0.8rem 4.2rem;
    padding-top: 0;
  }
}
.p-form__checkbox input[type=radio]:checked + span::after,
.p-form__checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-form__checkbox input[type=radio] + span,
.p-form__checkbox input[type=checkbox] + span {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: 2.8rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-form__checkbox input[type=radio] + span,
  .p-form__checkbox input[type=checkbox] + span {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.p-form__checkbox input[type=radio] + span::before, .p-form__checkbox input[type=radio] + span::after,
.p-form__checkbox input[type=checkbox] + span::before,
.p-form__checkbox input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  box-sizing: border-box;
  height: 2rem;
  left: 0;
  transform: translate(0, -50%);
  width: 2rem;
}
.p-form__checkbox input[type=radio] + span::before,
.p-form__checkbox input[type=checkbox] + span::before {
  border: 1px solid #cccccc;
}
.p-form__checkbox input[type=radio] + span::after,
.p-form__checkbox input[type=checkbox] + span::after {
  background: url(../../img/contents/form/checkbox.svg) no-repeat center/100% auto;
  opacity: 0;
}
.p-form__bottom {
  margin-top: 2.4rem;
}
@media only screen and (min-width: 769px) {
  .p-form__bottom {
    margin-top: 4rem;
  }
}
.p-form__bottom button[type=submit],
.p-form__bottom input[type=submit] {
  align-items: center;
  background: linear-gradient(to right, #2c7daa 0%, #145477 100%);
  border-radius: 3.4rem;
  color: #fff;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  justify-content: center;
  margin: 0 auto;
  min-height: 5rem;
  transition: 0.3s ease-out;
  transition-property: opacity;
  width: 100%;
}
@media (hover: hover) {
  .p-form__bottom button[type=submit]:hover,
  .p-form__bottom input[type=submit]:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-form__bottom button[type=submit]:active,
  .p-form__bottom input[type=submit]:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 769px) {
  .p-form__bottom button[type=submit],
  .p-form__bottom input[type=submit] {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    max-width: 29rem;
    min-height: 6rem;
  }
}

.p-thanks {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 4rem);
  padding-bottom: 2rem;
  padding-top: 4rem;
}
@media only screen and (min-width: 769px) {
  .p-thanks {
    padding-bottom: 4rem;
    padding-top: 12rem;
  }
}
.p-thanks__inner {
  flex: 1 1 auto;
  letter-spacing: 0;
  margin: 0 auto;
  padding: 0 1.6rem;
  padding-bottom: 4rem;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .p-thanks__inner {
    max-width: 116rem;
    padding: 0 3rem;
    padding-bottom: 8rem;
  }
}
.p-thanks__ttl {
  color: #135477;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-thanks__ttl {
    font-size: 3.2rem;
    line-height: 1.4375;
    margin-bottom: 4rem;
  }
}
.p-thanks__txt {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
.p-thanks__txt a {
  color: #0072f7;
  text-decoration: underline;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-thanks__txt a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-thanks__txt a:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 769px) {
  .p-thanks__txt {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    margin-bottom: 3.6rem;
    text-align: center;
  }
}
.p-thanks__btn {
  align-items: center;
  background: linear-gradient(to right, #2c7daa 0%, #145477 100%);
  border-radius: 3.4rem;
  color: #fff;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  justify-content: center;
  margin: 0 auto;
  min-height: 5rem;
  transition: 0.3s ease-out;
  transition-property: opacity;
  width: 100%;
}
@media (hover: hover) {
  .p-thanks__btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-thanks__btn:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 769px) {
  .p-thanks__btn {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    max-width: 29rem;
    min-height: 6rem;
  }
}
.p-thanks__btn.-plan {
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .p-thanks__btn.-plan {
    gap: 0.3rem;
    max-width: 40rem;
    min-height: 6.8rem;
  }
}
.p-thanks__btn.-plan .sm {
  font-size: 1.2rem;
  line-height: 1.4166666667;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-thanks__btn.-plan .sm {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
.p-thanks__btn.-plan .sm::before, .p-thanks__btn.-plan .sm::after {
  background: #fff;
  content: "";
  height: 1.5rem;
  position: absolute;
  width: 1px;
}
.p-thanks__btn.-plan .sm::before {
  bottom: 0;
  left: -0.8rem;
  -webkit-transform: rotate(-32deg);
  transform: rotate(-32deg);
}
.p-thanks__btn.-plan .sm::after {
  bottom: 0;
  right: -0.8rem;
  -webkit-transform: rotate(32deg);
  transform: rotate(32deg);
}
.p-thanks__btn.-plan .lg {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  padding-left: 2.4rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-thanks__btn.-plan .lg {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    padding-left: 2.8rem;
  }
}
.p-thanks__btn.-plan .lg svg {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.p-thanks__back {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  margin-top: 2.4rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-thanks__back {
    margin-top: 3.2rem;
  }
}
.p-thanks__back a {
  color: #0072f7;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-thanks__back a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-thanks__back a:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 769px) {
  .p-thanks__back a {
    text-underline-offset: 0.2rem;
  }
}

.p-footer {
  background: #135477;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 1.2rem 1.6rem 1.3rem;
  text-align: center;
}

.c-breadcrumb {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-breadcrumb::-webkit-scrollbar {
  display: none;
}
.c-breadcrumb__inner {
  color: #434343;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4166666667;
  margin: 0 auto;
  padding: 0 1.6rem;
  white-space: nowrap;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .c-breadcrumb__inner {
    display: flex;
    font-size: 1.4rem;
    justify-content: center;
    line-height: 1.4285714286;
    max-width: 116rem;
    padding: 0 3rem;
  }
}
.c-breadcrumb__inner .current {
  color: #8E8E8E;
}

html {
  font-size: 0.78125vw;
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (min-width: 1280px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 2.7777777778vw;
  }
}

body {
  color: #434343;
}