@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1234px) {
  html {
    font-size: 1.2965964344vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

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

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

input[type=checkbox] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-header {
  position: absolute;
  top: 2.7777777778vw;
  right: 0;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .l-header {
    top: 7.7333333333vw;
  }
}

.l-inner {
  max-width: 85.6944444444vw;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 92.5333333333vw;
    padding: 0 10px;
  }
}

.c-btn {
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.c-btn:hover {
  background-color: #0056b3;
}

.c-title {
  font-size: 1.5rem;
  color: green;
}
@media screen and (max-width: 1199px) {
  .c-title {
    color: blue;
  }
}
@media screen and (max-width: 999px) {
  .c-title {
    color: red;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    color: black;
  }
}

.p-cation {
  padding-bottom: 9.1666666667vw;
  background-color: #2E406A;
}
@media screen and (max-width: 767px) {
  .p-cation {
    padding-bottom: 17.3333333333vw;
  }
}

.p-cation__wrap {
  position: relative;
  padding: 6.5972222222vw 0;
}
@media screen and (max-width: 767px) {
  .p-cation__wrap {
    padding: 12.2666666667vw 0 17.3333333333vw;
  }
}
.p-cation__wrap::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 4.1666666667vw;
  background-image: url(../images/top/cation-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-cation__wrap::before {
    height: 9.3333333333vw;
    background-image: url(../images/top/cation-line-sp.png);
  }
}
.p-cation__wrap::after {
  position: absolute;
  display: inline-block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4.1666666667vw;
  background-image: url(../images/top/cation-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-cation__wrap::after {
    height: 9.3333333333vw;
    background-image: url(../images/top/cation-line-sp.png);
  }
}

.p-cation__text {
  padding: 0 5.1388888889vw;
  max-width: 82.2222222222vw;
  margin: 0 auto;
  background-color: #393A3A;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-cation__text {
    flex-direction: column-reverse;
    padding: 0;
    max-width: 87.2vw;
    background-color: unset;
  }
}

.p-cation__text p {
  color: #FFF;
  font-weight: 700;
  font-size: 1.9444444444vw;
}
@media screen and (max-width: 767px) {
  .p-cation__text p {
    padding: 8.5333333333vw 4vw;
    font-size: 3.7333333333vw;
    background-color: #393A3A;
    text-align: center;
  }
}

.p-cation__text p span {
  font-size: 2.5vw;
  color: #F7D800;
}
@media screen and (max-width: 767px) {
  .p-cation__text p span {
    font-size: 5.3333333333vw;
  }
}

.p-cation__text-img {
  max-width: 23.4027777778vw;
}
@media screen and (max-width: 767px) {
  .p-cation__text-img {
    max-width: 36.5333333333vw;
  }
}

.p-cation__note {
  position: relative;
  margin-top: -4.0277777778vw;
  padding: 2.1527777778vw 3.6111111111vw;
  background-color: #fff;
  font-weight: 700;
  font-size: 2.0833333333vw;
  color: #2E406A;
}
@media screen and (max-width: 767px) {
  .p-cation__note {
    margin-top: -8.5333333333vw;
    padding: 2.6666666667vw 2.1333333333vw;
    font-size: 3.7333333333vw;
    text-align: center;
  }
}

.p-cation__note span.big {
  font-size: 4.8vw;
}

.p-cation__note span.red {
  color: #F9262E;
  font-size: 2.6388888889vw;
}
@media screen and (max-width: 767px) {
  .p-cation__note span.red {
    font-size: 5.3333333333vw;
  }
}

.p-comparison__wrap {
  position: relative;
  padding-top: 4.0277777778vw;
  font-weight: 700;
  font-size: 2.6388888889vw;
  letter-spacing: 0.07em;
  color: #FFF;
  text-align: center;
  background-color: #456899;
}
@media screen and (max-width: 767px) {
  .p-comparison__wrap {
    padding-top: 9.0666666667vw;
    font-size: 5.3333333333vw;
  }
}
.p-comparison__wrap::before {
  content: "";
  position: absolute;
  height: 6.25rem;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #456899;
  left: 0;
  bottom: -6.1875rem;
}
@media screen and (max-width: 767px) {
  .p-comparison__wrap::before {
    height: 11.2vw;
    bottom: -11.2vw;
  }
}

.p-comparison__wrap span.small {
  font-size: 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__wrap span.small {
    display: inline-block;
    font-size: 3.7333333333vw;
    margin-bottom: 3.2vw;
  }
}

.p-comparison__wrap span.color {
  color: #EF9EA4;
}

.p-comparison__content {
  margin-top: -11.9444444444vw;
  padding: 23.2638888889vw 0 8.3333333333vw;
  background-image: linear-gradient(180deg, #DAECFF, #CCD5FF);
}
@media screen and (max-width: 767px) {
  .p-comparison__content {
    margin-top: -34.6666666667vw;
    padding: 56.5333333333vw 0 17.0666666667vw;
  }
}

.p-comparison__title {
  font-weight: 700;
  font-size: 3.3333333333vw;
  letter-spacing: 0.07em;
  color: #2E406A;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-comparison__title {
    font-size: 5.3333333333vw;
  }
}

.p-comparison__title span {
  background: linear-gradient(transparent 70%, #FFDFE1 70%);
}

.p-comparison__title.price {
  margin-top: 8.6805555556vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__title.price {
    margin-top: 12.8vw;
  }
}

.p-comparison__table-wrapper {
  margin-top: 2.9166666667vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__table-wrapper {
    position: relative;
    margin-top: 10.1333333333vw;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

.p-comparison__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.3472222222vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__table {
    border-spacing: 0.5333333333vw;
  }
}

@media screen and (max-width: 767px) {
  .p-comparison__table.width {
    width: 118.6666666667vw;
  }
}

.p-comparison__table thead th {
  padding: 1.6666666667vw 0;
  font-weight: 700;
  font-size: 1.9444444444vw;
  letter-spacing: 0.07em;
  color: #FFF;
  background-color: #4982D3;
}
@media screen and (max-width: 767px) {
  .p-comparison__table thead th {
    padding: 4.5333333333vw 0;
    font-size: 3.2vw;
  }
}

.p-comparison__table thead th.width220 {
  width: 15.2777777778vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__table thead th.width220 {
    width: 21.3333333333vw;
  }
}

.p-comparison__table thead th.width236 {
  width: 16.3888888889vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__table thead th.width236 {
    width: 18.4vw;
  }
}

.p-comparison__table thead th.width327 {
  width: 22.7083333333vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__table thead th.width327 {
    width: 22.1333333333vw;
  }
}

.p-comparison__table thead th.width385 {
  width: 26.7361111111vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__table thead th.width385 {
    width: 27.2vw;
  }
}

.p-comparison__table thead th.width402 {
  width: 27.9166666667vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__table thead th.width402 {
    width: 52vw;
  }
}

.p-comparison__table tbody td {
  padding: 1.3888888889vw 0;
  font-weight: 500;
  font-size: 1.8055555556vw;
  color: #505050;
  background-color: #FFF;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-comparison__table tbody td {
    font-size: 3.4666666667vw;
    padding: 8.8vw 0;
  }
}

.p-comparison__table tbody td span {
  font-weight: 800;
}

.p-comparison__textWrap {
  position: relative;
  margin-top: 6.7361111111vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-comparison__textWrap {
    margin-top: 13.6vw;
  }
}

.p-comparison__text {
  display: inline-block;
  padding: 0 0.5555555556vw;
  font-weight: 700;
  font-size: 2.5vw;
  letter-spacing: 0.05em;
  color: #2E406A;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-comparison__text {
    padding: 0 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
}

.p-comparison__text02 {
  margin-top: 0.3472222222vw;
  display: inline-block;
  padding: 0 0.5555555556vw;
  font-weight: 700;
  font-size: 2.0833333333vw;
  letter-spacing: 0.05em;
  color: #2E406A;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-comparison__text02 {
    margin-top: 0.6666666667vw;
    font-size: 3.7333333333vw;
    background-color: unset;
  }
}

@media screen and (max-width: 767px) {
  .p-comparison__text02 span.color {
    display: inline-block;
    background-color: #fff;
    padding: 0 2.1333333333vw;
  }
}

.p-comparison__text02 span.big {
  font-size: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__text02 span.big {
    font-size: 4.8vw;
  }
}

.p-comparison__text02 span.red {
  color: #F9262E;
}

@media screen and (max-width: 767px) {
  .p-comparison__text02 span.red .big {
    font-size: 6.4vw;
  }
}

.p-comparison__img01 {
  position: absolute;
  top: -5vw;
  left: -4.7222222222vw;
  max-width: 16.5277777778vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__img01 {
    top: -5.6vw;
    left: -4.8vw;
    max-width: 23.2vw;
  }
}

.p-comparison__img02 {
  position: absolute;
  top: -5vw;
  right: -4.7222222222vw;
  max-width: 16.5277777778vw;
}
@media screen and (max-width: 767px) {
  .p-comparison__img02 {
    top: -5.6vw;
    right: -5.8666666667vw;
    max-width: 22.1333333333vw;
  }
}

.p-comparison__table thead th.price {
  background-color: #808ABA;
}

.p-comparison__scroll-indicator {
  position: absolute;
  top: 36vw;
  left: 25.0666666667vw;
  width: 37.3333333333vw;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.p-contact {
  padding: 8.3333333333vw 0;
  background-color: #F0F7FF;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 17.0666666667vw 0;
  }
}

.p-contact__title {
  font-weight: 700;
  font-size: 3.3333333333vw;
  letter-spacing: 0.07em;
  color: #2E406A;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 5.3333333333vw;
  }
}

.p-contact__title span {
  background: linear-gradient(transparent 70%, #FFDFE1 70%);
}

.p-contact__form {
  margin-top: 6.8055555556vw;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-top: 7.2vw;
  }
}

.p-form {
  background-image: linear-gradient(90deg, #CCD5FF, #DAECFF);
  border-radius: 0.6944444444vw;
}
@media screen and (max-width: 767px) {
  .p-form {
    border-radius: 2.6666666667vw;
  }
}

.p-form__list {
  padding: 7.3611111111vw 8.4722222222vw;
}
@media screen and (max-width: 767px) {
  .p-form__list {
    padding: 10.6666666667vw 4.2666666667vw;
  }
}

.p-form__item:not(:first-of-type) {
  margin-top: 2.0138888889vw;
}
@media screen and (max-width: 767px) {
  .p-form__item:not(:first-of-type) {
    margin-top: 4vw;
  }
}

.p-form__labels {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-form__labels {
    flex-direction: column;
  }
}

.p-form__label {
  padding: 0.9027777778vw 0;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    padding: 0;
  }
}

.p-form__label-text {
  font-weight: 700;
  font-size: 1.5277777778vw;
  color: #2E406A;
}
@media screen and (max-width: 767px) {
  .p-form__label-text {
    font-size: 3.7333333333vw;
  }
}

.p-form__label-text span {
  padding: 0.2083333333vw 1.5972222222vw;
  margin-right: 0.8333333333vw;
  font-weight: 400;
  font-size: 1.25vw;
  color: #FFF;
  background-color: #B90201;
  border-radius: 0.6944444444vw;
}
@media screen and (max-width: 767px) {
  .p-form__label-text span {
    padding: 0.8vw 2.2666666667vw;
    margin-right: 1.6vw;
    font-size: 3.7333333333vw;
    border-radius: 1.3333333333vw;
  }
}

.p-form__label-text.black span {
  background-color: #484848;
}

.p-form__input {
  width: 68.4%;
}
@media screen and (max-width: 767px) {
  .p-form__input {
    width: 100%;
  }
}

.p-form__input-text,
.p-form__textarea {
  padding: 0.8680555556vw 1.0416666667vw;
  width: 100%;
  font-size: 1.5277777778vw;
  border: 1px solid #C0C0C0;
  border-radius: 0.3472222222vw;
}
@media screen and (max-width: 767px) {
  .p-form__input-text,
  .p-form__textarea {
    margin-top: 1.3333333333vw;
    padding: 1.8666666667vw 1.6vw;
    font-size: 4.2666666667vw;
    border-radius: 1.3333333333vw;
  }
}

.p-form__input-text::-moz-placeholder {
  color: #C0C0C0;
}

.p-form__input-text::placeholder {
  color: #C0C0C0;
}

.is-error-company,
.is-error-name,
.is-error-tel,
.is-error-email {
  color: #e00;
}

.p-form__textarea {
  height: 20.625vw;
}
@media screen and (max-width: 767px) {
  .p-form__textarea {
    height: 42.1333333333vw;
  }
}

.p-form__button {
  margin-top: 5vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__button {
    margin-top: 10.4vw;
  }
}

.p-form__button-text input {
  padding: 1.1805555556vw 0;
  width: 27.7777777778vw;
  font-weight: 700;
  font-size: 1.6666666667vw;
  color: #FFF;
  text-align: center;
  background-color: #0246B5;
  border: none;
  border-radius: 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .p-form__button-text input {
    padding: 3.8666666667vw 0;
    width: 78.6666666667vw;
    font-size: 4.2666666667vw;
    border-radius: 8vw;
  }
}

.p-delete {
  padding: 7.5vw 0;
  background-color: #E9F4FF;
}
@media screen and (max-width: 767px) {
  .p-delete {
    padding: 17.0666666667vw 0;
  }
}

.p-delete__title {
  padding: 2.2222222222vw 0;
  font-weight: 700;
  font-size: 2.3611111111vw;
  color: #2E406A;
  text-align: center;
  background-image: linear-gradient(90deg, #DAECFF, #CCD5FF);
}
@media screen and (max-width: 767px) {
  .p-delete__title {
    padding: 3.4666666667vw 0;
    font-size: 3.7333333333vw;
  }
}

.p-delete__title span {
  font-size: 2.6388888889vw;
  color: #F9262E;
}
@media screen and (max-width: 767px) {
  .p-delete__title span {
    font-size: 5.3333333333vw;
  }
}

.p-delete__img {
  margin-top: 1.8055555556vw;
}
@media screen and (max-width: 767px) {
  .p-delete__img {
    margin-top: 11.2vw;
  }
}

.p-faq {
  padding: 13.125vw 0 9.6527777778vw;
  background-color: #E9F4FF;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 24.8vw 0 22.6666666667vw;
  }
}

.p-faq__title {
  font-weight: 500;
  font-size: 2.6388888889vw;
  letter-spacing: 0.07em;
  color: #2E406A;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 4.2666666667vw;
    letter-spacing: 0.05em;
  }
}

.p-faq__title span.line {
  font-weight: 700;
  background: linear-gradient(transparent 70%, #FFDFE1 70%);
}

.p-faq__title span.color {
  color: #F9262E;
}

.p-faq-list {
  margin-top: 7.6388888889vw;
}
@media screen and (max-width: 767px) {
  .p-faq-list {
    margin-top: 16vw;
  }
}

.p-faq-list__item {
  -moz-filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.25));
  -ms-filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 767px) {
  .p-faq-list__item {
    -moz-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    -ms-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  }
}

.p-faq-list__item:not(:first-of-type) {
  margin-top: 3.8888888889vw;
}
@media screen and (max-width: 767px) {
  .p-faq-list__item:not(:first-of-type) {
    margin-top: 14.9333333333vw;
  }
}

.faq-list__item-question {
  font-weight: 700;
  font-size: 1.8055555556vw;
  letter-spacing: 0.07em;
  color: #FFF;
  background-color: #5A8BD2;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question {
    font-size: 3.8666666667vw;
  }
}

.faq-list__item-question span {
  margin-right: 1.7361111111vw;
  display: inline-block;
  padding: 0.5555555556vw 2.1527777778vw;
  font-size: 2.6388888889vw;
  color: #2E406A;
  background-color: #CDD6FF;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question span {
    margin-right: 3.2vw;
    padding: 3.7333333333vw 3.4666666667vw;
    font-size: 5.8666666667vw;
  }
}

.faq-list__item-answer {
  padding: 1.3888888889vw 5vw;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .faq-list__item-answer {
    padding: 5.8666666667vw 4.2666666667vw;
  }
}

.p-footer {
  padding: 3.0555555556vw 0 1.25vw;
  background-color: #2E406A;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 6.1333333333vw 0 4vw;
  }
}

.p-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3888888889vw;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    gap: 2.4vw;
  }
}

.p-footer__nav li:last-of-type {
  padding-left: 1.3888888889vw;
  border-left: 1px solid #BEBEBE;
}
@media screen and (max-width: 767px) {
  .p-footer__nav li:last-of-type {
    padding-left: 2.4vw;
  }
}

.p-footer__nav li {
  font-weight: 700;
  font-size: 1.5277777778vw;
}
@media screen and (max-width: 767px) {
  .p-footer__nav li {
    font-size: 3.2vw;
  }
}

.p-footer__copy {
  margin-top: 3.8194444444vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 8.8vw;
  }
}

.p-footer__copy small {
  font-size: 1.1111111111vw;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-footer__copy small {
    font-size: 2.6666666667vw;
  }
}

.p-fv {
  position: relative;
}

.p-fv__wrap {
  position: absolute;
  bottom: 5.3472222222vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-fv__wrap {
    bottom: 13.0666666667vw;
  }
}

.p-fv__wrap-text {
  font-weight: 500;
  font-size: 1.4583333333vw;
  letter-spacing: 0.03em;
  color: #2E406A;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fv__wrap-text {
    font-size: 3.6vw;
  }
}

.p-fv__wrap-text span {
  position: relative;
}
.p-fv__wrap-text span::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0;
  left: -2.6388888889vw;
  width: 1.125rem;
  height: 2rem;
  background-image: url(../images/top/fv-wrap01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-fv__wrap-text span::before {
    left: -6.6666666667vw;
    width: 0.75rem;
    height: 1.25rem;
  }
}
.p-fv__wrap-text span::after {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0;
  right: -1.6666666667vw;
  width: 1.125rem;
  height: 2rem;
  background-image: url(../images/top/fv-wrap02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-fv__wrap-text span::after {
    right: -5.3333333333vw;
    width: 0.75rem;
    height: 1.25rem;
  }
}

.p-fv__wrap-btn {
  position: relative;
  margin-top: 0.4861111111vw;
}
@media screen and (max-width: 767px) {
  .p-fv__wrap-btn {
    margin-top: 1.8666666667vw;
  }
}
.p-fv__wrap-btn::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 2.7777777778vw;
  width: 1.3125rem;
  height: 1.8125rem;
  background-image: url(../images/top/fv-btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-fv__wrap-btn::before {
    right: 5.0666666667vw;
    width: 0.78125rem;
    height: 1rem;
  }
}

.p-fv__wrap-btn a {
  padding: 1.3194444444vw 0;
  display: inline-block;
  width: 43.0555555556vw;
  font-weight: 700;
  font-size: 2.3611111111vw;
  letter-spacing: 0.03em;
  color: #FFF;
  text-align: center;
  background-color: #EF9EA4;
  border-radius: 3.4722222222vw;
}
@media screen and (max-width: 767px) {
  .p-fv__wrap-btn a {
    padding: 3.2vw 0;
    width: 78.6666666667vw;
    font-size: 4.2666666667vw;
    border-radius: 6.4vw;
  }
}

.p-header__inner {
  padding-right: 6.7361111111vw;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-right: 6.4vw;
  }
}

.p-header__btn a {
  padding: 0.9375vw 0;
  display: inline-block;
  width: 18.9583333333vw;
  font-weight: 700;
  font-size: 1.4583333333vw;
  letter-spacing: 0.03em;
  color: #FFF;
  text-align: center;
  background-color: #EF9EA4;
  border-radius: 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .p-header__btn a {
    padding: 1.3333333333vw 0;
    width: 34.1333333333vw;
    font-size: 2.6666666667vw;
    border-radius: 5.3333333333vw;
  }
}

.p-review {
  padding: 6.25vw 0 8.3333333333vw;
}
@media screen and (max-width: 767px) {
  .p-review {
    padding: 8.8vw 0 17.0666666667vw;
  }
}

.p-review__title {
  position: relative;
  padding: 2.1527777778vw 0;
  font-weight: 700;
  font-size: 2.6388888889vw;
  color: #FFF;
  text-align: center;
  background-color: #2E406A;
}
@media screen and (max-width: 767px) {
  .p-review__title {
    padding: 2.1333333333vw 0;
    font-size: 4.8vw;
  }
}
.p-review__title::before {
  content: "";
  position: absolute;
  height: 4.1666666667vw;
  width: 11.9444444444vw;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #2E406A;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4.0972222222vw;
}
@media screen and (max-width: 767px) {
  .p-review__title::before {
    height: 5.8666666667vw;
    width: 16vw;
    bottom: -4.8vw;
  }
}

.p-review__table {
  margin-top: 9.2361111111vw;
  width: 100%;
  border-collapse: separate;
  text-align: center;
  border-spacing: 0.3472222222vw;
}
@media screen and (max-width: 767px) {
  .p-review__table {
    margin-top: 21.8666666667vw;
    border-spacing: 0.6666666667vw;
  }
}

.p-review__table colgroup col:nth-child(1) {
  width: 20.4%;
}
@media screen and (max-width: 767px) {
  .p-review__table colgroup col:nth-child(1) {
    width: 18.654%;
  }
}

.p-review__table colgroup col:nth-child(2),
.p-review__table colgroup col:nth-child(3),
.p-review__table colgroup col:nth-child(4) {
  width: 26.8%;
}

@media screen and (max-width: 767px) {
  .p-review__table colgroup col:nth-child(2) {
    width: 29.97%;
  }
}

@media screen and (max-width: 767px) {
  .p-review__table colgroup col:nth-child(3),
  .p-review__table colgroup col:nth-child(4) {
    width: 24.46%;
  }
}

.p-review__table thead th {
  font-weight: 700;
  font-size: 2.6388888889vw;
  line-height: 1;
  color: #FFF;
  padding: 0.7986111111vw 0;
}
@media screen and (max-width: 767px) {
  .p-review__table thead th {
    font-size: 5.3333333333vw;
    padding: 3.6vw 0;
  }
}

.p-review__table thead th.blue {
  position: relative;
  padding-top: 0;
  background-color: #4982D3;
  display: flex;
  align-items: start;
  justify-content: center;
  height: 5.5555555556vw;
}
@media screen and (max-width: 767px) {
  .p-review__table thead th.blue {
    height: 12.5333333333vw;
  }
}
.p-review__table thead th.blue::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2.0833333333vw;
  background: #4982D3;
  top: -2.0138888889vw;
  left: 0;
  border-radius: 1.3888888889vw 1.3888888889vw 0 0;
}
@media screen and (max-width: 767px) {
  .p-review__table thead th.blue::before {
    height: 4.5333333333vw;
    top: -4.2666666667vw;
    border-radius: 2.9333333333vw 2.9333333333vw 0 0;
  }
}

.p-review__table thead th.black {
  background-color: #505050;
}

.p-review__table thead th:last-of-type {
  border-radius: 0 1.3888888889vw 0 0;
}
@media screen and (max-width: 767px) {
  .p-review__table thead th:last-of-type {
    border-radius: 0 2.9333333333vw 0 0;
  }
}

.p-review__table tbody th {
  font-weight: 500;
  font-size: 1.6666666667vw;
  color: #505050;
  background-color: #F1F8FF;
  padding: 2.2222222222vw 0;
  -moz-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
  -ms-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 767px) {
  .p-review__table tbody th {
    font-size: 3.2vw;
    padding: 8vw 0;
  }
}

.p-review__table tbody td {
  font-weight: 500;
  font-size: 1.6666666667vw;
  line-height: 1.2083333333;
  color: #505050;
  background-color: #EAEAEA;
  -moz-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
  -ms-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-review__table tbody td {
    font-size: 3.2vw;
    line-height: 1.1666666667;
    -moz-filter: drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.25));
    -ms-filter: drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.25));
  }
}

.p-review__table tbody td.our {
  color: #2E406A;
  background-color: #C9E4FF;
  -moz-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.25));
  -ms-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 767px) {
  .p-review__table tbody td.our {
    -moz-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.25));
    -ms-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.25));
  }
}

.p-review__table tbody td.our span {
  font-weight: 700;
}

.p-worries {
  position: relative;
  padding: 9.4444444444vw 0 15.2777777778vw;
  background-image: url(../images/top/worries-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-worries {
    padding: 17.6vw 0 19.7333333333vw;
    background-image: url(../images/top/worries-bg-sp.png);
  }
}
.p-worries::before {
  content: "";
  position: absolute;
  height: 5.8333333333vw;
  width: 34.7222222222vw;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #2E406A;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5.7638888889vw;
}
@media screen and (max-width: 767px) {
  .p-worries::before {
    height: 7.7333333333vw;
    width: 100%;
    bottom: -7.4666666667vw;
  }
}

.p-worries__inner {
  max-width: 62.1527777778vw;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-worries__inner {
    max-width: 92.8vw;
    padding: 0 10px;
  }
}

.p-worries__title {
  font-weight: 700;
  font-size: 2.9166666667vw;
  letter-spacing: 0.07em;
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-worries__title {
    font-size: 5.3333333333vw;
  }
}

.p-worries-list {
  margin-top: 9.7916666667vw;
}
@media screen and (max-width: 767px) {
  .p-worries-list {
    margin-top: 20.5333333333vw;
  }
}

.p-worries-list__item {
  position: relative;
}

.p-worries-list__item:not(:first-of-type) {
  margin-top: 0.8333333333vw;
}
@media screen and (max-width: 767px) {
  .p-worries-list__item:not(:first-of-type) {
    margin-top: 1.0666666667vw;
  }
}

.p-worries-list__item-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.1527777778vw;
  height: 7.1527777778vw;
  font-weight: 700;
  font-size: 2.6041666667vw;
  letter-spacing: 0.07em;
  color: #FFF;
  background-color: #737E99;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-worries-list__item-number {
    width: 12.2666666667vw;
    height: 12.2666666667vw;
    font-size: 4.2666666667vw;
  }
}

.p-worries-list__item-text {
  margin-top: -4.5138888889vw;
  max-width: 56.1111111111vw;
  padding: 1.5277777778vw 8.1944444444vw;
  margin-left: auto;
  background-image: linear-gradient(90deg, #E9EDF2, #C7CCD0);
  font-weight: 500;
  font-size: 1.5277777778vw;
  letter-spacing: 0.03em;
  color: #202933;
}
@media screen and (max-width: 767px) {
  .p-worries-list__item-text {
    margin-top: -8.5333333333vw;
    max-width: 83.7333333333vw;
    padding: 3.7333333333vw 10.9333333333vw;
    font-size: 3.2vw;
  }
}

.p-worries-list__item-text span {
  color: #F9262E;
}

.p-worries-list__item-img01 {
  position: absolute;
  top: 0;
  right: 4.375vw;
  max-width: 14.7222222222vw;
}
@media screen and (max-width: 767px) {
  .p-worries-list__item-img01 {
    top: 4.2666666667vw;
    right: 6.4vw;
    max-width: 21.8666666667vw;
  }
}

.p-worries-list__item-img02 {
  position: absolute;
  bottom: 0;
  right: 3.0555555556vw;
  max-width: 17.9861111111vw;
}
@media screen and (max-width: 767px) {
  .p-worries-list__item-img02 {
    bottom: 1.3333333333vw;
    right: 4.5333333333vw;
    max-width: 26.6666666667vw;
  }
}

.p-worries-list__item-img03 {
  position: absolute;
  bottom: 0;
  right: 4.7916666667vw;
  max-width: 11.1111111111vw;
}
@media screen and (max-width: 767px) {
  .p-worries-list__item-img03 {
    bottom: 2.6666666667vw;
    right: 8vw;
    max-width: 16.5333333333vw;
  }
}

.p-worries-list__item-img04 {
  position: absolute;
  bottom: 0;
  right: 4.7916666667vw;
  max-width: 13.75vw;
}
@media screen and (max-width: 767px) {
  .p-worries-list__item-img04 {
    bottom: 1.8666666667vw;
    right: 7.2vw;
    max-width: 20.5333333333vw;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
