@charset "UTF-8";
:root {
  --inner: 868px;
  --sp-max-width: 540px;
  --padding-pc: 48px;
  --padding-sp: 20px;
}

:root {
  --base-font: "Noto Sans JP", serif;
}

:root {
  --c-base: #fff;
  --c-primary: #3e9bad;
  --c-secondary: #00479d;
  --c-accent: #fcee21;
  --c-bg: #b0c4de;
  --c-bg_lighter: #dce6e2;
  --c-text: #333;
  --c-text-white: #fff;
}

:root {
  --z-index-modal: 50;
  --z-index-modal-open: 100;
  --z-index-overlay: 40;
  --z-index-sp-menu: 30;
  --z-index-header: 10;
  --z-index-page-top: 5;
  --z-index-following-banner: 5;
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

:where(body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(ul, ol) {
  padding: 0;
  list-style: "";
}

:where(img) {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

:where(a) {
  text-decoration: none;
  color: inherit;
}

:where(button) {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background: none;
  touch-action: manipulation;
}

:where([type=text], [type=email], [type=tel], select, textarea) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  width: 100%;
  background-color: var(--c-base);
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
}

:where(textarea) {
  resize: none;
  field-sizing: content;
}

:where(:-moz-any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(a) {
  transition: opacity 0.3s;
  cursor: pointer;
}

:where(em) {
  font-style: normal;
}

@media (hover: hover) {
  :where(a):hover {
    opacity: 0.7;
  }
}
:focus:not(:focus-visible) {
  outline: none;
}

body {
  font-family: var(--base-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--c-text);
  background-color: var(--c-base);
}

.c-heading-primary {
  --_line-position-y: 5px;
  --_bg-main: #ecf5f7;
  --_bg-sub: var(--c-base);
  background: linear-gradient(to right, var(--_bg-sub), var(--_bg-main) 15%, var(--_bg-main) 85%, var(--_bg-sub));
  padding: 10px 0 15px;
  position: relative;
}

.c-heading-primary::before,
.c-heading-primary::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--_bg-sub);
  position: absolute;
  left: 0;
  right: 0;
}

.c-heading-primary::before {
  top: var(--_line-position-y);
}

.c-heading-primary::after {
  bottom: var(--_line-position-y);
}

.c-heading-primary__inner {
  display: block;
  text-align: center;
  line-height: 1;
}

.c-heading-primary__sub {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.075em;
}

.c-heading-primary__main {
  margin-top: 5px;
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
  letter-spacing: 0.1em;
}

.c-heading-primary--base {
  --_bg-main: var(--c-base);
  --_bg-sub: #ecf5f7;
}

.c-text-border {
  margin: 0 auto;
  font-size: 28px;
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  max-width: 360px;
}

.c-text-border::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--c-primary);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

.c-text-border__inner {
  display: inline-block;
  background-color: var(--c-base);
  position: relative;
  padding: 0 10px;
}

.c-text-border .small {
  font-size: 0.75em;
}

.c-text-border .en {
  display: inline-block;
  padding-right: 5px;
}

.c-text-underline {
  border-bottom: 1px solid var(--c-bg);
}

.l-header {
  padding: 8px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-index-header);
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 15px 0;
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 25px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__inner {
    padding: 0 8.3333333333vw;
  }
}

.l-header__logo {
  width: 158px;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 260px;
  }
}

.l-header__button {
  width: 143px;
  display: flex;
}
@media screen and (min-width: 768px) {
  .l-header__button {
    width: 240px;
  }
}

.l-header__button-text {
  display: inline-block;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}

.l-footer {
  text-align: center;
  background-color: var(--c-base);
  padding: 16px 0;
}
.l-footer__logo {
  margin: 0 auto;
  width: 180px;
}

.l-footer__copy {
  margin-top: 10px;
  display: block;
  font-size: 13px;
  color: var(--c-secondary);
  letter-spacing: -0.05em;
}

.l-inner {
  width: min(var(--sp-max-width), 100%);
  padding: 0 var(--padding-sp);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: min(var(--inner) + var(--padding-pc) * 2, 100%);
    padding: 0 var(--padding-pc);
  }
}

@media screen and (min-width: 768px) {
  .l-inner--small {
    width: min(var(--inner-small) + var(--padding-pc) * 2, 100%);
  }
}

.l-wrapper {
  overflow-x: clip;
  position: relative;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    padding-bottom: 0;
  }
}

.p-mainvisul {
  background-color: var(--c-primary);
}

.p-mainvisul__question {
  background-color: var(--c-bg_lighter);
  border-radius: 82.5% 0 0 0;
  padding-top: 55px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mainvisul__question {
    padding-top: 90px;
    background-color: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-mainvisul__question::before,
  .p-mainvisul__question::after {
    height: 100%;
    background-color: var(--c-bg_lighter);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
}

@media screen and (min-width: 768px) {
  .p-mainvisul__question::before {
    content: "";
    width: 50%;
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-mainvisul__question::after {
    content: "";
    width: 50%;
    left: 0;
    border-radius: 100% 0 0 0;
  }
}

.p-mainvisul__question-inner {
  padding: 45px 0 165px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mainvisul__question-inner {
    padding: max(50px, 5.5865921788vh) 0 max(145px, 16.2011173184vh);
  }
}

.p-mainvisul__question-text {
  margin: 0 auto;
  width: 155px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mainvisul__question-text {
    width: max(155px, 10.7638888889vw);
  }
}

.p-mainvisul__question-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - 55px);
}
@media screen and (min-width: 768px) {
  .p-mainvisul__question-bg {
    width: calc(100% - min(125px, 8.6805555556vw));
  }
}

.p-mainvisul__question-bg img {
  border-radius: 0 56px 0 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mainvisul__question-bg img {
    border-radius: 0 288px 0 0;
  }
}

.p-mainvisul__answer {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mainvisul__answer {
    bottom: -65px;
    left: 25px;
    width: initial;
  }
}
@media screen and (min-width: 1024px) {
  .p-mainvisul__answer {
    left: 8.3333333333vw;
  }
}

.p-mainvisul__answer-inner {
  padding: 0 0 0 12px;
}
@media screen and (min-width: 768px) {
  .p-mainvisul__answer-inner {
    padding: 0;
  }
}

.p-mainvisul__answer-content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 25px 10px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mainvisul__answer-content {
    display: inline-block;
    padding: 30px 100px 25px 0;
  }
}

.p-mainvisul__answer-content::before {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: inherit;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
}

.p-mainvisul__answer-title {
  width: 80px;
  position: absolute;
  top: -20px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-mainvisul__answer-title {
    width: 84px;
  }
}

.p-mainvisul__answer-title img {
  border-radius: 0;
}

.p-mainvisul__answer-text {
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.75;
  text-shadow: -1px -1px 0 var(--c-text-white), 1px -1px 0 var(--c-text-white), -1px 1px 0 var(--c-text-white), 1px 1px 0 var(--c-text-white);
}

@media (max-width: 450px) {
  .p-mainvisul__answer-text {
    text-align: justify;
  }
}
.p-mainvisul__answer-text span.primary {
  color: var(--c-primary);
}

.p-mainvisul__answer-text span.primary span {
  color: var(--c-text);
}

.p-mainvisul__answer-text em {
  display: inline-block;
}

.p-mainvisul__lead {
  margin-top: -40px;
  background-color: var(--c-primary);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mainvisul__lead {
    margin-top: 0;
  }
}

.p-mainvisul__lead-inner {
  margin: 0 auto;
  width: 335px;
  padding: 60px 0 20px;
}
@media screen and (min-width: 768px) {
  .p-mainvisul__lead-inner {
    width: max(640px, 44.4444444444vw);
    padding: max(105px, 11.7318435754vh) 0 max(40px, 4.469273743vh);
  }
}

.p-contact {
  background-color: #ecf5f7;
}

.p-contact__header {
  padding-top: 30px;
  background-color: var(--c-base);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__header {
    padding-top: 40px;
  }
}

.p-contact__header::before {
  content: "";
  width: 100%;
  height: 65px;
  background-color: var(--c-base);
  -webkit-clip-path: var(--clip-triangle-bottom);
          clip-path: var(--clip-triangle-bottom);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-contact__header::before {
    height: 100px;
  }
}

.p-contact__title-wrapper {
  position: relative;
  padding-top: 45px;
}

.p-contact__title-wrapper::before {
  content: "";
  width: 55px;
  aspect-ratio: 120/80;
  background-image: url(../img/sec4_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-contact__title {
  font-size: 26px;
  letter-spacing: 0;
}

.p-contact__text {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    margin-top: 20px;
  }
}

.p-contact__body {
  padding: 150px 0 100px;
}

.p-contact__form {
  padding: 2em;
  background-color: var(--c-base);
}

.p-voice {
  background-color: #ecf5f7;
  padding: 40px 0 60px;
}
@media screen and (min-width: 768px) {
  .p-voice {
    padding: 70px 0;
  }
}

.p-voice__list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-voice__list {
    margin-top: 50px;
  }
}

.p-card-voice {
  padding: 15px 18px 20px;
  background-color: var(--c-base);
  border-radius: 16px;
  border: 1px solid var(--c-bg);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-card-voice {
    padding: 20px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}

.p-card-voice__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.575;
  color: var(--c-primary);
}

.p-card-voice__text {
  margin-top: 8px;
  letter-spacing: 0.075em;
  line-height: 1.75;
}

.p-card-voice__sub-text {
  margin-top: 2px;
  letter-spacing: 0.075em;
  color: var(--c-primary);
}

.p-card-voice__img {
  margin: 0 auto;
  width: 240px;
}
@media screen and (min-width: 768px) {
  .p-card-voice__img {
    margin: 0;
    width: auto;
  }
}

.p-card-voice__img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 240/150;
}

.p-plan {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .p-plan {
    padding: 60px 0;
  }
}

.p-plan__title-main {
  letter-spacing: 0.025em;
}

.p-plan__title-sub {
  letter-spacing: 0.05em;
}

.p-plan__list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-plan__list {
    margin-top: 50px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
  }
}

.p-plan__foot {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-plan__foot {
    margin-top: 35px;
  }
}

.p-card-plan {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-bg);
}

.p-card-plan__number {
  display: block;
  background-color: var(--c-bg);
  display: flex;
  justify-content: center;
}

.p-card-plan__number span {
  display: inline-block;
  width: 100px;
}

.p-card-plan__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-primary);
  text-align: center;
  padding: 18px 0;
}
.p-card-plan__name span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: var(--c-text);
}
.p-card-plan__name span::after {
  content: " ー ";
  display: block;
  padding: 0.5em;
  color: var(--c-primary);
}

.p-card-plan__price {
  background-color: #ebf0f7;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 10px 0 15px;
}

.p-card-plan__price .yen {
  margin-right: 3px;
  display: inline-block;
  font-size: 0.6em;
  vertical-align: top;
  transform: translateY(0.15em);
}

.p-card-plan__price .sub {
  margin-top: 12px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
}

.p-card-plan__highlight {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-text-white);
  background-color: var(--c-primary);
  text-align: center;
  padding: 6px 0;
}
.p-card-plan__highlight span {
  display: block;
  padding-top: 0.25em;
  opacity: 0.6;
  font-size: 0.75em;
}

.p-card-plan__content {
  padding-top: 15px;
}

.p-card-plan__content-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: var(--c-bg);
  text-align: center;
}

.p-card-plan__content-list {
  padding: 5px 20px;
}
@media screen and (min-width: 768px) {
  .p-card-plan__content-list {
    padding: 5px 32px;
  }
}

.p-card-plan__content-item {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.75;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.p-card-plan__content-item::before {
  content: "";
  width: 17px;
  aspect-ratio: 1;
  background-image: url(../img/sec8_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(10px + 0.3em);
  left: 0;
}

.p-card-plan__content-item:not(:first-of-type) {
  border-top: 1px solid var(--c-bg);
}

.p-card-plan__content-item_custom {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.75;
  padding: 10px 0;
  text-align: center;
}

.p-merit {
  background-color: #ecf5f7;
  padding: 45px 0 55px;
}
@media screen and (min-width: 768px) {
  .p-merit {
    padding: 65px 0 55px;
  }
}

.p-merit__list {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 15px;
}
@media screen and (min-width: 768px) {
  .p-merit__list {
    margin-top: 65px;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 15px;
  }
}

.p-merit__foot {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-merit__foot {
    margin-top: 35px;
  }
}

.p-merit-item {
  border: 1px solid #b0c4de;
  border-radius: 16px;
  background-color: var(--c-base);
  padding: 32px 18px 10px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr;
}
@media screen and (min-width: 768px) {
  .p-merit-item {
    padding: 50px 16px 30px;
    display: block;
  }
}

.p-merit-item__sub-text {
  font-size: 14px;
  letter-spacing: 0.075em;
  line-height: 1.28;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-merit-item__sub-text {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.75;
  }
}

.p-merit-item__main-text {
  align-self: flex-end;
  margin-top: 5px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-merit-item__icon {
  width: 56px;
  aspect-ratio: 1;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-merit-item__icon {
    width: 84px;
    top: -42px;
  }
}

.p-problem {
  padding: 50px 0 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-problem {
    padding: 60px 0 0;
  }
}

.p-problem::before {
  content: "";
  width: 100%;
  height: 218px;
  background: linear-gradient(to bottom, var(--c-bg_lighter), var(--c-base));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.p-problem::after {
  content: "";
  width: 100%;
  height: 50px;
  background-color: var(--c-base);
  -webkit-clip-path: var(--clip-triangle-bottom);
          clip-path: var(--clip-triangle-bottom);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-problem::after {
    height: 100px;
  }
}

.p-problem__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-problem__inner {
    width: min(1200px + var(--padding-pc) * 2, 100%);
  }
}

.p-problem__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  line-height: 1.5;
}

.p-problem__title em {
  display: inline-block;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  line-height: 1.2;
}

.p-problem__title span {
  margin-top: 5px;
  display: inline-block;
}

.p-problem__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-problem__list {
    margin-top: 40px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}

.p-problem__texts {
  margin-top: 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-problem__texts {
    margin-top: 35px;
  }
}

.p-problem__text01 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.p-problem__text02 {
  margin-top: 25px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.075em;
  color: var(--c-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
}
@media screen and (min-width: 768px) {
  .p-problem__text02 {
    margin-top: 30px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

.p-problem__text02 img {
  width: 56px;
}

.p-problem__text03 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-problem__text03 {
    margin-top: 30px;
  }
}

.p-problem__border {
  margin: 25px 0;
}
@media screen and (min-width: 768px) {
  .p-problem__border {
    margin: 30px 0;
  }
}

.p-problem__border img {
  height: auto;
  aspect-ratio: 343/3;
}
@media screen and (min-width: 768px) {
  .p-problem__border img {
    aspect-ratio: 870/3;
  }
}

.p-problem__text04 {
  font-weight: 700;
  letter-spacing: 0.075em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-problem__text04 {
    flex-direction: row;
    justify-content: center;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}

.p-problem__text04 img {
  width: 80px;
}

.p-problem__text05 {
  margin-top: 25px;
  font-weight: 700;
  letter-spacing: 0.075em;
}

.p-card-problem {
  padding: 10px 0 10px 0;
  border-radius: 16px;
  border: 1px solid var(--c-bg);
  display: grid;
}

.p-card-problem__body {
  padding: 8px 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}
@media screen and (min-width: 768px) {
  .p-card-problem__body {
    padding: 10px 0;
  }
}

.p-card-problem__label {
  background-color: var(--c-primary);
}

.p-card-problem__label img {
  margin: 0 auto;
  width: 100px;
}

.p-card-problem__text {
  letter-spacing: 0.075em;
  line-height: 1.75;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-card-problem__text {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 5px 5px 10px;
    text-align: center;
  }
}

.p-card-problem__img {
  order: -1;
}

.p-card-problem__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mistake {
  padding-top: 70px;
  background-color: #ecf5f7;
}
@media screen and (min-width: 768px) {
  .p-mistake {
    padding-top: 140px;
  }
}

.p-mistake__foot {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mistake__foot {
    margin-top: 50px;
  }
}

.p-mistake__foot strong {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--c-primary);
  background: linear-gradient(transparent 50%, var(--c-base) 50%, var(--c-base) 85%, transparent 85%, transparent 100%);
}

.p-mistake__next {
  margin-top: 40px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--c-primary);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mistake__next {
    margin-top: 50px;
  }
}

.p-mistake__next img {
  display: block;
  margin: 10px auto 0;
  width: 50px;
}
@media screen and (min-width: 768px) {
  .p-mistake__next img {
    margin: 15px auto 0;
  }
}

.p-mistake__bg {
  margin-top: 20px;
  padding: 25px 10px 29px;
  background-color: var(--c-primary);
}
@media screen and (min-width: 768px) {
  .p-mistake__bg {
    margin-top: 30px;
  }
}

.p-mistake__bg-text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--c-text-white);
  text-align: center;
}

.p-mistake__bg-text em {
  color: var(--c-accent);
}

.p-cause {
  padding: 40px 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cause {
    padding: 120px 0 30px;
  }
}

.p-cause::before {
  content: "";
  width: 100%;
  height: 218px;
  background: linear-gradient(to bottom, var(--c-bg), var(--c-base));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-cause::before {
    height: 300px;
  }
}

.p-cause::after {
  content: "";
  width: 100%;
  height: 35px;
  background-color: var(--c-base);
  -webkit-clip-path: var(--clip-triangle-bottom);
          clip-path: var(--clip-triangle-bottom);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-cause::after {
    height: 100px;
  }
}

.p-cause__inner {
  position: relative;
}

.p-cause__img {
  max-width: 390px;
  margin: 0 auto;
}

.p-cause__text {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-cause__text {
    margin-top: 10px;
    text-align: center;
  }
}

.p-cause__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-cause__list {
    margin-top: 50px;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}

.p-cause__item {
  border-radius: 16px;
  border: 1px solid var(--c-bg);
  padding: 20px 20px 25px;
}
@media screen and (min-width: 768px) {
  .p-cause__item {
    padding: 20px;
  }
}

.p-cause__item-num {
  display: block;
  margin: 0 auto;
  width: 50px;
}

.p-cause__item-text {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3125;
  text-align: justify;
}

.p-cause__foot {
  margin-top: 50px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  text-align: center;
}

.p-result {
  padding: 100px 0 50px;
  background-color: #ecf5f7;
}
@media screen and (min-width: 768px) {
  .p-result {
    padding: 140px 0 60px;
  }
}

.p-result__lead {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.75;
  text-align: center;
}

.p-result__img {
  margin: 30px auto 0;
  width: min(520px, 100%);
}
@media screen and (min-width: 768px) {
  .p-result__img {
    margin: 40px auto 0;
  }
}

.p-result__text {
  margin-top: 30px;
  letter-spacing: 0.075em;
  line-height: 1.75;
  padding: 0 20px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-result__text {
    margin-top: 50px;
    text-align: center;
    padding: 0;
  }
}

.p-answer {
  padding: 30px 0 45px;
}
@media screen and (min-width: 768px) {
  .p-answer {
    padding: 70px 0 90px;
  }
}

.p-answer__lead {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.88;
  position: relative;
  padding-top: 45px;
}

.p-answer__lead::before {
  content: "";
  width: 55px;
  aspect-ratio: 120/80;
  background-image: url(../img/sec4_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-answer__lead strong {
  font-size: 26px;
  font-weight: 900;
  color: var(--c-primary);
}

.p-answer__lead strong span {
  font-size: 0.75em;
}

.p-answer__title {
  margin-top: 60px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-answer__title {
    margin-top: 72px;
  }
}

.p-answer__title img {
  width: 104px;
}

.p-answer__img {
  margin: 30px auto 0;
  width: 256px;
}
@media screen and (min-width: 768px) {
  .p-answer__img {
    margin: 40px auto 0;
    width: 384px;
  }
}

.p-answer__text01 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-answer__text01 {
    margin-top: 30px;
  }
}

.p-answer__text02 {
  margin-top: 10px;
  letter-spacing: 0.075em;
  line-height: 1.75;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-answer__text02 {
    margin-top: 15px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .p-point {
    padding-bottom: 60px;
  }
}

.p-point__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 25px;
}
@media screen and (min-width: 768px) {
  .p-point__list {
    margin-top: 55px;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.p-point__item-block {
  border: 1px solid var(--c-bg_lighter);
  position: relative;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .p-point__item-block {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr;
  }
}

.p-point__item-label {
  display: inline-block;
  width: 95px;
  position: absolute;
  top: 0;
  left: -8px;
}

.p-point__item-header {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.575;
  text-align: center;
  padding: 50px 20px 25px;
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-point__item-body {
  letter-spacing: 0.075em;
  line-height: 1.75;
  background-color: var(--c-bg_lighter);
  padding: 15px 20px;
  border-radius: 0 0 16px 16px;
}
@media screen and (min-width: 768px) {
  .p-point__item-body {
    text-align: justify;
  }
}

.p-point__item-img {
  margin: 1.5em 0em 3em;
}
@media screen and (min-width: 768px) {
  .p-point__item-img {
    margin: 2em 2em 3em;
  }
}

.p-cta {
  padding-top: 45px;
  background-color: #dae6e2;
}
@media screen and (min-width: 768px) {
  .p-cta {
    padding-top: 80px;
  }
}

.p-cta__header {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-cta__header {
    font-size: 1.5em;
  }
}

.p-cta__header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-cta__header em {
  font-size: 26px;
  color: var(--c-primary);
}
@media screen and (min-width: 768px) {
  .p-cta__header em {
    font-size: 1.5em;
  }
}

.p-cta__button {
  margin: 10px auto 0;
  width: min(560px, 100%);
  transform: translateX(-2.5%);
}
@media screen and (min-width: 768px) {
  .p-cta__button {
    margin: 20px auto 0;
    transform: initial;
  }
}

.p-cta__button button {
  display: block;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .p-cta__button button:hover {
    opacity: 0.7;
  }
}
.p-cta__img {
  margin: 0 auto;
  width: min(560px, 100%);
}

.p-sp-banner {
  padding-top: 2px;
  background-color: var(--c-secondary);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-index-following-banner);
}

.p-sp-banner button {
  display: block;
  width: 100%;
}

.p-sp-banner::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--c-base);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.p-sp-banner__text {
  margin: 0 auto;
  display: block;
  width: 240px;
  position: relative;
}

.p-sp-banner__parts {
  display: inline-block;
  width: 76px;
  position: absolute;
  top: -12px;
  right: -35px;
}

.p-pc-banner {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(3px, -50%);
  z-index: var(--z-index-following-banner);
  width: 80px;
  transition: transform 0.3s;
}

.p-pc-banner button {
  display: block;
}

@media (any-hover: hover) {
  .p-pc-banner:hover {
    transform: translate(0, -50%);
  }
}
.p-exit-popup {
  position: fixed;
  inset: 0;
  margin: 0;
  overflow: auto;
  width: 100%;
  height: 100dvh;
  z-index: 999;
  padding: 50px;
  display: flex;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  .p-exit-popup {
    padding: 20px;
  }
}
.p-exit-popup__inner {
  margin: 0 auto;
  width: min(325px, 100%);
  background-color: #fff;
  border-radius: 16px;
  padding: 20px 38px 30px;
  text-align: center;
  position: relative;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-exit-popup__inner {
    width: min(450px, 100%);
  }
}

.p-exit-popup__inner::before {
  --_size: 100%;
  content: "";
  width: var(--_size);
  height: var(--_size);
  background-color: #ecf5f7;
  border-radius: inherit;
  position: absolute;
  inset: 0;
}

.p-exit-popup__inner > * {
  position: relative;
  z-index: 1;
}

.p-exit-popup__header {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  letter-spacing: 0.075em;
  position: relative;
}

.p-exit-popup__header::before,
.p-exit-popup__header::after {
  --_position-x: calc(-56px + -10px);
  content: "";
  width: 56px;
  aspect-ratio: 56/13;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.p-exit-popup__header::before {
  background-image: url(../img/pop_icon_left.png);
  left: var(--_position-x);
}

.p-exit-popup__header::after {
  background-image: url(../img/pop_icon_right.png);
  right: var(--_position-x);
}

.p-exit-popup__body {
  margin-top: 20px;
  background-color: var(--c-base);
  padding: 20px 15px;
}

.p-exit-popup__sub-title {
  margin: 0 auto;
  width: 160px;
}

.p-exit-popup__text {
  margin-top: 15px;
  letter-spacing: 0.075em;
  line-height: 1.7;
}

.p-exit-popup__close {
  position: absolute;
  top: -35px;
  right: 0;
}

.p-exit-popup__close button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  background-color: transparent;
}

.p-exit-popup__overlay {
  position: fixed;
  inset: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100dvh;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.u-hidden {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  visibility: hidden;
  opacity: 0;
  outline: none;
  overflow: hidden;
  pointer-events: none;
}

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

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: revert;
  }
}

.u-di {
  display: inline;
}

.u-db {
  display: block;
}

.u-dib {
  display: inline-block;
}

.u-font-en {
  font-family: var(--second-font);
}

.u-font-bold {
  font-weight: 700;
}

.u-font-semibold {
  font-weight: 600;
}

.u-font-medium {
  font-weight: 500;
}

.u-tracking-widest {
  letter-spacing: 0.1em;
}

.u-tracking-wider {
  letter-spacing: 0.05em;
}

.u-tracking-wide {
  letter-spacing: 0.02em;
}

.u-leading-loose {
  line-height: 2;
}

.u-leading-relaxed {
  line-height: 1.7;
}

.u-leading-none {
  line-height: 1;
}

.u-text-primary {
  color: var(--c-primary);
}

.u-palt {
  font-feature-settings: "palt";
}/*# sourceMappingURL=styles.css.map */