@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

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

html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

button {
  padding: 0;
  color: inherit;
}

textarea {
  resize: vertical;
}

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

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

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

.c-breadcrumb {
  padding: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 1.5rem;
  }
}

.c-breadcrumb__lists {
  display: flex;
  align-items: center;
  gap: 1.25rem 0.625rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (any-hover: hover) {
  .c-breadcrumb__item a:hover {
    opacity: 0.5;
  }
}
.c-breadcrumb__item a span {
  text-decoration: underline;
}
.c-breadcrumb__item span {
  color: #7a7368;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.c-breadcrumb__item:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  border-radius: 2px;
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
    width: 1.625rem;
    height: 1.125rem;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.125rem;
  width: 100%;
  background-color: #1F326F;
  border-radius: 0.125rem;
  transition: 0.3s ease-in-out;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 0.375rem 0;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span:nth-child(1) {
  top: 0.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
}

.c-hamburger.open span:nth-child(3) {
  top: -0.5rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* アーカイブページのページ送り */
.c-pagenation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5.375rem;
  position: relative;
}
.c-pagenation .nav-links a {
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-pagenation .nav-links a:hover {
    opacity: 0.5;
  }
}
.c-pagenation .page-numbers {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
}
.c-pagenation .page-numbers.current {
  border-color: currentColor;
}
.c-pagenation .page-numbers.dots {
  margin-inline: 0.75rem;
  padding-bottom: 0.4375rem;
  border: 0;
}
.c-pagenation .page-numbers.prev, .c-pagenation .page-numbers.next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.c-pagenation .page-numbers.prev {
  left: 0;
}
.c-pagenation .page-numbers.prev::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  flex-shrink: 0;
}
.c-pagenation .page-numbers.next {
  right: 0;
}
.c-pagenation .page-numbers.next::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  flex-shrink: 0;
}

.c-single-pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5.375rem;
  position: relative;
  margin-top: 5rem;
}

.c-single-pagenation__prev a,
.c-single-pagenation__next a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-single-pagenation__prev a:hover,
  .c-single-pagenation__next a:hover {
    opacity: 0.5;
  }
}

.c-single-pagenation__prev a {
  left: 0;
}
.c-single-pagenation__prev a::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  flex-shrink: 0;
}

.c-single-pagenation__next a {
  right: 0;
}
.c-single-pagenation__next a::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 0.3125rem;
  -webkit-mask: url(../images/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon_arrow.svg) no-repeat center/contain;
  background-color: currentColor;
  flex-shrink: 0;
}

.c-single-pagenation__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  transition: 0.3s;
}
.c-single-pagenation__back a::before {
  content: "(";
  display: block;
}
.c-single-pagenation__back a::after {
  content: ")";
  display: block;
}
@media (any-hover: hover) {
  .c-single-pagenation__back a:hover {
    opacity: 0.5;
  }
}
.c-single-pagenation__back span {
  text-decoration: underline;
}

.l-inner {
  width: 100%;
  max-width: 1250px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 640px;
    padding-inline: 20px;
  }
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
.p-404-mv {
  position: relative;
  padding: 6.25rem 0 3.75rem;
  background: #ECF2FC url(../images/bg-light-wave.png) no-repeat center/cover;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-404-mv {
    padding: 5.625rem 0 2.5rem;
  }
}

.p-404-mv__inner {
  position: relative;
  z-index: 1;
}

.p-404-mv__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #1F326F;
}

.p-404-mv__title {
  margin-top: 0.625rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-404-mv__title {
    margin-top: 0.5rem;
    font-size: 1.75rem;
  }
}

.p-404 {
  padding: 5rem 0 7.5rem;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding: 3rem 0 5rem;
  }
}

.p-404__inner {
  width: 100%;
  max-width: 60rem;
  margin-inline: auto;
}

.p-404__lead {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-404__lead {
    font-size: 1.125rem;
    text-align: left;
  }
}

.p-404__text {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: 0.875rem;
    text-align: left;
  }
}

.p-404__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  width: 22.5rem;
  max-width: 100%;
  min-height: 3.75rem;
  padding: 1.125rem 3.5rem 1.125rem 2rem;
  background-color: #5099D8;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, .2);
  overflow: hidden;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-404__btn {
    width: 100%;
    max-width: 22.5rem;
    min-height: 3.5rem;
  }
}
@media (any-hover: hover) {
  .p-404__btn:hover {
    opacity: 0.85;
  }
}

.p-404__btn::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1.875rem;
  background-color: #67AAE3;
  border-radius: 0.3125rem 0.3125rem 3.75rem 3.75rem;
}

.p-404__btn-text {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 0.375rem rgba(0, 0, 0, .36);
}
@media screen and (max-width: 767px) {
  .p-404__btn-text {
    font-size: 1rem;
  }
}

.p-404__btn-arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-404__btn-arrow img {
  width: 0.625rem;
  height: auto;
}

.p-area {
  padding: 5rem 0;
  background: url(../images/bg-dot-pattern.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-area {
    padding: 2.5rem 0;
  }
}

.p-area__panel {
  display: grid;
  grid-template-columns: 1fr 13.3125rem;
  gap: 3.75rem;
  align-items: center;
  padding: 3.75rem 5rem;
  background-color: #fff;
  border: 0.3125rem solid #1F326F;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-area__panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem 1.25rem;
    border: 0.1875rem solid #1F326F;
  }
}

.p-area__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #1F326F;
}

.p-area__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-area__title {
    font-size: 1.75rem;
  }
}

.p-area__text {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-area__text {
    font-size: 0.875rem;
  }
}
.p-area__text span {
  color: #1F326F;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 1px;
}
@media screen and (max-width: 767px) {
  .p-area__text span {
    font-size: 0.9375rem;
  }
}

.p-area__text strong {
  font-weight: 700;
  color: #1F326F;
}

.p-area__map {
  display: flex;
  justify-content: center;
}

.p-area__map img {
  width: 100%;
  max-width: 13.3125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-area__map img {
    max-width: 10rem;
  }
}

.p-banso {
  position: relative;
  padding: 6.25rem 0;
  background: url(../images/bg-light-wave.png) no-repeat center top/cover, #ECF2FC;
}
@media screen and (max-width: 767px) {
  .p-banso {
    padding: 3.75rem 0;
  }
}

.p-banso__head {
  text-align: center;
}

.p-banso__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #1F326F;
}

.p-banso__title {
  margin-top: 0.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-banso__title {
    font-size: 1.625rem;
    line-height: 1.5384615385;
  }
}

.p-banso__desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-banso__desc {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    text-align: left;
  }
}
.p-banso__desc span {
  color: #1F326F;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 1px;
}
@media screen and (max-width: 767px) {
  .p-banso__desc span {
    font-size: 0.9375rem;
  }
}

.p-banso__desc strong {
  font-weight: 700;
  color: #1F326F;
}

.p-banso__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
  max-width: 64rem;
  margin-inline: auto;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-banso__steps {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

.p-banso__step {
  position: relative;
  padding: 2.5rem 1.5rem 2rem;
  background-color: #fff;
  border: 0.125rem solid #1F326F;
  border-radius: 0.4375rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 1rem rgba(31, 50, 111, .4);
}
@media screen and (max-width: 767px) {
  .p-banso__step {
    padding: 2.5rem 1.25rem 1.5rem;
  }
}
.p-banso__step:nth-child(1) .p-banso__step-icon {
  width: 3.25rem;
}
.p-banso__step:nth-child(2) .p-banso__step-icon {
  width: 4.125rem;
}
.p-banso__step:nth-child(3) .p-banso__step-icon {
  width: 4.5625rem;
}

.p-banso__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.5rem;
  width: 1rem;
  height: 1.75rem;
  background: url(../images/banso-arrow.svg) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-banso__step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -2.75rem;
    -webkit-transform: translateX(50%) rotate(90deg);
            transform: translateX(50%) rotate(90deg);
  }
}

.p-banso__step-num {
  position: absolute;
  top: -1.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.0625rem;
  height: 3.0625rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #1F326F;
  border-radius: 50%;
  text-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, .3);
}

.p-banso__step-icon {
  margin-top: 1rem;
}

.p-banso__step-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-banso__step-title {
    font-size: 1.375rem;
  }
}

.p-banso__step-icon img {
  width: 100%;
  height: auto;
}

.p-banso__step-list {
  width: 100%;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-banso__step-list {
    padding-left: 1.5rem;
    margin-top: 1.25rem;
  }
}

.p-banso__step-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.13em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-banso__step-list li {
    font-size: 0.875rem;
  }
}

.p-banso__step-list li img {
  width: 1rem;
  height: auto;
  flex-shrink: 0;
}

.p-contact-form {
  position: relative;
  padding: 5rem 0 6.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    padding: 3.5rem 0;
  }
}

.p-contact-form__inner {
  position: relative;
  z-index: 1;
}

.p-contact-form .wpcf7 {
  width: 100%;
  max-width: 54.3125rem;
  margin-inline: auto;
}

.p-contact-form__list {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.p-contact-form__row {
  display: grid;
  grid-template-columns: 15.4375rem 1fr;
  align-items: start;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }
}

.p-contact-form__label {
  padding-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-contact-form__label {
    padding-top: 0;
  }
}

.p-contact-form__label--small {
  font-size: 1rem;
  line-height: 1.5;
}

.p-contact-form__required {
  color: #CC3737;
}

.p-contact-form__sub {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000;
}

.p-contact-form__field {
  position: relative;
  min-width: 0;
}

.p-contact-form input[type=text],
.p-contact-form input[type=email],
.p-contact-form input[type=url],
.p-contact-form input[type=tel] {
  width: 100%;
  height: 2.4375rem;
  padding: 0 1rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  background-color: #fff;
  border: 2px solid #B3BDD5;
  border-radius: 0.1875rem;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  .p-contact-form input[type=text],
  .p-contact-form input[type=email],
  .p-contact-form input[type=url],
  .p-contact-form input[type=tel] {
    height: 3rem;
  }
}

.p-contact-form textarea {
  width: 100%;
  height: 8.75rem;
  padding: 0.75rem 1rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000;
  background-color: #fff;
  border: 2px solid #B3BDD5;
  border-radius: 0.1875rem;
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  .p-contact-form textarea {
    height: 6.875rem;
  }
}

.p-contact-form input::-webkit-input-placeholder,
.p-contact-form textarea::-webkit-input-placeholder {
  color: #D9D9D9;
  opacity: 1;
}

.p-contact-form input::-ms-input-placeholder,
.p-contact-form textarea::-ms-input-placeholder {
  color: #D9D9D9;
  opacity: 1;
}

.p-contact-form input::placeholder,
.p-contact-form textarea::placeholder {
  color: #D9D9D9;
  opacity: 1;
}

.p-contact-form .wpcf7-radio {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  padding-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form .wpcf7-radio {
    gap: 0.5rem 1.25rem;
  }
}

.p-contact-form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}

.p-contact-form .wpcf7-radio label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}

.p-contact-form .wpcf7-radio input[type=radio] {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.8125rem;
  height: 1.8125rem;
  margin: 0;
  background-color: #fff;
  border: 2px solid #B3BDD5;
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  .p-contact-form .wpcf7-radio input[type=radio] {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.p-contact-form .wpcf7-radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: #1F326F;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-contact-form .wpcf7-radio input[type=radio]:checked::after {
    width: 0.6875rem;
    height: 0.6875rem;
  }
}

.p-contact-form__privacy {
  margin-top: 2.8125rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-contact-form__privacy {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}

.p-contact-form__privacy a {
  color: #5099D8;
  text-decoration: underline;
}

.p-contact-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.p-contact-form .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.p-contact-form .wpcf7-acceptance input[type=checkbox] {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 1.3125rem;
  height: 1.3125rem;
  margin: 0;
  background-color: #fff;
  border: 2px solid #B3BDD5;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
}

.p-contact-form .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.0625rem;
  left: 0.3125rem;
  width: 0.4375rem;
  height: 0.8125rem;
  border: solid #1F326F;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-contact-form__submit {
  margin-top: 1.75rem;
  text-align: center;
}

.p-contact-form .wpcf7-submit {
  position: relative;
  width: 40.6875rem;
  max-width: 100%;
  height: 3.9375rem;
  padding: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(180deg, #67AAE3 0%, #67AAE3 30%, #5099D8 70%, #5099D8 100%);
  border: none;
  border-radius: 0.3125rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
  text-shadow: 0 0 0.375rem rgba(61, 120, 172, .7);
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact-form .wpcf7-submit {
    height: 3.5rem;
    font-size: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-contact-form .wpcf7-submit:hover {
    opacity: 0.85;
  }
}

.p-contact-form .wpcf7-spinner {
  display: block;
  margin: 0.5rem auto 0;
}

.p-contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #CC3737;
}

.p-contact-form .wpcf7-response-output {
  margin: 1.25rem auto 0;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  text-align: center;
}

.wpcf7-turnstile {
  text-align: center;
  margin-top: 1.875rem;
}

.p-contact-mv {
  position: relative;
  padding: 6.25rem 0 3.75rem;
  background: #ECF2FC url(../images/bg-light-wave.png) no-repeat center/cover;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-contact-mv {
    padding: 5.625rem 0 2.5rem;
  }
}

.p-contact-mv__inner {
  position: relative;
  z-index: 1;
}

.p-contact-mv__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #1F326F;
}

.p-contact-mv__title {
  margin-top: 0.625rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-contact-mv__title {
    margin-top: 0.5rem;
    font-size: 1.75rem;
  }
}

.p-contact {
  position: relative;
  padding: 4rem 0;
  background: #1F326F url(../images/bg-section-divider.png) no-repeat center/cover;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 2.5rem 0;
  }
}

.p-contact__lead {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: 0.9375rem;
    line-height: 1.6;
    text-align: left;
  }
}

.p-contact__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  width: 40.6875rem;
  max-width: 100%;
  height: 3.9375rem;
  background-color: #5099D8;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, .2);
  overflow: hidden;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact__btn {
    width: 100%;
    max-width: 22.5rem;
    height: 3.5rem;
  }
}
@media (any-hover: hover) {
  .p-contact__btn:hover {
    opacity: 0.85;
  }
}

.p-contact__btn::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2rem;
  background-color: #67AAE3;
  border-radius: 0.3125rem 0.3125rem 3.75rem 3.75rem;
}

.p-contact__btn-text {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 0.375rem rgba(0, 0, 0, .36);
}
@media screen and (max-width: 767px) {
  .p-contact__btn-text {
    font-size: 1rem;
  }
}

.p-contact__btn-arrow {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
}

.p-contact__btn-arrow img {
  width: 0.625rem;
  height: auto;
}

.p-drawer {
  position: fixed;
  inset: 0;
  z-index: 25;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}

.p-drawer.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.p-drawer__wrap {
  padding: 5rem 1.5rem 7.5rem;
}

.p-drawer__logo {
  display: flex;
  justify-content: center;
}

.p-drawer__logo a {
  display: block;
  width: 100%;
  max-width: 12.5rem;
}

.p-drawer__logo img {
  width: 100%;
  height: auto;
}

.p-drawer__nav {
  margin-top: 2.5rem;
}

.p-drawer__nav-list {
  display: flex;
  flex-direction: column;
}

.p-drawer__nav-item a {
  display: block;
  padding: 1.125rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1F326F;
  border-bottom: 1px solid rgba(31, 50, 111, .15);
}

body.is-fixed {
  overflow: hidden;
}

.p-fixed-cta {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-fixed-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 18;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    padding: 0 1.25rem;
    background-color: #5099D8;
    border-radius: 0.5rem;
    box-shadow: 0 0.375rem 1rem rgba(31, 50, 111, .3);
    overflow: hidden;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

@media screen and (max-width: 767px) {
  .p-fixed-cta.is-hidden {
    opacity: 0;
    -webkit-transform: translateY(1.25rem);
            transform: translateY(1.25rem);
    pointer-events: none;
  }
}

.p-fixed-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1.75rem;
  background-color: #67AAE3;
  border-radius: 0.5rem 0.5rem 3.125rem 3.125rem;
}

.p-fixed-cta__text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 0.375rem rgba(0, 0, 0, .36);
}

.p-fixed-cta__arrow {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
}

.p-fixed-cta__arrow img {
  width: 0.625rem;
  height: auto;
}

.p-footer {
  padding: 5rem 0 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 3rem 0 1rem;
  }
}

.p-footer__inner {
  text-align: center;
}

.p-footer__logo {
  display: flex;
  justify-content: center;
}

.p-footer__logo a {
  display: block;
  width: 100%;
  max-width: 21.25rem;
}

.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer__info {
  max-width: 58.25rem;
  margin-inline: auto;
  margin-top: 2.5rem;
  text-align: left;
  border-top: 0.125rem solid #EAEDF5;
}

.p-footer__info-row {
  display: grid;
  grid-template-columns: 9.375rem 1fr;
  align-items: start;
  padding: 1.25rem 2.8125rem;
  border-bottom: 0.125rem solid #EAEDF5;
}
@media screen and (max-width: 767px) {
  .p-footer__info-row {
    grid-template-columns: 5.625rem 1fr;
    padding: 1rem 0.5rem;
    gap: 0.5rem;
  }
}

.p-footer__info-row dt {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-footer__info-row dt {
    font-size: 0.8125rem;
  }
}

.p-footer__info-row dd {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.13em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-footer__info-row dd {
    font-size: 0.8125rem;
  }
}

.p-footer__info-row dd small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.13em;
  color: #000;
}

.p-footer__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  width: 19.9375rem;
  max-width: 100%;
  height: 3.1875rem;
  background-color: #5099D8;
  border-radius: 0.1875rem;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, .2);
  overflow: hidden;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-footer__btn {
    margin-top: 1.75rem;
  }
}
@media (any-hover: hover) {
  .p-footer__btn:hover {
    opacity: 0.85;
  }
}

.p-footer__btn::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1.4375rem;
  background-color: #67AAE3;
  border-radius: 0.1875rem 0.1875rem 3.125rem 3.125rem;
}

.p-footer__btn-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 0.375rem rgba(0, 0, 0, .36);
}

.p-footer__btn-arrow {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
}

.p-footer__btn-arrow img {
  width: 0.5rem;
  height: auto;
}

.p-footer__copy {
  display: block;
  margin-top: 4.375rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #000;
}

.p-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header {
    position: fixed;
    background-color: rgba(255, 255, 255, .96);
    box-shadow: 0 0.125rem 0.5rem rgba(31, 50, 111, .08);
  }
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem 0 2.5rem;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    padding: 0.9375rem 1.25rem 0 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 1rem;
    align-items: center;
  }
}

.p-header__logo {
  margin: 0;
  flex-shrink: 0;
}

.p-header__logo a {
  display: block;
  width: 13.875rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    width: 9.375rem;
  }
}

.p-header__logo-img {
  width: 100%;
  height: auto;
}

.p-header__logo-img--dark {
  display: none;
}

.p-header__logo-img--white {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-header__logo-img--white {
    display: none;
  }
  .p-header__logo-img--dark {
    display: block;
  }
}
.p-header__nav {
  margin-left: auto;
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
}
@media screen and (max-width: 1023px) {
  .p-header__nav-list {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
}

.p-header__nav-item a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2.3571428571;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 0.25rem rgba(0, 0, 0, .46);
  white-space: nowrap;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover {
    opacity: 0.7;
  }
}

.p-header--light .p-header__logo-img--white {
  display: none;
}

.p-header--light .p-header__logo-img--dark {
  display: block;
}

.p-header--light .p-header__nav-item a {
  color: #000;
  text-shadow: none;
}

.p-header__hamburger {
  position: relative;
  z-index: 30;
}

.p-header__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 1.25rem;
  width: 14.3125rem;
  height: 2.6875rem;
  background-color: #5099D8;
  border-radius: 0.1875rem;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, .2);
  overflow: hidden;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1023px) {
  .p-header__cta {
    margin-left: 0.625rem;
    width: 11.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__cta {
    display: none;
  }
}
@media (any-hover: hover) {
  .p-header__cta:hover {
    opacity: 0.85;
  }
}

.p-header__cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1.4375rem;
  background-color: #67AAE3;
  border-radius: 0.1875rem 0.1875rem 2.8125rem 2.8125rem;
}

.p-header__cta-text {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 0.375rem rgba(0, 0, 0, .36);
}

.p-header__cta-arrow {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
}

.p-header__cta-arrow img {
  width: 0.5rem;
  height: auto;
}

.p-lead {
  position: relative;
  padding: 3.4375rem 1.25rem;
  background-color: #ecf2fc;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-lead {
    padding: 2.5rem 1.25rem;
  }
}
.p-lead::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg-lead.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.p-lead__inner {
  max-width: 62.5rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.p-lead__title {
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.1111111111;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-lead__title {
    font-size: 1.25rem;
  }
}

.p-lead__text {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-lead__text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.8571428571;
    text-align: left;
  }
}

.p-message {
  padding: 6.25rem 0;
  background-color: #ECF2FC;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding: 3.75rem 0;
  }
}
.p-message::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bg-price.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.p-message__inner {
  position: relative;
  z-index: 1;
}

.p-message__wrap {
  display: grid;
  grid-template-columns: 1fr 33.125rem;
  gap: 3.125rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .p-message__wrap {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__wrap {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.p-message__content {
  padding-top: 1.25rem;
}

.p-message__head {
  text-align: center;
}

.p-message__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #1F326F;
}

.p-message__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-message__title {
    font-size: 1.75rem;
  }
}

.p-message__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}
.p-message__text + .p-message__text {
  margin-top: 1em;
}
.p-message__text span {
  color: #1F326F;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 1px;
}
@media screen and (max-width: 767px) {
  .p-message__text span {
    font-size: 0.9375rem;
  }
}

.p-message__photo {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-message__photo {
    margin-inline: auto;
    max-width: 26.25rem;
    width: 100%;
  }
}

.p-message__photo img {
  width: 100%;
  height: auto;
  border-radius: 0.3125rem;
}

.p-message__caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  text-align: right;
}

.p-mv {
  position: relative;
  width: 100%;
  height: 36.5rem;
  background: linear-gradient(180deg, #1D3A81 0%, #21448E 100%);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mv {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 47rem;
  }
}

.p-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.p-mv__bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__bg-overlay--1 {
  inset: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__bg-overlay--1 {
    display: none;
  }
}

.p-mv__bg-overlay--2 {
  inset: 0;
  opacity: 0.12;
  mix-blend-mode: screen;
}

.p-mv__bg-overlay--circle {
  inset: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__bg-overlay--circle {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top center;
       object-position: top center;
  }
}

.p-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 85.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    flex-direction: column;
    align-items: stretch;
    padding-top: 6.875rem;
    order: 1;
    width: 100%;
    max-width: none;
  }
}

.p-mv__content {
  flex-shrink: 0;
  width: 100%;
  max-width: 51.875rem;
  padding-left: 4.375rem;
}
@media screen and (max-width: 1023px) {
  .p-mv__content {
    width: 60%;
    padding-left: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    width: 100%;
    padding: 0 1.5rem;
  }
}

.p-mv__lead {
  font-size: 1.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, .26);
}
@media screen and (max-width: 767px) {
  .p-mv__lead {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.p-mv__lead span {
  font-size: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__lead span {
    font-size: 1.5625rem;
  }
}

.p-mv__title {
  margin-top: 0.625rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, .26);
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    margin-top: 0.5rem;
    font-size: 2rem;
    line-height: 1.4285714286;
    letter-spacing: 0.03em;
  }
}

.p-mv__divider {
  display: block;
  width: 46.875rem;
  max-width: 100%;
  height: 0.125rem;
  margin-top: 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mv__divider {
    width: 100%;
    height: 0.0625rem;
    margin-top: 1.25rem;
  }
}

.p-mv__desc {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, .26);
}
@media screen and (max-width: 767px) {
  .p-mv__desc {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.7142857143;
  }
}

.p-mv__photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 36.3125rem;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__photo {
    position: relative;
    width: 100%;
    height: 23.5rem;
    margin-top: auto;
    order: 2;
    clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 100%);
  }
}
.p-mv__photo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 55, 125, .1);
  position: absolute;
  top: 0;
  left: 0;
}

.p-mv__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-price {
  padding: 6.25rem 0;
  background: #ECF2FC url(../images/bg-price.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-price {
    padding: 3.75rem 0;
  }
}

.p-price__head {
  text-align: center;
}

.p-price__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #1F326F;
}

.p-price__title {
  margin-top: 0.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-price__title {
    font-size: 1.75rem;
  }
}

.p-price__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
  max-width: 58.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-price__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-price__card {
  padding: 2.5rem 1.75rem;
  background-color: #fff;
  border-radius: 0.5rem;
  border: 0.1875rem solid #507BB5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price__card {
    padding: 2rem 1.25rem;
  }
}

.p-price__card-title {
  padding-bottom: 1.25rem;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
  border-bottom: 0.125rem solid #507BB5;
}
@media screen and (max-width: 767px) {
  .p-price__card-title {
    font-size: 1.125rem;
  }
}

.p-price__card-wrap {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-price__card-price {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-price__card-price {
    font-size: 1.125rem;
  }
}

.p-price__card-num {
  font-size: 4.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1F326F;
  margin: 0 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-price__card-num {
    font-size: 2.75rem;
  }
}

.p-price__card-tax {
  margin-top: -0.625rem;
  margin-right: -1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  text-align: right;
}

.p-privacy-mv {
  position: relative;
  padding: 6.25rem 0 3.75rem;
  background: #ECF2FC url(../images/bg-light-wave.png) no-repeat center/cover;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-privacy-mv {
    padding: 5.625rem 0 2.5rem;
  }
}

.p-privacy-mv__inner {
  position: relative;
  z-index: 1;
}

.p-privacy-mv__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #1F326F;
}

.p-privacy-mv__title {
  margin-top: 0.625rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-privacy-mv__title {
    margin-top: 0.5rem;
    font-size: 1.75rem;
  }
}

.p-privacy {
  padding: 5rem 0 7.5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding: 3rem 0 5rem;
  }
}

.p-privacy__inner {
  width: 100%;
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-privacy__body {
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #000;
  word-wrap: anywhere;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-privacy__body {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-privacy__body p {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  word-wrap: anywhere;
  word-break: break-word;
}

.p-privacy__body p + p,
.p-privacy__body h2 + p,
.p-privacy__body h3 + p,
.p-privacy__body ol + p,
.p-privacy__body ul + p {
  margin-top: 1rem;
}

.p-privacy__body h2 {
  margin-top: 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-privacy__body h2 {
    margin-top: 2.25rem;
    font-size: 1.0625rem;
  }
}

.p-privacy__body h2:first-child {
  margin-top: 0;
}

.p-privacy__body h3 {
  margin-top: 1.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-privacy__body h3 {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}

.p-privacy__body ol,
.p-privacy__body ul {
  margin-top: 0.75rem;
  padding-left: 1.75rem;
}

.p-privacy__body ol {
  list-style: decimal;
}

.p-privacy__body ul {
  list-style: disc;
}

.p-privacy__body li {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  word-wrap: anywhere;
  word-break: break-word;
}

.p-privacy__body li + li {
  margin-top: 0.375rem;
}

.p-privacy__body ol ol,
.p-privacy__body ul ul,
.p-privacy__body ol ul,
.p-privacy__body ul ol {
  margin-top: 0.375rem;
}

.p-privacy__body a {
  color: #5099D8;
  text-decoration: underline;
  word-wrap: anywhere;
  word-break: break-word;
}

.p-privacy__body a:hover {
  opacity: 0.7;
}

.p-status {
  padding: 6.25rem 0 7.5rem;
  background: url(../images/bg-light-glas.png) no-repeat center top/cover, #ECF2FC;
}
@media screen and (max-width: 767px) {
  .p-status {
    padding: 3.75rem 0;
  }
}

.p-status__panel {
  position: relative;
  border: 0.3125rem solid #1F326F;
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 32.875rem;
}
@media screen and (max-width: 767px) {
  .p-status__panel {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
    border-width: 0.1875rem;
    overflow: hidden;
  }
}

.p-status__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #1F326F;
}

.p-status__title {
  margin-top: 0.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-status__title {
    font-size: 1.75rem;
    margin-top: -0.125rem;
  }
}

.p-status__body {
  padding: 3.75rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-status__body {
    padding: 1.75rem 1.25rem;
    order: 2;
  }
}

.p-status__lead {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1F326F;
}
@media screen and (max-width: 767px) {
  .p-status__lead {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.p-status__text {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-status__text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

.p-status__list {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background-color: #EBEEF6;
  border-radius: 0.4375rem;
}

.p-status__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.13em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-status__item {
    font-size: 0.875rem;
  }
}

.p-status__item img {
  width: 0.875rem;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-status__photo {
    order: 1;
  }
}

.p-status__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-status__photo img {
    height: auto;
    aspect-ratio: 4/3;
  }
}

.p-status__banner {
  margin-top: 3.75rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, #57A0DD 0%, #6793CF 100%);
  border-radius: 0.5rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-status__banner {
    margin-top: 1.25rem;
    padding: 1.5rem 1.25rem;
    text-align: left;
  }
}

.p-status__banner-lead {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-status__banner-lead {
    font-size: 0.875rem;
  }
}

.p-status__banner-text {
  margin-top: 0.75rem;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-status__banner-text {
    font-size: 1rem;
    line-height: 1.5;
    text-underline-offset: 0.25rem;
  }
}

.p-status__banner-note {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-status__banner-note {
    font-size: 0.8125rem;
  }
}

.p-strategy {
  padding: 6.25rem 0;
  background: url(../images/bg-light-glas.png) no-repeat center top/cover, #fff;
}
@media screen and (max-width: 767px) {
  .p-strategy {
    background: url(../images/bg-light-glas-sp.png) no-repeat center top/cover, #fff;
    padding: 3.75rem 0;
  }
}

.p-strategy__inner {
  position: relative;
}

.p-strategy__head {
  text-align: center;
}

.p-strategy__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #1F326F;
}

.p-strategy__title {
  margin-top: 0.5rem;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-strategy__title {
    font-size: 1.375rem;
    line-height: 1.6363636364;
  }
}
.p-strategy__title span {
  color: #1F326F;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-strategy__title span {
    font-size: 1.625rem;
  }
}

.p-strategy__desc {
  margin-top: 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.0625;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-strategy__desc {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.8571428571;
    text-align: left;
  }
}
.p-strategy__desc span {
  color: #1F326F;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-strategy__desc span {
    font-size: 0.9375rem;
  }
}

.p-strategy__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 58.375rem;
  margin-inline: auto;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-strategy__cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.p-strategy__card {
  position: relative;
  padding: 2rem 2.1875rem 1.875rem;
  border-radius: 0.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-strategy__card {
    padding: 1.5rem 1.25rem 1.5rem;
  }
}

.p-strategy__card--bad {
  background-color: #EFEFEF;
}

.p-strategy__card--good {
  background-color: #EAEDF5;
}

.p-strategy__card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-strategy__card-mark {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-strategy__card-mark {
    font-size: 2rem;
  }
}

.p-strategy__card-check {
  display: inline-block;
  width: 1.3125rem;
  height: 1.3125rem;
  border: 0.1875rem solid #CE5A5A;
  border-radius: 50%;
}

.p-strategy__card-title {
  font-size: 1.4375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-strategy__card-title {
    font-size: 1.125rem;
  }
}

.p-strategy__card-list {
  margin-top: 1.25rem;
}

.p-strategy__card-list--bad {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-strategy__card-list--bad {
    gap: 0.25rem;
  }
}

.p-strategy__card-list--good {
  display: flex;
  flex-direction: column;
}

.p-strategy__card-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-strategy__card-item--bad {
  width: 5.8125rem;
  height: 5.8125rem;
  border-radius: 50%;
  background-color: #fff;
  border: 0.125rem solid #4E4E4E;
}
@media screen and (max-width: 767px) {
  .p-strategy__card-item--bad {
    width: 4rem;
    height: 4rem;
  }
}
.p-strategy__card-item--bad:nth-child(odd) {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-strategy__card-item--bad:nth-child(odd) {
    margin-top: 2.25rem;
  }
}

.p-strategy__card-item--top {
  align-self: flex-end;
}

.p-strategy__card-item--bottom {
  align-self: flex-start;
}

.p-strategy__card-item--good {
  height: 2.9375rem;
  background-color: #fff;
  border: 0.125rem solid #A9B4D0;
  border-radius: 0;
}
.p-strategy__card-item--good:not(:first-child) {
  margin-top: -2px;
}

.p-strategy__card-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #4E4E4E;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-strategy__card-label {
    font-size: 0.75rem;
  }
}

.p-strategy__card-label--good {
  color: #4C75AD;
}

.p-strategy__card-note {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-strategy__card-note {
    font-size: 0.9375rem;
  }
}

.p-strategy__card-arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 0.75rem auto 0;
  border-style: solid;
  border-width: 0.5625rem 0.5625rem 0 0.5625rem;
  border-color: transparent transparent transparent transparent;
}

.p-strategy__card-arrow--bad {
  border-top-color: #000;
}

.p-strategy__card-arrow--good {
  margin-top: 0.75rem;
  margin-bottom: 0;
  border-top-color: #1F326F;
}

.p-strategy__card-summary {
  margin-top: 0.75rem;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  border-radius: 0.3125rem;
  text-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, .36);
}
@media screen and (max-width: 767px) {
  .p-strategy__card-summary {
    font-size: 0.9375rem;
    padding: 0.75rem;
  }
}

.p-strategy__card-summary--bad {
  background: linear-gradient(180deg, #4E4E4E 0%, #3C3C3C 100%);
}

.p-strategy__card-summary--good {
  background: linear-gradient(90deg, #4C75AD 0%, #6099E6 100%);
}

.p-strategy__banner {
  margin-top: 5rem;
  padding: 2.125rem 1.25rem;
  background: linear-gradient(180deg, #57A0DD 0%, #6793CF 100%);
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
}
@media screen and (max-width: 767px) {
  .p-strategy__banner {
    margin-top: 2.5rem;
    padding: 1.5rem 1rem;
  }
}

.p-strategy__banner-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.0555555556;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, .15);
}
@media screen and (max-width: 767px) {
  .p-strategy__banner-text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    text-align: left;
  }
}
.p-strategy__banner-text span {
  font-size: 1.375rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.375rem;
  margin-right: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-strategy__banner-text span {
    font-size: 0.9375rem;
    text-underline-offset: 0.25rem;
  }
}

.p-support {
  padding: 7.5rem 0;
  background-color: #1F326F;
  color: #000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-support {
    padding: 3.75rem 0;
  }
}
.p-support::before {
  content: "";
  display: block;
  width: 100%;
  height: 88.3601756955vw;
  background: url(../images/bg-support.png) no-repeat top center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.p-support__inner {
  position: relative;
  z-index: 1;
}

.p-support__head {
  text-align: center;
}

.p-support__en {
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
}

.p-support__title {
  margin-top: 0.5rem;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-support__title {
    font-size: 1.375rem;
    line-height: 1.6363636364;
  }
}

.p-support__title-em {
  font-size: 3.125rem;
  text-decoration: underline;
  text-underline-offset: 0.75rem;
  margin-inline: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-support__title-em {
    font-size: 1.75rem;
    text-underline-offset: 0.375rem;
  }
}

.p-support__block {
  margin-top: 3.125rem;
  padding: 3.75rem 7.5rem;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 1px 1rem rgba(0, 0, 0, .66);
}
@media screen and (max-width: 767px) {
  .p-support__block {
    margin-top: 2.5rem;
    padding: 1.5rem 1rem;
  }
}

.p-support__block-head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-support__block-head {
    display: block;
  }
}

.p-support__block-num {
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #1F326F;
}

.p-support__block-num span {
  display: block;
  margin-top: 0.25rem;
  font-size: 5.625rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-support__block-num span {
    font-size: 3.125rem;
  }
}

.p-support__block-headinner {
  flex: 1;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-support__block-headinner {
    padding-top: 0.5rem;
  }
}

.p-support__block-title {
  font-size: 2.1875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-support__block-title {
    font-size: 1.5rem;
  }
}

.p-support__block-body {
  margin-top: 2.8125rem;
}
.p-support__block-wrap {
  max-width: 48rem;
  margin-inline: auto;
}

.p-support__block-desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-support__block-desc {
    font-size: 0.875rem;
  }
}

.p-support__block-text {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.0625;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-support__block-text {
    font-size: 0.875rem;
    text-align: left;
  }
}
.p-support__block-text span {
  color: #1F326F;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 1px;
}
@media screen and (max-width: 767px) {
  .p-support__block-text span {
    font-size: 0.9375rem;
  }
}

.p-support__block-note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #4E4E4E;
}
@media screen and (max-width: 767px) {
  .p-support__block-note {
    font-size: 0.8125rem;
  }
}

.p-support__row {
  border-radius: 0.4375rem;
  border: 0.3125rem solid #1F326F;
  padding: 1.875rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-support__row {
    padding: 2rem 1.25rem 1.25rem;
    border-width: 0.1875rem;
  }
}
.p-support__row + .p-support__row {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-support__row + .p-support__row {
    margin-top: 2.5rem;
  }
}

.p-support__row-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-support__row-text {
    font-size: 0.875rem;
  }
}

.p-support__row-num {
  position: absolute;
  top: 50%;
  left: -1.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.625rem;
  height: 3.6875rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #1F326F;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-support__row-num {
    top: -1.375rem;
    left: 50%;
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.125rem;
  }
}

.p-support__row-list {
  margin-top: 1rem;
  padding: 1rem 1.25rem 1rem 3rem;
  background-color: #EAEDF5;
  border-radius: 0.4375rem;
  min-height: 6rem;
}
@media screen and (max-width: 767px) {
  .p-support__row-list {
    padding: 1rem;
    min-height: 0;
  }
}
.p-support__row-list + p {
  margin-top: 0.75rem;
}

.p-support__row-item {
  position: relative;
  padding-left: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-support__row-item {
    font-size: 0.875rem;
  }
}

.p-support__row-item::before {
  content: "";
  position: absolute;
  top: 0.6875rem;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #1F326F;
}

.p-support__sub {
  margin-top: 3.75rem;
  padding-bottom: 4.375rem;
  border-bottom: 2px solid #5099D8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-support__sub {
    margin-top: 2.5rem;
    padding-bottom: 3.125rem;
  }
}

.p-support__sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-support__sub-title {
    font-size: 1.25rem;
    line-height: 1.3;
    gap: 0.75rem;
  }
}

.p-support__sub-title::before,
.p-support__sub-title::after {
  content: "";
  flex: 1;
  height: 0.125rem;
  background-color: #5099D8;
  max-width: 15.25rem;
}
@media screen and (max-width: 767px) {
  .p-support__sub-title::before,
  .p-support__sub-title::after {
    max-width: 12.5rem;
  }
}

.p-support__sub-title span {
  flex-shrink: 0;
}

.p-support__sub-desc {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-support__sub-desc {
    font-size: 0.8125rem;
    text-align: left;
    margin-top: 0.5rem;
  }
}

.p-support__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-support__cols {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.p-support__col {
  padding: 1.75rem 2rem;
  border-radius: 0.5rem;
  text-align: left;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-support__col {
    padding: 1.25rem;
  }
}

.p-support__col--web {
  background: linear-gradient(135deg, #569fdd 0%, #6ab2ef 50%, #86c8f8 100%);
}

.p-support__col--offline {
  background: linear-gradient(135deg, #598fd8 0%, #79a3d9 50%, #7cabeb 100%);
}

.p-support__col-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-support__col-title {
    font-size: 1.375rem;
  }
}

.p-support__col-icon {
  flex-shrink: 0;
  width: 2.1875rem;
  height: 2.1875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-support__col-list {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-support__col-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-support__col-item {
    font-size: 0.875rem;
  }
}
.p-support__col-item + .p-support__col-item {
  margin-top: 0.125rem;
}

.p-support__col-item img {
  width: 0.875rem;
  height: auto;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.p-support__case-headline {
  margin-top: 3.75rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-support__case-headline {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-support__case-em {
  color: #1F326F;
}
.p-support__case-em.--large {
  font-size: 2.1875rem;
  display: inline-block;
  margin-right: 0.125rem;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-support__case-em.--large {
    font-size: 1.25rem;
    margin-top: -0.1875rem;
  }
}

.p-support__case {
  margin-top: 2rem;
  padding: 2.25rem;
  border-radius: 0.4375rem;
  background-color: #fff;
  border: 0.3125rem solid #1F326F;
}
.p-support__case::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 767px) {
  .p-support__case {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    border-width: 0.1875rem;
  }
}

.p-support__case-head {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-support__case-head {
    width: 100%;
    margin-bottom: 1rem;
    order: 1;
  }
}

.p-support__case-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.25rem;
  padding: 0.625rem 3.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #fff;
  background-color: #1F326F;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-support__case-tag {
    min-width: 6rem;
    font-size: 0.9375rem;
    padding: 0.375rem 1.25rem;
  }
}

.p-support__case-meta {
  width: 100%;
  max-width: 19.375rem;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 0.5rem;
  padding: 1.25rem 2.25rem;
  background-color: #F4F5F8;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 767px) {
  .p-support__case-meta {
    padding: 1rem 1.25rem;
    font-size: 0.8125rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.p-support__case-meta dt {
  margin: 0;
  color: #000;
  white-space: nowrap;
}

.p-support__case-meta dd {
  position: relative;
  margin: 0;
  padding-left: 1.25rem;
  color: #000;
}

.p-support__case-meta dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1rem;
  background-color: rgba(0, 0, 0, .25);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-support__case-box {
    order: 2;
  }
}

.p-support__case-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-support__case-text {
    font-size: 0.8125rem;
    line-height: 1.6923076923;
    order: 2;
  }
}
.p-support__case-text span {
  color: #1F326F;
  font-size: 1.125rem;
  font-weight: 700;
  margin-right: 1px;
}
@media screen and (max-width: 767px) {
  .p-support__case-text span {
    font-size: 0.875rem;
  }
}

.p-support__case-text + .p-support__case-text {
  margin-top: 1.25rem;
}

.p-support__case-text strong {
  font-weight: 700;
  color: #1F326F;
}

.p-support__case-graph {
  float: right;
}
@media screen and (max-width: 767px) {
  .p-support__case-graph {
    float: none;
    width: 100%;
    margin: 1.25rem 0 0;
    order: 3;
  }
}

.p-support__case-graph--01 {
  width: 100%;
  max-width: 25.9375rem;
}
@media screen and (max-width: 767px) {
  .p-support__case-graph--01 {
    width: 100%;
  }
}

.p-support__case-graph--02 {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-support__case-graph--02 {
    width: 100%;
  }
}

.p-support__case-graph img {
  width: 100%;
  height: auto;
}

.p-support__analyze {
  margin-top: 1.5rem;
  padding: 1.25rem 5rem;
  background-color: #EAEDF5;
  border-radius: 0.4375rem;
  display: flex;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-support__analyze {
    padding: 1.25rem;
    gap: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
}

.p-support__analyze-title {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-right: 4.375rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
  border-right: 1px solid #1F326F;
}
@media screen and (max-width: 767px) {
  .p-support__analyze-title {
    padding-right: 0;
    padding-bottom: 0.75rem;
    border-right: none;
    border-bottom: 1px solid #1F326F;
  }
}

.p-support__analyze-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  padding-block: 1rem;
}

.p-support__analyze-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-support__analyze-item {
    font-size: 0.875rem;
  }
}

.p-support__analyze-item::before {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.5rem;
  background: url(../images/check-navy.png) no-repeat center/contain;
}
/*# sourceMappingURL=style.css.map */
