:root {
  --base-font: "Noto Sans JP", sans-serif;
  --inner: 1000px;
  --inner-small: 594px;
  --sp-max-width: 540px;
  --padding-pc: 25px;
  --padding-sp: 38px;
  --c-base: #fff;
  --c-primary: #e3f3fc;
  --c-accent: #ea6b81;
  --c-text: #006ebb;
  --c-text-link: #f6af28;
  --c-text-white: #fff;
  --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;
  --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%);
  --rounded-xxs: 3px;
  --rounded-xs: 5px;
  --rounded-sm: 7px;
  --rounded-md: 12px;
  --rounded-lg: 15px;
  --rounded-xl: 20px;
  --rounded-xxl: 25px;
  --rounded-full: 99rem;
  --flex-track: minmax(0, 1fr);
}

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

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(em) {
  font-style: normal;
}

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

:where(summary) {
  display: block;
  list-style: none;
}

:where(summary)::-webkit-details-marker {
  display: none;
}

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

:where(a) {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  font-family: var(--base-font);
  font-size: 0.9375rem;
  color: var(--c-text);
  background-color: var(--c-primary);
  font-feature-settings: "halt";
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

.c-icon {
  display: block;
  width: 100%;
}

.c-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: currentcolor;
  display: block;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.c-icon[data-c-icon=arrow]::before {
  aspect-ratio: 17/35;
  -webkit-mask-image: url(../img/icon_arrow.svg);
          mask-image: url(../img/icon_arrow.svg);
}

.c-hamburger {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.c-hamburger__line {
  --_y: 8px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 26px;
  height: 2px;
  background-color: var(--c-text);
}

.c-hamburger__line::before,
.c-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: transform 0.3s, top 0.3s;
}

.c-hamburger__line::before {
  top: calc(-1 * var(--_y));
}

.c-hamburger__line::after {
  top: var(--_y);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line {
  background-color: transparent;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::before,
.c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  top: 0;
  background-color: var(--c-text);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::before {
  transform: rotate(45deg);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  transform: rotate(-45deg);
}

.c-button-primary {
  --_bg-color: #e7f2fb;
  display: block;
  border: 1px solid;
  border-radius: var(--rounded-full);
  padding: 8px;
  background-color: var(--_bg-color);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  background-image: url(../img/icon_arrow.svg);
  background-size: 8px;
  background-position: calc(100% - 15px) center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-button-primary {
    font-size: 0.875rem;
    display: inline-flex;
    justify-content: center;
    padding: 7px 25px;
    min-width: 200px;
    background-size: 7px;
    background-position: calc(100% - 12px) center;
  }
}

.c-button-primary[data-color=yellow] {
  --_bg-color: #fff8b0;
}

.c-button-primary[data-letter-spacing=pc20Sp200] {
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-button-primary[data-letter-spacing=pc20Sp200] {
    letter-spacing: 0.2em;
  }
}

.c-button-primary[data-letter-spacing=pc200Sp200] {
  letter-spacing: 0.2em;
}

.c-button-primary[data-letter-spacing=pc120Sp120] {
  letter-spacing: 0.12em;
}

.c-button-secondary {
  --_bg-color: #e7f2fb;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  border-radius: var(--rounded-full);
  padding: 4px 15px;
  background-color: #ffe0e4;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .c-button-secondary {
    font-size: 0.875rem;
    display: inline-flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding: 5px 12px 5px 2px;
  }
}

.c-button-secondary::before,
.c-button-secondary::after {
  content: "";
  width: 0.5em;
}

.c-button-secondary::after {
  width: 6px;
  aspect-ratio: 17/35;
  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-secondary::after {
    width: 7px;
  }
}

.l-header {
  background-color: var(--c-base);
  padding: 9px 0;
  position: sticky;
  top: 0px;
  left: 0;
  right: 0;
  z-index: var(--z-index-header);
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 17px 0;
  }
}

.l-header__inner {
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto var(--flex-track);
  align-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 30px;
  }
}

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

.l-header__hamburger {
  justify-self: flex-end;
  position: relative;
  z-index: calc(var(--z-index-sp-menu) + 1);
}
@media screen and (min-width: 1024px) {
  .l-header__hamburger {
    display: none;
  }
}

.l-header__buttons {
  display: none;
  justify-self: flex-end;
  -moz-column-gap: 14px;
       column-gap: 14px;
}
@media screen and (min-width: 1024px) {
  .l-header__buttons {
    display: flex;
  }
}

.l-footer {
  background-color: #dbdbdb;
}

.l-footer__about {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.72;
  padding: 20px 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__about {
    font-size: 0.875rem;
    padding: 26px 32px;
  }
}

.l-footer__copy {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--c-text-white);
  text-align: center;
  background-color: var(--c-text);
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    font-size: 0.75rem;
  }
}

.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--sm {
    width: min(var(--inner-small) + var(--padding-pc) * 2, 100%);
  }
}

.l-wrapper {
  overflow-x: clip;
}

.p-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: 100vw;
  background-color: var(--c-base);
  padding: 25px;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: var(--z-index-sp-menu);
  border-top: 1px solid #e7f2fb;
}

.p-menu__logo {
  margin-top: 1px;
  width: 134px;
}
@media screen and (min-width: 768px) {
  .p-menu__logo {
    width: 170px;
  }
}

.p-menu[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s;
}

.p-menu__list {
  margin: 0 auto;
  width: 275px;
  display: grid;
  grid-template-columns: var(--flex-track);
  row-gap: 18px;
}

.p-mv {
  padding: 24px 0 max(85px, 22.6666666667vw);
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-mv {
    padding: 60px 0 5px;
  }
}

.p-mv::before {
  content: "";
  width: 420px;
  aspect-ratio: 420/495;
  background-image: url(../img/bg_mv.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(calc(-50% - 20px));
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-mv::before {
    width: 95vw;
    width: 1368px;
    aspect-ratio: 1368/598;
    background-image: url(../img/bg_mv_pc.png);
    top: 0;
    left: calc(50% + 35px);
    transform: translateX(-50%);
  }
}

.p-mv__inner {
  margin: 0 auto;
  width: min(330px, 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    width: min(716px + var(--padding-pc) * 2, 100%);
    padding: 0 var(--padding-pc);
  }
}

.p-mv__logo,
.p-mv__texts {
  position: relative;
  z-index: 1;
}

.p-mv__logo {
  width: 308px;
  transform: translateX(-2px);
}
@media screen and (min-width: 768px) {
  .p-mv__logo {
    width: 420px;
    transform: translateX(-30px);
  }
}

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

.p-mv__copy {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.02em;
}

.p-mv__text {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.786;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    margin-top: 12px;
    font-size: 1.125rem;
    line-height: 1.556;
  }
}

.p-mv__text span {
  display: block;
}

.p-mv__ballon {
  width: 390px;
  position: absolute;
  top: -24px;
  right: -134px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-mv__ballon {
    width: 615px;
    top: -60px;
    right: -192px;
  }
}

.p-about {
  background-color: #d5e4ab;
  position: relative;
  padding: 10px 0 55px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-about {
    --_bg-change-ratio: calc(140 / 1440 * 100vw);
    margin-top: max(118px, 8.1944444444vw);
    padding: max(15px, 1.0416666667vw) 0 min(100px, 6.9444444444vw);
    background: linear-gradient(180deg, transparent 0%, transparent var(--_bg-change-ratio), #d5e4ab var(--_bg-change-ratio), #d5e4ab 100%);
  }
}

.p-about::before {
  content: "";
  width: 120%;
  aspect-ratio: 748/176;
  background-image: url(../img/bg_abouot_upper.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: calc(100% - max(20px, 5.3333333333vw));
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-about::before {
    width: 100%;
    aspect-ratio: 748/176;
    bottom: auto;
    top: -13.5416666667vw;
    left: 0;
    transform: initial;
    right: 0;
  }
}

.p-about > * {
  position: relative;
  z-index: 2;
}

.p-about__header {
  margin: 0 auto;
  width: min(314px, 100%);
}
@media screen and (min-width: 768px) {
  .p-about__header {
    width: min(858px, 100%);
  }
}

.p-about__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5625rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    justify-content: center;
    flex-direction: row;
    -moz-column-gap: 10px;
         column-gap: 10px;
    align-items: flex-end;
    font-size: 1.75rem;
  }
}

.p-about__logo {
  width: 294px;
}
@media screen and (min-width: 768px) {
  .p-about__logo {
    width: 392px;
  }
}

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

.p-about__notes {
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.667;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-about__notes {
    font-size: 0.875rem;
    line-height: 1.571;
  }
}

.p-about__flow {
  margin: 40px auto 0;
  background-color: var(--c-base);
  border-radius: var(--rounded-lg);
  padding: 45px 0 36px;
  position: relative;
  width: min(500px, 100%);
}
@media screen and (min-width: 1024px) {
  .p-about__flow {
    width: initial;
  }
}
@media screen and (min-width: 768px) {
  .p-about__flow {
    margin: 75px auto 0;
    border-radius: var(--rounded-xl);
    padding: 60px 20px;
  }
}

.p-about__sub-title {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  min-width: 250px;
  text-align: center;
  color: var(--c-text-white);
  border-radius: var(--rounded-full);
  background-color: #54c2f0;
  padding: 4px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-about__sub-title {
    font-size: 1.125rem;
    min-width: 434px;
    top: -16px;
  }
}

@media screen and (min-width: 1024px) {
  .p-about__flow-list {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}

.p-about__flow-item + .p-about__flow-item {
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  .p-about__flow-item + .p-about__flow-item {
    margin-top: 0;
  }
}

.p-about__flow-item {
  margin: 0 auto;
  color: var(--c-text-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: var(--rounded-lg);
  width: 200px;
  aspect-ratio: 200/80;
  position: relative;
  text-align: center;
  background-color: var(--_color);
  font-feature-settings: initial;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1024px) {
  .p-about__flow-item {
    margin: initial;
    width: 230px;
    aspect-ratio: 230/92;
  }
}

.p-about__flow-item::before {
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid var(--c-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-about__flow-item::before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}

.p-about__flow-item:not(:last-of-type):after {
  content: "";
  width: 21px;
  aspect-ratio: 43/91;
  background-color: var(--_color);
  -webkit-mask-image: url(../img/icon_arrow_to_bottom.svg);
          mask-image: url(../img/icon_arrow_to_bottom.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 1024px) {
  .p-about__flow-item:not(:last-of-type):after {
    top: 50%;
    left: calc(100% + 11px);
    transform: translate(0, -50%) rotate(-90deg);
  }
}

.p-about__flow-item[data-index="1"] {
  --_color: #f29600;
  font-size: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-about__flow-item[data-index="1"] {
    font-size: 1.375rem;
  }
}

.p-about__flow-item[data-index="1"] small {
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .p-about__flow-item[data-index="1"] small {
    font-size: 0.9375rem;
  }
}

.p-about__flow-item[data-index="2"] {
  --_color: #006ebb;
  font-size: 1.3125rem;
}
@media screen and (min-width: 1024px) {
  .p-about__flow-item[data-index="2"] {
    font-size: 1.4375rem;
  }
}

.p-about__flow-item[data-index="3"] {
  --_color: #ec7983;
  font-size: 1.0625rem;
}
@media screen and (min-width: 1024px) {
  .p-about__flow-item[data-index="3"] {
    font-size: 1.1875rem;
  }
}

.p-about__flow-text {
  position: relative;
  font-size: 0.875rem;
  color: var(--_color);
  position: absolute;
  top: calc(100% + 10px);
}
@media screen and (min-width: 1024px) {
  .p-about__flow-text {
    font-size: 1rem;
  }
}

.p-about__flow-text[data-position=before] {
  left: calc(50% + 20px);
}
@media screen and (min-width: 1024px) {
  .p-about__flow-text[data-position=before] {
    top: 10px;
    left: calc(100% + 10px);
    width: -moz-max-content;
    width: max-content;
  }
}

.p-about__flow-text[data-position=after] {
  top: calc(100% + 15px);
  right: calc(50% + 20px);
}
@media screen and (min-width: 1024px) {
  .p-about__flow-text[data-position=after] {
    top: calc(100% - 40px);
    left: calc(100% + 3px);
    width: -moz-max-content;
    width: max-content;
  }
}

.p-about__flow-text em {
  font-size: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-about__flow-text em {
    font-size: 1.375rem;
  }
}

.p-about__example {
  margin: 40px auto 0;
  background-color: var(--c-base);
  border-radius: var(--rounded-lg);
  padding: 35px 32px;
  position: relative;
  width: min(500px, 100%);
}
@media screen and (min-width: 1024px) {
  .p-about__example {
    border-radius: var(--rounded-xl);
    padding: 50px 105px;
    width: initial;
  }
}
@media screen and (min-width: 768px) {
  .p-about__example {
    margin: 52px auto 0;
  }
}

.p-about__sub-title {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  min-width: 250px;
  text-align: center;
  color: var(--c-text-white);
  border-radius: var(--rounded-full);
  background-color: #54c2f0;
  padding: 4px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-about__sub-title {
    font-size: 1.125rem;
    min-width: 434px;
    top: -16px;
  }
}

.p-about__example-text {
  font-size: 0.9375rem;
  font-weight: 600;
  font-feature-settings: initial;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-about__example-text {
    text-align: center;
    font-size: 1.125rem;
    font-feature-settings: "halt";
  }
}

.p-about__example-title {
  margin-top: 12px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-about__example-title {
    margin-top: 20px;
  }
}

.p-about__example-title::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

.p-about__example-title span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--c-base);
  position: relative;
  padding: 0 5px;
}
@media screen and (min-width: 1024px) {
  .p-about__example-title span {
    font-size: 1rem;
    flex-direction: row;
    -moz-column-gap: 2px;
         column-gap: 2px;
    padding: 0 20px;
  }
}

.p-about__example-title small {
  font-size: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .p-about__example-title small {
    font-size: 0.8125rem;
  }
}

.p-about__example-list {
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .p-about__example-list {
    margin: 20px auto 0;
    width: min(745px, 100%);
    display: grid;
    grid-template-columns: 230fr 492fr;
  }
}

.p-about__example-item + .p-about__example-item {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px dotted;
}
@media screen and (min-width: 1024px) {
  .p-about__example-item + .p-about__example-item {
    margin-top: 0;
    padding-top: 0;
    border-top: initial;
    border-left: 1px dotted;
    padding-left: 35px;
  }
}

.p-about__example-item {
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-about__example-item {
    display: grid;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-about__example-blocks {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
}

.p-about__example-button {
  margin-top: 5px;
}
@media screen and (min-width: 1024px) {
  .p-about__example-button {
    align-self: end;
    margin-top: 10px;
  }
}

.p-about__example-block + .p-about__example-block {
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .p-about__example-block + .p-about__example-block {
    margin-top: 0;
  }
}

.p-about__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p-about__bg::before {
  content: "";
  width: 370px;
  aspect-ratio: 724/4534;
  background-image: url(../img/bg_about.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% + 10px);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-about__bg::before {
    width: min(1313px, 91.1805555556vw);
    aspect-ratio: 1313/1455;
    background-image: url(../img/bg_about_pc.png);
    top: calc(50% - 45px);
  }
}

.p-service {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  row-gap: 205px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-service {
    margin-top: 96px;
    flex-direction: row;
    justify-content: center;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

.p-service__item {
  margin: 0 auto;
  width: min(315px, 100%);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-service__item {
    margin: initial;
    width: initial;
  }
}

.p-service__present {
  width: 422px;
  position: absolute;
  bottom: -232px;
  left: -90px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-service__present {
    width: min(613px, 49.04vw);
    bottom: max(-175px, -14vw);
    left: max(-254px, -20.32vw);
  }
}

.p-service__item[data-target=personal] {
  --_theme-color: #f2abba;
  --_theme-color_2: #ea6d8d;
  --_title-x: translateX(-22px);
  --_inner-width: min(234px, 100%);
}
@media screen and (min-width: 1024px) {
  .p-service__item[data-target=personal] {
    --_title-x: 0;
    --_inner-width: min(375px, 100%);
    --_z-index-note: 2;
  }
}

.p-service__item[data-target=personal]::before {
  content: "";
  width: 358px;
  aspect-ratio: 716/776;
  background-image: url(../img/bg_cloud_1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .p-service__item[data-target=personal]::before {
    background-image: url(../img/bg_cloud_1_pc.png);
    width: 532px;
    aspect-ratio: 523/369;
    top: calc(50% + 20px);
  }
}

.p-service__item[data-target=corporate] {
  --_theme-color: #54c2f0;
  --_theme-color_2: #009fe3;
  --_inner-width: min(275px, 100%);
}
@media screen and (min-width: 1024px) {
  .p-service__item[data-target=corporate] {
    --_inner-width: min(350px, 100%);
    transform: translateY(60px);
  }
}

.p-service__item[data-target=corporate]::before {
  content: "";
  width: 360px;
  aspect-ratio: 715/626;
  background-image: url(../img/bg_cloud_2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% + 10px);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .p-service__item[data-target=corporate]::before {
    background-image: url(../img/bg_cloud_2_pc.png);
    width: 523px;
    aspect-ratio: 523/369;
  }
}

.p-service__item-inner {
  margin: 0 auto;
  width: var(--_inner-width);
  position: relative;
  z-index: 2;
}

.p-service__title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  -moz-column-gap: 3px;
       column-gap: 3px;
  font-size: 1.5rem;
  font-weight: 600;
  transform: var(--_title-x);
}
@media screen and (min-width: 1024px) {
  .p-service__title {
    font-size: 1.6875rem;
  }
}

.p-service__title img {
  width: 105px;
}
@media screen and (min-width: 1024px) {
  .p-service__title img {
    width: 121px;
  }
}

.p-service__title-text {
  display: inline-block;
  margin-bottom: 10px;
}

.p-service__table {
  margin: 8px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.p-service__table-row {
  display: grid;
  grid-template-columns: auto var(--flex-track);
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.p-service__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-text-white);
  background-color: var(--_theme-color);
  min-width: 90px;
  text-align: center;
  border-radius: var(--rounded-xxs);
  padding: 2px;
}
@media screen and (min-width: 1024px) {
  .p-service__label {
    font-size: 1rem;
    min-width: 103px;
  }
}

.p-service__description {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .p-service__description {
    font-size: 1.125rem;
  }
}

.p-service__description span {
  color: var(--_theme-color_2);
}

.p-service__description em {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .p-service__description em {
    font-size: 2rem;
  }
}

.p-service__note {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px dotted;
  position: relative;
  z-index: var(--_z-index-note);
}
@media screen and (min-width: 1024px) {
  .p-service__note {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-service__note[data-display=mobile] {
    display: none;
  }
}

.p-service__note[data-display=desktop] {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-service__note[data-display=desktop] {
    display: block;
  }
}

.p-service__note p {
  border-top: 1px dotted var(--c-text);
}

.p-service__note span {
  font-size: 1.125rem;
  color: var(--_theme-color_2);
}
@media screen and (min-width: 1024px) {
  .p-service__note span {
    font-size: 1.25rem;
  }
}

.p-service__attention {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.41;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service__attention {
    font-size: 0.8125rem;
  }
}

.p-product {
  padding-top: 65px;
  padding-bottom: 47px;
  position: relative;
  z-index: 1;
  background-color: #b7e1f8;
}
@media screen and (min-width: 768px) {
  .p-product {
    padding-top: max(150px, 10.4166666667vw);
    padding-bottom: 65px;
  }
}

.p-product::before {
  content: "";
  width: 100%;
  aspect-ratio: 748/217;
  background-image: url(../img/bg_abouot_bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.p-product__title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-product__list {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-product__list {
    margin-top: 15px;
    border-radius: var(--rounded-xl);
    overflow: hidden;
  }
}

.p-product__item + .p-product__item {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-product__item + .p-product__item {
    margin-top: 0;
  }
}

.p-product__item {
  background-color: var(--c-base);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-product__item {
    border-radius: initial;
    display: grid;
    grid-template-columns: min(187px, 16.2608695652vw) 1fr;
  }
}

@media screen and (min-width: 768px) {
  .p-product__item:not(:first-of-type) {
    border-top: 1px solid #a8d3f3;
  }
}

.p-product__label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  background-color: #fff8b0;
  padding: 3px;
}
@media screen and (min-width: 768px) {
  .p-product__label {
    display: grid;
    place-content: center;
    font-size: 1.125rem;
  }
}

.p-product__body {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 15px 16px;
  border-top: 0.5px solid #a8d3f3;
}
@media screen and (min-width: 768px) {
  .p-product__body {
    grid-column: 2/4;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-align: left;
    padding: 15px 30px;
    border-top: initial;
    border-left: 1px solid #a8d3f3;
  }
}

@media screen and (min-width: 768px) {
  .p-product__body[data-padding=zero] {
    padding: 0;
  }
}

.p-product__body small {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-product__body small {
    font-size: 0.875rem;
  }
}

.p-product__body a {
  -webkit-text-decoration: revert;
          text-decoration: revert;
  color: var(--c-text-link);
}

.p-product__item-list {
  text-align: left;
}

.p-product__item-cols {
  display: grid;
  grid-template-columns: var(--flex-track);
  row-gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-product__item-cols {
    grid-template-columns: repeat(2, var(--flex-track));
  }
}

@media screen and (min-width: 768px) {
  .p-product__item-wrapper {
    padding: 24px 10px 20px;
  }
}

@media screen and (min-width: 768px) {
  .p-product__item-wrapper + .p-product__item-wrapper {
    border-left: 1px solid #a8d3f3;
  }
}

.p-product__item-block + .p-product__item-block {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-product__item-block + .p-product__item-block {
    border-top: 1px solid #a8d3f3;
    margin-top: 0;
    padding: 10px 30px;
  }
}

.p-product__item-block {
  text-align: left;
  position: relative;
}

.p-product__item-block:not(:first-of-type)::before {
  content: "";
  width: 100vw;
  height: 0.5px;
  background-color: #a8d3f3;
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-product__item-block:not(:first-of-type)::before {
    display: none;
  }
}

.p-product__item-target {
  margin: 0 auto;
  width: min(250px, 100%);
  font-weight: 600;
  text-align: center;
  border: 1px solid;
  border-radius: var(--rounded-full);
}
@media screen and (min-width: 768px) {
  .p-product__item-target {
    width: min(290px, 100%);
  }
}

.p-product__item-text {
  margin-top: 6px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-product__item-text {
    margin-top: 10px;
  }
}

.p-product__notes {
  margin-top: 15px;
}

.p-product__note {
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-product__note {
    font-size: 1rem;
  }
}

.p-product__text[data-align=left] {
  display: inline-block;
  text-align: left;
}

.p-app {
  padding: 38px 0 34px;
  background-color: var(--c-base);
}
@media screen and (min-width: 768px) {
  .p-app {
    padding: 47px 0;
  }
}

.p-app__bg-area {
  margin: 0 auto;
  width: min(314px, 100%);
  background-color: #fff8b0;
  border-radius: var(--rounded-lg);
  padding: 20px 16px;
}
@media screen and (min-width: 768px) {
  .p-app__bg-area {
    width: initial;
    border-radius: var(--rounded-xl);
    padding: 25px 36px;
  }
}

.p-app__title {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-app__title {
    font-size: 1.125rem;
  }
}

.p-app__title::before,
.p-app__title::after {
  --_x: -1.2em;
  content: "";
  width: 15px;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% + 2px);
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .p-app__title::before,
  .p-app__title::after {
    --_x: -1.5em;
    width: 18px;
  }
}

.p-app__title::before {
  background-image: url(../img/treat_app_left.png);
  left: var(--_x);
}

.p-app__title::after {
  background-image: url(../img/treat_app_right.png);
  right: var(--_x);
}

.p-app__list {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-app__list {
    margin-top: 18px;
  }
}

.p-app__item[data-index="1"] {
  --_img-width: 120px;
  padding-right: 12px;
}
@media screen and (min-width: 768px) {
  .p-app__item[data-index="1"] {
    --_img-width: 221px;
    padding-right: 25px;
  }
}

.p-app__item[data-index="2"] {
  --_img-width: 135px;
  padding-left: 12px;
  border-left: 1px solid;
}
@media screen and (min-width: 768px) {
  .p-app__item[data-index="2"] {
    --_img-width: 244px;
    padding-left: 29px;
  }
}

.p-app__item-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-app__item-title {
    font-size: 0.875rem;
  }
}

.p-app__item-img {
  margin-top: 8px;
  width: var(--_img-width);
}

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

.p-app__buttton a {
  display: block;
  background-color: var(--c-base);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.4;
  border-radius: var(--rounded-md);
  padding: 14px 10px;
  background-image: url(../img/icon_arrow.svg);
  background-size: 10px;
  background-position: calc(100% - 15px) center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-app__buttton a {
    font-size: 1.125rem;
    border-radius: var(--rounded-full);
    background-position: calc(100% - 32px) center;
    padding: 10px;
  }
}

.p-app__note {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-app__note {
    margin-top: 10px;
    font-size: 0.875rem;
    text-align: center;
  }
}

.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: 600;
}

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