:root {
  --inner: 1100px;
  --sp-max-width: 540px;
  --padding-pc: 20px;
  --padding-sp: 15px;
}

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

:root {
  --c-base: #fff;
  --c-primary: #aae2e3;
  --c-secondary: #ffff00;
  --c-accent: #fe0000;
  --c-text: #053a3f;
  --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%);
}

:root {
  --shadow-default: 0 4px 4px rgb(0 0 0 / 0.25);
}

:root {
  --1fr: minmax(0, 1fr);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--base-font);
  font-size: 16px;
  color: var(--c-text);
  background-color: var(--c-base);
}

.c-heading-primary {
  text-align: center;
  background-color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 42px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-heading-primary {
    padding: 18px 145px;
  }
}

.c-heading-primary::before,
.c-heading-primary::after {
  --_x: 8px;
  content: "";
  width: 30px;
  aspect-ratio: 1;
  background-color: #e0f5f4;
  -webkit-mask-image: url(/img/icon_double-circle.svg);
          mask-image: url(/img/icon_double-circle.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .c-heading-primary::before,
  .c-heading-primary::after {
    --_x: 50px;
    width: 65px;
  }
}

.c-heading-primary::before {
  left: var(--_x);
}

.c-heading-primary::after {
  right: var(--_x);
}

.c-heading-primary span {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #04393d;
}
@media screen and (min-width: 768px) {
  .c-heading-primary span {
    font-size: min(40px, 3.4782608696vw);
  }
}

.c-heading-primary--white {
  background-color: var(--c-base);
}

.c-button-in {
  --_bg-color: var(--c-base);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  row-gap: 30px;
  position: relative;
  border: 1px solid var(--_bg-color);
  text-align: center;
  padding: 11px 10px;
  background-color: var(--_bg-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-in {
    font-size: 20px;
    padding: 14px 23px;
  }
}

@media (any-hover: hover) {
  .c-button-in:hover {
    opacity: 1;
    color: var(--c-text-white);
    --_bg-color: #4db9b4;
  }
}
.c-button-in::before,
.c-button-in::after {
  content: "";
  width: 12px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .c-button-in::before,
  .c-button-in::after {
    width: 20px;
    aspect-ratio: 20/10;
  }
}

.c-button-in::after {
  background-color: currentColor;
  -webkit-mask-image: url(/img/icon_arrow.svg);
          mask-image: url(/img/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 768px) {
  .c-button-in::after {
    -webkit-mask-image: url(/img/icon_arrow_pc.svg);
            mask-image: url(/img/icon_arrow_pc.svg);
  }
}

.c-button-submit {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  row-gap: 30px;
  position: relative;
  text-align: center;
  padding: 9px 18px;
  background-color: #ffac49;
  border-radius: 50px;
  box-shadow: 3px 3px 0 #cf7913;
  font-size: 20px;
  font-weight: 600;
  color: var(--c-text-white);
  letter-spacing: 0.05em;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-submit {
    font-size: 24px;
    padding: 17px 20px;
  }
}

@media (any-hover: hover) {
  .c-button-submit:hover {
    opacity: 1;
    box-shadow: initial;
    transform: translate(3px, 3px);
  }
}
.c-button-submit::before,
.c-button-submit::after {
  content: "";
  width: 19px;
  aspect-ratio: 1;
}

.c-button-submit::after {
  background-image: url(/img/icon_circle-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-button-cta {
  --_shadow: 0 4px 4px rgb(0 0 0 / 0.25);
  margin-left: 30px;
  display: block;
  background-color: var(--c-secondary);
  border-radius: 10px;
  box-shadow: var(--_shadow);
  padding: 5px;
  position: relative;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-cta {
    margin-left: 0;
  }
}

@media (any-hover: hover) {
  .c-button-cta:hover {
    opacity: 1;
    background-color: var(--c-accent);
  }
  .c-button-cta:hover .c-button-cta__inner span {
    color: var(--c-text-white);
  }
}
.c-button-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  row-gap: 30px;
  position: relative;
  text-align: center;
  padding: 10px 17px;
}
@media screen and (min-width: 768px) {
  .c-button-cta__inner {
    padding: 13px 15px;
  }
}

.c-button-cta__inner::before,
.c-button-cta__inner::after {
  content: "";
  width: 21px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .c-button-cta__inner::before,
  .c-button-cta__inner::after {
    width: 36px;
  }
}

.c-button-cta__inner::after {
  background-color: var(--c-base);
  border-radius: 50%;
}

.c-button-cta__inner span {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-accent);
  position: relative;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-cta__inner span {
    font-size: 30px;
    font-weight: 600;
  }
}

.c-button-cta__inner span::before {
  content: "";
  width: 10px;
  aspect-ratio: 10/8;
  background-color: var(--c-accent);
  -webkit-clip-path: var(--clip-triangle-bottom);
          clip-path: var(--clip-triangle-bottom);
  position: absolute;
  top: calc(50% + 0.05em);
  left: calc(100% + 6px);
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .c-button-cta__inner span::before {
    width: 17px;
    left: calc(100% + 9px);
  }
}

.c-button-cta__img {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-button-cta__img {
    left: -50px;
  }
}

.c-button-cta__img img {
  filter: drop-shadow(var(--_shadow));
  width: 78px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .c-button-cta__img img {
    width: 133px;
  }
}

@media screen and (min-width: 768px) {
  .c-button-cta--narrow .c-button-cta__inner {
    padding: 13px 40px;
  }
}

.c-button-cta--narrow .c-button-cta__inner span {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .c-button-cta--narrow .c-button-cta__inner span {
    font-size: 30px;
  }
}

.c-text-highlight span {
  padding-right: 3px;
  background: linear-gradient(transparent 60%, var(--c-secondary) 60%, var(--c-secondary) 110%);
}

.c-text-outline {
  --_x: 0 0 var(--text-outline--width, 2px)
    var(--text-outline--color, var(--c-text-white));
  --_y: var(--_x), var(--_x), var(--_x), var(--_x), var(--_x), var(--_x);
  text-shadow: var(--_y), var(--_y), var(--_y), var(--_y), var(--_y), var(--_y);
}

.l-footer {
  padding: 20px;
  text-align: center;
  background-color: var(--c-primary);
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 30px;
  }
}

.l-footer__copy {
  font-size: 12px;
}

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

.l-wrapper {
  overflow-x: clip;
  display: grid;
  grid-template-columns: minmax(0, auto);
  grid-template-rows: 1fr auto;
  min-height: 100vh;
}

.p-mainvisual {
  padding: 36px 0 40px;
  background-color: var(--c-primary);
}
@media screen and (min-width: 1024px) {
  .p-mainvisual {
    padding: 42px 0;
  }
}

.p-mainvisual__inner {
  display: grid;
  grid-template: "logo" auto "." 16px "lead" auto "." 16px "img" auto "." 18px "button" auto "." 27px "nav" auto/var(--1fr);
}
@media screen and (min-width: 768px) {
  .p-mainvisual__inner {
    width: min(650px, 100%);
    row-gap: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__inner {
    width: min(1280px + var(--padding-pc) * 2, 100%);
    grid-template: "img ." 40px "img lead" auto "img ." 24px "img logo" auto "img ." 56px "img button" auto ". ." 62px "nav nav" auto/1fr 567px;
    row-gap: 0;
  }
}

@media screen and (min-width: 1024px) {
  .p-mainvisual__logo,
  .p-mainvisual__lead,
  .p-mainvisual__button {
    position: relative;
    z-index: 1;
  }
}

.p-mainvisual__logo {
  grid-area: logo;
  margin: 0 auto;
  width: 315px;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__logo {
    width: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__logo {
    margin: 0;
    width: auto;
  }
}

.p-mainvisual__logo a {
  display: block;
}

@media (any-hover: hover) {
  .p-mainvisual__logo a:hover {
    opacity: 1;
  }
}
.p-mainvisual__lead {
  grid-area: lead;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__lead {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__lead {
    font-size: 32px;
    text-align: right;
  }
}

.p-mainvisual__button {
  grid-area: button;
  justify-self: center;
  width: min(300px, 100%);
}
@media screen and (min-width: 768px) {
  .p-mainvisual__button {
    width: min(470px, 100%);
  }
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__button {
    justify-self: flex-end;
  }
}

.p-mainvisual__img-area {
  grid-area: img;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .p-mainvisual__img-container {
    position: absolute;
    top: 0;
    left: -16px;
    width: 820px;
    aspect-ratio: 820/600;
  }
}

.p-mainvisual__img-mask {
  -webkit-mask-image: url(/img/bg_fv_mask.svg);
          mask-image: url(/img/bg_fv_mask.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__img-mask {
    -webkit-mask-image: url(/img/bg_fv_mask_pc.svg);
            mask-image: url(/img/bg_fv_mask_pc.svg);
  }
}

.p-mainvisual__carousel .swiper-slide-active .p-mainvisual__carousel-img,
.p-mainvisual__carousel .swiper-slide-duplicate-active .p-mainvisual__carousel-img,
.p-mainvisual__carousel .swiper-slide-prev .p-mainvisual__carousel-img {
  animation: zoomUp 10s linear 0s 1 normal both;
}

.p-mainvisual__carousel-img img {
  display: block;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
.p-mainvisual__copy {
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__copy {
    top: 22px;
  }
}

.p-mainvisual__copy::before,
.p-mainvisual__copy::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  transform: translate(0, -50%);
}

.p-mainvisual__copy::before {
  width: 23px;
  aspect-ratio: 23/26;
  background-image: url(/img/icon_mv-copy_left.png);
  top: calc(50% + 20px);
  left: -18px;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__copy::before {
    width: 30px;
    top: calc(50% + 25px);
    left: -20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__copy::before {
    width: 56px;
    top: calc(50% + 45px);
    left: -42px;
  }
}

.p-mainvisual__copy::after {
  width: 16px;
  aspect-ratio: 16/31;
  background-image: url(/img/icon_mv-copy_right.png);
  top: calc(50% - 10px);
  right: -15px;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__copy::after {
    width: 24px;
    top: calc(50% - 18px);
    right: -24px;
  }
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__copy::after {
    width: 38px;
    top: calc(50% - 22px);
    right: -30px;
  }
}

.p-mainvisual__copy span {
  --_y: 1px;
  --_x: 5px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__copy span {
    font-size: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__copy span {
    --_y: 2px;
    --_x: 16px;
    font-size: 36px;
    letter-spacing: 0.07em;
  }
}

.p-mainvisual__copy span:nth-of-type(1) {
  transform: translateX(var(--_x)) translateY(var(--_y)) rotate(-20deg);
}

.p-mainvisual__copy span:nth-of-type(2) {
  transform: translateX(calc(-1 * var(--_x))) translateY(calc(-1 * var(--_y))) rotate(-20deg);
}

.p-mainvisual__marker {
  width: 88px;
  position: absolute;
  bottom: 12px;
  left: -5px;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__marker {
    width: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__marker {
    width: 220px;
    bottom: 30px;
  }
}
@media screen and (min-width: 1310px) {
  .p-mainvisual__marker {
    left: -30px;
  }
}

.p-mainvisual__nav {
  grid-area: nav;
}

.p-mainvisual__links {
  display: grid;
  grid-template-columns: repeat(2, var(--1fr));
  gap: 15px;
}
@media screen and (min-width: 1024px) {
  .p-mainvisual__links {
    margin: 0 auto;
    width: min(1100px, 100%);
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 30px 20px;
  }
}

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

.p-about__copy {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about__copy {
    font-size: 26px;
    padding-bottom: 18px;
  }
}

.p-about__copy::before {
  content: "";
  width: 240px;
  aspect-ratio: 240/10;
  background-image: url(/img/bg_about-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .p-about__copy::before {
    width: 488px;
    aspect-ratio: 488/10;
    background-image: url(/img/bg_about-line_pc.png);
  }
}

.p-about__copy::after {
  content: "";
  width: 35px;
  aspect-ratio: 31/29;
  background-image: url(/img/icon_abou_copy.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% + 3px);
  right: -4px;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-about__copy::after {
    width: 75px;
    top: calc(50% + 10px);
    right: -20px;
  }
}

.p-about__copy-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  -moz-column-gap: 1px;
       column-gap: 1px;
}
@media screen and (min-width: 768px) {
  .p-about__copy-main {
    font-size: 32px;
  }
}

.p-about__copy-main em {
  font-size: 26px;
  color: var(--c-accent);
}
@media screen and (min-width: 768px) {
  .p-about__copy-main em {
    font-size: 40px;
  }
}

.p-about__copy-main span {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-about__copy-main span {
    font-size: 40px;
  }
}

.p-about__title {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    margin-top: 50px;
  }
}

.p-about__sub-title {
  margin-top: 30px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--c-accent);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__sub-title {
    margin-top: 50px;
    font-size: 30px;
  }
}

.p-about__text {
  margin-top: 30px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    margin: 40px auto 0;
    width: min(800px, 100%);
    text-align: center;
  }
}

.p-about__imgs {
  margin: 30px auto 0;
  width: 345px;
  padding-bottom: 257px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about__imgs {
    margin: 40px auto 0;
    width: 100%;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, var(--1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}

.p-about__img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .p-about__img {
    width: 100%;
  }
}

.p-about__img--01 {
  z-index: 1;
}

.p-about__img--02,
.p-about__img--03 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-about__img--02,
  .p-about__img--03 {
    position: initial;
  }
}

.p-about__img--02 {
  top: 92px;
  right: 0;
  z-index: 2;
}

.p-about__img--03 {
  bottom: 0;
  left: 18px;
  z-index: 3;
}

.p-about__note {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__note {
    margin-top: 40px;
  }
}

.p-about__note span {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-about__note span {
    font-size: 26px;
    padding-bottom: 6px;
    background: linear-gradient(transparent 50%, var(--c-secondary) 50%, var(--c-secondary) 110%);
  }
}

.p-problem {
  background-color: var(--c-primary);
  padding: 44px 0 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-problem {
    padding: 60px 0 20px;
  }
}

.p-problem::before {
  content: "";
  width: 100%;
  height: 30px;
  background-color: inherit;
  -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::before {
    height: 100px;
  }
}

.p-problem__list {
  margin: 30px auto 0;
  width: min(730px, 100%);
  display: grid;
  grid-template-columns: var(--1fr);
  row-gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-problem__list {
    margin-top: 50px;
  }
}

.p-problem__item {
  line-height: 1.5;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #8ab2b3;
}
@media screen and (min-width: 768px) {
  .p-problem__item {
    font-size: 18px;
  }
}

.p-problem__item::before {
  content: "";
  width: 18px;
  aspect-ratio: 18/17;
  background-image: url(/img/icon_check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-problem__item::before {
    width: 21px;
  }
}

.p-problem__item strong {
  font-size: 17px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-problem__item strong {
    font-size: 20px;
  }
}

.p-question {
  background-color: #dff5f3;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-question {
    padding: 80px 0;
  }
}

@media screen and (min-width: 768px) {
  .p-question__title {
    background-color: #95dcde;
  }
}

.p-question__list {
  margin: 48px auto 0;
  width: min(325px, 100%);
  display: grid;
  grid-template-columns: var(--1fr);
  row-gap: 50px;
}
@media screen and (min-width: 768px) {
  .p-question__list {
    margin: 67px auto 0;
    width: min(832px, 100%);
    row-gap: 46px;
  }
}

.p-question__item {
  font-size: 15px;
  display: grid;
  grid-template-columns: var(--1fr);
  row-gap: 28px;
}
@media screen and (min-width: 768px) {
  .p-question__item {
    font-size: 16px;
    row-gap: 26px;
  }
}

.p-question__query,
.p-question__answer {
  display: grid;
  position: relative;
  padding-left: 46px;
}
@media screen and (min-width: 768px) {
  .p-question__query,
  .p-question__answer {
    padding-left: 60px;
  }
}

.p-question__query {
  font-weight: 700;
}

.p-question__query::before,
.p-question__answer::before {
  --_color: #6db9ba;
  font-family: var(--second-font);
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  aspect-ratio: 1;
  border: 2px solid var(--_color);
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.p-question__query::before {
  content: "Q";
  color: var(--c-text-white);
  background-color: var(--_color);
  top: 50%;
  transform: translateY(-50%);
}

.p-question__answer {
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-question__answer::before {
  content: "A";
  color: var(--_color);
  background-color: var(--c-base);
}
@media screen and (min-width: 768px) {
  .p-question__answer::before {
    top: 50%;
    transform: translateY(-50%);
  }
}

.p-company {
  background-color: rgba(170, 226, 227, 0.15);
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-company {
    padding: 80px 0;
  }
}

@media screen and (min-width: 768px) {
  .p-company__title {
    background-color: #95dcde;
  }
}

.p-company__leads {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-company__leads {
    margin-top: 50px;
    text-align: center;
  }
}

.p-company__lead + .p-company__lead {
  margin-top: 1.5em;
}

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

.p-outline {
  margin-top: 30px;
  color: var(--c-text-white);
  background-color: #d70c18;
  padding: 60px 10px;
}
@media screen and (min-width: 768px) {
  .p-outline {
    margin: 50px auto 0;
    width: min(952px, 100%);
    padding: 40px;
  }
}

.p-outline__inner {
  display: grid;
  grid-template: "title" auto "." 30px "logo" auto "." 30px "text" auto "." 30px "button" auto "." 40px "img" auto/var(--1fr);
}
@media screen and (min-width: 768px) {
  .p-outline__inner {
    grid-template: "title . logo ." auto ". . logo ." 20px "text . logo ." auto ". . logo ." 30px "button . logo ." auto ". . . . " 50px "img img img img" auto/var(--1fr) min(100px, 9.5238095238vw) auto 34px;
  }
}

.p-outline__title {
  grid-area: title;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-outline__title {
    font-size: 26px;
    text-align: left;
  }
}

.p-outline__text {
  grid-area: text;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .p-outline__text {
    font-size: 16px;
  }
}

.p-outline__buttons {
  grid-area: button;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 25px;
}
@media screen and (min-width: 768px) {
  .p-outline__buttons {
    justify-self: flex-start;
    flex-direction: row;
    row-gap: 15px;
  }
}

.p-outline__button {
  width: 250px;
}

.p-outline__button-link {
  display: block;
  border: 1px solid var(--c-base);
  border-radius: 5px;
  text-align: center;
  padding: 6px 10px;
  transition: color 0.3s, background-color 0.3s;
}

@media (any-hover: hover) {
  .p-outline__button-link:hover {
    opacity: 1;
    color: #d70c18;
    background-color: var(--c-base);
  }
}
.p-outline__button-link span {
  font-size: 20px;
  font-weight: 600;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.p-outline__button-link span::before {
  content: "";
  width: 27px;
  aspect-ratio: 1;
  background-color: currentColor;
  -webkit-mask-image: url(/img/icon_instagram.svg);
          mask-image: url(/img/icon_instagram.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.p-outline__button-microcopy {
  margin: 0 auto 5px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-outline__button-microcopy {
    font-size: 15px;
  }
}

.p-outline__button-microcopy::before,
.p-outline__button-microcopy::after {
  --_x: -1em;
  content: "";
  width: 1px;
  height: 1.5em;
  background-color: currentColor;
  position: absolute;
  top: 50%;
}

.p-outline__button-microcopy::before {
  left: var(--_x);
  transform: translate(0, -50%) rotate(-40deg);
}

.p-outline__button-microcopy::after {
  right: var(--_x);
  transform: translate(0, -50%) rotate(40deg);
}

.p-outline__logo {
  grid-area: logo;
  justify-self: center;
  width: 148px;
}
@media screen and (min-width: 768px) {
  .p-outline__logo {
    align-self: center;
    width: 178px;
  }
}

.p-outline__imgs {
  grid-area: img;
  margin: 0 auto;
  padding-bottom: 223px;
  width: min(325px, 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-outline__imgs {
    padding-bottom: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, var(--1fr));
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}

.p-outline__img--01 {
  width: 170px;
  transform: translateX(7px);
}
@media screen and (min-width: 768px) {
  .p-outline__img--01 {
    width: 100%;
    transform: initial;
  }
}

.p-outline__img--02,
.p-outline__img--03 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-outline__img--02,
  .p-outline__img--03 {
    position: initial;
  }
}

.p-outline__img--02 {
  top: 89px;
  right: 0;
  z-index: 2;
  width: 175px;
}
@media screen and (min-width: 768px) {
  .p-outline__img--02 {
    width: 100%;
  }
}

.p-outline__img--03 {
  bottom: 0;
  left: 46px;
  z-index: 3;
  width: 184px;
}
@media screen and (min-width: 768px) {
  .p-outline__img--03 {
    width: 100%;
  }
}

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

.p-flow__list {
  margin: 30px auto 0;
  width: 268px;
  counter-reset: num 0;
  display: grid;
  grid-template-columns: var(--1fr);
  row-gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    margin: 50px auto 0;
    width: 450px;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__list {
    width: 778px;
    display: flex;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}

.p-flow__item {
  counter-increment: num 1;
  display: grid;
  grid-template-columns: auto var(--1fr);
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item {
    grid-template-columns: var(--1fr);
    grid-template-rows: auto var(--1fr);
    row-gap: 18px;
  }
}

.p-flow__item:not(:first-of-type) {
  position: relative;
}

.p-flow__item:not(:first-of-type)::before {
  content: "";
  width: 17px;
  aspect-ratio: 17/11;
  background-color: var(--c-primary);
  -webkit-mask-image: url(/img/icon_arrow02.svg);
          mask-image: url(/img/icon_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: -20px;
  left: 17px;
}
@media screen and (min-width: 768px) {
  .p-flow__item:not(:first-of-type)::before {
    left: 27px;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item:not(:first-of-type)::before {
    transform: rotate(-90deg);
    top: 30px;
    left: -22px;
  }
}

.p-flow__item-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #6db9ba;
  color: #ffffa6;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-flow__item-header {
    width: 71px;
  }
}

.p-flow__item-label {
  display: inline-block;
  font-size: 10px;
  position: relative;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-flow__item-label {
    font-size: 14px;
    padding-bottom: 36px;
  }
}

.p-flow__item-label::before {
  content: counter(num);
  display: inline-block;
  font-size: 25px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .p-flow__item-label::before {
    font-size: 36px;
  }
}

.p-flow__item-text {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-flow__item-text {
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item-text {
    writing-mode: vertical-rl;
    align-self: flex-start;
    justify-self: center;
    letter-spacing: 0.4em;
  }
}

.p-solution {
  padding: 60px 0;
  background-image: url(/img/bg_solution.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-solution {
    padding: 140px 0 88px;
    background-image: url(/img/bg_solution_pc.jpg);
    background-size: cover;
    background-position-x: center;
  }
}

.p-solution__lead {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-solution__lead {
    font-size: 32px;
    --_x: 0 0 var(--text-outline--width, 5px)
      var(--text-outline--color, var(--c-text-white));
    --_y: var(--_x), var(--_x), var(--_x), var(--_x), var(--_x), var(--_x);
    text-shadow: var(--_y), var(--_y), var(--_y), var(--_y), var(--_y), var(--_y);
  }
}

.p-solution__lead::before {
  content: "";
  width: 36px;
  aspect-ratio: 1;
  background-image: url(/img/icon_light.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: -16px;
}
@media screen and (min-width: 768px) {
  .p-solution__lead::before {
    width: 63px;
    top: 7px;
    right: 70px;
  }
}

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

.p-solution__title {
  margin-top: 23px;
  display: grid;
  grid-template-columns: var(--1fr);
  justify-items: center;
  row-gap: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-solution__title {
    margin-top: 62px;
    row-gap: 22px;
  }
}

.p-solution__title-main {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-solution__title-main {
    font-size: 40px;
  }
}

.p-solution__title-main::before {
  content: "";
  width: 26px;
  aspect-ratio: 22/25;
  background-image: url(/img/icon_attention.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -12px;
  left: -26px;
}
@media screen and (min-width: 768px) {
  .p-solution__title-main::before {
    width: 42px;
    top: -12px;
    left: -47px;
  }
}

.p-solution__title-main em {
  font-size: 40px;
  color: #6db9ba;
}
@media screen and (min-width: 768px) {
  .p-solution__title-main em {
    font-size: 60px;
  }
}

.p-solution__title-sub {
  order: -1;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text-white);
  background-color: #ffbf00;
  border-radius: 50px;
  padding: 10px 28px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-solution__title-sub {
    font-size: 26px;
  }
}

.p-solution__title-sub::before {
  content: "";
  width: 25px;
  aspect-ratio: 30/20;
  background-color: inherit;
  -webkit-clip-path: var(--clip-triangle-bottom);
          clip-path: var(--clip-triangle-bottom);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}

.p-solution__list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-solution__list {
    margin-top: 58px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 30px;
  }
}

.p-solution__item {
  background-color: var(--c-base);
  border: 3px solid #6db9ba;
  border-radius: 10px;
  display: grid;
  grid-template-columns: var(--1fr);
  row-gap: 20px;
  padding: 27px 11px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-solution__item {
    padding: 37px 27px;
    width: max(325px, 33.3333333333% - 20px);
  }
}

.p-solution__item::before {
  content: "";
  width: 45px;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .p-solution__item::before {
    width: 57px;
    top: -30px;
  }
}

.p-solution__item:nth-of-type(1)::before {
  background-image: url(/img/num_1.png);
}

.p-solution__item:nth-of-type(2)::before {
  background-image: url(/img/num_2.png);
}

.p-solution__item:nth-of-type(3)::before {
  background-image: url(/img/num_3.png);
}

.p-solution__item:nth-of-type(4)::before {
  background-image: url(/img/num_4.png);
}

.p-solution__item:nth-of-type(5)::before {
  background-image: url(/img/num_5.png);
}

.p-solution__item-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--c-accent);
  text-align: center;
}

.p-solution__item-img {
  order: -1;
}

.p-solution__copy {
  margin-top: 20px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-solution__copy {
    margin-top: 40px;
    font-size: 32px;
  }
}

.p-solution__copy span {
  font-size: 26px;
  color: var(--c-accent);
}
@media screen and (min-width: 768px) {
  .p-solution__copy span {
    font-size: 40px;
  }
}

.p-support {
  background-color: rgba(109, 185, 186, 0.14);
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-support {
    padding: 80px 0;
  }
}

.p-support__block {
  margin-top: 30px;
  background-color: var(--c-base);
  border-radius: 20px;
  padding: 40px 10px;
}
@media screen and (min-width: 768px) {
  .p-support__block {
    margin-top: 50px;
    padding: 60px 50px;
  }
}

.p-support__header {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-support__header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

.p-support__meta {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-support__meta {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

.p-support__meta::before {
  content: "";
  width: 320px;
  aspect-ratio: 320/6;
  background-image: url(/img/bg_support-title-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-support__meta::before {
    width: 432px;
    aspect-ratio: 432/6;
    background-image: url(/img/bg_support-title-line_pc.png);
  }
}

.p-support__sub-title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-support__sub-title {
    font-size: 30px;
  }
}

.p-support__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-white);
  background-color: #6db9ba;
  padding: 2px 10px;
}
@media screen and (min-width: 768px) {
  .p-support__label {
    font-size: 20px;
    padding: 5px 15px;
  }
}

@media screen and (min-width: 768px) {
  .p-support__header-sub {
    font-size: 18px;
  }
}

.p-support__body {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-support__body {
    margin-top: 50px;
  }
}

.p-support__list {
  display: grid;
  grid-template-columns: var(--1fr);
  row-gap: 30px;
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .p-support__list {
    grid-template-columns: repeat(3, var(--1fr));
    row-gap: 50px;
    -moz-column-gap: 50px;
         column-gap: 50px;
    padding: 0;
  }
}

.p-support__item {
  display: grid;
  grid-template-columns: var(--1fr);
}
@media screen and (min-width: 768px) {
  .p-support__item {
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: 0;
  }
}

.p-support__item-title {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 600;
  color: #6db9ba;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-support__item-title {
    margin-top: 20px;
    font-size: 26px;
    align-self: center;
  }
}

.p-support__item-text {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-support__item-text {
    margin-top: 20px;
  }
}

.p-support__item-img {
  order: -1;
  margin: 0 auto;
  width: 165px;
}
@media screen and (min-width: 768px) {
  .p-support__item-img {
    width: min(247px, 100%);
  }
}

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

.p-support__note {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
  width: 102%;
  transform: translateX(-0.15em);
}
@media screen and (min-width: 768px) {
  .p-support__note {
    margin-top: 50px;
    font-size: 28px;
    width: 100%;
    transform: initial;
  }
}

.p-support__note span {
  color: var(--c-accent);
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .p-support__note span {
    font-size: 28px;
  }
}

.p-support__note small {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-support__note small {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .p-support__note--large {
    font-size: 30px;
  }
}

@media screen and (min-width: 768px) {
  .p-support__note--large span {
    font-size: 30px;
  }
}

.p-support__footer-sub {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .p-support__footer-sub {
    font-size: 24px;
    line-height: 1.8;
  }
}

.p-support__foot {
  margin-top: 20px;
  background-color: rgba(109, 185, 186, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(109, 185, 186, 0.4);
  padding: 30px 12px;
}
@media screen and (min-width: 768px) {
  .p-support__foot {
    padding: 36px 80px;
  }
}

.p-support__foot-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-support__foot-title {
    font-size: 24px;
  }
}

.p-support__foot-text {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-support__foot-text {
    margin-top: 36px;
  }
}

.p-cost {
  background-color: var(--c-primary);
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-cost {
    padding: 80px 0;
  }
}

.p-cost__block {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-cost__block {
    margin-top: 50px;
    background-color: #f9fdff;
    border-radius: 20px;
    padding: 60px 97px;
  }
}

.p-cost__block + .p-cost__block {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-cost__block + .p-cost__block {
    margin-top: 50px;
  }
}

.p-cost__sub-title {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cost__sub-title {
    font-size: 32px;
  }
}

.p-cost__sub-title::before,
.p-cost__sub-title::after {
  --_x: calc(-57px - 20px);
  content: "";
  width: 57px;
  aspect-ratio: 57/9;
  background-image: url(/img/bg_cost-sub-title.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-cost__sub-title::before,
  .p-cost__sub-title::after {
    --_width: min(353px, calc(353 / 1150 * 100vw));
    --_x: calc(calc(-1 * var(--_width)) - 20px);
    width: var(--_width);
    aspect-ratio: 353/10;
    background-image: url(/img/bg_cost-sub-title_pc.png);
  }
}

.p-cost__sub-title::before {
  left: var(--_x);
}

.p-cost__sub-title::after {
  right: var(--_x);
}

.p-cost__lead {
  margin-top: 30px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-cost__lead {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .p-cost__lead span {
    padding-bottom: 6px;
    background: linear-gradient(transparent 50%, var(--c-secondary) 50%, var(--c-secondary) 110%);
  }
}

.p-cost__body {
  margin-top: 30px;
}

.p-cost__body + .p-cost__body {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-cost__body + .p-cost__body {
    margin-top: 60px;
  }
}

.p-cost__table {
  margin: 0 auto;
  width: min(623px, 100%);
  background-color: var(--c-base);
  border-radius: 20px;
  padding: 20px 15px;
}
@media screen and (min-width: 768px) {
  .p-cost__table {
    padding: 40px;
    border: 2px solid rgba(109, 185, 186, 0.4);
  }
}

.p-cost__table--fullwidth {
  margin: 15px auto 0;
  padding: 40px 10px;
}
@media screen and (min-width: 768px) {
  .p-cost__table--fullwidth {
    margin: 20px auto 0;
    width: 100%;
    padding: 40px 60px;
  }
}

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

.p-cost__table-header {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .p-cost__table-header {
    font-size: 15px;
  }
}

.p-cost__list {
  margin: 5px auto 0;
  width: 315px;
}
@media screen and (min-width: 768px) {
  .p-cost__list {
    margin-top: 10px;
    width: 100%;
  }
}

.p-cost__item {
  line-height: 2;
  font-weight: 600;
  display: grid;
  grid-template-columns: 150px auto;
  align-items: baseline;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .p-cost__item {
    grid-template-columns: 225px auto;
    -moz-column-gap: 25px;
         column-gap: 25px;
    padding: 8px 5px 8px 10px;
  }
}

.p-cost__item:not(:first-of-type) {
  border-top: 1px solid rgba(109, 185, 186, 0.4);
}

.p-cost__item-header {
  font-size: 13px;
  position: relative;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-cost__item-header {
    font-size: 20px;
  }
}

.p-cost__item-header::before {
  content: "";
  width: 4px;
  aspect-ratio: 1;
  background-color: #6db9ba;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.p-cost__item-body {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-cost__item-body {
    font-size: 20px;
  }
}

.p-cost__item-body .num {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-cost__item-body .num {
    font-size: 20px;
  }
}

.p-cost__item-body .other {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .p-cost__item-body .other {
    font-size: 20px;
  }
}

.p-cost__item-sum,
.p-cost__item-amount {
  color: var(--c-accent);
  line-height: 1.5;
}

.p-cost__item-sum {
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-cost__item-sum {
    font-size: 24px;
  }
}

.p-cost__item-amount {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-cost__item-amount {
    font-size: 32px;
  }
}

.p-cost__item-amount span {
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  .p-cost__item-amount span {
    font-size: 32px;
  }
}

.p-cost__button {
  margin: 20px auto 0;
  width: 300px;
}
@media screen and (min-width: 768px) {
  .p-cost__button {
    margin: 40px auto 0;
    width: min(380px, 100%);
  }
}

.p-cost__button-link {
  --_bg-color: #6db9ba;
  --_text-color: var(--c-text-white);
  background-color: var(--_bg-color);
  border-radius: 10px;
  text-align: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  row-gap: 30px;
  position: relative;
  border: 2px solid #6db9ba;
  text-align: center;
  padding: 10px 15px;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-cost__button-link {
    padding: 8px 16px;
  }
}

@media (any-hover: hover) {
  .p-cost__button-link:hover {
    opacity: 1;
    --_bg-color: var(--c-base);
    --_text-color: #6db9ba;
  }
}
.p-cost__button-link::before,
.p-cost__button-link::after {
  content: "";
  width: 18px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .p-cost__button-link::before,
  .p-cost__button-link::after {
    width: 34px;
  }
}

.p-cost__button-link::after {
  background-color: var(--_text-color);
  border-radius: 50%;
}

.p-cost__button-link span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--_text-color);
  position: relative;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-cost__button-link span {
    font-size: 30px;
  }
}

.p-cost__button-link span::before {
  content: "";
  width: 9px;
  aspect-ratio: 10/8;
  background-color: var(--_bg-color);
  -webkit-clip-path: var(--clip-triangle-bottom);
          clip-path: var(--clip-triangle-bottom);
  position: absolute;
  top: calc(50% + 0.05em);
  left: calc(100% + 5px);
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-cost__button-link span::before {
    width: 18px;
    left: calc(100% + 8px);
  }
}

.p-cost__label {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text-white);
  background-color: #6db9ba;
  padding: 4px 12px;
}
@media screen and (min-width: 768px) {
  .p-cost__label {
    margin-left: 90px;
    font-size: 24px;
    padding: 7px 20px;
  }
}

.p-cost__table-note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--c-accent);
}
@media screen and (min-width: 1024px) {
  .p-cost__table-note {
    font-size: 20px;
  }
}

.p-cost-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.p-cost-table,
.p-cost-table th,
.p-cost-table td {
  border: none;
}

.p-cost-table tr > th:first-child,
.p-cost-table tr > td:first-child {
  width: 65px;
}
@media screen and (min-width: 1024px) {
  .p-cost-table tr > th:first-child,
  .p-cost-table tr > td:first-child {
    width: min(240px, 20.8695652174vw);
  }
}

.p-cost-table th {
  padding: 9px 0;
}

.p-cost-table td {
  padding: 20px 0;
}
@media screen and (min-width: 1024px) {
  .p-cost-table td {
    padding: 22px 0;
  }
}

.p-cost-table td {
  border-bottom: 1px solid rgba(109, 185, 186, 0.4);
}

.p-cost-table__header {
  font-size: 15px;
  font-weight: 600;
  color: #6db9ba;
}
@media screen and (min-width: 1024px) {
  .p-cost-table__header {
    font-size: 24px;
  }
}

.p-cost-table__data {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .p-cost-table__data {
    font-size: 20px;
  }
}

.p-cost-table__data--first {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-cost-table__data--first {
    font-size: 22px;
  }
}

@media screen and (min-width: 1024px) {
  .p-cost-table td.p-cost-table__data--first {
    padding-left: 24px;
  }
}

.p-cost-table__data--dash {
  position: relative;
}

.p-cost-table__data--dash::before {
  content: "";
  width: 2px;
  height: calc(100% - 21px);
  background-image: linear-gradient(to bottom, #6db9ba, #6db9ba 5px, transparent 5px, transparent 9px);
  background-size: 2px 9px;
  background-repeat: repeat-y;
  position: absolute;
  right: 98.5%;
  top: calc(50% + 3px);
  transform: translateY(-50%);
}

.p-cost-table__data .small {
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .p-cost-table__data .small {
    font-size: 20px;
  }
}

.p-cost-table__data .xs {
  font-size: 11px;
}
@media screen and (min-width: 1024px) {
  .p-cost-table__data .xs {
    font-size: 14px;
  }
}

.p-cost-table__data-inner {
  display: inline-block;
  width: 116%;
}
@media screen and (min-width: 1024px) {
  .p-cost-table__data-inner {
    width: 100%;
  }
}

.p-cta {
  background-image: url(/img/bg_cta.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 35px;
}
@media screen and (min-width: 768px) {
  .p-cta {
    background-image: url(/img/bg_cta_pc.jpg);
    padding: 60px 0;
  }
}

.p-cta__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-cta__title {
    font-size: 40px;
  }
}

.p-cta__title em {
  display: inline-block;
  padding-right: 0.2em;
  font-size: 26px;
  color: var(--c-accent);
}
@media screen and (min-width: 768px) {
  .p-cta__title em {
    font-size: 46px;
  }
}

.p-cta__lead {
  margin-top: 20px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-cta__lead {
    margin-top: 30px;
    font-size: 28px;
  }
}

.p-cta__container {
  padding-top: 150px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-cta__container {
    padding-top: 66px;
  }
}

.p-cta__button {
  margin: 0 auto;
  width: min(470px, 100%);
}

.p-cta__button-maicrocopy {
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cta__button-maicrocopy {
    font-size: 24px;
  }
}

.p-cta__button-maicrocopy::before,
.p-cta__button-maicrocopy::after {
  --_x: -50px;
  content: "";
  width: 35px;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-cta__button-maicrocopy::before,
  .p-cta__button-maicrocopy::after {
    --_x: -66px;
    width: 49px;
  }
}

.p-cta__button-maicrocopy::before {
  background-image: url(/img/icon_microcopy_left.png);
  left: var(--_x);
}

.p-cta__button-maicrocopy::after {
  background-image: url(/img/icon_microcopy_right.png);
  right: var(--_x);
}

.p-cta__button-link {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .p-cta__button-link {
    margin-top: 14px;
  }
}

.p-cta__img {
  filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.1));
  position: absolute;
}

.p-cta__img--01 {
  width: 152px;
  z-index: 1;
  top: 8px;
  left: calc(50% - 175px);
}
@media screen and (min-width: 1024px) {
  .p-cta__img--01 {
    width: 223px;
    top: 9px;
    left: calc(50% - 610px);
  }
}

.p-cta__img--02 {
  width: 124px;
  z-index: 2;
  top: 43px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-cta__img--02 {
    width: 170px;
    top: 100px;
    left: calc(50% - 370px);
  }
}

.p-cta__img--03 {
  width: 140px;
  z-index: 1;
  top: 5px;
  right: calc(50% - 170px);
}
@media screen and (min-width: 1024px) {
  .p-cta__img--03 {
    width: 269px;
    top: 20px;
    right: calc(50% - 550px);
  }
}

.p-contact {
  background-color: var(--c-primary);
  padding: 60px 0 40px;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: 80px 0 50px;
  }
}

.p-contact__body {
  margin-top: 30px;
  background-color: #fafafa;
  padding: 40px 10px;
}
@media screen and (min-width: 768px) {
  .p-contact__body {
    margin-top: 50px;
    padding: 80px 144px;
  }
}

.p-contact__form {
  display: grid;
  grid-template-columns: var(--1fr);
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    row-gap: 30px;
  }
}

.p-contact__list {
  display: grid;
  grid-template-columns: var(--1fr);
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact__list {
    row-gap: 30px;
  }
}

.p-contact__item {
  display: grid;
  grid-template-columns: var(--1fr);
  row-gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-contact__item {
    grid-template-columns: 164px var(--1fr);
    align-items: flex-start;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}

.p-contact__item-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-contact__item-meta {
    padding-top: 8px;
  }
}

.p-contact__label {
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-contact__label {
    font-size: 16px;
  }
}

.p-contact__required {
  display: inline-block;
  font-size: 10px;
  line-height: 1.2;
  color: var(--c-text-white);
  background-color: #c83535;
  padding: 2px 8px;
}

.p-contact__input [type=text],
.p-contact__input [type=email],
.p-contact__input [type=tel],
.p-contact__input textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  width: 100%;
  background-color: var(--c-base);
  font-family: inherit;
  font-size: 16px;
  color: inherit;
  padding: 10px;
}

.p-contact__input textarea {
  resize: none;
  height: 144px;
}

.p-contact__privacy {
  background-color: var(--c-base);
  border: 1px solid #e2e2e2;
  padding: 24px 10px;
  height: 250px;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .p-contact__privacy {
    padding: 24px 60px;
  }
}

.p-contact__privacy-text {
  font-size: 12px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-contact__privacy-text {
    font-size: 13px;
    line-height: 1.85;
  }
}

.p-contact__privacy-text ul + ul,
.p-contact__privacy-text li + li {
  margin-top: 1em;
}

.p-contact__privacy-text a {
  -webkit-text-decoration: revert;
          text-decoration: revert;
}

.p-contact__check {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-contact__check-label {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__check-label {
    font-size: 14px;
  }
}

.p-contact__check [type=checkbox] {
  --size: 27px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  width: var(--size);
  height: var(--size);
  border: 1px solid #e2e2e2;
  background-color: var(--c-base);
  position: relative;
  display: grid;
  place-items: center;
}

.p-contact__check [type=checkbox]::before {
  content: "";
  display: block;
  width: 15px;
  height: 7px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: translate(0, -2px) rotate(-45deg);
  opacity: 0;
}

.p-contact__check [type=checkbox]:checked::before {
  opacity: 1;
}

.p-contact__button {
  margin: 0 auto;
  width: 320px;
}

.p-contact__button button {
  width: 100%;
}

.p-contact__error {
  color: var(--c-accent);
  font-size: 0.9em;
}

.p-thanks {
  background-color: var(--c-primary);
  height: 100%;
}

.p-thanks__title {
  text-align: center;
  padding: 150px 0 50px;
}

.p-thanks__btn {
  margin: 50px auto 0;
  width: min(300px, 100%);
}
@media screen and (min-width: 768px) {
  .p-thanks__btn {
    width: min(320px, 100%);
  }
}

.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-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-text-accent {
  color: var(--c-accent);
}

@keyframes spinning {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
[data-scroll-animation].u-fade-up {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 1s, transform 1s;
}

[data-scroll-animation].u-fade-up__delay {
  transition-delay: 0.2s;
}

[data-scroll-animation].u-fade-up.is-active {
  opacity: 1;
  transform: translate(0, 0);
}

.alternative {
  position: fixed !important;
  inset: 0 !important;
  display: block !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  contain: strict !important;
  pointer-events: none !important;
  opacity: 0 !important;
}