/*base*/
html {
  font-size: 62.5%;
}

html:focus-within {
  scroll-behavior: auto;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: scroll;
  min-height: 100vh;
  color: #222;
  font-family: "Noto Sans JP", serif;
  font-size: 1.6em;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
}

:focus:not(:focus-visible) {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a[href*="tel:"] {
  cursor: pointer;
}

img {
  height: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding-left: 0;
}

input,
select,
textarea {
  padding: 0;
  font-size: 1.5rem;
}

input::-ms-reveal {
  visibility: hidden;
}

input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
  cursor: pointer;
}

input[type=submit] {
  -webkit-appearance: none;
}

textarea {
  resize: none;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

select {
  cursor: pointer;
}

hr {
  border: none;
  border-top: 1px solid #35383a;
  margin: 1rem 0;
}

rt {
  padding: 0.2rem;
  text-align: center;
}

.l-header {
  padding: 1.6rem;
}
@media screen and (width >= 1280px) {
  .l-header {
    padding-top: 6rem;
    padding-left: 6rem;
  }
}

.l-footer {
  position: relative;
  margin-bottom: var(--margin-bottom);
}
.l-footer::after {
  content: "";
  position: absolute;
  bottom: -5rem;
  height: 5rem;
  width: 100%;
  background-color: #ebf1f7;
}
@media screen and (width >= 1280px) {
  .l-footer {
    margin-bottom: 0;
  }
}

.c-cv-button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  border-radius: 100vmax;
  padding: 2.4rem 3.6rem;
  width: 100%;
  background-color: #f7a21e;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.c-cv-button--color-first {
  background-color: #587ed9;
}
.c-cv-button--color-second {
  border: 0.1rem solid #133659;
  background-color: #fff;
  color: #133659;
}
.c-cv-button--color-third {
  background-color: #999;
}
.c-cv-button--gap-small {
  gap: 0.4rem;
}
.c-cv-button--shadow-first {
  box-shadow: 0 0.4rem #c87f0c;
}
.c-cv-button--shadow-second {
  box-shadow: 0 0.4rem #133659;
}
.c-cv-button--shadow-third {
  box-shadow: 0 0.4rem #4a5b83;
}
.c-cv-button--shadow-fourth {
  box-shadow: 0 0.4rem #696969;
}
.c-cv-button--text-large {
  font-size: 2rem;
}
.c-cv-button--font-weight-inherit {
  font-weight: inherit;
}
@media screen and (width >= 1280px) {
  .c-cv-button {
    padding-block: 3rem;
    font-size: 2rem;
  }
}
.c-cv-button--text-small-lv1 {
  font-size: 1.5rem;
}
.c-cv-button--padding-small-lv1 {
  padding-block: 2rem;
}
.c-cv-button--padding-small-lv2 {
  padding-block: 1.3rem;
}
.c-cv-button--padding-small-lv3 {
  padding: 1rem 2rem;
}

.c-arrow {
  display: inline-block;
  position: relative;
  border-radius: 100vmax;
  height: 2.2rem;
  width: 2.2rem;
  background-color: #c87f0c;
}
.c-arrow::before, .c-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.1rem);
  right: 0.7rem;
  border-radius: 100vmax;
  height: 0.2rem;
  width: 0.9rem;
  background-color: #fff;
  transform-origin: calc(100% - 0.1rem) 50%;
}
.c-arrow::before {
  transform: rotate(45deg);
}
.c-arrow::after {
  transform: rotate(-45deg);
}
.c-arrow--large {
  height: 4.8rem;
  width: 4.8rem;
}
.c-arrow--large::before, .c-arrow--large::after {
  right: 1.4rem;
  height: 0.3rem;
  width: 1.6rem;
}
.c-arrow--small {
  height: 1.4rem;
  width: 1.4rem;
}
.c-arrow--small::before, .c-arrow--small::after {
  right: 0.4rem;
  height: 0.18rem;
  width: 0.7rem;
}
.c-arrow--left::before, .c-arrow--left::after {
  transform-origin: 0.1rem 50%;
}
.c-arrow--color-first {
  background-color: #133659;
}
.c-arrow--color-second {
  border: 0.2rem solid #133659;
  background-color: #fff;
}
.c-arrow--color-second::before, .c-arrow--color-second::after {
  background-color: #133659;
}
.c-arrow--color-third {
  background-color: #4a5b83;
}
.c-arrow--color-fourth {
  background-color: #696969;
}

.c-heading {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.c-heading--color-first {
  color: #fff;
}
.c-heading--color-second {
  color: #133659;
}
@media screen and (width >= 1280px) {
  .c-heading {
    margin-bottom: 3.2rem;
    font-size: 3.2rem;
  }
}
@media screen and (width >= 1280px) {
  .c-heading--pc-large {
    font-size: 4rem;
  }
}

.c-section {
  padding: 4rem 3rem;
}
@media screen and (width >= 768px) {
  .c-section {
    padding-inline: calc((100% - 70.8rem) / 2);
  }
}
@media screen and (width >= 1280px) {
  .c-section {
    padding: 10rem calc((100% - 120rem) / 2);
  }
}
@media screen and (width >= 768px) {
  .c-section--padding-adjust {
    padding-inline: 3rem;
  }
}
.c-section:has(> .swiper) {
  padding-inline: 0;
}
.c-section:has(> .swiper) > :not(.swiper) {
  padding-inline: 3rem;
}
@media screen and (width >= 768px) {
  .c-section:has(> .swiper) > :not(.swiper) {
    padding-inline: calc((100% - 70.8rem) / 2);
  }
}
@media screen and (width >= 1280px) {
  .c-section:has(> .swiper) > :not(.swiper) {
    padding-inline: calc((100% - 120rem) / 2);
  }
}
.c-section--background-first {
  background-color: #fff;
}
.c-section--background-second {
  background-color: #133659;
}
.c-section--background-third {
  background-color: #ebf1f7;
}
.c-section--border-radius-first {
  border-radius: 5rem;
}
@media screen and (width >= 1280px) {
  .c-section--border-radius-first {
    border-radius: 20rem;
  }
}
.c-section--border-radius-second {
  border-top-right-radius: 5rem;
  border-top-left-radius: 5rem;
}
@media screen and (width >= 1280px) {
  .c-section--border-radius-second {
    border-top-right-radius: 20rem;
    border-top-left-radius: 20rem;
  }
}

.c-section__background-overflow {
  position: absolute;
  left: 0;
  height: calc(100% + 10rem);
  width: 100%;
  z-index: -100;
}
.c-section__background-overflow--color-first {
  background-color: #ebf1f7;
}
.c-section__background-overflow--color-second {
  background-image: linear-gradient(#ebf1f7 0.1rem, transparent 0.1rem), linear-gradient(90deg, #ebf1f7 0.1rem, transparent 0.1rem);
  background-size: 1rem 1rem;
}
@media screen and (width >= 1280px) {
  .c-section__background-overflow--color-second {
    background-image: linear-gradient(#ebf1f7 0.2rem, transparent 0.2rem), linear-gradient(90deg, #ebf1f7 0.2rem, transparent 0.2rem);
    background-size: 2rem 2rem;
  }
}
.c-section__background-overflow--position-first {
  top: 0;
}
.c-section__background-overflow--position-second {
  bottom: 0;
}
@media screen and (width >= 1280px) {
  .c-section__background-overflow {
    height: calc(100% + 20rem);
  }
}

.c-box {
  border-radius: 1rem;
  padding: 1.6rem;
  background-color: #fff;
}
.c-box--padding-large {
  padding: 2.4rem;
}
.c-box--border-radius-small {
  border-radius: 0.4rem;
}
.c-box--shadow {
  box-shadow: 1rem 1rem #ccc;
}
.c-box--color-change {
  background-color: #ebf1f7;
}
@media screen and (width >= 1280px) {
  .c-box {
    padding: 3.2rem;
  }
}
@media screen and (width >= 1280px) {
  .c-box--padding-large-pc {
    padding: 4rem;
  }
}

.c-triangle {
  height: 1rem;
  width: 1.6rem;
  margin-inline: auto;
  background-color: #fff;
  clip-path: polygon(50% 1rem, 0% 0%, 1.6rem 0%);
}
@media screen and (width >= 1280px) {
  .c-triangle {
    height: 2.5rem;
    width: 4rem;
    clip-path: polygon(50% 2.5rem, 0% 0%, 4rem 0%);
  }
}

.c-container > * + * {
  margin-top: 1.6rem;
}
@media screen and (width >= 1280px) {
  .c-container > * + * {
    margin-top: 2.4rem;
  }
}
.c-container--centering {
  margin-inline: auto;
}
@media screen and (width >= 1280px) {
  .c-container--pc-margin-large > * + * {
    margin-top: 3.2rem;
  }
}
@media screen and (width >= 1280px) {
  .c-container--pc-size-medium {
    width: 101.6rem;
  }
}

.c-display-pc {
  display: none;
}
@media screen and (width >= 1280px) {
  .c-display-pc {
    display: inline-block;
  }
}

@media screen and (width >= 1280px) {
  .c-display-pc-none {
    display: none;
  }
}

@media (any-hover: hover) {
  .c-hover:hover {
    filter: brightness(120%);
  }
  .c-hover:hover, .c-hover.is-hovered {
    transition: 0.15s linear;
  }
}

.p-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.p-header__logo {
  height: 2.5rem;
  width: 4rem;
}
@media screen and (width >= 1280px) {
  .p-header__logo {
    height: 5rem;
    width: 8rem;
  }
}

.p-header__text {
  color: #999;
  font-size: 1rem;
}
@media screen and (width >= 1280px) {
  .p-header__text {
    font-size: 1.8rem;
    font-weight: bold;
  }
}

@media screen and (width >= 1280px) {
  .p-header__conversion {
    position: fixed;
    top: 4rem;
    right: 6rem;
    width: 36rem;
    z-index: 400;
  }
}

.p-main-visual,
.p-main-visual__image,
.p-main-visual__background {
  position: absolute;
  overflow: hidden;
}

.p-main-visual {
  top: 0;
  left: 0;
  height: 100dvh;
  min-height: 70rem;
  width: 100%;
  z-index: -100;
}
@media screen and (width < 340px) {
  .p-main-visual {
    min-height: 75rem;
  }
}
@media screen and (width >= 1280px) {
  .p-main-visual {
    height: calc(100dvh + 20rem);
    min-height: 100rem;
    max-height: 140rem;
  }
}

.p-main-visual__image {
  height: auto;
  width: 25.5rem;
  animation: main-visual-image 1s ease-out forwards;
  z-index: -100;
}
@media screen and (width >= 768px) {
  .p-main-visual__image {
    transform: translateX(calc(50dvw - 50%));
  }
}
@media screen and (width >= 1280px) {
  .p-main-visual__image {
    width: 46.8rem;
    transform: translate(60dvw, -20rem);
  }
}

@keyframes main-visual-image {
  from {
    bottom: 6rem;
    left: -200dvw;
  }
  to {
    bottom: 6rem;
    left: 1rem;
  }
}
.p-main-visual__background {
  height: 150%;
  width: 150%;
  animation: main-visual-background 1.1s ease-out forwards;
  z-index: -200;
}
@media screen and (width < 340px) {
  .p-main-visual__background {
    transform: translateY(5rem);
  }
}
@media screen and (width >= 1280px) {
  .p-main-visual__background {
    transform: translate(calc(-1 * min(0rem, 100dvw - 168rem)), -20dvh);
  }
}

@keyframes main-visual-background {
  from {
    top: calc(500dvw + 32rem);
    left: -550dvw;
  }
  to {
    top: 28rem;
    left: -50dvw;
  }
}
.p-main-visual__background-content-wrapper {
  position: relative;
}

.p-main-visual__background-content {
  position: absolute;
  height: 9rem;
  width: 156rem;
  clip-path: polygon(0 28%, 95% 28%, 95% 0, 100% 50%, 95% 100%, 95% 72%, 0 72%);
  transform-origin: 100% 0;
  transform: rotate(-45deg);
}
.p-main-visual__background-content--large {
  height: 10rem;
  width: 172rem;
}
.p-main-visual__background-content--color-first {
  background-color: #88a8c8;
}
.p-main-visual__background-content--color-second {
  background-color: #a7bbeb;
}
.p-main-visual__background-content--color-third {
  background-color: #e2f1fb;
}
.p-main-visual__background-content--pattern-first {
  background-image: repeating-linear-gradient(45deg, #a7bbeb, #a7bbeb 0.5rem, transparent 0.5rem, transparent 1rem);
}
.p-main-visual__background-content--pattern-second {
  display: flex;
  align-items: center;
  height: 8.25rem;
  width: 187rem;
  clip-path: none;
}
.p-main-visual__background-content--pattern-second::before, .p-main-visual__background-content--pattern-second::after {
  content: "";
  background-image: radial-gradient(circle, #d6f2f5 0.325rem, transparent 0.325rem);
  background-position: 0.05rem 0.05rem;
  background-size: 0.75rem 0.75rem;
}
.p-main-visual__background-content--pattern-second::before {
  height: 3.75rem;
  width: 180rem;
}
.p-main-visual__background-content--pattern-second::after {
  height: 8.25rem;
  width: 6.75rem;
  clip-path: polygon(0 0, 0.75rem 0, 0.75rem 0.75rem, 2.25rem 0.75rem, 2.25rem 1.5rem, 3rem 1.5rem, 3rem 2.25rem, 4.5rem 2.25rem, 4.5rem 3rem, 6rem 3rem, 6rem 3.75rem, 6.75rem 3.75rem, 6.75rem 4.5rem, 6rem 4.5rem, 6rem 5.25rem, 4.5rem 5.25rem, 4.5rem 6rem, 3rem 6rem, 3rem 6.75rem, 2.25rem 6.75rem, 2.25rem 7.5rem, 0.75rem 7.5rem, 0.75rem 8.25rem, 0 8.25rem);
}
.p-main-visual__background-content--first {
  top: 1rem;
  right: 17rem;
  z-index: -500;
}
.p-main-visual__background-content--second {
  top: 0;
  right: 4.5rem;
  z-index: -400;
}
.p-main-visual__background-content--third {
  top: 13.5rem;
  right: 12rem;
  z-index: -300;
}
.p-main-visual__background-content--fourth {
  top: 13.5rem;
  right: 4.5rem;
  z-index: -600;
}
.p-main-visual__background-content--fifth {
  top: 25rem;
  right: 9.5rem;
  z-index: -200;
}
.p-main-visual__background-content--eighth {
  display: none;
}
@media screen and (width >= 1280px) {
  .p-main-visual__background-content {
    height: 18.6rem;
    width: 322.4rem;
  }
  .p-main-visual__background-content--first {
    top: -3rem;
    right: 30rem;
  }
  .p-main-visual__background-content--second {
    top: 1rem;
    right: 11rem;
  }
  .p-main-visual__background-content--third {
    top: 22rem;
    right: 18rem;
  }
  .p-main-visual__background-content--fourth {
    top: 30rem;
    right: 10rem;
  }
  .p-main-visual__background-content--fifth {
    top: 49rem;
    right: 11rem;
  }
  .p-main-visual__background-content--sixth {
    top: 35rem;
    right: 70rem;
  }
  .p-main-visual__background-content--seventh {
    top: 15rem;
    right: 65rem;
    z-index: -600;
  }
  .p-main-visual__background-content--eighth {
    top: 0;
    right: 63rem;
  }
  .p-main-visual__background-content--large {
    height: 20.6rem;
    width: 358rem;
  }
  .p-main-visual__background-content--pattern-first {
    background-image: repeating-linear-gradient(45deg, #a7bbeb, #a7bbeb 1rem, transparent 1rem, transparent 2rem);
  }
  .p-main-visual__background-content--pattern-second {
    display: flex;
    align-items: center;
    height: 18.15rem;
    width: 245.85rem;
    clip-path: none;
  }
  .p-main-visual__background-content--pattern-second::before, .p-main-visual__background-content--pattern-second::after {
    content: "";
    background-image: radial-gradient(circle, #d6f2f5 0.675rem, transparent 0.675rem);
    background-position: 0.15rem 0.15rem;
    background-size: 1.65rem 1.65rem;
  }
  .p-main-visual__background-content--pattern-second::before {
    height: 8.25rem;
    width: 231rem;
  }
  .p-main-visual__background-content--pattern-second::after {
    height: 18.15rem;
    width: 14.85rem;
    clip-path: polygon(0 0, 1.65rem 0, 1.65rem 1.65rem, 4.95rem 1.65rem, 4.95rem 3.3rem, 6.6rem 3.3rem, 6.6rem 4.95rem, 9.9rem 4.95rem, 9.9rem 6.6rem, 13.2rem 6.6rem, 13.2rem 8.25rem, 14.85rem 8.25rem, 14.85rem 9.9rem, 13.2rem 9.9rem, 13.2rem 11.55rem, 9.9rem 11.55rem, 9.9rem 13.2rem, 6.6rem 13.2rem, 6.6rem 14.85rem, 4.95rem 14.85rem, 4.95rem 16.5rem, 1.65rem 16.5rem, 1.65rem 18.5rem, 0 18.15rem);
  }
}

.p-firstview {
  font-weight: bold;
}

@media screen and (width >= 1280px) {
  .p-firstview__content-wrapper {
    height: calc(100dvh - var(--header-height));
    min-height: calc(80rem - var(--header-height));
    max-height: calc(120rem - var(--header-height));
    margin-left: 10dvw;
  }
}

.p-firstview__main,
.p-firstview__main-sub-title {
  width: fit-content;
}

.p-firstview__main {
  height: calc(100dvh - var(--header-height));
  min-height: calc(75rem - var(--header-height));
  margin-left: 2rem;
  padding-top: 0.8rem;
}
@media screen and (width >= 768px) {
  .p-firstview__main {
    margin-inline: auto;
  }
}
@media screen and (width >= 1280px) {
  .p-firstview__main {
    height: fit-content;
    min-height: 0;
    margin-bottom: max(0rem, 3.2rem + (100dvh - 80rem) / 6);
    margin-left: 0;
    padding-top: 3rem;
  }
}

.p-firstview__main-sub-title {
  border-radius: 100vmax;
  margin-bottom: 0.8rem;
  padding: 0.2rem 1.2rem;
  background-color: #133659;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (width >= 1280px) {
  .p-firstview__main-sub-title {
    margin-bottom: 2.4rem;
    padding: 0.8rem 2.4rem;
    font-size: 2rem;
  }
}

.p-firstview__main-title {
  margin-bottom: 1.6rem;
  color: #133659;
  font-size: 4rem;
  line-height: 1.3;
}
.p-firstview__main-title--highlight {
  position: relative;
}
.p-firstview__main-title--highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  height: 0.9rem;
  width: 100%;
  background-color: #ffd492;
  z-index: -100;
}
@media screen and (width >= 1280px) {
  .p-firstview__main-title--highlight::after {
    bottom: 0.8rem;
    height: 2rem;
  }
}
@media screen and (width >= 1280px) {
  .p-firstview__main-title {
    margin-bottom: 2.4rem;
    font-size: 8rem;
  }
}

.p-firstview__main-description {
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
}
@media screen and (width >= 1280px) {
  .p-firstview__main-description {
    background: none;
  }
}

.p-firstview__conversion-fixed {
  position: fixed;
  bottom: 0;
  padding: 1.6rem 3rem;
  width: 100%;
  z-index: 300;
}

@media screen and (width >= 1280px) {
  .p-firstview__conversion-non-fixed,
  .p-firstview__conversion-non-fixed-button {
    width: fit-content;
  }
}

.p-firstview__conversion-non-fixed {
  padding: 4rem 3rem;
  width: 100%;
}

@media screen and (width >= 768px) {
  .p-firstview__conversion-fixed,
  .p-firstview__conversion-non-fixed {
    padding-inline: calc((100% - 70.8rem) / 2);
  }
}
@media screen and (width >= 1280px) {
  .p-firstview__conversion-fixed,
  .p-firstview__conversion-non-fixed {
    padding: 0;
  }
}

@media screen and (width >= 1280px) {
  .p-firstview__main-description,
  .p-firstview__conversion-non-fixed {
    font-size: 1.8rem;
  }
}

.p-firstview__conversion-description {
  margin-bottom: 2.4rem;
}

@media screen and (width >= 1280px) {
  .p-lead {
    display: flex;
    align-items: center;
    gap: 6rem;
    justify-content: center;
  }
}

.p-lead__description {
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (width >= 1280px) {
  .p-lead__description {
    font-size: 5.4rem;
  }
}

.p-lead__description-highlight {
  color: #003890;
}

@media screen and (width >= 1280px) {
  .p-lead__conversion {
    width: fit-content;
  }
}

.p-worry {
  position: relative;
}
.p-worry::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2.2rem;
  width: 6.2rem;
  background-color: #133659;
  clip-path: polygon(50% 2.2rem, 0% 0%, 6.2rem 0%);
  transform: translate(-50%, 98%);
}
@media screen and (width >= 1280px) {
  .p-worry::after {
    height: 6.8rem;
    width: 20.2rem;
    clip-path: polygon(50% 6.8rem, 0% 0%, 20.2rem 0%);
  }
}

.p-worry__image {
  height: 12rem;
  width: 17rem;
}
@media screen and (width >= 768px) {
  .p-worry__image {
    height: 20rem;
    width: 28rem;
  }
}
@media screen and (width >= 1280px) {
  .p-worry__image {
    height: 24.8rem;
    width: 35rem;
  }
}

.p-worry-example,
.p-worry__next-to-example,
.p-worry__triangle {
  margin-bottom: 2.4rem;
}
@media screen and (width >= 1280px) {
  .p-worry-example,
  .p-worry__next-to-example,
  .p-worry__triangle {
    margin-bottom: 4rem;
  }
}

.p-worry__image-and-example {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (width >= 768px) {
  .p-worry__image-and-example {
    flex-direction: row-reverse;
    gap: 4rem;
    justify-content: center;
  }
}

.p-worry-example {
  width: 100%;
}
@media screen and (width >= 768px) {
  .p-worry-example {
    width: fit-content;
  }
}

.p-worry-example__content {
  display: flex;
  gap: 0.8rem;
}

.p-worry-example__image {
  height: 1.6rem;
  width: 1.6rem;
  margin-top: 0.7rem;
}
@media screen and (width >= 1280px) {
  .p-worry-example__image {
    height: 2rem;
    width: 2rem;
    margin-top: 0.8rem;
  }
}

.p-worry-example__text {
  font-weight: bold;
}
@media screen and (width >= 1280px) {
  .p-worry-example__text {
    font-size: 2rem;
  }
}

.p-circles {
  position: relative;
  padding-top: 6rem;
}
@media screen and (width >= 1280px) {
  .p-circles {
    padding-top: 14.6rem;
  }
}

.p-circles__title {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 4rem;
}
@media screen and (width >= 1280px) {
  .p-circles__title {
    gap: 0.8rem;
    margin-bottom: 8rem;
  }
}

.p-circles__title-top {
  font-size: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-circles__title-top {
    font-size: 2rem;
  }
}

.p-circles-detail__image {
  height: 14.8rem;
  width: 22rem;
  margin-inline: auto;
  margin-bottom: 0.8rem;
}
@media screen and (width >= 1280px) {
  .p-circles-detail__image {
    height: auto;
    width: 23.6rem;
    margin-bottom: 2.4rem;
  }
}

.p-circles-detail__text {
  font-weight: bold;
}
@media screen and (width >= 1280px) {
  .p-circles-detail__text {
    font-size: 2rem;
  }
}

.p-circles-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
}
@media screen and (width >= 1280px) {
  .p-circles-detail {
    gap: 3.2rem;
  }
}

.p-circles-detail__content {
  border: 0.1rem solid #133659;
  border-radius: 100vmax;
  height: 33rem;
  width: 33rem;
  padding-top: 4.4rem;
  padding-bottom: 4.8rem;
  background-color: #fff;
}
@media screen and (width >= 1280px) {
  .p-circles-detail__content {
    height: 38.4rem;
    width: 38.4rem;
    margin: 0;
  }
}

.p-circles-detail__text {
  text-align: center;
}

.p-slider-container__description {
  margin-bottom: 1.6rem;
  color: #fff;
}
@media screen and (width >= 1280px) {
  .p-slider-container__description {
    margin-bottom: 3.2rem;
    text-align: center;
  }
}

.p-slider-container-list {
  margin-bottom: 2.4rem;
  padding-top: 2rem;
  width: 100%;
}
@media screen and (width >= 1280px) {
  .p-slider-container-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 3.2rem;
    margin-inline: auto;
    margin-bottom: 4rem;
    padding-top: 2.4rem;
    width: 120rem;
  }
}

.p-slider-container-list__content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  height: auto;
  width: calc(100% - 6rem);
  padding-top: 3.2rem;
}
@media screen and (width >= 1280px) {
  .p-slider-container-list__content {
    display: grid;
    gap: 0.8rem;
    grid-template-rows: subgrid;
    grid-row: span 7;
    padding-top: 4rem;
    width: fit-content;
  }
}

.p-slider-container-list__number {
  position: absolute;
  top: 0;
  left: 3rem;
  border: 0.1rem solid #133659;
  border-radius: 100vmax;
  background-color: #ebf1f7;
  padding: 0.4rem 1.6rem;
  color: #133659;
  font-weight: bold;
  transform: translateY(-50%);
}
@media screen and (width >= 1280px) {
  .p-slider-container-list__number {
    left: 50%;
    padding: 0.8rem 2.4rem;
    transform: translate(-50%, -50%);
  }
}

.p-slider-container-list__title {
  margin-bottom: 0.8rem;
  color: #133659;
  font-weight: bold;
}
@media screen and (width >= 1280px) {
  .p-slider-container-list__title {
    font-size: 2rem;
  }
}

.p-slider-container-list__information-item {
  display: flex;
  gap: 0.8rem;
}

.p-slider-container-list__information-item-image {
  height: 2.1rem;
  width: 2.1rem;
}

.p-slider-container-list__information-item-text {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (width >= 1280px) {
  .p-slider-container-list__information-item-text {
    font-size: 1.6rem;
  }
}

@media screen and (width >= 1280px) {
  .p-slider-container__conversion {
    margin-inline: auto;
    width: fit-content;
  }
}

.p-cards {
  position: relative;
  container-type: inline-size;
  container-name: cards;
}

.p-cards__title {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 4.5rem;
}
@media screen and (width >= 1280px) {
  .p-cards__title {
    gap: 0.8rem;
    margin-bottom: 6.5rem;
  }
}

.p-cards__title-top {
  font-size: 1.3rem;
}
@media screen and (width >= 1280px) {
  .p-cards__title-top {
    font-size: 2rem;
  }
}

.p-cards-detail {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  margin-inline: auto;
  width: fit-content;
}
@media screen and (width >= 1280px) {
  .p-cards-detail {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}

.p-cards-detail__content {
  display: flex;
  flex-direction: column;
  gap: 3.4rem;
  position: relative;
  max-width: 50rem;
  padding-top: 2.8rem;
}
@media screen and (width >= 1280px) {
  .p-cards-detail__content {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
}

.p-cards-detail__number {
  position: absolute;
  top: -3.3rem;
  left: 2rem;
  color: #133659;
  font-family: "Exo 2";
  font-size: 4.8rem;
  line-height: 1.4;
}

.p-cards-detail__title {
  color: #133659;
  font-size: 2.4rem;
  font-weight: bold;
}

.p-cards-detail__description {
  position: relative;
}
.p-cards-detail__description::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: 0;
  border-radius: 0.1rem;
  height: 0.2rem;
  width: 3rem;
  background-color: #133659;
}

@container cards (width >= 1020px) {
  .p-cards-detail {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 4.2rem;
    max-width: 120rem;
  }
  .p-cards-detail__content {
    gap: 5rem;
    padding-top: 4rem;
  }
  .p-cards-detail__number {
    top: -4rem;
    left: 50%;
    font-size: 5.6rem;
    transform: translateX(-50%);
  }
  .p-cards-detail__title {
    text-align: center;
  }
  .p-cards-detail__description::before {
    top: -2.4rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-flow-detail {
  margin-bottom: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-flow-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.2rem;
  }
}

.p-flow-detail__content {
  position: relative;
}
.p-flow-detail__content:not(:last-child) {
  padding-bottom: 2.4rem;
}
.p-flow-detail__content:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3.8rem;
  left: 1.4rem;
  height: var(--after-height);
  width: 0.2rem;
  background: linear-gradient(to bottom, #133659 0.2rem, transparent 0.2rem) 0% 0%/0.4rem 0.4rem;
}
@media screen and (width >= 1280px) {
  .p-flow-detail__content:not(:last-child) {
    padding: 0;
  }
  .p-flow-detail__content:not(:last-child)::after {
    top: 1.6rem;
    left: calc(50% + 2.75rem);
    height: 0.3rem;
    width: 25.6rem;
    background: linear-gradient(to right, #133659 0.3rem, transparent 0.3rem) 0% 0%/0.8rem 0.8rem;
  }
}

.p-flow-detail__title {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  gap: 0.8rem;
}

@media screen and (width >= 1280px) {
  .p-flow-detail__content,
  .p-flow-detail__title {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.4rem;
  }
}

.p-flow-detail__title-number {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
  height: 3rem;
  width: 3rem;
  background-color: #133659;
  color: #fff;
}
@media screen and (width >= 1280px) {
  .p-flow-detail__title-number {
    height: 3.5rem;
    width: 3.5rem;
  }
}

.p-flow-detail__title-text {
  color: #133659;
  line-height: 1.5;
}
@media screen and (width >= 1280px) {
  .p-flow-detail__title-text {
    font-size: 2rem;
  }
}

.p-flow-detail__description {
  margin-top: 0.4rem;
  margin-left: 3.8rem;
}
.p-flow-detail__description > * + * {
  margin-top: 0.4rem;
}
@media screen and (width >= 1280px) {
  .p-flow-detail__description {
    margin: 0;
    width: 26.7rem;
  }
  .p-flow-detail__description > * + * {
    margin: 0.8rem;
  }
}

.p-flow-list__content-conversion {
  width: fit-content;
}
@media screen and (width >= 1280px) {
  .p-flow-list__content-conversion {
    margin-inline: auto;
  }
}

.p-flow-detail__caution {
  font-size: 1.2rem;
}
@media screen and (width >= 1280px) {
  .p-flow-detail__caution {
    font-size: 1.3rem;
    text-align: center;
  }
}

.p-swiper-offers {
  position: relative;
}

.p-swiper-offers__button-prev,
.p-swiper-offers__button-next {
  position: absolute;
  top: 50%;
  height: 4.8rem;
  width: 4.8rem;
  transform: translateY(-50%);
  z-index: 100;
}

.p-swiper-offers__button-prev {
  left: 0.4rem;
}
@media screen and (width >= 768px) {
  .p-swiper-offers__button-prev {
    left: calc(20.5882352941% - 2.4rem);
  }
}

.p-swiper-offers__button-next {
  right: 0.4rem;
}
@media screen and (width >= 768px) {
  .p-swiper-offers__button-next {
    right: calc(20.5882352941% - 2.4rem);
  }
}

.p-accordion {
  overflow: clip;
}
.p-accordion[open] > .p-accordion__content--header {
  margin-bottom: 0.8rem;
}
.p-accordion[open] .p-accordion__icon::after {
  transform: rotate(0);
}

.p-accordion__content {
  display: flex;
  align-items: center;
  list-style: none;
}
.p-accordion__content--header > .p-accordion__text {
  font-weight: bold;
}

.p-accordion__mark {
  align-self: flex-start;
  width: 2.2rem;
  color: #003890;
  font-weight: bold;
  line-height: 1.6;
}
.p-accordion__mark--color-first {
  color: #f7a21e;
}
@media screen and (width >= 1280px) {
  .p-accordion__mark {
    width: 3.2rem;
    font-size: 2.4rem;
    text-align: center;
  }
}

.p-accordion__text {
  width: calc(100% - 4.4rem);
}
@media screen and (width >= 1280px) {
  .p-accordion__text {
    width: calc(100% - 5rem);
  }
}

.p-accordion__icon {
  position: relative;
  height: 1.4rem;
  width: 1.4rem;
  margin-left: 0.8rem;
}
.p-accordion__icon::before, .p-accordion__icon::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  height: 0.2rem;
  width: 1.4rem;
  background-color: #003890;
  transform-origin: 50% 50%;
}
.p-accordion__icon::after {
  transform: rotate(90deg);
}
@media screen and (width >= 1280px) {
  .p-accordion__icon {
    height: 1.6rem;
    width: 1.6rem;
  }
  .p-accordion__icon::before, .p-accordion__icon::after {
    top: 0.7rem;
    height: 0.2rem;
    width: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */