@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* 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: 15px;
}
@media (max-width: 375px) {
  html {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 4.1666666667vw;
  }
}
@media (min-width: 360px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #1E1E1E;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 360px;
  padding: 0 20px;
}

.c-cta {
  width: 100%;
  max-width: 21.3333333333rem;
}

.c-cta__balloon {
  margin: 0.2rem auto 0;
  padding: 0.4666666667rem;
  border-radius: 666.6rem;
  text-align: center;
  background-color: #fff;
  font-weight: 700;
  color: #255D72;
  max-width: 16.6666666667rem;
  position: relative;
  z-index: 2;
}
.c-cta__balloon::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -0.5333333333rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.8666666667rem solid transparent;
  border-left: 0.8666666667rem solid transparent;
  border-top: 1.2666666667rem solid #fff;
  border-bottom: 0;
  z-index: 1;
}

.c-cta__balloon-sub {
  font-size: 0.6666666667rem;
}

.c-cta__balloon-main {
  font-size: 1.1333333333rem;
}

@keyframes cta-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.c-cta__button {
  padding: 1.3333333333rem;
  margin-top: -0.3333333333rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 666.6rem;
  background: linear-gradient(90deg, #D22A51 0%, #E57FA2 100%);
  box-shadow: 0.3333333333rem 0.6666666667rem 2.6666666667rem rgba(30, 30, 30, 0.3);
  text-decoration: none;
  font-size: 1.3333333333rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  animation: cta-pulse 1.5s ease-in-out infinite;
}

.c-sticky-cta {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  justify-content: center;
}

.c-sticky-cta.is-active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.c-sticky-cta__link {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  width: 100%;
  max-width: 36.6666666667rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(90deg, #D22A51 0%, #E57FA2 100%);
  box-shadow: 0.3333333333rem 0.6666666667rem 2.6666666667rem rgba(30, 30, 30, 0.3);
}

.c-sticky-cta__lead {
  font-size: 0.6666666667rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
}

.c-sticky-cta__text {
  font-size: 1.3333333333rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.45;
}

body.has-sticky-cta {
  padding-bottom: 4.2666666667rem;
}

.p-concept {
  margin-top: -4.3333333333rem;
  padding-top: 5.3333333333rem;
  padding-bottom: 5.3333333333rem;
  -webkit-clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0% 100%);
  background-color: #255D72;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}

.p-concept-head {
  color: #fff;
  position: relative;
}
.p-concept-head::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -4.3333333333rem;
  transform: translateX(-50%);
  width: 0.3333333333rem;
  height: 3.6666666667rem;
  z-index: 2;
  background: url("../images/top/icon-dot.png") no-repeat center center/contain;
}

.p-concept-head__kicker {
  font-size: 1.2666666667rem;
  line-height: 1.4210526316;
}

.p-concept-head__title {
  font-size: 1.8rem;
  margin-top: 0.4rem;
  line-height: 1.3448275862;
}

.p-concept-head__text {
  margin-top: 1.4666666667rem;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6666666667;
}

.p-concept__list {
  margin-top: 6.8666666667rem;
}

.p-concept__item {
  padding: 1.7333333333rem 1.3333333333rem;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.p-concept__item:not(:first-child) {
  margin-top: 1.5333333333rem;
}
.p-concept__item::before {
  width: 7.9333333333rem;
  height: 12.3333333333rem;
  position: absolute;
  content: "";
  z-index: 1;
  left: 0;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: linear-gradient(to top, #E5EDF4 0%, #B2C9DF 100%);
}

.p-concept__title {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  color: #255D72;
}

.p-concept__text {
  font-size: 1rem;
  line-height: 1.6666666667;
  margin-top: 1.2rem;
  position: relative;
  z-index: 2;
}

.p-concept__text + .p-concept__text {
  margin-top: 2.4666666667rem;
}

.p-concept__highlight {
  font-weight: 900;
  background: linear-gradient(transparent 70%, rgba(0, 76, 147, 0.1) 70%, rgba(0, 76, 147, 0.1) 100%);
}

.p-container {
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
  background-color: #F5F5F5;
}

.p-faq {
  margin-top: -4.6666666667rem;
  -webkit-clip-path: polygon(0 3.5%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 3.5%, 100% 0%, 100% 100%, 0% 100%);
  padding: 5.0666666667rem 0 5.3333333333rem;
  background-color: #F5F5F5;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  font-weight: 700;
}
.p-faq::before {
  width: 100%;
  height: 20.6666666667rem;
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  background-image: radial-gradient(#b9d2dc 12%, transparent 13%);
  background-size: 0.9333333333rem 0.9333333333rem;
  background-position: 0rem 0rem;
  z-index: -1;
}

.p-faq__title {
  font-size: 1.9333333333rem;
  line-height: 1.3793103448;
  color: #E86888;
  text-align: center;
}

.p-faq__list {
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
}

.p-faq__item + .p-faq__item {
  margin-top: 1.6666666667rem;
}

.p-faq-item {
  background-color: #ffffff;
  box-shadow: 0 0 1.3333333333rem rgba(48, 15, 0, 0.2);
}

.p-faq-item__header {
  width: 100%;
  padding: 1.3333333333rem;
  display: flex;
  align-items: flex-start;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.p-faq-item__icon {
  position: absolute;
  right: 1.3333333333rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}
.p-faq-item__icon::before, .p-faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #255D72;
  transition: transform 0.3s ease;
}
.p-faq-item__icon::before {
  width: 100%;
  height: 0.1333333333rem;
  transform: translate(-50%, -50%);
}
.p-faq-item__icon::after {
  width: 0.1333333333rem;
  height: 100%;
  transform: translate(-50%, -50%);
}

.p-faq-item__header[aria-expanded=true] .p-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.p-faq-item__body.is-open {
  max-height: 500px;
}

.p-faq-item__row {
  display: flex;
  align-items: flex-start;
}

.p-faq-item__row--answer {
  padding: 0 1.3333333333rem 1.3333333333rem;
}

.p-faq-item__badge {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0.1333333333rem solid #E7B0AF;
  color: #fff;
  font-size: 1rem;
  background-color: #E7B0AF;
}

.p-faq-item__badge--a {
  color: #255D72;
  border-color: #255D72;
  background-color: #fff;
}

.p-faq-item__question {
  margin-left: 0.7333333333rem;
  font-size: 1rem;
  line-height: 1.6666666667;
  margin-top: 0.0666666667rem;
  color: #1E1E1E;
}

.p-faq-item__answer {
  margin-left: 0.7333333333rem;
  font-size: 0.8666666667rem;
  line-height: 1.5384615385;
  margin-top: 0.2666666667rem;
}

.p-faq__bottom {
  margin-top: 2.2rem;
  text-align: center;
}

.p-faq__bottom-link {
  font-size: 1.1333333333rem;
  color: #1E1E1E;
  text-decoration: underline;
  font-weight: 500;
}

.p-flow {
  margin-top: -5.3333333333rem;
  -webkit-clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
  padding: 5.0666666667rem 0 6.6666666667rem;
  background-color: #ffffff;
  font-weight: 700;
  overflow: hidden;
  position: relative;
}
.p-flow::before {
  width: 100%;
  height: 20.6666666667rem;
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  background-image: radial-gradient(#b9d2dc 12%, transparent 13%);
  background-size: 0.9333333333rem 0.9333333333rem;
  background-position: 0rem 0rem;
  z-index: -1;
}

.p-flow__title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.3333333333;
  color: #255D72;
}

.p-flow__list {
  margin-top: 4.3333333333rem;
}

.p-flow-list__item {
  position: relative;
}
.p-flow-list__item:nth-child(1) .p-flow-card__icon {
  max-width: 4.9333333333rem;
  transform: translateX(15px);
}
.p-flow-list__item:nth-child(1) .p-flow-card__icon img {
  aspect-ratio: 74/100;
}
.p-flow-list__item:nth-child(2) .p-flow-card__icon {
  transform: translateX(15px);
  max-width: 8.4666666667rem;
}
.p-flow-list__item:nth-child(2) .p-flow-card__icon img {
  aspect-ratio: 127/88;
}
.p-flow-list__item:nth-child(3) .p-flow-card__icon {
  max-width: 5.7333333333rem;
}
.p-flow-list__item:nth-child(3) .p-flow-card__icon img {
  aspect-ratio: 86/88;
}
.p-flow-list__item:not(:last-child) {
  margin-bottom: 7.1333333333rem;
}
.p-flow-list__item:not(:last-child)::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -2.6666666667rem;
  transform: translateX(-50%);
  width: 0.2666666667rem;
  height: 3.2rem;
  z-index: 2;
  background: url("../images/top/icon-dot-black.png") no-repeat center center/contain;
}

.p-flow-card {
  background-color: #F5F5F5;
  position: relative;
  text-align: center;
}
.p-flow-card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.1333333333rem;
  background-color: #255D72;
  top: -1.3333333333rem;
  left: 0;
}
.p-flow-card::after {
  width: 5.3333333333rem;
  height: 8.4rem;
  position: absolute;
  content: "";
  z-index: 1;
  left: 0;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background: #E6E6E6;
}

.p-flow-card__step {
  background-color: #fff;
  color: #255D72;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: -3.3333333333rem;
  transform: translateX(-50%);
  padding: 0 0.6666666667rem;
}

.p-flow-card__step-label {
  font-size: 0.8666666667rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.p-flow-card__step-num {
  font-size: 2.2666666667rem;
  font-weight: 700;
  line-height: 1;
}

.p-flow-card__body {
  padding: 1.4666666667rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-flow-card__icon {
  width: 100%;
  margin: 0 auto;
}
.p-flow-card__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-flow-card__text {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6666666667;
  margin-top: 0.4rem;
}

.p-fp-selection {
  padding: 5.8rem 0 6.3333333333rem;
  background-color: #FDF7ED;
  text-align: center;
  -webkit-clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
}

.p-fp-selection__lead {
  font-size: 1.3333333333rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-fp-selection__lead-accent {
  font-size: 1.5333333333rem;
  color: #255D72;
}

.p-fp-selection__card {
  margin-top: 1.4666666667rem;
  padding: 1.7333333333rem 1rem;
  background-color: #fff;
  box-shadow: 0 0 1.3333333333rem rgba(48, 15, 0, 0.2);
}

.p-fp-selection__card-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6666666667;
}

.p-fp-selection__diagram {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.p-fp-selection__circle {
  width: 7.9333333333rem;
  height: 7.9333333333rem;
  border-radius: 50%;
  background: linear-gradient(to top right, #255D72 0%, #498EA8 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-fp-selection__circle--insurance {
  margin-left: 0.8rem;
}

.p-fp-selection__plus {
  margin-left: 0.8rem;
  width: 1.7333333333rem;
  height: 1.7333333333rem;
  position: relative;
  flex-shrink: 0;
}

.p-fp-selection__plus::before,
.p-fp-selection__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #255D72;
  transform: translate(-50%, -50%);
}

.p-fp-selection__plus::before {
  width: 100%;
  height: 0.1333333333rem;
}

.p-fp-selection__plus::after {
  width: 0.1333333333rem;
  height: 100%;
}

.p-fp-selection__circle-title {
  font-weight: 700;
  font-size: 1.1333333333rem;
  line-height: 1.4705882353;
  color: #fff;
}

.p-fp-selection__circle-note {
  margin-top: 0.2666666667rem;
  font-size: 0.6666666667rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.p-fp-selection__arrow {
  display: block;
  margin-top: -0.3333333333rem;
  width: 0rem;
  height: 0rem;
  margin-left: auto;
  margin-right: auto;
  border-left: 0.9333333333rem solid transparent;
  border-right: 0.9333333333rem solid transparent;
  border-top: 1.0666666667rem solid #255D72;
}

.p-fp-selection__result {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-fp-selection__result-highlight {
  padding: 0 0.1333333333rem;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: #255D72;
  background: linear-gradient(transparent 70%, #FFE6F0 70%, #FFE6F0 100%);
}

.p-hero {
  background: linear-gradient(to top right, #EFD7DD 0%, #FFF2F4 100%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 89%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 89%, 0% 100%);
  padding-bottom: 7.3333333333rem;
}

.p-hero__label {
  background-color: #498EA8;
  padding: 0.8666666667rem;
}

.p-hero__label-text {
  font-size: 1.1333333333rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.p-hero__content {
  margin-top: 2.4rem;
}

.p-hero__lead-emphasis {
  display: inline-block;
}

.p-hero__lead-dots {
  display: flex;
  width: 100%;
  gap: 1rem;
  padding-left: 0.4em;
}

.p-hero__lead-dot {
  width: 0.3066666667rem;
  height: 0.3066666667rem;
  border-radius: 50%;
  background-color: #255D72;
}
.p-hero__lead-dot:nth-child(2) {
  margin-right: 1.2rem;
}

.p-hero__lead {
  font-size: 1.2666666667rem;
  font-weight: 700;
  color: #255D72;
  line-height: 1.4210526316;
}

.p-hero__title {
  margin: 1.4666666667rem auto 0;
  max-width: 21.8rem;
}
.p-hero__title img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 327/106;
}

.p-hero__image {
  margin: -0.6666666667rem auto 0;
}
.p-hero__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 390/272;
}

.p-pitfall {
  padding: 2rem 0 2.2666666667rem;
  text-align: center;
  position: relative;
}
.p-pitfall::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -4.3333333333rem;
  transform: translateX(-50%);
  width: 0.3333333333rem;
  height: 3.6666666667rem;
  z-index: 2;
  background: url("../images/top/icon-dot.png") no-repeat center center/contain;
}

.p-pitfall__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4814814815;
}

.p-pitfall__title-accent {
  color: #255D72;
}

.p-pitfall__lead {
  margin-top: 1.4666666667rem;
  font-size: 1.0666666667rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.p-pitfall__result-label {
  margin-top: 1.2rem;
  font-size: 1.0666666667rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-pitfall__text {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.8rem;
  line-height: 1.6666666667;
  position: relative;
}

.p-pitfall__text + .p-pitfall__text {
  margin-top: 2.6666666667rem;
}

.p-pitfall__decor {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.p-pitfall__decor--left {
  top: 1.3333333333rem;
  left: -1rem;
  width: 3.8666666667rem;
  height: 7.0666666667rem;
  background: url("../images/top/pitfall-deco-left.png") no-repeat center center/contain;
}

.p-pitfall__decor--right {
  top: 1.6666666667rem;
  right: 3.6666666667rem;
  width: 0.9333333333rem;
  height: 1.2rem;
  background: url("../images/top/pitfall-deco-right.png") no-repeat center center/contain;
}

.p-reason {
  background: linear-gradient(to top right, #EFD7DD 0%, #FFF2F4 100%);
  -webkit-clip-path: polygon(0 2.5%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 2.5%, 100% 0%, 100% 100%, 0% 100%);
  margin-top: -5.3333333333rem;
  padding-top: 6.3333333333rem;
  padding-bottom: 6.6666666667rem;
}

.p-reason__title {
  padding: 1.3333333333rem 0 2.4666666667rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("../images/top/reason-bubble.png") no-repeat center center/contain;
  font-weight: 700;
  color: #255D72;
  font-size: 1.2666666667rem;
  line-height: 1.4210526316;
}

.p-reason__title-catch span {
  color: #D55674;
}

.p-reason__title-text {
  font-size: 1.9333333333rem;
  line-height: 1.4482758621;
}

.p-reason__title-num {
  color: #D55674;
  display: inline-block;
  margin: 0 -0.3333333333rem;
}

.p-reason__list {
  margin-top: -1rem;
  margin-bottom: 2.9333333333rem;
}

.p-reason__item {
  font-weight: 700;
}
.p-reason__item:not(:first-child) {
  margin-top: 2rem;
  padding-top: 0.6666666667rem;
  border-top: 0.1333333333rem solid #fff;
}

.p-reason__item-visual {
  width: 100%;
}
.p-reason__item-visual img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 320/249;
}

.p-reason__item-title {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  margin-top: 0.9333333333rem;
  color: #255D72;
  text-align: center;
}
.p-reason__item-title span {
  font-size: 1.4rem;
}

.p-reason__item-text {
  margin-top: 1.2rem;
  font-size: 1rem;
  line-height: 1.6666666667;
}
.p-reason__item-text span {
  background-color: #FFF5D6;
}

.p-staff {
  margin-top: -4rem;
  -webkit-clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
  padding: 5.0666666667rem 0 10rem;
  background-color: #ffffff;
  font-weight: 700;
  overflow: hidden;
  position: relative;
}
.p-staff::before {
  width: 100%;
  height: 20.6666666667rem;
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  background-image: radial-gradient(#b9d2dc 12%, transparent 13%);
  background-size: 0.9333333333rem 0.9333333333rem;
  background-position: 0rem 0rem;
  z-index: -1;
}

.p-staff__title {
  font-size: 2rem;
  line-height: 1.3333333333;
  text-align: center;
}

.p-staff__slider {
  margin-top: 1rem;
  padding-left: 0.6666666667rem;
}

.p-staff__slider .splide__track {
  overflow: visible;
}

.p-staff__slider .splide__slide {
  display: flex;
  justify-content: center;
  padding-right: 0.6666666667rem;
  width: 19.3333333333rem;
}

.p-staff__slider.splide {
  overflow: visible;
}

.p-staff__slider .splide__pagination {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -3rem;
}

.p-staff__slider .splide__pagination li + li {
  margin-left: 1.1333333333rem;
}

.p-staff__slider .splide__pagination__page {
  margin: 0;
  padding: 0;
  width: 0.5333333333rem;
  height: 0.5333333333rem;
  border: none;
  background-color: #8EB5CF;
  opacity: 1;
  border-radius: 0;
  cursor: pointer;
}

.p-staff__slider .splide__pagination__page.is-active {
  background-color: #004C93;
  transform: none;
}

.p-staff-card {
  width: 100%;
  position: relative;
  padding-top: 5.2rem;
}

.p-staff-card::after {
  content: "";
  position: absolute;
  right: -0.6666666667rem;
  bottom: -0.6666666667rem;
  width: 5.3333333333rem;
  height: 6.6666666667rem;
  background-color: #B2C9DF;
  z-index: 0;
}

.p-staff-card__photo {
  position: absolute;
  top: 0rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 9.8rem;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
}
.p-staff-card__photo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 147/147;
}

.p-staff-card__body {
  padding: 5.5333333333rem 1.3333333333rem 1.6666666667rem;
  background-color: #e9f1f6;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 1.3333333333rem rgba(30, 30, 30, 0.2);
}

.p-staff-card__name {
  font-size: 1.2666666667rem;
  line-height: 1.4210526316;
  text-align: center;
}

.p-staff-card__role {
  font-size: 0.8666666667rem;
  line-height: 1.5384615385;
  text-align: center;
}

.p-staff-card__label {
  font-size: 0.8666666667rem;
  line-height: 1.5384615385;
  text-align: center;
  margin-top: 0.3333333333rem;
}

.p-staff-card__text {
  font-size: 0.8666666667rem;
  line-height: 1.5384615385;
  margin-top: 0.9333333333rem;
}

.p-stats {
  margin-top: -3.3333333333rem;
  -webkit-clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
  padding: 5.6666666667rem 0 6.6666666667rem;
  background: linear-gradient(to top right, #EFD7DD 0%, #FFF2F4 100%);
}

.p-stats__title {
  font-size: 1.4666666667rem;
  font-weight: 700;
  color: #255D72;
  line-height: 1.6;
  text-align: center;
}
.p-stats__title span {
  display: block;
  font-size: 2rem;
  line-height: 1.3333333333;
}

.p-stats__content {
  margin-top: 4.1333333333rem;
}

.p-stats__row {
  margin-top: 3.2rem;
  display: flex;
}

.p-stats__row .p-stats-card + .p-stats-card {
  margin-left: 0.8rem;
}

.p-stats-card {
  position: relative;
  background-color: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 0.4rem 0.4rem #e7b0af;
  padding: 1rem 0.9333333333rem;
  font-weight: 700;
}

.p-stats-card--wide {
  padding: 1.9333333333rem 1.8rem;
}
.p-stats-card--wide .p-stats-card__label {
  width: 10.6666666667rem;
}

.p-stats-card--half {
  width: 50%;
}

.p-stats-card__label {
  width: 8.6666666667rem;
  color: #fff;
  text-align: center;
  padding: 0.4666666667rem 0;
  position: absolute;
  border-radius: 1rem 1rem 0 0;
  top: -2.4333333333rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #D55674;
  font-size: 1rem;
}

.p-stats-card__body {
  display: flex;
  align-items: center;
}

.p-stats-card__body--left {
  justify-content: flex-start;
}

.p-stats-card__value {
  margin-left: 0.8666666667rem;
  display: flex;
  align-items: baseline;
}

.p-stats-card--pc {
  padding: 1rem 0.4rem;
}
.p-stats-card--pc .p-stats-card__value {
  margin-left: 0.5333333333rem;
}
.p-stats-card--pc .p-stats-card__num {
  font-size: 2.9333333333rem;
}
.p-stats-card--pc .p-stats-card__meta {
  font-size: 0.9333333333rem;
  max-width: 1.8666666667rem;
  margin-right: 0.4666666667rem;
  transform: translateY(-10px);
}
.p-stats-card--pc .p-stats-card__icon {
  transform: translateY(3px);
}

.p-stats-card__num {
  font-size: 3.2rem;
}

.p-stats-card__unit {
  font-size: 1.4666666667rem;
}

.p-stats-card__value--stack {
  display: flex;
  align-items: flex-end;
}

.p-stats-card__icon {
  transform: translateY(5px);
}

.p-stats-card__icon--doc {
  width: 3.1333333333rem;
  height: 2.8666666667rem;
  background: url("../images/top/icon-doc.png") no-repeat center center/contain;
}

.p-stats-card__icon--tel {
  width: 2.6rem;
  height: 2.6rem;
  background: url("../images/top/icon-tel.png") no-repeat center center/contain;
}

.p-stats-card__icon--pc {
  width: 2.7333333333rem;
  height: 2.5333333333rem;
  background: url("../images/top/icon-pc.png") no-repeat center center/contain;
}

.p-voice {
  -webkit-clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
  padding: 6rem 0 5rem;
  margin-top: -6rem;
  background-color: #FDF7ED;
  overflow: hidden;
}

.p-voice__title {
  width: 100%;
}
.p-voice__title img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 340/125;
}

.p-voice__slider {
  margin-top: 1.3333333333rem;
}

/* Splide（チラ見せ） */
.p-voice__slider.splide {
  overflow: visible;
}

.p-voice__slider .splide__track {
  overflow: visible;
}

.p-voice__slider .splide__slide {
  width: 18.6666666667rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.p-voice__slider .splide__pagination {
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-voice__slider .splide__pagination li + li {
  margin-left: 1.1333333333rem;
}

.p-voice__slider .splide__pagination__page {
  margin: 0;
  padding: 0;
  width: 0.5333333333rem;
  height: 0.5333333333rem;
  border: none;
  background-color: #8EB5CF;
  border-radius: 0;
  cursor: pointer;
  opacity: 1;
  bottom: -3rem;
}

.p-voice__slider .splide__pagination__page.is-active {
  background-color: #004C93;
  transform: none;
}

.p-voice-card {
  padding: 1.6666666667rem 1.2666666667rem;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 1.3333333333rem rgba(30, 30, 30, 0.2);
}

.p-voice-card__box {
  display: flex;
  align-items: center;
  gap: 0.9333333333rem;
}

.p-voice-card__icon {
  max-width: 4.4666666667rem;
  width: 100%;
}
.p-voice-card__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 67/67;
}

.p-voice-card__headline {
  font-size: 0.9333333333rem;
  line-height: 1.7857142857;
  font-weight: 700;
  white-space: nowrap;
}

.p-voice-card__text {
  font-weight: 700;
  font-size: 0.8666666667rem;
  line-height: 1.5384615385;
  margin-top: 1.4rem;
}

.p-voice__rate {
  margin: 6.6666666667rem auto 0;
  max-width: 21rem;
}
.p-voice__rate img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 315/310;
}

.p-worries {
  padding-bottom: 2rem;
  margin-top: -7.6666666667rem;
}

.p-worries__head {
  margin-top: 2.1333333333rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(100% + 10px);
}

.p-worries__title {
  font-size: 2rem;
  font-weight: 700;
  color: #255D72;
  white-space: nowrap;
  line-height: 1.3333333333;
  padding-top: 2.2666666667rem;
}

.p-worries__image {
  max-width: 8.6666666667rem;
  width: 100%;
  margin-left: -0.6666666667rem;
}

.p-worries__list {
  margin-top: -6.3333333333rem;
  padding: 1.7333333333rem 1.9333333333rem;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 1.3333333333rem rgba(48, 15, 0, 0.2);
}

.p-worries__item + .p-worries__item {
  margin-top: 1.7333333333rem;
}

.p-worries__item {
  display: flex;
  gap: 1.6rem;
}

.p-worries__icon {
  width: 1.6666666667rem;
  height: 1.6666666667rem;
  background: url("../images/top/icon-check.png") no-repeat center center/contain;
}

.p-worries__text {
  font-size: 0.8666666667rem;
  font-weight: 700;
  line-height: 1.5384615385;
}

.u-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

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