@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: 850px) {
  html {
    font-size: 1.8823529412vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
}

img {
  width: 100%;
  height: auto;
}

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;
  }
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.l-inner {
  max-width: 850px;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 640px;
    padding: 0 30px;
  }
}

.l-second-inner {
  max-width: 1320px;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-second-inner {
    max-width: 640px;
    padding: 0 30px;
  }
}

.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-heading {
  position: relative;
  font-size: 2.1875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 1.5rem;
  }
}

.c-heading::after {
  position: absolute;
  bottom: -2.25rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 19.5625rem;
  height: 3.5rem;
  display: inline-block;
  background: url("../images/common/heading-line.svg") no-repeat center/contain;
}

.c-heading-img {
  max-width: 3.9375rem;
  margin: 0 auto;
}

.p-circle {
  width: 4.875rem;
  height: 4.875rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-circle {
    width: 2.875rem;
    height: 2.875rem;
  }
}

.p-circle__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 2.0625rem;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-circle__img {
    max-width: 1.4375rem;
  }
}

.circle-text {
  position: relative;
  width: 100%;
  height: 100%;
  animation: rotate-circle 18s linear infinite;
  border-radius: 50%;
}

.circle-text span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  font-size: 10px;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.circle-text span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  font-size: 0.625rem;
  color: #fff;
  white-space: pre;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .circle-text span {
    font-size: 0.4375rem;
  }
}

.p-contact {
  background-color: #14206C;
  padding: 2.3125rem 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 2rem 0 1.875rem;
  }
}

.p-contact__button {
  display: block;
  max-width: 19.6875rem;
  width: 100%;
  background: linear-gradient(90deg, #5C6BD1 0%, #717CC6 100%);
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 2.4375rem;
  padding: 0.4375rem;
  margin: 0 auto;
  letter-spacing: 0.17em;
}

.p-contact__content {
  position: relative;
  padding-bottom: 1.875rem;
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content {
    margin-top: 2.25rem;
  }
}

.p-contact__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 47%, rgba(255, 255, 255, 0) 100%);
}

.p-contact__content-title {
  font-size: 0.9375rem;
  text-transform: uppercase;
}

.p-contact__content-list {
  margin-top: 0.625rem;
}

.p-contact__content-list li {
  font-size: 0.6875rem;
}

.p-contact__accordion {
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__accordion {
    margin-top: 1.8125rem;
  }
}

.p-contact__accordion-title {
  position: relative;
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem;
  background-color: #060F49;
}

.p-contact__accordion-content {
  background-color: rgba(255, 255, 255, 0.06);
  padding: 0.75rem 0.75rem 1.8125rem;
  max-height: 12.75rem;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__accordion-content {
    padding: 0.75rem 0.75rem 0.8125rem;
  }
}

.p-contact__accordion-content:first-child {
  margin-top: 0;
}

.p-contact__accordion-content-text {
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.p-contact__accordion-content-list li {
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.p-contact__accordion-content-title {
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 0.5625rem;
}

.p-contact__accordion-content a {
  display: block;
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 0.25rem;
}

.p-contact__privacy-policy {
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy-policy {
    margin-top: 2.0625rem;
    letter-spacing: 0.1em;
  }
}

/*アコーディオン*/
.p-contact__accordion-title::after {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transform: rotate(-225deg);
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}

.p-contact__accordion-title.is-open::after {
  top: 45%;
  transform: rotate(-45deg);
}

/*連番カウンター*/
.u-numbered-list {
  counter-reset: item;
}

.u-numbered-list li {
  counter-increment: item;
  position: relative;
  padding-left: 1.5rem;
}

.u-numbered-list li::before {
  content: "（" counter(item) "）";
  position: absolute;
  left: 0;
}

.p-design {
  position: relative;
  background-color: #2E3A8A;
}

.p-design::before {
  position: absolute;
  z-index: 20;
  top: -5.16vw;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 7.66vw;
  background: url("../images/design/design-bg.svg") no-repeat center center/cover;
}
@media screen and (max-width: 399px) {
  .p-design::before {
    top: -15.2vw;
    height: 22.67vw;
    background: url("../images/design/design-bg-sp.svg") no-repeat center center/cover;
    aspect-ratio: 375/85;
  }
}

@media screen and (max-width: 767px) {
  .p-design__heading.c-heading {
    padding: 2.1875rem 0;
    letter-spacing: 0.2em;
  }
}

@media screen and (max-width: 767px) {
  .p-design__heading.c-heading::after {
    bottom: -0.625rem;
  }
}

.p-design__content {
  padding-bottom: 14rem;
  margin-top: 6.125rem;
}
@media screen and (max-width: 767px) {
  .p-design__content {
    padding-bottom: 9.375rem;
    margin-top: 2.0625rem;
  }
}
@media screen and (max-width: 399px) {
  .p-design__content {
    padding-bottom: 7.4375rem;
  }
}

.p-design__media {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-design__media {
    gap: 1.3125rem 0;
    flex-direction: column;
    align-items: center;
  }
}

.p-design__media.p-design__media--secondary {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-design__media.p-design__media--secondary {
    margin-top: 1.25rem;
  }
}

.p-design__media-img {
  max-width: 23rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-design__media-img {
    max-width: 100%;
  }
}

.p-design__media-text-wrap {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .p-design__media-text-wrap {
    width: 100%;
  }
}

.p-design__media-title {
  font-size: 0.9375rem;
  font-weight: 700;
}

.p-design__media-text {
  font-size: 0.8125rem;
  line-height: 1.53;
  margin-top: 0.75rem;
}

.p-design__merit {
  background: rgba(255, 255, 255, 0.09);
  border-radius: 0.5rem;
  padding: 0.875rem 3.25rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-design__merit {
    margin-top: 1.25rem;
    padding: 0.875rem 1rem 0.875rem 2.375rem;
  }
}

.p-design__merit-title {
  font-size: 0.9375rem;
  text-align: center;
}

.p-design__merit-list {
  margin-top: 0.75rem;
}

.p-design__merit-item {
  position: relative;
  font-size: 0.6875rem;
}

.p-design__merit-item::before {
  display: inline-block;
  content: "・";
  position: absolute;
  top: -0.05rem;
  left: -0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-design__merit-item::before {
    top: 0;
    left: -1.125rem;
  }
}

/*メッセージ*/
.p-design__message {
  margin-top: 9.6875rem;
}
@media screen and (max-width: 767px) {
  .p-design__message {
    margin-top: 4.4375rem;
  }
}

.p-design__message-img-wrap {
  max-width: 850px;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-design__message-img-wrap {
    max-width: 640px;
    padding: 0;
  }
}

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

.p-design__message-inner-outline {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-design__message-inner-outline {
    max-width: 640px;
  }
}

.p-design__message-inner {
  padding: 2.75rem 0 0;
  margin: 0 1.5625rem;
  background: linear-gradient(180deg, rgba(20, 32, 108, 0) 0%, rgba(20, 32, 108, 0.65) 33.5%, rgba(20, 32, 108, 0.65) 70.5%, rgba(20, 32, 108, 0) 100%);
}
@media screen and (max-width: 767px) {
  .p-design__message-inner {
    max-width: 640px;
    padding: 3rem 1.25rem 0;
  }
}

.p-design__message-heading-wrap {
  position: relative;
}

.p-design__message-heading-img {
  max-width: 7.75rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  top: -4.875rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.p-design__message-heading {
  font-size: 1.5625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-design__message-heading {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}

.p-design__message-content {
  padding: 0 3.875rem;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-design__message-content {
    padding: 0;
    margin-top: 4.125rem;
  }
}

.p-design__message-profile dt {
  font-size: 1.25rem;
}

.p-design__message-profile dd {
  font-size: 0.8125rem;
}

.p-design__message-list {
  margin-left: 0.6875rem;
  margin-top: 1.375rem;
}

.p-design__message-list li {
  position: relative;
  font-size: 0.6875rem;
}

.p-design__message-list li::before {
  display: inline-block;
  content: "・";
  position: absolute;
  top: -0.05rem;
  left: -0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-design__message-list li::before {
    top: 0;
    left: -0.875rem;
  }
}

.p-design__message-content-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1.375rem;
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-design__message-content-heading {
    margin-top: 1.375rem;
  }
}

.p-design__message-content-heading::before,
.p-design__message-content-heading::after {
  content: "";
  display: inline-block;
  flex: 1;
  width: 100%;
  height: 0.5px;
  background-color: #717CC6;
}

.p-design__message-content-heading span {
  position: relative;
}

.p-design__message-content-heading span::before,
.p-design__message-content-heading span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: url("../images/design/design-icon.svg") no-repeat center center/contain;
}

.p-design__message-content-heading span::before {
  left: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-design__message-content-heading span::before {
    left: -0.625rem;
  }
}

.p-design__message-content-heading span::after {
  right: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-design__message-content-heading span::after {
    right: -0.625rem;
  }
}

.p-design__message-content-text {
  font-size: 0.875rem;
  line-height: 1.71;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-design__message-content-text {
    font-size: 0.8125rem;
    line-height: 1.45;
    margin-top: 1.3125rem;
  }
}

.p-faq {
  background-color: #515CA2;
  padding: 2.8125rem 0 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 2.8125rem 0 4.9375rem;
  }
}

.p-faq__heading {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.p-faq__accordion {
  margin-top: 1.5rem;
}

.p-faq__accordion-item {
  position: relative;
}

.p-faq__accordion-item:nth-of-type(1):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 47%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.p-faq__accordion-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 47%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.p-faq__accordion-title {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 0.8125rem;
  padding: 0.4375rem 0.75rem;
  line-height: 1.55;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq__accordion-title {
    padding: 0.75rem 1.875rem 0.75rem 1.125rem;
  }
}

.p-faq__accordion-content {
  display: none;
  padding: 0.9375rem 1.5625rem 1.5rem;
  background: linear-gradient(180deg, rgba(20, 32, 108, 0) 0%, rgba(20, 32, 108, 0.65) 100%);
}
@media screen and (max-width: 767px) {
  .p-faq__accordion-content {
    padding: 0.375rem 1.5625rem 1.25rem;
  }
}

.p-faq__accordion-text {
  font-size: 0.75rem;
  line-height: 1.6;
}

.p-faq__accordion-text:nth-of-type(n + 2) {
  margin-top: 0.625rem;
}

/*アコーディオン*/
.p-faq__accordion {
  width: 100%;
}

.p-faq__accordion-title span {
  font-size: 1.25rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .p-faq__accordion-title span {
    margin-right: 0.5rem;
  }
}

.p-faq__accordion-title.is-open::after {
  top: 45%;
  transform: rotate(-45deg);
}

/* タイトル横のプラスマーク縦線 */
.p-faq__accordion-title::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0.75rem;
  width: 0.6875rem;
  height: 1px;
  background-color: #fff;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-faq__accordion-title::before {
    right: 0.75rem;
  }
}

/* タイトル横のプラスマーク横線 */
.p-faq__accordion-title::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0.75rem;
  width: 0.6875rem;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-faq__accordion-title::after {
    right: 0.75rem;
  }
}

/* アコーディオンが開いたとき縦線の変化 */
.p-faq__accordion-title.is-open::before {
  transform: rotate(180deg);
}

/* アコーディオンが開いたとき横線の変化 */
.p-faq__accordion-title.is-open::after {
  opacity: 0;
}

.p-kv {
  position: relative;
  background-color: #14206C;
  min-height: 43.75rem;
}

.p-kv__inner {
  position: relative;
  margin: 0 auto;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-kv__inner {
    overflow: hidden;
  }
}
@media screen and (max-width: 399px) {
  .p-kv__inner {
    padding-bottom: 0;
  }
}

.p-kv__img-wrap {
  position: relative;
  width: 100%;
  height: inherit;
}

.p-kv__img-wrap .is-opening {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  z-index: 1;
}

.p-kv__img-wrap .is-default {
  display: block;
  width: 100%;
  height: 100%;
}

.p-kv__img {
  width: 100%;
  aspect-ratio: 1280/828;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-kv__img {
    max-width: 100%;
    aspect-ratio: 375/812;
  }
}

.p-kv__logo {
  position: absolute;
  top: 12.125rem;
  left: 7.5rem;
  z-index: 2;
  width: 27vw;
}
@media screen and (max-width: 767px) {
  .p-kv__logo {
    top: 3.125rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 42.67vw;
    margin: 0 auto;
  }
}

.p-kv__text-wrap {
  position: absolute;
  top: 12.5rem;
  left: 2.0625rem;
  z-index: 20;
  padding-left: 5.375rem;
  margin-top: 16.41vw;
}
@media screen and (max-width: 767px) {
  .p-kv__text-wrap {
    left: 1.875rem;
    bottom: 50vw;
    top: initial;
    margin-top: 0;
    padding: 0;
  }
}
@media screen and (max-width: 399px) {
  .p-kv__text-wrap {
    top: 31.25rem;
    bottom: initial;
  }
}

.p-kv__title {
  font-size: clamp(2.1875rem, 0.7813rem + 2.9297vw, 3.125rem);
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-kv__title {
    font-size: clamp(2.1875rem, 1.5164rem + 3.3557vw, 3.125rem);
  }
}
@media screen and (max-width: 399px) {
  .p-kv__title {
    font-size: 2.1875rem;
  }
}

.p-kv__bg {
  width: 100%;
  height: 14.91vw;
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(22, 38, 136, 0.6392156863) 40%, #14206c 100%);
  z-index: 10;
  margin-top: -14.83vw;
}
@media screen and (max-width: 767px) {
  .p-kv__bg {
    height: 17.5rem;
  }
}
@media screen and (max-width: 399px) {
  .p-kv__bg {
    height: 38.91vw;
  }
}

.p-kv__link {
  position: fixed;
  bottom: 5.25rem;
  right: 1.9375rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .p-kv__link {
    bottom: 1.875rem;
    right: 1.875rem;
  }
}

/* フェードイン用 */
.p-kv__link.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.p-point {
  background-color: #2D3985;
  padding-top: 3.125rem;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .p-point {
    padding-top: 3.6875rem;
  }
}

.p-point__content {
  position: relative;
  background: linear-gradient(180.1deg, #515CA2 50%, rgba(81, 92, 162, 0) 100%);
  padding-top: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-point__content {
    padding-top: 2.25rem;
  }
}

.p-point__content.p-point-01 {
  margin-top: 10.5rem;
  padding-top: 1.25rem;
}
@media screen and (max-width: 1499px) {
  .p-point__content.p-point-01 {
    margin-top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__content.p-point-01 {
    margin-top: 30vw;
    padding-top: 2.25rem;
  }
}

.p-point__content.p-point-02 {
  position: relative;
  margin-top: -1.375rem;
  padding-bottom: 11.875rem;
}
@media screen and (max-width: 767px) {
  .p-point__content.p-point-02 {
    padding-bottom: 20.73vw;
    margin-top: -1.75rem;
  }
}

.p-point__content.p-point-02::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: "";
  width: 19%;
  max-width: 15rem;
  aspect-ratio: 249/483;
  background: url("../images/point/point02-decoration.png") no-repeat center center/cover;
  opacity: 0.46;
}
@media screen and (max-width: 767px) {
  .p-point__content.p-point-02::after {
    background: url("../images/point/point02-decoration-sp.png") no-repeat center center/cover;
    top: -14rem;
    width: 34%;
    max-width: 7.625rem;
    aspect-ratio: 133/347;
    mix-blend-mode: overlay;
    opacity: 0.54;
  }
}

.p-point__content.p-point-03 {
  padding-bottom: 0;
  padding-bottom: 10.4375rem;
}
@media screen and (max-width: 767px) {
  .p-point__content.p-point-03 {
    padding-bottom: 29vw;
  }
}

.p-point__content.p-point-04 {
  padding-bottom: 11.625rem;
}
@media screen and (max-width: 767px) {
  .p-point__content.p-point-04 {
    padding-bottom: 18vw;
  }
}

.p-point__content.p-point-05 {
  padding-bottom: 8.4vw;
}
@media screen and (max-width: 767px) {
  .p-point__content.p-point-05 {
    margin-top: 4.875rem;
    padding: 0;
    padding-bottom: 1vw;
  }
}

.p-point__content-heading {
  font-size: 1.5625rem;
  font-weight: 500;
  text-align: center;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-point__content-heading {
    padding-top: 0;
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-point__content-heading.p-point__content-heading--small {
    font-size: 1.125rem;
  }
}

/*point共通レイアウト*/
.p-point__media {
  display: flex;
  align-items: center;
  gap: 0 2.5625rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-point__media {
    flex-direction: column;
    gap: 0.875rem 0;
    margin-top: 2.625rem;
  }
}

.p-point__media:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-point__media:nth-child(odd) {
    flex-direction: column;
  }
}

.p-point__media:nth-of-type(n + 2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-point__media:nth-of-type(n + 2) {
    margin-top: 2rem;
  }
}

.p-point__media-img {
  max-width: 23.0625rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-point__media-img {
    max-width: 100%;
  }
}

.p-point__media-text {
  width: 50%;
  font-size: 0.875rem;
  line-height: 1.71;
}
@media screen and (max-width: 767px) {
  .p-point__media-text {
    width: 100%;
    font-size: 0.8125rem;
    line-height: 1.53;
  }
}

/*point01*/
.p-point-01 .p-point__media-text {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-point-01 .p-point__media-text {
    margin-top: 0;
  }
}

.p-point-01__graph {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-point-01__graph {
    margin-top: 1.1875rem;
  }
}

.p-point-01__graph-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-point-01__arrow {
  max-width: 3.0625rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 1.25rem auto 0;
}

.p-point-01__care {
  margin-top: 2.1875rem;
  padding-bottom: 15.125rem;
}
@media screen and (max-width: 767px) {
  .p-point-01__care {
    margin-top: 0.625rem;
    padding-bottom: 13rem;
  }
}

.p-point-01__care-text {
  font-size: 1.5625rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-point-01__care-text {
    font-size: 1.1875rem;
    line-height: 1.5;
  }
}

.p-point-01__care-text span {
  position: relative;
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-point-01__care-text span {
    font-size: 1.4375rem;
  }
}

.p-point-01__care-text span::after {
  position: absolute;
  bottom: -1.125rem;
  left: 0;
  display: block;
  content: "";
  width: 8.6875rem;
  height: 1.625rem;
  background: url("../images/point/point01-under-line.svg") no-repeat center bottom/cover;
}

.p-point-01__care-wrap {
  display: flex;
  gap: 0 2.0625rem;
  justify-content: space-between;
  width: 49%;
  margin: 2rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-point-01__care-wrap {
    width: 100%;
    justify-content: center;
    gap: 0 1.4375rem;
  }
}

.p-point-01__care-img-wrap {
  position: relative;
  max-width: 11.3125rem;
}

.p-point-01__care-img {
  position: absolute;
  top: 5rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-point-01__care-img {
    top: 3.625rem;
  }
}

.p-point-01__care-img img {
  max-width: 5.125rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-point-01__care-img-wrap p {
  display: grid;
  align-content: center;
  width: 100%;
  min-height: 2.125rem;
  font-size: 1rem;
  line-height: 1.31;
  position: absolute;
  top: 1.875rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-point-01__care-img-wrap p {
    top: 0.875rem;
    font-size: 0.8125rem;
  }
}

/*point2*/
.p-point-02__media {
  position: relative;
  margin-top: 1.75rem;
}

.p-point-02__media-img {
  max-width: 26.1875rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.p-point-02__media-text-wrap {
  position: absolute;
  bottom: -1.8125rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-point-02__media-text-wrap {
    bottom: -1.875rem;
    width: 71%;
  }
}

.p-point-02__media-text {
  font-size: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-point-02__media-text {
    font-size: 1.75rem;
  }
}

.p-point-02__media-text span {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-point-02__media-text span {
    font-size: 0.9375rem;
  }
}

.p-point-02__comment {
  position: relative;
  width: 52%;
  height: 100%;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-point-02__comment {
    width: 100%;
    margin: 4.375rem auto 0;
  }
}

.p-point-02__comment::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.25rem;
  right: -0.375rem;
  width: 1.625rem;
  height: 1px;
  background-color: #FFF;
  transform: rotate(40deg);
}

.p-point-02__comment::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.25rem;
  left: -0.375rem;
  width: 1.625rem;
  height: 1px;
  background-color: #FFF;
  transform: rotate(-40deg);
}

.p-point-02__comment-wrap::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.25rem;
  right: -0.375rem;
  width: 1.625rem;
  height: 1px;
  background-color: #FFF;
  transform: rotate(144deg);
}

.p-point-02__comment-wrap::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.25rem;
  left: -0.375rem;
  width: 1.625rem;
  height: 1px;
  background-color: #FFF;
  transform: rotate(-144deg);
}

.p-point-02__comment-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0 1.6875rem;
  padding: 0.875rem 1.5625rem;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .p-point-02__comment-wrap {
    gap: 0 1.0625rem;
    width: 100%;
    padding: 1.25rem;
  }
}

.p-point-02__comment-img {
  max-width: 6.3125rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-point-02__comment-text {
  font-size: 0.8125rem;
  line-height: 1.69;
  letter-spacing: 0.1em;
}

/*point3*/
.p-point__media-img-position {
  position: relative;
  max-width: 23.0625rem;
}
@media screen and (max-width: 767px) {
  .p-point__media-img-position {
    max-width: 100%;
  }
}

.p-point__media-img-position .p-point__media-img {
  max-width: 100%;
}

.p-point__media-circle-img {
  position: absolute;
  bottom: -0.25rem;
  right: -2rem;
  max-width: 6.1875rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-point__media-circle-img {
    bottom: initial;
    right: 0.3125rem;
    top: 0.3125rem;
  }
}

/*point4*/
.p-point-04__media {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-point-04__media {
    margin-top: 1.5625rem;
  }
}

.p-point-04__media-list-item:not(:first-child) {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-point-04__media-list-item:not(:first-child) {
    margin-top: 1rem;
  }
}

.p-point-04__media-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-point-04__media-title {
    font-size: 0.8125rem;
  }
}

.p-point-04__media-title::before,
.p-point-04__media-title::after {
  display: inline-block;
  content: "";
  width: 1.5625rem;
  height: 1px;
  background-color: #FFF;
}

.p-point-04__media-wrap {
  display: flex;
  justify-content: center;
  gap: 0 1.5rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-point-04__media-wrap {
    gap: 0 0.5625rem;
    margin-top: 0.6875rem;
  }
}

.p-point-04__media-list-img {
  max-width: 24.25rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 388/163;
}
@media screen and (max-width: 767px) {
  .p-point-04__media-list-img {
    min-width: 50%;
    aspect-ratio: 153/89;
  }
}

.p-point-04__media-img {
  max-width: 29.375rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-point-04__media-img {
    margin: 1.875rem auto 0;
  }
}

.p-point-04__media-list-video {
  max-width: 24.25rem;
  aspect-ratio: 388/163;
}
@media screen and (max-width: 767px) {
  .p-point-04__media-list-video {
    min-width: 50%;
    aspect-ratio: 153/89;
  }
}

.p-point-04__media-list-video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*point05*/
.p-point-05 .p-point__content-inner {
  max-width: 850px;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-point-05 .p-point__content-inner {
    max-width: 640px;
    padding: 2.25rem 0;
  }
}

.p-point-05__decoration {
  position: relative;
}

.p-point-05__decoration::before {
  position: absolute;
  top: -1rem;
  right: 0;
  display: block;
  content: "";
  aspect-ratio: 434/510;
  width: 32.8%;
  max-width: 25.875rem;
  height: auto;
  background: url("../images/point/point05-decoration1-pc.png") no-repeat center bottom/cover;
  mix-blend-mode: lighten;
}
@media screen and (max-width: 767px) {
  .p-point-05__decoration::before {
    width: 100%;
    top: 21rem;
    left: 0;
    aspect-ratio: 374/344;
    background: url("../images/point/point05-decoration1-sp.png") no-repeat center bottom/cover;
    mix-blend-mode: lighten;
  }
}

.p-point-05__decoration .p-point__content-inner::after {
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  z-index: 0;
  display: block;
  content: "";
  aspect-ratio: 423/510;
  width: 32.8%;
  max-width: 25.875rem;
  height: auto;
  background: url("../images/point/point05-decoration2-pc.png") no-repeat center bottom/cover;
  mix-blend-mode: lighten;
}
@media screen and (max-width: 767px) {
  .p-point-05__decoration .p-point__content-inner::after {
    width: 100%;
    bottom: -2rem;
    left: initial;
    right: 0;
    aspect-ratio: 374/344;
    background: url("../images/point/point05-decoration2-sp.png") no-repeat center bottom/cover;
    mix-blend-mode: lighten;
  }
}

.p-point-05__media-list {
  padding-top: 10.1875rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-point-05__media-list {
    padding-top: 10.1875rem;
  }
}

.p-point-05__media-list-item:nth-of-type(n + 2) {
  margin-top: 7.1875rem;
}
@media screen and (max-width: 399px) {
  .p-point-05__media-list-item:nth-of-type(n + 2) {
    margin-top: 9.9375rem;
  }
}

.p-point-05__media-list-item:nth-child(odd) {
  flex-direction: row-reverse;
  justify-content: right;
}

.p-point-05__media-list-item:nth-child(odd) .p-point-05__media-img {
  left: 0;
}

.p-point-05__media-list-item {
  position: relative;
  display: flex;
  justify-content: left;
  gap: 0 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-point-05__media-list-item {
    flex-direction: column;
    gap: 0.875rem 0;
  }
}

.p-point-05__media-img {
  position: absolute;
  right: 0;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-point-05__media-list-item:nth-child(1) .p-point-05__media-img {
  top: -7.5rem;
  max-width: 49.2%;
}
@media screen and (max-width: 767px) {
  .p-point-05__media-list-item:nth-child(1) .p-point-05__media-img {
    top: -8.625rem;
    max-width: 17.6875rem;
    width: 100%;
  }
}

.p-point-05__media-list-item:nth-of-type(n + 2) .p-point-05__media-img {
  top: -3.3125rem;
  max-width: 24.5rem;
}
@media screen and (max-width: 767px) {
  .p-point-05__media-list-item:nth-of-type(n + 2) .p-point-05__media-img {
    top: -6.0625rem;
    max-width: 17.6875rem;
  }
}

.p-point-05__media-text-wrap {
  width: 53%;
  padding: 1.75rem 2.5rem 2.5rem 4.0625rem;
  min-height: 12.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-point-05__media-text-wrap {
    width: 92%;
    margin-left: 0;
    margin-right: auto;
    padding: 5.75rem 1.6875rem 1.25rem 2.0625rem;
  }
}

.p-point-05__media-list-item:nth-child(odd) .p-point-05__media-text-wrap {
  background: linear-gradient(125.75deg, rgba(81, 92, 162, 0.64) 1.38%, rgba(20, 32, 108, 0.64) 60.87%);
  margin-left: auto;
  margin-right: 0;
}

.p-point-05__media-list-item:nth-child(even) .p-point-05__media-text-wrap {
  background: linear-gradient(235.97deg, rgba(81, 92, 162, 0.64) -2.86%, rgba(20, 32, 108, 0.64) 89.05%);
}

.p-point-05__media-title {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-point-05__media-title {
    font-size: 0.9375rem;
  }
}

.p-point-05__media-text {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-point-05__media-text {
    font-size: 0.6875rem;
    margin-top: 0.75rem;
    line-height: 1.6;
  }
}

.p-point__content-top-bg-wrap {
  position: absolute;
  top: -4.7vw;
  min-height: 100px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-point__content-top-bg-wrap {
    top: -12.7vw;
  }
}

.p-point__content-icon {
  position: absolute;
  top: -2vw;
  left: 50%;
  transform: translateX(-50%);
  max-width: 5.25rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
}
@media screen and (max-width: 1499px) {
  .p-point__content-icon {
    top: -2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-point__content-icon {
    top: -3vw;
  }
}
@media screen and (max-width: 399px) {
  .p-point__content-icon {
    top: -5vw;
  }
}

.p-point__content::before {
  position: absolute;
  top: -4.3vw;
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  display: block;
  background: url("../images/point/related-bg-top.svg") no-repeat center center/cover;
  aspect-ratio: 1280/85;
}

@media screen and (max-width: 767px) {
  .p-point__content::before {
    top: -13.07vw;
    height: 19vw;
    background: url("../images/point/related-bg-top-sp.svg") no-repeat center center/cover;
    aspect-ratio: 375/57;
  }
}
.p-point__content-top-bg {
  max-width: 100%;
  height: auto;
  min-height: 6.9vw;
  -o-object-fit: cover;
  object-fit: cover;
  content: "";
  width: 100%;
  aspect-ratio: 1280/85;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .p-point__content-top-bg {
    height: 19vw;
    aspect-ratio: 375/57;
  }
}

.p-problem {
  position: relative;
  background-color: rgba(81, 92, 162, 0.5);
}

.p-problem__top {
  position: relative;
  background: linear-gradient(to right, #ACBBDD 100%, rgba(172, 187, 221, 0) 50%, #ACBBDD 100%);
}

.p-problem__inner.l-second-inner {
  padding: 4.375rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-problem__inner.l-second-inner {
    padding: 1.75rem 0 0;
  }
}

.p-problem__heading {
  width: 100%;
  position: absolute;
  top: 4.75rem;
  z-index: 30;
  left: 0;
  font-size: 1.8125rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-problem__heading {
    font-size: 1.125rem;
    font-weight: 700;
    top: 3.5625rem;
    line-height: 1.7;
  }
}

.p-problem__img-wrap {
  position: relative;
  max-width: 33.9375rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-problem__img-wrap {
    max-width: 23.4375rem;
  }
}

.p-problem__img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 3.125rem 3.125rem #ADBCDE;
}

.p-problem__img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 543/503;
}
@media screen and (max-width: 767px) {
  .p-problem__img {
    aspect-ratio: 375/354;
  }
}

.p-problem__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  background-image: linear-gradient(0deg, transparent, #303c87 95%);
  width: 100%;
  min-height: 12.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-problem__bg {
    background-image: linear-gradient(0deg, transparent 0%, rgba(48, 60, 135, 0.7019607843) 70%, #303c87 100%);
    min-height: 10.375rem;
  }
}

.p-problem__comment-img {
  position: absolute;
  top: 10.0625rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 20;
  max-width: 38.875rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 622/309;
}
@media screen and (max-width: 767px) {
  .p-problem__comment-img {
    top: 7.4375rem;
    max-width: 30.625rem;
  }
}
@media screen and (max-width: 399px) {
  .p-problem__comment-img {
    top: 9.0625rem;
    max-width: 21.6875rem;
    width: 100%;
    aspect-ratio: 347/227;
  }
}

.p-problem__arrow-line {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -1.25vw;
  z-index: 10;
  background: url("../images/problem/problem-arrow-bg.svg") no-repeat center center/cover;
  aspect-ratio: 1280/228;
  margin-top: -6.25rem;
  height: 18.27vw;
  min-height: 14.5625rem;
}
@media screen and (max-width: 767px) {
  .p-problem__arrow-line {
    position: relative;
    z-index: 8;
    top: 3.75vw;
    height: 31.27vw;
  }
}
@media screen and (max-width: 399px) {
  .p-problem__arrow-line {
    background: url("../images/problem/problem-arrow-sp.svg") no-repeat center bottom/cover;
    aspect-ratio: 375/259;
    height: 69vw;
    width: 100%;
    margin-top: -11.27vw;
    top: -2vw;
  }
}

.p-problem__arrow-text {
  position: relative;
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-problem__arrow-text {
    margin-top: 1.375rem;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 399px) {
  .p-problem__arrow-text {
    font-size: 1.625rem;
    line-height: 1.1;
    margin-top: 0;
  }
}

.p-problem__arrow-text::after {
  position: absolute;
  bottom: -2.125rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  width: 2.0625rem;
  height: 1.1875rem;
  background: url("../images/problem/problem-arrow.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-problem__arrow-text::after {
    bottom: -4vw;
  }
}
@media screen and (max-width: 399px) {
  .p-problem__arrow-text::after {
    width: 1.625rem;
    bottom: -7vw;
  }
}

.p-problem__bottom {
  position: relative;
  margin-top: -7.19vw;
  background: url("../images/problem/problem-bg.jpg") no-repeat center center/cover;
  height: 31.4vw;
  min-height: 11.875rem;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom {
    height: 20.8125rem;
    max-height: 21.5rem;
    margin-top: -16.8vw;
    background: url("../images/problem/problem-bg-sp.jpg") no-repeat center center/cover;
    overflow: hidden;
  }
}
@media screen and (max-width: 399px) {
  .p-problem__bottom {
    margin-top: -19vw;
    height: 84vw;
  }
}

.p-problem__bottom-inner.l-second-inner {
  display: grid;
  width: 100%;
  max-width: 50rem;
  height: inherit;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-inner.l-second-inner {
    display: block;
    max-width: 100%;
  }
}

.p-problem__bottom::before {
  position: absolute;
  top: -4rem;
  left: 0;
  z-index: 2;
  display: block;
  content: "";
  width: 23.1875rem;
  height: 25.375rem;
  background: url("../images/problem/problem-decoration.png") no-repeat center bottom/contain;
  mix-blend-mode: overlay;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom::before {
    width: 13rem;
    height: 16.75rem;
    background: url("../images/problem/problem-decoration-sp.png") no-repeat center bottom/contain;
  }
}

.p-problem__bottom-comment {
  display: flex;
  align-items: center;
  gap: 0 1.9375rem;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-comment {
    gap: 0.625rem 0;
    align-items: flex-end;
    width: 77%;
    margin-top: 11rem;
    margin-left: 5%;
  }
}
@media screen and (max-width: 399px) {
  .p-problem__bottom-comment {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.625rem 0;
    margin-top: 3.125rem;
    margin-left: 2.7%;
  }
}

.p-problem__bottom-comment-img {
  max-width: 11.375rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-comment-img {
    max-width: 7rem;
  }
}
@media screen and (max-width: 399px) {
  .p-problem__bottom-comment-img {
    max-width: 8rem;
  }
}

.p-problem__comment-text {
  position: relative;
  font-size: 1.1875rem;
  color: #14206C;
  line-height: 1.57;
}
@media screen and (max-width: 767px) {
  .p-problem__comment-text {
    width: 65%;
    font-size: 0.875rem;
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 399px) {
  .p-problem__comment-text {
    width: 71%;
  }
}

.p-problem__comment-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  filter: blur(17.5px);
  z-index: -1;
}

.p-review {
  position: relative;
  background-color: #919AD4;
  padding: 1.25rem 0 6rem;
  margin-top: -0.86vw;
}
@media screen and (max-width: 767px) {
  .p-review {
    padding: 1.125rem 0 3.875rem;
  }
}

.p-review::before {
  position: absolute;
  top: -6.33vw;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 8.59vw;
  background: url("../images/review/review-bg.svg") no-repeat center center/cover;
  aspect-ratio: 1550/94;
}
@media screen and (max-width: 767px) {
  .p-review::before {
    top: -16.35vw;
    height: 28.85vw;
    background: url("../images/review/review-bg-sp.svg") no-repeat center center/cover;
    aspect-ratio: 375/93;
  }
}

.p-review__inner {
  max-width: 66rem;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-review__inner {
    max-width: 640px;
    padding: 0 30px;
  }
}

.p-review .c-heading {
  color: #14206C;
  padding: 0;
}

.p-review .c-heading::after {
  bottom: -2.625rem;
  background: url("../images/review/review-heading-line.svg") no-repeat center center/contain;
}

.p-review__sub-heading {
  font-size: 1.1875rem;
  color: #14206C;
  margin-top: 4.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-review__sub-heading {
    margin-top: 3.4375rem;
  }
}
@media screen and (max-width: 399px) {
  .p-review__sub-heading {
    font-size: clamp(0.9375rem, -0.0752rem + 5.0633vw, 1.1875rem);
  }
}

.p-review__sub-heading::before,
.p-review__sub-heading::after {
  display: inline-block;
  content: "";
  width: 1.125rem;
  height: 1.75rem;
}

.p-review__sub-heading::before {
  background: url("../images/review/review-icon1.svg") no-repeat center center/contain;
  margin-right: 0.3125rem;
}

.p-review__sub-heading::after {
  background: url("../images/review/review-icon2.svg") no-repeat center center/contain;
  margin-left: 0.3125rem;
}

.p-review__card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.375rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-review__card {
    gap: 1.5625rem 0;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.125rem;
  }
}

.p-review__card-item {
  position: relative;
  background-color: rgba(255, 255, 255, 0.67);
}

.p-review__card-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 6.25rem;
  height: 6.25rem;
  background-color: #919AD4;
  clip-path: polygon(50% 0, 100% 50%, 100% 0);
  transform: scale(1.01);
}

.p-review__card-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 6.25rem;
  height: 6.25rem;
  background-color: #919AD4;
  clip-path: polygon(0 50%, 0% 100%, 50% 100%);
  transform: scale(1.01);
}

.p-review__card-item-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.p-review__card-inner {
  padding: 1.5625rem 0.9375rem 2rem 1.5625rem;
}

.p-review__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-review__card-top {
    justify-content: left;
  }
}

.p-review__card-img {
  width: 38%;
  max-width: 6.25rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-review__card-wrap {
  width: 60%;
}

.p-review__card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #14206C;
}

.p-review__card-profile {
  margin-top: 0.375rem;
}

.p-review__card-name {
  font-size: 0.6875rem;
  color: #14206C;
}

.p-review__card-job {
  font-size: 0.6875rem;
  color: #14206C;
}

.p-review__card-text {
  width: 96%;
  font-size: 0.8125rem;
  color: #272727;
  line-height: 1.55;
  margin-top: 0.625rem;
}

.p-routine {
  position: relative;
  background-color: #515CA2;
  padding-top: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .p-routine {
    padding-top: 0.375rem;
  }
}

.p-routine::before {
  content: "";
  width: 100%;
  height: 8.44vw;
  display: block;
  position: absolute;
  top: -5.86vw;
  background: url("../images/routine/routine-bg-top.svg") no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .p-routine::before {
    background: url("../images/routine/routine-bg-top-sp.svg") no-repeat center bottom/cover;
    height: 34.27vw;
    top: -21.53vw;
  }
}

.p-routine__inner {
  max-width: 850px;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-routine__inner {
    max-width: 640px;
    padding: 0;
  }
}

.c-heading.p-routine__heading {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-heading.p-routine__heading {
    font-size: 1.6875rem;
  }
}

.p-routine__img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 3rem;
  margin-top: 4.5rem;
  background: url("../images/routine/routine-bg-bottom.svg") no-repeat center bottom/contain;
}
@media screen and (max-width: 767px) {
  .p-routine__img-wrap {
    padding: 0 1.875rem 2.8125rem;
    margin-top: 3.25rem;
    background: url("../images/routine/routine-bg-bottom-sp.svg") no-repeat center bottom/contain;
  }
}

.p-routine__img {
  width: 39.5%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-routine__img {
    max-width: 100%;
    width: 100%;
  }
}

.p-routine__img-text {
  position: absolute;
  left: 16.375rem;
  bottom: 6.75rem;
  font-size: 0.5625rem;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-routine__img-text {
    left: 2.25rem;
    bottom: 6.625rem;
    line-height: 1.9;
    margin-left: 1.5rem;
  }
}

.p-routine__img-text::before {
  position: absolute;
  top: 0.1875rem;
  left: -1.75rem;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background: url("../images/common/blight-icon.svg") no-repeat center bottom/contain;
}
@media screen and (max-width: 767px) {
  .p-routine__img-text::before {
    top: 0.4375rem;
  }
}

.p-routine__text {
  font-size: 1.125rem;
  font-weight: 600;
  background: url("../images/routine/routine-text-bg.svg") no-repeat center bottom/cover;
  text-align: center;
  margin-top: -5.0625rem;
  line-height: 1.6;
  padding: 7.25rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-routine__text {
    font-size: 0.9375rem;
    line-height: 1.86;
    padding: 6.5625rem 0 2.1875rem;
  }
}

.p-scroll-down {
  position: absolute;
  bottom: 15vw;
  right: 3.5rem;
  width: 1.25rem;
  height: 4.4375rem;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .p-scroll-down {
    bottom: 4.5625rem;
    right: 0.5625rem;
  }
}
@media screen and (max-width: 399px) {
  .p-scroll-down {
    bottom: 1.5625rem;
    right: -0.2375rem;
  }
}

.p-scroll-down__text {
  position: absolute;
  top: 1.25rem;
  left: -2.5rem;
  bottom: 5.4375rem;
  color: #FFF;
  font-size: 0.625rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  transform: rotate(-90deg);
  text-transform: capitalize;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .p-scroll-down__text {
    top: 1rem;
    left: -2.25rem;
  }
}

.p-scroll-down::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.125rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: #FFF;
  animation: circleMove 1.6s ease-in-out infinite, circleMoveHide 1.6s ease-out infinite;
}

@keyframes circleMove {
  0% {
    bottom: 71px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes circleMoveHide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  99% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.p-scroll-down::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #FFF;
}

.p-shop {
  background-color: #F3F2E2;
  padding: 2.9375rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-shop {
    padding: 3.125rem 0 3.375rem;
  }
}

.p-shop__heading {
  position: relative;
  color: #515CA2;
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
  padding-top: 2.0625rem;
  padding-top: 0;
}

.p-shop__heading::before {
  content: "";
  position: absolute;
  top: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 19.5625rem;
  height: 3.5rem;
  display: inline-block;
  background: url(../images/review/review-heading-line.svg) no-repeat center center/contain;
}

.p-shop__link-wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 1.25rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-shop__link-wrap {
    align-items: center;
    flex-direction: column;
    gap: 1.75rem 0;
    margin-top: 2.375rem;
  }
}

.p-shop__link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.375rem;
  width: 45%;
  background-color: #6473D4;
  padding: 1rem;
  border-radius: 3.125rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-shop__link {
    max-width: 19.6875rem;
    width: 100%;
    gap: 0 1.375rem;
  }
}

.p-shop__icon {
  max-width: 1.8125rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-shop__text-wrap {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-shop__text-wrap {
    width: 66%;
  }
}

.p-shop__title {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}

.p-shop__text {
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.p-support {
  position: relative;
  background-color: #2E3A8A;
  margin-top: -1px;
}

.p-support-bg {
  background-color: #14206c;
  padding-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-support-bg {
    padding-top: 0;
  }
}

.p-support-inner {
  max-width: 80rem;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-bottom: 10rem;
  gap: 0 0.625rem;
  margin: -0.0625rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-support-inner {
    flex-direction: column;
    padding: 0;
  }
}

.p-support-img {
  width: 96%;
  aspect-ratio: 607/389;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-support-img {
    width: 100%;
    aspect-ratio: 375/252;
  }
}

.p-support-wrap {
  position: relative;
  width: 91%;
  min-width: 22.8125rem;
  /*background: url('../images/common/decoration.png') no-repeat right bottom / contain;
  mix-blend-mode: hard-light;*/
}
@media screen and (max-width: 767px) {
  .p-support-wrap {
    min-width: initial;
    padding: 0 1.875rem 3rem;
    /*background: url('../images/common/decoration-sp.png') no-repeat right bottom / contain;*/
  }
}
@media screen and (max-width: 399px) {
  .p-support-wrap {
    padding: 0 0 3rem;
  }
}

.p-support-wrap::after {
  max-width: 24.8125rem;
  width: 100%;
  height: auto;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("../images/common/decoration.png") no-repeat center center/contain;
  mix-blend-mode: hard-light;
  aspect-ratio: 397/510;
  opacity: 0.37;
}
@media screen and (max-width: 399px) {
  .p-support-wrap::after {
    background: url("../images/common/decoration-sp.png") no-repeat right bottom/contain;
    aspect-ratio: 374/477;
  }
}

.p-support-text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.88;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .p-support-text {
    font-size: 0.9375rem;
    padding-left: 0.5rem;
  }
}

.p-support-text:not(:first-child) {
  margin-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-support-text:not(:first-child) {
    margin-top: 1.75rem;
  }
}

.p-support-logo {
  max-width: 12.1875rem;
  margin-top: 1.625rem;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-support-logo {
    max-width: 10.5rem;
    padding-left: 0;
  }
}

.p-support-decoration {
  max-width: 24.8125rem;
  position: absolute;
  top: 0;
  right: 0;
  background-blend-mode: hard-light;
}

.p-variation {
  position: relative;
  z-index: 10;
  background-color: #515CA2;
  padding: 3.5625rem 0 15rem;
}
@media screen and (max-width: 767px) {
  .p-variation {
    padding: 3.5625rem 0 12.5rem;
  }
}

.p-variation__heading {
  position: relative;
  background-color: #515CA2;
  padding: 3.875rem 0 3.5rem;
  margin-top: -4rem;
}
@media screen and (max-width: 767px) {
  .p-variation__heading {
    padding: 4.875rem 0 2.5625rem;
    margin-top: -3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-variation__heading .c-heading {
    letter-spacing: 0.2em;
  }
}

.p-variation__heading::before {
  position: absolute;
  top: -4.38vw;
  left: 0;
  z-index: 5;
  display: block;
  content: "";
  width: 100%;
  aspect-ratio: 1280/60;
  background: url("../images/variation/variation-bg1.svg") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-variation__heading::before {
    top: -7.56vw;
    background: url("../images/variation/variation-bg1-sp.svg") no-repeat center center/cover;
    aspect-ratio: 375/35;
  }
}

.p-variation__heading::after {
  position: absolute;
  bottom: -4.06vw;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  aspect-ratio: 1280/56;
  background: url("../images/variation/variation-bg2.svg") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-variation__heading::after {
    bottom: -7.3vw;
    background: url("../images/variation/variation-bg2-sp.svg") no-repeat center center/cover;
    aspect-ratio: 375/35;
  }
}

.p-variation__img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1280/212;
}
@media screen and (max-width: 767px) {
  .p-variation__img {
    aspect-ratio: 375/212;
    max-height: 13.25rem;
  }
}

.p-variation__content {
  background: linear-gradient(176.83deg, #FFFFFF 2.49%, rgba(255, 255, 255, 0) 86.05%);
  padding-top: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-variation__content {
    padding-top: 2.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-variation__inner.l-second-inner {
    padding: 0;
    max-width: 100%;
  }
}

.p-variation__title {
  font-size: 0.875rem;
  color: #14206C;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-variation__title {
    font-size: 0.8125rem;
  }
}

/*スライドエリア*/
.p-variation__slide-wrap {
  position: relative;
  margin-top: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-variation__slide-wrap {
    margin-top: 2.625rem;
  }
}

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

.p-variation__slide-text-wrap {
  width: 48%;
  margin: 3.6875rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-variation__slide-text-wrap {
    width: 78%;
    margin: 1.0625rem auto 0;
  }
}

.variation__slide-text-item {
  display: none;
}

.variation__slide-text-item.is-active {
  display: block;
}

.p-variation__slide-title {
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-variation__slide-title {
    font-size: 0.9375rem;
  }
}

.p-variation__slide-text {
  font-size: 1rem;
  margin-top: 2.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-variation__slide-text {
    font-size: 0.8125rem;
    margin-top: 1rem;
    line-height: 1.5;
  }
}

/*--------------------
Swiper
--------------------*/
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -4.1875rem;
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -3.1875rem;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1;
}

/* ページネーションの余白 */
.swiper-pagination-bullet {
  margin: 0 0.75rem;
  border: solid 1px #FFF;
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    margin: 0 0.4375rem;
  }
}

/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  height: 2.125rem;
  width: 2.125rem;
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-pagination-bullet-active {
  border: solid 0.1875rem #2E3A8A;
}

.swiper-pagination-bullet:nth-of-type(1) {
  background-color: #F5E8E8;
}

.swiper-pagination-bullet:nth-of-type(2) {
  background-color: #FFDCEA;
}

.swiper-pagination-bullet:nth-of-type(3) {
  background-color: #8E7575;
}

.swiper-wrapper {
  margin-inline: auto;
  max-width: 100%;
  position: relative;
}

.swiper {
  max-width: 100%;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.u-mb {
  margin-bottom: 0.5625rem;
}

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

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

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