@charset "UTF-8";
.pre_logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 10001;
  opacity: 0;
  animation: fadeInOut 3s 1s forwards;
}
.pre_logo img {
  width: 350px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .pre_logo img {
    width: 27.5rem;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    pointer-events: none;
  }
  10% {
    opacity: 1;
    pointer-events: auto;
  }
  80% {
    opacity: 1;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
.mask_logo {
  pointer-events: none;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
}
.mask_logo img {
  pointer-events: none;
  width: 600vw;
  height: 600vw;
  transform: scale(0.1);
  animation: loadingAnimation 10s 4s forwards;
  opacity: 1;
}
.mask_logo::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  animation: opacity 1s 4s forwards;
  z-index: 2;
}

@keyframes opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loadingAnimation {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(20);
    transform: scale(20);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(20);
    transform: scale(20);
    opacity: 0;
    display: none;
  }
}
/*
.mask_logo {
	pointer-events: none;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	img {
		pointer-events: none;
		transform: scale(1);
		animation: maskZoom 2s 2s cubic-bezier(.35, .86, .48, 1) forwards;
	}
}
@keyframes maskZoom {
	to {
		transform: scale(12);
	}
}
*/
.p-mv {
  position: relative;
  height: 82rem;
  background: url(../img/bg_mv.svg) center center/auto 100% no-repeat;
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: 59rem;
    background: url(../img/bg_mv_sp.svg) center center/auto 100% no-repeat;
  }
}
.p-mv__ttl {
  position: absolute;
  top: calc(50% - 5rem);
  left: 50%;
  width: 65rem;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-mv__ttl {
    top: calc(50% - 1rem);
    width: 27.5rem;
    margin: 0 auto;
  }
}
.p-mv__badge {
  position: absolute;
  top: calc(50% + 25rem);
  left: calc(50% + 30rem);
  width: 16.8rem;
  height: 16.8rem;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-mv__badge {
    top: calc(50% + 13rem);
    left: calc(50% + 11rem);
    width: 8.4rem;
    height: 8.4rem;
  }
}

.p-concept {
  position: relative;
  overflow: hidden;
  height: 218rem;
  background: url(../img/bg_concept.png) center center/auto 100% no-repeat;
  padding: 28rem 0 0;
  margin-top: -10rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-concept {
    height: 172rem;
    background: url(../img/bg_concept_sp.png) center center/auto 100% no-repeat;
    padding: 8rem 0 0;
    margin-top: -2rem;
  }
}
.p-concept__txt {
  text-align: center;
  font-size: 2rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #003287;
  margin: 4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-concept__txt {
    font-size: 1.5rem;
    margin: 2.5rem 0 0;
  }
}
.p-concept-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3rem;
  margin: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-concept-list {
    flex-wrap: wrap;
    gap: 0 1.6rem;
    margin: 5rem 0 0;
  }
}
.p-concept-list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 15rem;
  height: 15rem;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.075em;
  color: #003287;
  border: 1px solid #003287;
  border-radius: 100%;
  padding: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-concept-list__item {
    width: 12.5rem;
    height: 12.5rem;
    font-size: 1.3rem;
  }
  .p-concept-list__item:first-child {
    margin: 0 5rem;
  }
}
.p-concept-list__item:nth-child(2) {
  padding: 0;
}
.p-concept-slide {
  position: relative;
  overflow: hidden;
  margin-top: 7rem;
}
.p-concept-slide .swiper-button-prev,
.p-concept-slide .swiper-button-next {
  top: auto;
  bottom: 4.5rem;
  width: 1.5rem;
  height: 3rem;
  z-index: 10;
}
.p-concept-slide .swiper-button-prev::after,
.p-concept-slide .swiper-button-next::after {
  content: none;
}
.is-ja .p-concept-slide .swiper-button-prev,
.is-ja .p-concept-slide .swiper-button-next {
  bottom: 3.3rem;
}
.p-concept-slide .swiper-button-prev {
  left: 0;
  background: url(../img/icn_arrow_prev.svg) 0 0/100% auto no-repeat;
}
.p-concept-slide .swiper-button-next {
  right: 0;
  background: url(../img/icn_arrow_next.svg) 0 0/100% auto no-repeat;
}
.p-concept-slide__txt {
  color: #003287;
  height: 9em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  padding: 0 3rem;
  margin: 2rem 0 0;
  font-size: 1.35rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-concept-slide__txt {
    height: 9em;
  }
}
.p-concept-map {
  position: relative;
  margin: 9.4rem auto 0;
  padding: 2rem 0 6rem;
}
.p-concept-map__item {
  position: absolute;
}
.p-concept-map__item.is-01 {
  opacity: 0;
  top: 5rem;
  left: -1rem;
}
.p-concept-map.active .p-concept-map__item.is-01 {
  opacity: 1;
  transition: opacity 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-concept-map__item.is-02 {
  opacity: 0;
  top: 0.5rem;
  right: -1rem;
}
.p-concept-map.active .p-concept-map__item.is-02 {
  opacity: 1;
  transition: opacity 0.8s 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-concept-map__item.is-03 {
  opacity: 0;
  bottom: -1rem;
  right: -1rem;
}
.p-concept-map.active .p-concept-map__item.is-03 {
  opacity: 1;
  transition: opacity 0.8s 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-concept-map__ttl {
  font-size: 1.9rem;
  font-weight: 400;
  color: #003287;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0 0 0.9rem;
}
.p-concept-map__txt {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: #003287;
}
.p-concept-map__img {
  width: 45.4rem;
  margin: 0 auto;
}
.p-concept-map__area {
  position: absolute;
  top: calc(50% - 0.5rem);
  left: calc(50% + 1.5rem);
  font-size: 2.4rem;
  color: #003287;
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%);
}
.p-concept__movie {
  max-width: 93.5rem;
  height: 53rem;
  margin: 7rem 0 0;
  border-radius: 1.6rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-concept__movie {
    width: 100%;
    height: auto;
    aspect-ratio: 6/3.8;
    margin-top: 4rem;
  }
}
.p-concept__movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-whats {
  position: relative;
  height: 75.6rem;
  background: url(../img/bg_whats.svg) center center/auto 100% no-repeat;
  margin-top: -10rem;
}
@media screen and (max-width: 767px) {
  .p-whats {
    height: 71.5rem;
    background: url(../img/bg_whats_sp.svg) center center/auto 100% no-repeat;
    margin-top: -2rem;
  }
}
.p-whats__inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}
.p-whats__ttl {
  color: #fff;
  margin: 0 0 3rem;
}
.p-whats__txt {
  font-size: 2rem;
  line-height: 2.5;
  color: #fff;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-whats__txt {
    font-size: 1.5rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .is-ja .p-whats__txt {
    line-height: 2.2;
  }
}
.p-whats__content {
  display: inline-block;
}
.p-whats-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem 3rem;
  padding: 2.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-whats-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    flex-flow: column;
    gap: 1rem 0;
  }
}
.p-whats-list__item {
  position: relative;
  font-size: 2rem;
  color: #fff;
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 0 0 0 1em;
}
@media screen and (max-width: 767px) {
  .p-whats-list__item {
    font-size: 1.5rem;
  }
}
.p-whats-list__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}
.p-whats-list__item span {
  font-size: 1rem;
  vertical-align: text-top;
}
.p-whats__notes {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  margin: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-whats__notes {
    font-size: 1.1rem;
  }
}

.p-products {
  height: 209rem;
  background: url(../img/bg_products.svg) center center/auto 100% no-repeat;
  padding: 20rem 0 0;
  margin-top: -10rem;
}
@media screen and (max-width: 767px) {
  .p-products {
    height: 170rem;
    background: url(../img/bg_products_sp.svg) center center/auto 100% no-repeat;
    margin-top: -3rem;
    padding: 10rem 2rem 0;
  }
  .is-ja .p-products {
    height: 178rem;
  }
}
.p-products__ttl {
  color: #003287;
}
.p-products__wrap {
  max-width: 103rem;
  margin: 0 auto;
}
.p-products-list {
  margin: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-products-list {
    margin: 3rem 0 0;
  }
}
.p-products-list__img {
  position: relative;
  width: 60.3rem;
  margin-right: -3.2rem;
}
@media screen and (max-width: 767px) {
  .p-products-list__img {
    width: 34.5rem;
    margin: 0 0 2rem 1.5rem;
  }
}
.is-reverse .p-products-list__img {
  margin: 0 0 0 -6rem;
}
@media screen and (max-width: 767px) {
  .is-reverse .p-products-list__img {
    margin: 0 0 2rem -1.2rem;
  }
}
.p-products-list__img .icon {
  position: absolute;
  width: 12rem;
  top: 3rem;
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-products-list__img .icon {
    top: 1.5rem;
    right: 0.5rem;
    width: 7.8rem;
  }
}
.is-reverse .p-products-list__img .icon {
  top: 1rem;
  left: 6rem;
  right: auto;
}
@media screen and (max-width: 767px) {
  .is-reverse .p-products-list__img .icon {
    left: 2rem;
  }
}
.p-products-list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-flow: row-reverse;
  margin: 0 0 7.5rem;
}
.p-products-list__item.is-reverse {
  flex-flow: row;
}
@media screen and (max-width: 767px) {
  .p-products-list__item {
    display: block;
    margin: 0 0 5rem;
  }
}
.p-products-list__item + .p-products-list__item {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-products-list__item + .p-products-list__item {
    margin-bottom: 12rem;
  }
}
.p-products-list__ttl {
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
  font-size: 3rem;
  color: #003287;
  margin: 0 0 4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-products-list__ttl {
    font-size: 2rem;
    margin: 0 0 1rem;
  }
  .is-ja .p-products-list__ttl {
    margin: 0 0 2.4rem;
  }
}
.p-products-list__txt {
  text-align: center;
  line-height: 1.75;
  color: #003287;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-products-list__txt {
    text-align: justify;
    font-size: 1.4rem;
  }
}
.p-products-list__notes {
  text-align: center;
  font-size: 1.2rem;
  color: #003287;
  margin: 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-products-list__notes {
    text-align: left;
    font-size: 1.2rem;
  }
}
.p-products-other {
  position: relative;
}
.p-products-other__comment {
  position: absolute;
  bottom: calc(100% - 1.2rem);
  right: 0;
  width: 51.3rem;
  height: 10.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #003287;
  text-align: center;
  letter-spacing: 0.05em;
  background: url(../img/bg_balloon.svg) 0 0/100% auto no-repeat;
  padding: 2.3rem 0 0;
  opacity: 0;
}
.p-products-other.active .p-products-other__comment {
  opacity: 1;
  transition: opacity 0.8s 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .p-products-other__comment {
    width: 100%;
    height: 9.8rem;
    background: url(../img/bg_balloon_sp.svg) 0 0/100% auto no-repeat;
    font-size: 1.3rem;
    padding: 2.7rem 0 0;
  }
}
.p-products-other-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3rem;
  opacity: 0;
}
.p-products-other.active .p-products-other-list {
  opacity: 1;
  transition: opacity 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .p-products-other-list {
    gap: 0 1rem;
  }
}
.p-products-other-list__item {
  width: 26.1rem;
}

.p-contact {
  position: relative;
  background: url(../img/bg_contact.png) center 7rem/200rem auto no-repeat;
  padding: 10rem 0 36.4rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 8rem 2rem 15rem;
  }
}
.p-contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 34.8rem;
  background: url(../img/bg_footer.svg) center 0/200rem auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-contact::after {
    height: 11.8rem;
    background: url(../img/bg_footer_sp.png) center 0/100% auto no-repeat;
  }
}
.p-contact__cow {
  position: absolute;
  top: -13.6rem;
  left: calc(50% + 42rem);
  width: 21.4rem;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-contact__cow {
    top: -7.6rem;
    left: calc(50% + 12rem);
    width: 12rem;
  }
}
.p-contact-define {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem 0;
  width: 80rem;
  margin: 5.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-contact-define {
    width: auto;
    margin: 0;
    gap: 0;
  }
}
.p-contact-define__ttl {
  position: relative;
  width: 23.4rem;
  font-size: 1.4rem;
  line-height: 1.36;
  color: #003287;
  text-align: left;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact-define__ttl {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    gap: 0 1rem;
    margin: 3rem 0 0.5rem;
  }
}
.p-contact-define__ttl span {
  position: absolute;
  top: 50%;
  left: 20rem;
  display: inline-block;
  background: #008aaf;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 1rem;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-contact-define__ttl span {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
.p-contact-define__ttl span.any {
  background: #b2b2b2;
}
.p-contact-define__ttl.is-last {
  align-self: flex-start;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-define__ttl.is-last {
    padding-top: 0;
  }
}
.p-contact-define__txt {
  position: relative;
  width: 52rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-contact-define__txt {
    width: 100%;
  }
}
.p-contact-define__txt .inner {
  position: relative;
}
.p-contact-define__txt .inner + .inner {
  margin-top: 1rem;
}
.p-contact-define__txt .inner:has(.error):has(input[aria-invalid=false]) + .inner {
  margin-top: 1rem;
}
.p-contact-define__txt .inner:has(.error) + .inner {
  margin-top: 2rem;
}
.p-contact-define__txt input {
  width: 100%;
  height: 3.4rem;
  font-size: 1.4rem;
  border-radius: 5rem;
  border: 1px solid #b2b2b2;
  padding: 0 1.6rem;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.p-contact-define__txt input.error {
  background: #f8e8ed;
}
.p-contact-define__txt input.zip {
  position: relative;
}
.p-contact-define__txt input.zip::before {
  content: "〒";
}
.p-contact-define__txt .zip {
  margin: 0 0 1rem;
}
.p-contact-define__txt textarea {
  width: 100%;
  height: 12rem;
  border: 1px solid #b2b2b2;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  padding: 1.2rem 1.6rem;
  resize: vertical;
  border-radius: 1.6rem;
}
.p-contact-define__txt.is-policy {
  width: 100%;
}
.p-contact-define__txt.is-policy p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.57;
}
.p-contact-define__txt p.error {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #ff0000;
  padding: 0 0 0 1.8rem;
}
.p-contact-define__content {
  height: 12rem;
  border: 1px solid #b2b2b2;
  padding: 1.6rem;
  border-radius: 1.6rem;
  margin-top: -2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-define__content {
    margin-top: 0;
  }
}
.p-contact-define__content p {
  font-size: 1.4rem;
}
.p-contact-define__content .simplebar-scrollbar::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1 !important;
  background: #b2b2b2;
}
.p-contact-define__content .simplebar-track {
  background: #e5e5e5;
  width: 0.8rem;
  border-radius: 0.5rem;
}
.p-contact-define__inner {
  height: 100%;
  padding-right: 2rem;
}
.p-contact-define-radio {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact-define-radio {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 2rem;
  }
}
.is-ja .p-contact-define-radio {
  justify-content: flex-start;
  gap: 0 2rem;
}
.p-contact-define-radio__item label {
  position: relative;
}
.p-contact-define-radio__item input[type=radio] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.p-contact-define-radio__item input[type=radio]:checked + span::before {
  background: url(../img/icn_radio_on.svg) 0 0/100% auto no-repeat;
}
.p-contact-define-radio__item span {
  position: relative;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  padding: 0 0 0 1.1em;
}
.p-contact-define-radio__item span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  background: url(../img/icn_radio_off.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.p-contact__btns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-contact__btns {
    margin: 3.5rem 0 0;
  }
}
.p-contact__btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25rem;
  height: 4rem;
  border-radius: 5rem;
  color: #fff;
  background: #003287;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media (any-hover: hover) {
  .p-contact__btn:hover {
    background: #5861A4;
  }
}
.p-contact__back {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25rem;
  height: 4rem;
  border-radius: 5rem;
  background: #fff;
  color: #003287;
  border: 1px solid #003287;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media (any-hover: hover) {
  .p-contact__back:hover {
    opacity: 0.5;
  }
}
.p-contact-check {
  position: relative;
  text-align: center;
  margin: 2.4rem 0 0;
}
.p-contact-check p.error {
  position: absolute;
  top: 100%;
  left: 0;
  text-align: center;
  width: 100%;
  font-size: 1rem;
  color: #ff0000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.p-contact-check label {
  position: relative;
}
.p-contact-check input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-contact-check input[type=checkbox]:checked + span::before {
  background: url(../img/icn_check_on.svg) 0 0/100% auto no-repeat;
}
.p-contact-check span {
  position: relative;
  display: inline-block;
  height: 2.1rem;
  line-height: 2.1rem;
  color: #003287;
  padding: 0 0 0 3rem;
}
.p-contact-check span::before {
  content: "";
  position: absolute;
  top: 0.05rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: url(../img/icn_check_off.svg) 0 0/auto 95% no-repeat;
}
.p-contact-thanks {
  text-align: center;
  background: #fff;
  padding-top: 20rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks {
    padding-top: 15rem;
  }
}
.p-contact-thanks__txt {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #003287;
  margin: 5rem 0 0;
}
.is-ja .p-contact-thanks__txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__txt {
    font-size: 1.4rem;
    margin: 3rem 0 0;
  }
}
.p-contact-thanks__txt + .p-contact-thanks__txt {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__txt + .p-contact-thanks__txt {
    margin: 2rem 0 0;
  }
}
.p-contact-thanks__btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25rem;
  height: 4rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 10rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__btn {
    margin: 5rem auto 0;
  }
}
.p-contact-thanks__btn a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 5rem;
  color: #fff;
  background: #003287;
}
@media (any-hover: hover) {
  .p-contact-thanks__btn a:hover {
    background: #5861A4;
  }
}
.p-contact-thanks .p-contact__btns {
  max-width: 66rem;
  justify-content: space-between;
  flex-flow: row-reverse;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks .p-contact__btns {
    gap: 2rem 0;
    flex-flow: column;
    margin: 3.5rem auto 0;
  }
}
.p-contact-thanks .p-contact-define {
  max-width: 66rem;
}
.p-contact-thanks .p-contact-define__ttl {
  width: 17.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks .p-contact-define__ttl {
    width: 100%;
  }
}
.p-contact-thanks .p-contact-define__ttl span {
  display: none;
}
.p-contact-thanks .p-contact-define__txt {
  width: calc(100% - 17.6rem);
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks .p-contact-define__txt {
    width: 100%;
  }
}