@charset "UTF-8";
.p-page__wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 16px;
  padding: 16px 36px;
}

.p-page__wrapper.with-header {
  padding: 4px 0;
}
@media screen and (max-width: 750px) {
  .p-page__wrapper.with-header {
    padding: 0.5333333333vw 0;
  }
}

.p-page__header {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 40px;
  padding-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .p-page__header {
    row-gap: 5.3333333333vw;
    padding-bottom: 3.2vw;
  }
}

.p-page__title-wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 24px;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 750px) {
  .p-page__title-wrapper {
    padding: 1.6vw 3.2vw;
    border-top: 0.1333333333vw solid #DDDDDD;
    border-bottom: 0.1333333333vw solid #DDDDDD;
  }
}

.p-page__h1 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .p-page__h1 {
    font-size: 4.5333333333vw;
  }
}

.p-page__description-wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 24px;
}
@media screen and (max-width: 750px) {
  .p-page__description-wrapper {
    padding: 0 3.2vw;
  }
}

.p-page__description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .p-page__description {
    font-size: 2.8vw;
  }
}

.p-page__buttons {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 47px;
  padding: 0 24px;
}
@media screen and (max-width: 750px) {
  .p-page__buttons {
    padding: 0;
    row-gap: 9.6vw;
  }
}

.p-page__button-section {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 20px;
}
@media screen and (max-width: 750px) {
  .p-page__button-section {
    row-gap: 2.6666666667vw;
  }
}

.p-page__section-title {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #f7f7f7;
  padding: 8px 23px;
}
@media screen and (max-width: 750px) {
  .p-page__section-title {
    font-size: 4vw;
    padding: 1.0666666667vw 3.0666666667vw;
  }
}

.p-page__list--buttons {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(166px, 1fr));
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 20px;
}
@media screen and (max-width: 750px) {
  .p-page__list--buttons {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    -moz-column-gap: 4.5333333333vw;
         column-gap: 4.5333333333vw;
    row-gap: 3.4666666667vw;
  }
}

.p-page__item--button {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.p-page__item--button a {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: 1px solid #353535;
  border-radius: 100px;
  padding: 0 24px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-page__item--button a {
    min-height: 8.5333333333vw;
    font-size: 2.8vw;
    padding: 0 4.8vw;
    border-radius: 13.3333333333vw;
  }
}
.p-page__item--button a::after {
  content: "";
  width: 7px;
  height: 12px;
  background-color: #353535;
  -webkit-mask-image: url("../images/arrow-right.svg");
          mask-image: url("../images/arrow-right.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto 0;
  z-index: 2;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .p-page__item--button a::after {
    width: 0.9333333333vw;
    height: 1.6vw;
    right: 2.1333333333vw;
  }
}
.p-page__item--button a:hover {
  color: #fff;
  background-color: #353535;
}
.p-page__item--button a:hover::after {
  background-color: #fff;
  transform: translateX(5px);
}

.p-page-feature__header {
  width: 100%;
  aspect-ratio: 1200/352;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.p-page-feature__mv {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__mv {
    width: 100%;
    aspect-ratio: 710/352;
  }
}
.p-page-feature__mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-feature__header-content {
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__header-content {
    width: 100%;
    aspect-ratio: 710/352;
    justify-content: flex-start;
    align-items: center;
  }
}

.p-page-feature__header-content-inner {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 32.5px;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__header-content-inner {
    padding-left: 4%;
  }
}

.p-page-feature__catch {
  font-size: 1.875vw;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__catch {
    font-size: 4.5333333333vw;
  }
}

.p-page-feature__button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4375vw 3.1875vw;
  background-color: #fff;
  color: #353535;
  font-size: 1vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-radius: 6.25vw;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0px 0.1875vw 0.375vw rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1024px) {
  .p-page-feature__button {
    font-size: 2.8vw;
    box-shadow: 0px 0.4vw 0.8vw rgba(0, 0, 0, 0.16);
  }
}
.p-page-feature__button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4375vw;
  height: 0.75vw;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.375vw;
  margin: auto 0;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__button span {
    width: 0.9333333333vw;
    height: 1.6vw;
  }
}
.p-page-feature__button span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-feature__body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 40px;
  padding-top: 53px;
}
@media screen and (max-width: 1200px) {
  .p-page-feature__body {
    padding-top: 4.9333333333vw;
    row-gap: 5.3333333333vw;
  }
}

.p-page-feature__h2,
.p-page-merit__h2,
.p-page-price__h2,
.p-page-flow__h2,
.p-page-contact__h2 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
  text-align: center;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  padding: 16px 0;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__h2,
  .p-page-merit__h2,
  .p-page-price__h2,
  .p-page-flow__h2,
  .p-page-contact__h2 {
    font-size: 4.5333333333vw;
    padding: 4.9333333333vw 0;
    border-top: 0.1333333333vw solid #DDDDDD;
    border-bottom: 0.1333333333vw solid #DDDDDD;
    padding: 2.1333333333vw 0;
  }
}

.p-page-feature__h2 {
  letter-spacing: 0.09em;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__h2 {
    font-size: 4.5333333333vw;
    padding: 4.9333333333vw 0;
    border-top: 0.1333333333vw solid #DDDDDD;
    border-bottom: 0.1333333333vw solid #DDDDDD;
    padding: 2.1333333333vw 0;
    letter-spacing: 0.06em;
  }
}

.p-page-feature__lead {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__lead {
    font-size: 2.8vw;
    padding: 0 1.3333333333vw;
  }
}

.p-page-feature__list {
  width: 100%;
  max-width: 1120px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 120px;
  padding: 33px 0 82px 0;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__list {
    row-gap: 10.6666666667vw;
    padding: 4.4vw 0 10.9333333333vw 0;
  }
}

.p-page-feature__item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__item {
    flex-direction: column;
    row-gap: 2.6666666667vw;
  }
}
.p-page-feature__item.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__item.reverse {
    flex-direction: column;
  }
}

.p-page-feature__block--left {
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 40px;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__block--left {
    width: 100%;
    row-gap: 2.6666666667vw;
  }
}

.p-page-feature__block--right {
  width: calc(50% - 20px);
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__block--right {
    display: none;
  }
}

.p-page-feature__image--mobile {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
}
.p-page-feature__image--mobile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__image--mobile {
    display: block;
  }
}

.p-page-feature__block--right img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-feature__title {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 12px;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__title {
    align-items: center;
    row-gap: 1.3333333333vw;
  }
}
.p-page-feature__title span:nth-child(2) {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__title span:nth-child(2) {
    text-align: center;
    font-size: 4vw;
  }
}

.p-page-feature__number,
.p-page-merit__number,
.p-page-flow__number {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 36px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border: 1px solid #353535;
  border-radius: 100px;
  text-wrap: nowrap;
}
@media screen and (max-width: 1200px) {
  .p-page-feature__number,
  .p-page-merit__number,
  .p-page-flow__number {
    font-size: 2.4vw;
    padding: 0.8vw 3.8666666667vw;
  }
}

@media screen and (max-width: 1200px) {
  .p-page-flow__number {
    padding: 0.2666666667vw 2.9333333333vw;
  }
}

.p-page-feature__text {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-page-feature__text {
    font-size: 2.8vw;
  }
}

.p-page-merit {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
  padding-bottom: 92px;
}
@media screen and (max-width: 1200px) {
  .p-page-merit {
    padding-bottom: 12.2666666667vw;
    row-gap: 5.3333333333vw;
  }
}

.p-page-merit__list {
  width: 100%;
  max-width: 1120px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .p-page-merit__list {
    flex-direction: column;
    row-gap: 5.3333333333vw;
  }
}

.p-page-merit__item {
  width: 31.78%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 14px;
}
@media screen and (max-width: 1024px) {
  .p-page-merit__item {
    width: 100%;
    row-gap: 6.1333333333vw;
  }
}

.p-page-merit__visual {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 356/204;
}
.p-page-merit__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-merit__content {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 24px;
}
@media screen and (max-width: 1024px) {
  .p-page-merit__content {
    row-gap: 4.8vw;
  }
}

.p-page-merit__title {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 14px;
}
@media screen and (max-width: 1024px) {
  .p-page-merit__title {
    row-gap: 2.9333333333vw;
  }
}
.p-page-merit__title span:nth-child(2) {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-page-merit__title span:nth-child(2) {
    font-size: 4vw;
  }
}

.p-page-merit__text {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-page-merit__text {
    font-size: 2.8vw;
    padding: 0 1.3333333333vw;
  }
}
.p-page-merit__text::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #DDDDDD;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.p-page-price {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
  padding-bottom: 56px;
}
@media screen and (max-width: 1200px) {
  .p-page-price {
    padding-bottom: 12vw;
    row-gap: 5.3333333333vw;
  }
}

.p-page-price__content {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
}
@media screen and (max-width: 1200px) {
  .p-page-price__content {
    row-gap: 5.3333333333vw;
  }
}

.p-page-price__content-inner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  -moz-column-gap: 75px;
       column-gap: 75px;
}
@media screen and (max-width: 1024px) {
  .p-page-price__content-inner {
    flex-direction: column;
    row-gap: 20px;
  }
}

.p-page-price__block--left {
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .p-page-price__block--left {
    width: 100%;
    justify-content: center;
  }
}

.p-page-price__h3 {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-page-price__h3 {
    font-size: 4.5333333333vw;
  }
}
.p-page-price__h3 .price-number {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-page-price__h3 .price-number {
    font-size: 5.6vw;
  }
}
.p-page-price__h3 .price-tax {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-page-price__h3 .price-tax {
    font-size: 3.2vw;
  }
}

.p-page-price__list {
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 8px;
}
@media screen and (max-width: 1024px) {
  .p-page-price__list {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-page-price__item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.p-page-price__item span:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 17px;
}
@media screen and (max-width: 1024px) {
  .p-page-price__item span:nth-of-type(1) {
    width: 2.4vw;
    height: 2.2666666667vw;
  }
}
.p-page-price__item span:nth-of-type(1) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-page-price__item span:nth-of-type(2) {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-page-price__item span:nth-of-type(2) {
    font-size: 2.8vw;
  }
}

.p-page-price__box--gray {
  width: 100%;
  max-width: 849px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #f7f7f7;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-page-price__box--gray p {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.28;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .p-page-price__box--gray p {
    font-size: 2.1333333333vw;
  }
}

.p-page-flow {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .p-page-flow {
    padding-bottom: 12vw;
    row-gap: 5.3333333333vw;
  }
}

.p-page-flow__content {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
}

.p-page-flow__content-inner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  -moz-column-gap: 75px;
       column-gap: 75px;
}

.p-page-flow__list {
  width: 100%;
  max-width: 1120px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__list {
    flex-direction: column;
    row-gap: 5.3333333333vw;
    margin-top: 1.6vw;
  }
}

.p-page-flow__item {
  width: 100%;
  max-width: 254px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  padding: 0 8px;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item {
    max-width: 100%;
    flex-direction: row;
    -moz-column-gap: 4.5333333333vw;
         column-gap: 4.5333333333vw;
    row-gap: 0;
  }
}
.p-page-flow__item .p-page-flow__visual {
  width: 81px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item .p-page-flow__visual {
    width: 10.8vw;
    height: 10.2666666667vw;
  }
}
.p-page-flow__item .p-page-flow__visual::after {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item .p-page-flow__visual::after {
    display: block;
    content: "";
    background-image: url("../images/arrow-down.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 1.6vw;
    height: 0.9333333333vw;
    bottom: -2.6666666667vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-page-flow__item .p-page-flow__visual .img01 {
  width: 67px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item .p-page-flow__visual .img01 {
    width: 8.9333333333vw;
    height: 6.4vw;
  }
}
.p-page-flow__item .p-page-flow__visual .img02 {
  width: 66px;
  height: 76px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item .p-page-flow__visual .img02 {
    width: 8.8vw;
    height: 10.1333333333vw;
  }
}
.p-page-flow__item .p-page-flow__visual .img03 {
  width: 66px;
  height: 68px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item .p-page-flow__visual .img03 {
    width: 8.8vw;
    height: 9.0666666667vw;
  }
}
.p-page-flow__item .p-page-flow__visual .img04 {
  width: 81px;
  height: 67px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item .p-page-flow__visual .img04 {
    width: 10.8vw;
    height: 8.9333333333vw;
  }
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item .p-page-flow__visual.last::after {
    display: none;
  }
}
.p-page-flow__item .p-page-flow__title {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item .p-page-flow__title {
    text-align: left;
    font-size: 4vw;
  }
}
.p-page-flow__item .p-page-flow__title::after {
  content: "";
  width: 256px;
  height: 2px;
  background-color: #DDDDDD;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item .p-page-flow__title::after {
    width: 100%;
  }
}
.p-page-flow__item .p-page-flow__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__item .p-page-flow__text {
    width: 100%;
    font-size: 2.8vw;
  }
}

.p-page-flow__block--upper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__block--upper {
    width: 14.2666666667vw;
    flex-shrink: 0;
    row-gap: 1.3333333333vw;
  }
}

.p-page-flow__block--lower {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__block--lower {
    row-gap: 2.6666666667vw;
  }
}

.p-page-flow__line {
  width: 7px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .p-page-flow__line {
    display: none;
  }
}
.p-page-flow__line img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-contact {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1200px) {
  .p-page-contact {
    padding-bottom: 12vw;
    row-gap: 5.3333333333vw;
  }
}

.p-page-contact__content {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__content {
    row-gap: 5.3333333333vw;
  }
}

.p-page-contact__content-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 40px;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__content-inner {
    row-gap: 5.3333333333vw;
  }
}
.p-page-contact__content-inner p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__content-inner p {
    width: 100%;
    text-align: center;
    font-size: 2.8vw;
    padding: 0 1.3333333333vw;
  }
}

.p-page-contact__form-wrapper {
  width: 100%;
  max-width: 1120px;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 16px;
}
@media screen and (max-width: 750px) {
  .p-page-contact__form-wrapper {
    padding: 0 1.3333333333vw;
    margin-top: 1.1733333333vw;
  }
}

.p-page-contact__form {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 54px;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__form {
    row-gap: 0;
  }
}

.p-page-contact__form-item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__form-item {
    flex-direction: column;
    row-gap: 0.8vw;
  }
}
.p-page-contact__form-item .item-left {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  -moz-column-gap: 43px;
       column-gap: 43px;
  flex-grow: 1;
  padding-top: 10px;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__form-item .item-left {
    -moz-column-gap: 1.3333333333vw;
         column-gap: 1.3333333333vw;
    padding-top: 1.3333333333vw;
  }
}
.p-page-contact__form-item span {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  border-radius: 100px;
  padding: 5px 26px;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__form-item span {
    font-size: 2.4vw;
    padding: 0.6666666667vw 3.4666666667vw;
    border-radius: 13.3333333333vw;
  }
}
.p-page-contact__form-item span.required {
  background-color: #99B2C4;
}
.p-page-contact__form-item span.norequired {
  background-color: #ACABAB;
}
.p-page-contact__form-item label {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: #353535;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__form-item label {
    font-size: 2.8vw;
  }
}
.p-page-contact__form-item input,
.p-page-contact__form-item textarea {
  display: block;
  width: 613px;
  height: 64px;
  border-radius: 100px;
  padding: 0 26px;
  flex-shrink: 0;
  background-color: #f7f7f7;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  outline: none;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: #353535;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__form-item input,
  .p-page-contact__form-item textarea {
    width: 100%;
    height: 8.5333333333vw;
    padding: 0 3.4666666667vw;
    border-radius: 0.6666666667vw;
    box-shadow: inset 0 0 1.3333333333vw rgba(0, 0, 0, 0.1);
    font-size: 3.2vw;
  }
}
.p-page-contact__form-item input[name=your-message],
.p-page-contact__form-item textarea[name=your-message] {
  height: 245px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__form-item input[name=your-message],
  .p-page-contact__form-item textarea[name=your-message] {
    height: 32.6666666667vw;
    padding-top: 1.3333333333vw;
    padding-bottom: 1.3333333333vw;
  }
}
.p-page-contact__form-item input::-moz-placeholder, .p-page-contact__form-item textarea::-moz-placeholder {
  color: #969696;
}
.p-page-contact__form-item input::placeholder,
.p-page-contact__form-item textarea::placeholder {
  color: #969696;
}

.p-page-contact__button-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__button-wrapper {
    margin-top: 5.3333333333vw;
  }
}
.p-page-contact__button-wrapper::after {
  content: "";
  background-color: #fff;
  -webkit-mask-image: url("../images/arrow-right.svg");
          mask-image: url("../images/arrow-right.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 12px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto 0;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__button-wrapper::after {
    width: 1.6vw;
    height: 2.6666666667vw;
    right: 3.7333333333vw;
  }
}

.p-page-contact__form-button {
  width: 406px;
  height: 82px;
  background-color: #83ABC3;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 100px;
  text-align: center;
  border: none;
  outline: none;
  filter: drop-shadow(0px 7px 0px #4e7c96);
  transition: all 0.3s ease;
  margin-top: -10px;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__form-button {
    width: 54.1333333333vw;
    height: 10.9333333333vw;
    font-size: 4vw;
    margin-top: 0.8vw;
  }
}
.p-page-contact__form-button:hover {
  opacity: 0.8;
}
.p-page-contact__form-button:disabled {
  background-color: #ccc;
  color: #666;
  filter: none;
  cursor: not-allowed;
  opacity: 0.6;
}
.p-page-contact__form-button:disabled:hover {
  opacity: 0.6;
}

.p-page-contact__privacy-check {
  margin: 8px 0 0;
}
@media screen and (max-width: 1200px) {
  .p-page-contact__privacy-check {
    margin-top: 6vw;
  }
}
.p-page-contact__privacy-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  outline: none;
}
.p-page-contact__privacy-check input[type=checkbox]:checked + label span:first-child img {
  opacity: 1;
}
.p-page-contact__privacy-check label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .p-page-contact__privacy-check label {
    margin-top: 6vw;
    gap: 1.6vw;
  }
}
.p-page-contact__privacy-check label span:first-child {
  width: 26px;
  height: 26px;
  border: 2px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}
@media screen and (max-width: 750px) {
  .p-page-contact__privacy-check label span:first-child {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
    margin-top: 0.2666666667vw;
    border: 0.2666666667vw solid #ccc;
    border-radius: 0.4vw;
  }
}
.p-page-contact__privacy-check label span:first-child img {
  width: 28px;
  height: 28px;
  opacity: 0;
  transition: opacity 0.2s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  min-width: 28px;
  max-width: 28px;
  min-height: 28px;
  max-height: 28px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 750px) {
  .p-page-contact__privacy-check label span:first-child img {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    min-width: 3.7333333333vw;
    max-width: 3.7333333333vw;
    min-height: 3.7333333333vw;
    max-height: 3.7333333333vw;
  }
}
.p-page-contact__privacy-check label span:last-child {
  flex: 1;
  font-size: 2.1rem;
}
@media screen and (max-width: 750px) {
  .p-page-contact__privacy-check label span:last-child {
    font-size: 2.8vw;
  }
}

.p-page-contact__privacy-link {
  display: block;
  margin-top: 22px;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  text-decoration: underline;
  color: #353535;
}
@media screen and (max-width: 750px) {
  .p-page-contact__privacy-link {
    margin-top: 1.6vw;
    font-size: 2.1333333333vw;
  }
}
.p-page-contact__privacy-link:hover {
  text-decoration: none;
}

.p-page__mailed-wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 85px;
}
@media screen and (max-width: 750px) {
  .p-page__mailed-wrapper {
    padding-top: 11.3333333333vw;
    padding-bottom: 17.8666666667vw;
  }
}

.p-page__mailed {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
  row-gap: 32px;
}
@media screen and (max-width: 750px) {
  .p-page__mailed {
    row-gap: 4.2666666667vw;
  }
}

.p-page__mailed-visual {
  width: 139px;
  aspect-ratio: 139/86;
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .p-page__mailed-visual {
    margin-bottom: 2.4vw;
    width: 18.5333333333vw;
  }
}
.p-page__mailed-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page__mailed-title {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
  text-align: center;
  color: #353535;
}
@media screen and (max-width: 1200px) {
  .p-page__mailed-title {
    font-size: 3.2vw;
  }
}

.p-page__mailed-text {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: #353535;
}
@media screen and (max-width: 1200px) {
  .p-page__mailed-text {
    font-size: 2.1333333333vw;
  }
}

.p-page__mailed-button {
  width: 138px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: 1px solid #353535;
  border-radius: 100px;
  padding: 0 24px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .p-page__mailed-button {
    min-height: 8.5333333333vw;
    font-size: 2.8vw;
    padding: 0 4.8vw;
    border-radius: 13.3333333333vw;
  }
}
.p-page__mailed-button::after {
  content: "";
  width: 7px;
  height: 12px;
  background-color: #353535;
  -webkit-mask-image: url("../images/arrow-right.svg");
          mask-image: url("../images/arrow-right.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto 0;
  z-index: 2;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .p-page__mailed-button::after {
    width: 0.9333333333vw;
    height: 1.6vw;
    right: 2.1333333333vw;
  }
}
.p-page__mailed-button:hover {
  color: #fff;
  background-color: #353535;
}
.p-page__mailed-button:hover::after {
  background-color: #fff;
  transform: translateX(5px);
}

.page-content {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 24px;
  padding: 32px 0 80px;
}
@media screen and (max-width: 750px) {
  .page-content {
    row-gap: 3.2vw;
    padding: 8vw 0;
  }
}
.page-content .page-header {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 24px;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 750px) {
  .page-content .page-header {
    padding: 1.6vw 3.2vw;
    border-top: 0.1333333333vw solid #DDDDDD;
    border-bottom: 0.1333333333vw solid #DDDDDD;
  }
}
.page-content .page-body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 24px;
}
.page-content .wp-block-buttons.is-content-justification-center,
.page-content .wp-block-image.aligncenter,
.page-content .wp-block-group.aligncenter,
.page-content .wp-block-cover.aligncenter,
.page-content .wp-block-paragraph.has-text-align-center,
.page-content .wp-block-heading.has-text-align-center,
.page-content .wp-block-quote.is-style-large.has-text-align-center,
.page-content .wp-block-table.aligncenter,
.page-content .wp-block-video.aligncenter,
.page-content .wp-block-audio.aligncenter,
.page-content .wp-block-embed.aligncenter {
  align-self: center;
  width: 100%;
}
.page-content .wp-block-buttons.is-content-justification-right,
.page-content .wp-block-image.alignright,
.page-content .wp-block-group.alignright,
.page-content .wp-block-cover.alignright,
.page-content .wp-block-paragraph.has-text-align-right,
.page-content .wp-block-heading.has-text-align-right,
.page-content .wp-block-quote.is-style-large.has-text-align-right,
.page-content .wp-block-table.alignright,
.page-content .wp-block-video.alignright,
.page-content .wp-block-audio.alignright,
.page-content .wp-block-embed.alignright {
  align-self: flex-end;
  width: 100%;
}
.page-content .wp-block-buttons.is-content-justification-left,
.page-content .wp-block-image.alignleft,
.page-content .wp-block-group.alignleft,
.page-content .wp-block-cover.alignleft,
.page-content .wp-block-paragraph.has-text-align-left,
.page-content .wp-block-heading.has-text-align-left,
.page-content .wp-block-quote.is-style-large.has-text-align-left,
.page-content .wp-block-table.alignleft,
.page-content .wp-block-video.alignleft,
.page-content .wp-block-audio.alignleft,
.page-content .wp-block-embed.alignleft {
  align-self: flex-start;
  width: 100%;
}
.page-content h1 {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .page-content h1 {
    font-size: 4.5333333333vw;
  }
}
.page-content h2 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.44;
  background-color: #f7f7f7;
  padding: 17px 0 17px 25px;
}
@media screen and (max-width: 750px) {
  .page-content h2 {
    font-size: 4.2666666667vw;
    padding: 2.2666666667vw 0 2.2666666667vw 2.5333333333vw;
  }
}
.page-content h3 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.44;
  padding: 17px 0 17px 39px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .page-content h3 {
    font-size: 3.2vw;
    padding: 2.2666666667vw 0 2.2666666667vw 5.2vw;
  }
}
.page-content h3::before {
  content: "";
  display: block;
  width: calc(100% - 21px);
  height: 1px;
  border-bottom: 1px solid #DDDDDD;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 750px) {
  .page-content h3::before {
    width: calc(100% - 2.8vw);
  }
}
.page-content h4 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  padding: 17px 0 17px 50px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .page-content h4 {
    font-size: 3.2vw;
    padding: 2.2666666667vw 0 2.2666666667vw 6.6666666667vw;
  }
}
.page-content h4::before {
  content: "";
  display: block;
  width: calc(100% - 21px);
  height: 1px;
  border-bottom: 1px dotted #DDDDDD;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 750px) {
  .page-content h4::before {
    width: calc(100% - 2.8vw);
  }
}
.page-content > p:first-child,
.page-content .lead {
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
  .page-content > p:first-child,
  .page-content .lead {
    width: 96%;
    padding: 0;
  }
}
.page-content p {
  width: 87.8%;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .page-content p {
    font-size: 2.8vw;
    width: 84.6%;
  }
}
.page-content blockquote {
  width: 87.8%;
  margin: 0 auto;
  height: -moz-fit-content;
  height: fit-content;
  border: none;
  padding: 16px;
  background-color: #f7f7f7;
  position: relative;
}
@media screen and (max-width: 750px) {
  .page-content blockquote {
    width: 96%;
    padding: 2.1333333333vw;
  }
}
.page-content blockquote::before {
  content: "";
  background-image: url(../images/icon_quote.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 47px;
  height: 88px;
  position: absolute;
  left: 8px;
  top: -16px;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .page-content blockquote::before {
    width: 6.2666666667vw;
    height: 11.7333333333vw;
    left: 1.0666666667vw;
    top: -3.2vw;
  }
}
.page-content blockquote p {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .page-content blockquote p {
    font-size: 2.8vw;
  }
}
.page-content .wp-block-media-text {
  width: 87.8%;
  margin: 0 auto;
  padding: 0;
  -moz-column-gap: 34px;
       column-gap: 34px;
}
@media screen and (max-width: 750px) {
  .page-content .wp-block-media-text {
    width: 84.6%;
    row-gap: 2.1333333333vw;
  }
}
.page-content .wp-block-media-text .wp-block-media-text__content {
  margin: 0;
  padding: 0;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .page-content .wp-block-media-text .wp-block-media-text__content {
    grid-row: 1 !important;
  }
}
.page-content .wp-block-media-text .wp-block-media-text__content p {
  width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 750px) {
  .page-content .wp-block-media-text .wp-block-media-text__media {
    grid-row: 2 !important;
  }
}
.page-content ul {
  width: 87.8%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .page-content ul {
    width: 84.6%;
    margin: 0 auto;
  }
}
.page-content ul li {
  padding-left: 24px;
  position: relative;
  line-height: 2;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .page-content ul li {
    font-size: 2.8vw;
  }
}
.page-content ul li::before {
  content: "・";
  position: absolute;
  left: 0px;
  top: 0;
}
.page-content ol {
  counter-reset: ol-counter;
  width: 87.8%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .page-content ol {
    width: 84.6%;
    margin: 0 auto;
  }
}
.page-content ol li {
  padding-left: 24px;
  position: relative;
  line-height: 2;
  counter-increment: ol-counter;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .page-content ol li {
    font-size: 2.8vw;
    padding-left: 3.2vw;
  }
}
.page-content ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0px;
  top: 0;
  font-weight: bold;
}
.page-content img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-content a {
  text-decoration: underline;
}
.page-content table,
.page-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .page-content table,
  .page-content .wp-block-table table {
    font-size: 2.1333333333vw;
  }
}
.page-content table thead,
.page-content .wp-block-table table thead {
  background-color: #f7f7f7;
}
.page-content table thead th,
.page-content .wp-block-table table thead th {
  font-weight: 700;
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 750px) {
  .page-content table thead th,
  .page-content .wp-block-table table thead th {
    padding: 1.8666666667vw;
  }
}
.page-content table tbody tr,
.page-content .wp-block-table table tbody tr {
  border-bottom: 1px solid #DDDDDD;
}
.page-content table tbody tr:last-child,
.page-content .wp-block-table table tbody tr:last-child {
  border-bottom: none;
}
.page-content table tbody tr td,
.page-content .wp-block-table table tbody tr td {
  padding: 14px;
  vertical-align: top;
}
@media screen and (max-width: 750px) {
  .page-content table tbody tr td,
  .page-content .wp-block-table table tbody tr td {
    padding: 1.8666666667vw;
  }
}/*# sourceMappingURL=page.css.map */