@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1130px) {
  html {
    font-size: 1.4159292035vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

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

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-footer {
  background-color: #121212;
  color: #fff;
  padding: 3.75rem 0 2rem;
}
.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.l-footer__logo {
  display: inline-block;
  text-decoration: none;
}
.l-footer__logo-img {
  width: 15.5625rem;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__logo-img {
    width: 11.25rem;
  }
}
.l-footer__nav-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-group {
    gap: 2.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.l-footer__nav-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.l-footer__nav-link {
  color: #e4e4e7;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.l-footer__nav-link:hover {
  color: #fff;
  text-decoration: underline;
}
.l-footer__nav-link--privacy {
  margin-top: 0.5rem;
  color: #a1a1aa;
  font-size: 0.8125rem;
}
.l-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 1.5rem;
}
.l-footer__copyright {
  font-size: 0.75rem;
  color: #a1a1aa;
  margin: 0;
}

.l-header {
  position: sticky;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 1rem;
}
.l-header__card {
  background-color: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
          box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  padding: 0.875rem 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  .l-header__card {
    padding: 0.75rem 1rem;
  }
}
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.l-header__logo-img {
  height: 2.25rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .l-header__logo-img {
    height: 1.75rem;
  }
}
.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.l-header__nav-link:hover {
  color: #7311BD;
}
.l-header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .l-header__cta {
    display: none;
  }
}
.l-header__btn-request {
  background-color: #111111;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.375rem;
  border-radius: 0.375rem;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.l-header__btn-request:hover {
  opacity: 0.85;
}
.l-header__btn-contact {
  background-color: #7311BD;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.625rem 1.375rem;
  border-radius: 0.375rem;
  text-decoration: none;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.l-header__btn-contact:hover {
  background-color: #6513a8;
}
.l-header {
  /* ハンバーガーボタン (SPのみ表示) */
}
.l-header__drawer-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  z-index: 102;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.3125rem;
  }
}
.l-header__drawer-btn span {
  display: block;
  width: 1.375rem;
  height: 2px;
  background-color: #111111;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header__drawer-btn.is-active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.l-header__drawer-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__drawer-btn.is-active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.l-header {
  /* ドロワーメニュー (SP全画面風スライドオーバー) */
}
.l-header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, .98);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .l-header__drawer.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__drawer-inner {
  padding: 5.625rem 1.5rem 2.5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__drawer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.l-header__drawer-link {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
}
.l-header__drawer-link:hover {
  color: #7311BD;
}
.l-header__drawer-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.l-header__drawer-btn-request, .l-header__drawer-btn-contact {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 0;
  border-radius: 0.5rem;
  text-decoration: none;
}
.l-header__drawer-btn-request {
  background-color: #111111;
  color: #fff;
}
.l-header__drawer-btn-contact {
  background-color: #7311BD;
  color: #fff;
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1130px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-section {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 3.125rem 0;
  }
}
.l-section--primary-bg {
  background-color: #f3e8ff;
}
.l-section--dark-bg {
  background: linear-gradient(135deg, #6513a8 0%, #7311BD 100%);
  color: #fff;
}
.l-section--gray-bg {
  background-color: #EFEFEF;
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 3.125rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}
.c-btn--yellow {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe866), to(#FEDA0F));
  background: linear-gradient(180deg, #ffe866 0%, #FEDA0F 100%);
  color: #1e102d;
  border: 2px solid #eab308;
}
.c-btn--yellow:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#FEDA0F), to(#eec400));
  background: linear-gradient(180deg, #FEDA0F 0%, #eec400 100%);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(234, 179, 8, .4);
          box-shadow: 0 6px 16px rgba(234, 179, 8, .4);
}
.c-btn--purple {
  background-color: #7311BD;
  color: #fff;
}
.c-btn--purple:hover {
  background-color: #6513a8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.c-btn--outline {
  background-color: transparent;
  color: #7311BD;
  border: 2px solid #7311BD;
}
.c-btn--outline:hover {
  background-color: #7311BD;
  color: #fff;
}
.c-btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  width: 100%;
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .c-btn--lg {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

.c-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
          box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  border: 1px solid #e5e7eb;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.c-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 30px rgba(107, 33, 168, .12);
          box-shadow: 0 8px 30px rgba(107, 33, 168, .12);
}
.c-card--purple-border {
  border-top: 4px solid #7311BD;
}

/* 再利用可能な CTAバナーコンポーネント */
.c-cta-banner {
  background-color: #7311BD;
  color: #fff;
  padding: 3.125rem 0;
  position: relative;
  overflow: hidden;
}
.c-cta-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.c-cta-banner__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-cta-banner__title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }
}
.c-cta-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-cta-banner__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.c-cta-banner {
  /* 右端の女性イラスト（画像で差し替え可能） */
}
.c-cta-banner__woman-img {
  position: absolute;
  right: 2.5rem;
  bottom: 0;
  height: 90%;
  max-height: 12.5rem;
  width: auto;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-cta-banner__woman-img {
    display: none;
  }
}

/* 再利用可能な 2大CVボタンコンポーネント */
.c-cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.875rem;
  border-radius: 0.625rem;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.c-cta-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
          box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}
.c-cta-btn--white {
  background-color: #fff;
  border: 3px solid #FEDA0F;
  color: #111111;
}
.c-cta-btn--yellow {
  background-color: #FEDA0F;
  color: #111111;
}
.c-cta-btn__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.c-cta-btn__badge {
  background-color: #111111;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 0.3125rem;
  white-space: nowrap;
  line-height: 1.6;
}
.c-cta-btn__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-cta-btn__text {
    font-size: 0.9375rem;
  }
}
.c-cta-btn__arrow {
  width: 1.375rem;
  height: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-cta-btn__arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-section-title {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    margin-bottom: 2rem;
  }
}
.c-section-title__en {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #7311BD;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.c-section-title__main {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-section-title__main {
    font-size: 1.375rem;
  }
}
.c-section-title--white .c-section-title__en {
  color: #FEDA0F;
}
.c-section-title--white .c-section-title__main {
  color: #fff;
}

.p-about {
  background-color: #fff;
  padding: 6.875rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 3.125rem 0;
  }
}
.p-about__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.p-about__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.p-about__title .u-purple {
  color: #7311BD;
}
.p-about__title svg {
  height: 2.25rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 1.125rem;
  }
  .p-about__title img {
    width: 293px;
  }
  .p-about__title svg {
    height: 1.5rem;
  }
}
.p-about__desc {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-about__desc {
    font-size: 0.9375rem;
  }
}
.p-about {
  /* 図解画像エリア */
}
.p-about__diagram-wrapper {
  margin: 2.5rem 0 0.75rem;
  text-align: center;
}
.p-about__diagram-wrapper img {
  width: 100%;
  max-width: 60rem;
  height: auto;
  margin: 0 auto;
  border-radius: 0.75rem;
}
.p-about__diagram-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 22.5rem;
  margin: 0 auto;
}
.p-about__diagram-sp img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  margin-top: 1.25rem;
}
.p-about__caption {
  text-align: right;
  font-size: 0.75rem;
  color: #6b7280;
  max-width: 60rem;
  margin: 0 auto 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__caption {
    text-align: left;
    margin-bottom: 2.5rem;
  }
}
.p-about {
  /* 底部サクセス主張＆助成金バッジ */
}
.p-about__bottom {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-about__bottom {
    margin-bottom: 1.5rem;
  }
}
.p-about__bottom-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1.25rem;
}
.p-about__bottom-title .u-purple {
  color: #7311BD;
}
@media screen and (max-width: 767px) {
  .p-about__bottom-title {
    font-size: 1.5rem;
  }
}
.p-about__grant-badge {
  display: inline-block;
  background-color: #111111;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.25rem 1.25rem;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
          box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}
@media screen and (max-width: 767px) {
  .p-about__grant-badge {
    font-size: 0.9375rem;
    padding: 0.625rem 1.5rem;
  }
}

.p-benefit {
  background-color: #fff;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-benefit {
    padding: 3.125rem 0;
  }
}
.p-benefit__title {
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-benefit__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.p-benefit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-benefit__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-benefit__card {
  width: 100%;
  background-color: #fff;
  border: 2px solid #111111;
  border-radius: 1rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-benefit__card-header {
  background-color: #111111;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-benefit__plan-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}
.p-benefit__plan-price {
  background-color: #fff;
  color: #111111;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 5px;
  line-height: 1.4;
}
.p-benefit__card-body {
  padding: 1.5rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-benefit__card-catch {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 4rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-benefit__card-catch .u-purple {
  color: #7311BD;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-benefit__card-catch {
    font-size: 1.125rem;
    min-height: auto;
  }
}
.p-benefit {
  /* 支援内容 / 対応時間 などの区切り線＋バッジ */
}
.p-benefit__divider {
  position: relative;
  text-align: center;
  margin-bottom: 0.8125rem;
}
.p-benefit__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #111111;
  z-index: 1;
}
.p-benefit__divider span {
  position: relative;
  z-index: 2;
  display: inline-block;
  background-color: #111111;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  line-height: 1.2;
}
.p-benefit {
  /* 支援内容リスト */
}
.p-benefit__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.p-benefit__list li {
  font-size: 0.875rem;
  color: #111111;
  line-height: 1.8;
  position: relative;
  padding-left: 1rem;
}
.p-benefit__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.p-benefit__desc-text {
  font-size: 0.875rem;
  color: #111111;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.p-benefit {
  /* グラフボックス (画像表示) */
}
.p-benefit__graph-box {
  margin-top: auto;
  width: 100%;
  text-align: center;
}
.p-benefit__graph-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.p-case {
  background-color: #fff;
  padding: 5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-case {
    padding: 3.125rem 0;
  }
}
.p-case__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-case__header {
    margin-bottom: 2rem;
  }
}
.p-case__title {
  font-size: 2.125rem;
  font-weight: 700;
  color: #111111;
}
@media screen and (max-width: 767px) {
  .p-case__title {
    font-size: 1.5rem;
  }
}
.p-case {
  /* Swiper Slider Wrapper */
}
.p-case__slider-wrapper {
  position: relative;
  max-width: 60rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-case__slider-wrapper {
    padding: 0 0.625rem;
  }
}
.p-case__swiper {
  width: 100%;
  padding-bottom: 2.5rem;
}
.p-case {
  /* Each Card */
}
.p-case__card {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  height: auto;
  background-color: #fff;
  border: 1.5px solid #111111;
  border-radius: 1.25rem;
  padding: 3.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-case__card {
    padding: 1.5rem 1.25rem;
    border-radius: 1rem;
  }
}
.p-case {
  /* Top Row: Company Name + Badge */
}
.p-case__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-case__top-row {
    gap: 0.625rem;
    margin-bottom: 1rem;
  }
}
.p-case__company {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
}
@media screen and (max-width: 767px) {
  .p-case__company {
    font-size: 1rem;
  }
}
.p-case__badge {
  background-color: #111111;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 1.25rem;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .p-case__badge {
    font-size: 0.75rem;
    padding: 0.1875rem 0.75rem;
  }
}
.p-case {
  /* Metric / Catchphrase */
}
.p-case__metric {
  font-size: 1.75rem;
  font-weight: 700;
  color: #7311BD;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-case__metric {
    font-size: 1.125rem;
  }
}
.p-case__catchphrase {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.p-case__catchphrase .u-purple {
  color: #7311BD;
}
@media screen and (max-width: 767px) {
  .p-case__catchphrase {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}
.p-case {
  /* Main Grid Inside Card (Left Image, Right Detail Boxes) */
}
.p-case__content-grid {
  display: grid;
  grid-template-columns: 20.625rem 30rem;
  gap: 1.75rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-case__content-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.p-case__img-wrapper {
  width: 100%;
  max-width: 20.625rem;
  height: 100%;
  min-height: 15rem;
  border-radius: 0.625rem;
  overflow: hidden;
  background-color: #f3f4f6;
}
.p-case__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
@media screen and (max-width: 767px) {
  .p-case__img-wrapper {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    min-height: auto;
  }
}
.p-case {
  /* Right Details Column */
}
.p-case__details {
  width: 100%;
  max-width: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-case__details {
    max-width: 100%;
  }
}
.p-case__box {
  border: 1px solid #e5e7eb;
  border-radius: 0.625rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #fff;
}
.p-case__box--text-only {
  padding: 1.25rem;
  font-size: 0.875rem;
  color: #111111;
  line-height: 1.75;
}
.p-case__box-tag {
  width: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.75rem 0;
}
.p-case__box-tag--gray {
  background-color: #555555;
}
.p-case__box-tag--purple {
  background-color: #7311BD;
}
@media screen and (max-width: 767px) {
  .p-case__box-tag {
    width: 3.75rem;
    font-size: 0.75rem;
  }
}
.p-case__box-content {
  padding: 1.25rem 1.5625rem 1.25rem 0.625rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  color: #111111;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-case__box-content {
    padding: 0.75rem 0.875rem;
  }
}
.p-case__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-case__bullets li {
  font-size: 0.875rem;
  color: #111111;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-case__bullets li:last-child {
  margin-bottom: 0;
}
.p-case {
  /* Slider Navigation Arrows (arrow-purple: 淡いパープル背景) */
}
.p-case__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: #F3E8FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #7311BD;
  -webkit-transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
}
.p-case__arrow:hover {
  opacity: 0.85;
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
  background-color: #E9D5FF;
}
.p-case__arrow svg {
  width: 1.375rem;
  height: 1.375rem;
}
.p-case__arrow--prev {
  left: -3%;
}
.p-case__arrow--next {
  right: -3%;
}
@media screen and (max-width: 767px) {
  .p-case__arrow {
    display: none;
  }
}
.p-case {
  /* Pagination Dots (横伸びなし・色のみ変化) */
}
.p-case__pagination {
  bottom: 0 !important;
}
.p-case__pagination .swiper-pagination-bullet {
  background-color: #E5E7EB;
  opacity: 1;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  margin: 0 0.3125rem !important;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-case__pagination .swiper-pagination-bullet-active {
  background-color: #7311BD;
  width: 0.625rem;
  border-radius: 50%;
}
.p-case {
  /* なぜKawaru Coachは成果が出るのか (比較表エリア) */
}
.p-case__comparison {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-case__comparison {
    margin-top: 3rem;
  }
}
.p-case__comparison-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-case__comparison-title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }
}
.p-case__table-wrapper {
  width: 100%;
  max-width: 63.75rem;
  margin: 0 auto 1.875rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .p-case__table-wrapper {
    margin-bottom: 1.5rem;
  }
}
.p-case__table-wrapper img,
.p-case__table-wrapper .p-case__table-img {
  min-width: 43.75rem;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-case__table-wrapper img,
  .p-case__table-wrapper .p-case__table-img {
    width: 43.75rem;
  }
}
.p-case__comparison-catch {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  line-height: 1.5;
}
.p-case__comparison-catch .u-purple {
  color: #7311BD;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-case__comparison-catch {
    font-size: 1.125rem;
  }
}

.p-client-logos {
  background-color: #fff;
  padding: 3.75rem 0 1.875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-client-logos {
    padding: 2.25rem 0 2.75rem;
  }
}
.p-client-logos__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  margin-bottom: 1.4375rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-client-logos__title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
.p-client-logos__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.p-client-logos__slider::before, .p-client-logos__slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5rem;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-client-logos__slider::before, .p-client-logos__slider::after {
    width: 1.5rem;
  }
}
.p-client-logos__slider::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.p-client-logos__slider::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.p-client-logos__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4375rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee 50s linear infinite;
          animation: marquee 50s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-client-logos__track {
    gap: 0.9375rem;
  }
}
.p-client-logos__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 13.9375rem;
  padding: 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-client-logos__item {
    width: 9.125rem;
    height: auto;
    padding: 0;
  }
}
.p-client-logos__item img {
  max-height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-client-logos__item img {
    width: 100%;
    height: auto;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-coach {
  background-color: #E7E7E7;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-coach {
    padding: 3.125rem 0;
  }
}
.p-coach__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-coach__header {
    margin-bottom: 2rem;
  }
}
.p-coach__title {
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-coach__title {
    font-size: 1.5rem;
  }
}
.p-coach__subtitle {
  font-size: 0.9375rem;
  color: #111111;
  line-height: 1.75;
  max-width: 51.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-coach__subtitle {
    font-size: 0.8125rem;
  }
}
.p-coach {
  /* 3枚のコーチカードエリア (Swiper) */
}
.p-coach__slider-wrapper {
  position: relative;
  max-width: 60rem;
  width: 100%;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-coach__slider-wrapper {
    margin-bottom: 2.5rem;
    padding: 0 0.625rem;
  }
}
.p-coach__swiper {
  width: 100%;
  padding-bottom: 0;
  cursor: -webkit-grab;
  cursor: grab;
  position: relative;
}
.p-coach__swiper:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.p-coach__swiper .scroll-hint-icon {
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .p-coach__swiper .scroll-hint-icon {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .p-coach__swiper {
    padding-bottom: 2.5rem;
  }
}
.p-coach__card {
  width: 18.75rem;
  height: 48rem;
  background-color: #fff;
  border: 2px solid #111111;
  border-radius: 1rem;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
@media screen and (max-width: 767px) {
  .p-coach__card {
    width: 100%;
    height: auto;
  }
}
.p-coach__img-wrapper {
  width: 100%;
  height: 13.75rem;
  border-radius: 0.625rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background-color: #f3f4f6;
}
@media screen and (max-width: 767px) {
  .p-coach__img-wrapper {
    height: auto;
    aspect-ratio: 4/3;
  }
}
.p-coach__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.p-coach__catch {
  font-size: 1.125rem;
  font-weight: 700;
  color: #7311BD;
  line-height: 1.45;
  margin-bottom: 0.5rem;
  min-height: 3.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-coach__catch {
    min-height: auto;
  }
}
.p-coach__name {
  font-size: 1rem;
  font-weight: 500;
  color: #111111;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: solid 1px #DDDDDD;
}
.p-coach__bio {
  font-size: 1rem;
  color: #111111;
  line-height: 2;
}
.p-coach {
  /* スライダー矢印アイコン (arrow-white: 白円形背景) */
}
.p-coach__arrow {
  position: absolute;
  top: 33%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #7311BD;
  -webkit-transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
}
.p-coach__arrow:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
  background-color: #F7F0FF;
}
.p-coach__arrow svg {
  width: 1.375rem;
  height: 1.375rem;
}
.p-coach__arrow--prev {
  left: -3%;
}
.p-coach__arrow--next {
  right: -3%;
}
.p-coach {
  /* ページネーションドット (横伸びなし・色のみ変化) */
}
.p-coach__pagination {
  bottom: 0 !important;
}
.p-coach__pagination .swiper-pagination-bullet {
  background-color: #E5E7EB;
  opacity: 1;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  margin: 0 0.3125rem !important;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-coach__pagination .swiper-pagination-bullet-active {
  background-color: #7311BD;
  width: 0.625rem;
  border-radius: 50%;
}
.p-coach {
  /* 下部: 幅広い得意領域 */
}
.p-coach__skills-header {
  text-align: center;
  margin-top: 3.25rem;
  margin-bottom: 1.875rem;
}
.p-coach__skills-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-coach__skills-title {
    font-size: 1rem;
  }
}
.p-coach__skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 61.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-coach__skills-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.p-coach__skill-card {
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
          box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  padding: 1.125rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.p-coach__skill-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-coach__skill-icon svg,
.p-coach__skill-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-coach__skill-text {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
}
@media screen and (max-width: 767px) {
  .p-coach__skill-text {
    font-size: 0.9375rem;
  }
}

.p-comparison {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-comparison {
    padding: 3.125rem 0;
  }
}
.p-comparison__table-wrapper {
  width: 100%;
  max-width: 61.25rem;
  margin: 0 auto;
  text-align: center;
}
.p-comparison__table-wrapper img, .p-comparison__table-wrapper .p-comparison__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
          box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.p-contact {
  background: -webkit-gradient(linear, left top, left bottom, from(#310254), color-stop(50%, #500489), to(#7311BD));
  background: linear-gradient(180deg, #310254 0%, #500489 50%, #7311BD 100%);
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 3.125rem 0;
  }
}
.p-contact__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.p-contact__title {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 1.5rem;
  }
}
.p-contact__subtitle {
  font-size: 0.875rem;
  margin-top: 1.875rem;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-contact__subtitle {
    font-size: 0.8125rem;
  }
}
.p-contact {
  /* タブ付きフォームカード全体 */
}
.p-contact__card-wrapper {
  max-width: 52.5rem;
  margin: 0 auto;
}
.p-contact {
  /* タブ切り替えヘッダー */
}
.p-contact__tab-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.p-contact__tab-btn {
  background-color: #7311BD;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.125rem 1.5rem;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p-contact__tab-btn:hover {
  background-color: rgba(255, 255, 255, .3);
}
.p-contact__tab-btn.is-active {
  background-color: #f3f4f6;
  color: #111111;
}
@media screen and (max-width: 767px) {
  .p-contact__tab-btn {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
  }
}
.p-contact {
  /* フォーム本文カード */
}
.p-contact__form-card {
  background-color: #f3f4f6;
  border-radius: 0 0 1rem 1rem;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-card {
    padding: 1.75rem 1.125rem;
  }
}
.p-contact {
  /* タブコンテンツ表示制御 */
}
.p-contact__tab-content {
  display: none;
}
.p-contact__tab-content.is-active {
  display: block;
}
.p-contact__form-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111111;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-title {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
  }
}
.p-contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.p-contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.p-contact__field:not(:first-child) {
  margin-top: 1.875rem;
}
.p-contact__label {
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.p-contact__label .u-required {
  color: #ef4444;
  font-weight: 700;
}
.p-contact__input, .p-contact__select, .p-contact__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background-color: #fff;
  color: #111111;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.p-contact__input:focus, .p-contact__select:focus, .p-contact__textarea:focus {
  outline: none;
  border-color: #7311BD;
  -webkit-box-shadow: 0 0 0 3px rgba(121, 27, 200, .1);
          box-shadow: 0 0 0 3px rgba(121, 27, 200, .1);
}
.p-contact__input::-webkit-input-placeholder, .p-contact__select::-webkit-input-placeholder, .p-contact__textarea::-webkit-input-placeholder {
  color: #9ca3af;
}
.p-contact__input::-moz-placeholder, .p-contact__select::-moz-placeholder, .p-contact__textarea::-moz-placeholder {
  color: #9ca3af;
}
.p-contact__input::-ms-input-placeholder, .p-contact__select::-ms-input-placeholder, .p-contact__textarea::-ms-input-placeholder {
  color: #9ca3af;
}
.p-contact__input::placeholder, .p-contact__select::placeholder, .p-contact__textarea::placeholder {
  color: #9ca3af;
}
.p-contact__textarea {
  min-height: 8.75rem;
  resize: vertical;
}
.p-contact {
  /* ラジオボタン選択肢 */
}
.p-contact__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.p-contact__radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #111111;
  cursor: pointer;
}
.p-contact__radio-label input[type=radio] {
  accent-color: #7311BD;
  width: 1.125rem;
  height: 1.125rem;
}
.p-contact__radio-other-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 18.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
}
.p-contact {
  /* 同意規約エリア */
}
.p-contact__privacy {
  text-align: center;
  margin-top: 1rem;
}
.p-contact__privacy-text {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.p-contact__privacy-text a {
  color: #111111;
  text-decoration: underline;
}
.p-contact__privacy-text a:hover {
  color: #7311BD;
}
.p-contact__privacy-agree {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #111111;
  cursor: pointer;
}
.p-contact__privacy-agree input[type=checkbox] {
  accent-color: #7311BD;
  width: 1.125rem;
  height: 1.125rem;
}
.p-contact__privacy-agree .u-required {
  color: #ef4444;
}
.p-contact {
  /* 送信ボタン */
}
.p-contact__submit-btn {
  width: 100%;
  background-color: #7311BD;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  padding: 1rem;
  border-radius: 0.625rem;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s, -webkit-transform 0.1s;
  transition: background-color 0.2s, -webkit-transform 0.1s;
  transition: background-color 0.2s, transform 0.1s;
  transition: background-color 0.2s, transform 0.1s, -webkit-transform 0.1s;
  margin-top: 0.5rem;
}
.p-contact__submit-btn:hover {
  background-color: #6513a8;
}

.wpcf7-list-item {
  display: block;
}

.p-fv-cta {
  background-color: #7311BD;
  padding: 2.5rem 0;
}
.p-fv-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-fv-cta__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.p-fv-cta__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.875rem;
  border-radius: 0.625rem;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.p-fv-cta__card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
          box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}
.p-fv-cta__card--white {
  background-color: #fff;
  border: 3px solid #FEDA0F;
  color: #111111;
}
.p-fv-cta__card--yellow {
  background-color: #FEDA0F;
  color: #111111;
}
.p-fv-cta__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.p-fv-cta__badge {
  background-color: #111111;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  white-space: nowrap;
}
.p-fv-cta__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
}
@media screen and (max-width: 767px) {
  .p-fv-cta__text {
    font-size: 0.9375rem;
  }
}
.p-fv-cta__arrow {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
}

.p-faq {
  background-color: #fff;
  padding: 0 5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 3.125rem 0;
  }
}
.p-faq__title {
  font-size: 2rem;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.p-faq__list {
  max-width: 56.25rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-faq__item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}
.p-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 0.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    font-size: 0.9375rem;
  }
}
.p-faq__icon {
  width: 1.75rem;
  height: 1.75rem;
  background-color: #111111;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.p-faq__icon::after {
  content: "＋";
  font-size: 0.875rem;
  font-weight: 700;
}
.is-open .p-faq__icon::after {
  content: "✕";
  font-size: 0.875rem;
  font-weight: 700;
}
.p-faq__answer {
  display: none;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  padding-right: 2.5rem;
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    font-size: 0.875rem;
    padding-right: 0;
  }
}

.p-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-feature__grid {
    grid-template-columns: 1fr;
  }
}
.p-feature__item {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid #f3e8ff;
  position: relative;
}
.p-feature__num {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  background-color: #7311BD;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 1.25rem;
}
.p-feature__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #7311BD;
}
.p-feature__text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

.p-flow {
  background-color: #fff;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 3.125rem 0;
  }
}
.p-flow__title {
  font-size: 2.125rem;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-size: 1.5rem;
    margin-bottom: 2.25rem;
  }
}
.p-flow__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-flow__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 27.5rem;
    margin: 0 auto;
  }
}
.p-flow__card {
  background-color: #fff;
  border: 1.5px solid #262626;
  border-radius: 0.875rem;
  padding: 1.75rem 0.875rem 1.25rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  /* PC表示時: カード間の横方向の破線コネクタ */
}
.p-flow__card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 1rem;
  height: 0;
  border-top: 1.5px dashed #262626;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.p-flow__card {
  /* SP表示時: カード間の縦方向の破線コネクタ */
}
@media screen and (max-width: 767px) {
  .p-flow__card:not(:last-child)::after {
    top: auto;
    bottom: -2rem;
    left: 50%;
    right: auto;
    width: 0;
    height: 2rem;
    border-top: none;
    border-left: 1.5px dashed #262626;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-flow__step-pill {
  display: inline-block;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.25rem 1.25rem;
  border-radius: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  font-family: "Inter", sans-serif;
}
.p-flow__step-pill--1 {
  background-color: #c47cf2;
}
.p-flow__step-pill--2 {
  background-color: #aa50e8;
}
.p-flow__step-pill--3 {
  background-color: #8f26de;
}
.p-flow__step-pill--4 {
  background-color: #720ecf;
}
.p-flow__step-pill--5 {
  background-color: #5502a8;
}
.p-flow__card-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.35;
  margin-bottom: 1rem;
  min-height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-flow__card-title {
    font-size: 1.125rem;
    min-height: auto;
  }
}
.p-flow__icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
  color: #111111;
}
.p-flow__icon-wrapper svg, .p-flow__icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-flow__text {
  font-size: 0.8125rem;
  color: #4b5563;
  line-height: 1.65;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-flow__text {
    font-size: 0.875rem;
  }
}

.p-hero {
  background-color: #fff;
  padding: 2.5rem 0 1.1875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-hero {
    padding: 2.875rem 0 2.25rem;
  }
}
.p-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.6875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-hero__badge-top {
  display: inline-block;
  background-color: #7311BD;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 0.3125rem;
  margin-bottom: 0.625rem;
  line-height: 1.6;
  letter-spacing: 4%;
}
@media screen and (max-width: 767px) {
  .p-hero__badge-top {
    font-size: 0.8125rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
    border-radius: 0.375rem;
  }
}
.p-hero__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111111;
  margin-bottom: 0.875rem;
}
.p-hero__title .u-highlight {
  font-size: 3rem;
  font-weight: 700;
}
.p-hero__title .u-purple {
  color: #7311BD;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .p-hero__title .u-highlight {
    font-size: 2rem;
  }
  .p-hero__title .u-purple {
    font-size: 2rem;
  }
}
.p-hero__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #111111;
  margin-bottom: 2.4375rem;
  max-width: 30.625rem;
}
@media screen and (max-width: 767px) {
  .p-hero__desc {
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 2rem;
  }
}
.p-hero {
  /* 3連実績カード */
}
.p-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9375rem;
  max-width: 30.625rem;
}
@media screen and (max-width: 767px) {
  .p-hero__metrics {
    width: 100%;
    max-width: 100%;
    gap: 0.5rem;
  }
}
.p-hero__metric-card {
  background-color: #7311BD;
  color: #fff;
  border-radius: 0.5rem;
  padding: 1.8125rem 0.75rem 1.1875rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-hero__metric-card {
    padding: 1.375rem 0.25rem 0.75rem;
    border-radius: 0.375rem;
  }
}
.p-hero__metric-icon {
  position: absolute;
  top: -1.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.8125rem;
  height: 2.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #7311BD;
}
@media screen and (max-width: 767px) {
  .p-hero__metric-icon {
    top: -1.25rem;
    width: 2.375rem;
    height: 2.375rem;
  }
  .p-hero__metric-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.p-hero__metric-label {
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}
.p-hero__metric-value {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}
.p-hero__metric-value strong {
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-hero__metric-value strong {
    font-size: 1.5rem;
  }
}
.p-hero__metric-value span {
  font-size: 1rem;
}
.p-hero__metric-value span.-f28 {
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-hero__metric-value span.-f28 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__metric-value span {
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__metric-value {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

/* 右側イラスト */
.p-hero__visual {
  width: 30rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-hero__visual {
    width: 100%;
    max-width: 21.25rem;
  }
}
.p-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.p-price {
  background-color: #EFEFEF;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-price {
    padding: 3.125rem 0;
  }
}
.p-price__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-price__header {
    margin-bottom: 2rem;
  }
}
.p-price__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-price__title {
    font-size: 1.5rem;
  }
}
.p-price__subtitle {
  font-size: 1rem;
  color: #111111;
  line-height: 2;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-price__subtitle {
    font-size: 0.8125rem;
  }
}
.p-price {
  /* 料金カード並び (初期費用 + トライアルプラン) */
}
.p-price__boxes-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  max-width: 53.75rem;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 767px) {
  .p-price__boxes-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.p-price {
  /* 初期費用カード */
}
.p-price__box-initial {
  width: 21.25rem;
  background-color: #fff;
  border: 4px solid #111111;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
          box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}
@media screen and (max-width: 767px) {
  .p-price__box-initial {
    width: 100%;
    max-width: 21.25rem;
  }
}
.p-price__box-initial-header {
  background-color: #111111;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 2.25rem 0;
}
.p-price__box-initial-body {
  padding: 2.5rem 2.9375rem;
  text-align: center;
}
.p-price__box-initial-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111111;
  font-family: "Inter", sans-serif;
}
.p-price__box-initial-amount span {
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: 0.25rem;
}
.p-price {
  /* プラス記号アイコン */
}
.p-price__plus {
  width: 3.125rem;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-price__plus {
    margin-top: 0;
  }
}
.p-price {
  /* トライアルプランカード */
}
.p-price__box-trial {
  width: 23.75rem;
  background-color: #fff;
  border: 4px solid #7311BD;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-price__box-trial {
    width: 100%;
    max-width: 22.5rem;
  }
}
.p-price__box-trial-header {
  background: linear-gradient(135deg, #1d003a 0%, #6800b4 60%, #7d00dd 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 2.25rem 0 1.875rem;
}
.p-price__box-trial-body {
  padding: 2.5rem 1.75rem 2rem;
}
.p-price__box-trial-amount {
  font-size: 2.625rem;
  font-weight: 800;
  color: #111111;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.p-price__box-trial-amount span {
  font-size: 1.125rem;
  font-weight: 700;
  margin-left: 0.25rem;
}
.p-price__box-trial-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 1.25rem 0;
}
.p-price__box-trial-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
}
.p-price__box-trial-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111111;
}
.p-price__box-trial-list li .p-price__check-icon {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background-color: #7311BD;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-price {
  /* 下部アピール文 */
}
.p-price__subtext {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-price__subtext {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.p-price {
  /* 助成金活用バナー */
}
.p-price__grant-banner {
  background-color: #F8F0FF;
  border: 2px solid #111111;
  border-radius: 0.625rem;
  padding: 3.125rem 0.875rem 2.5rem;
  max-width: 60rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-price__grant-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.75rem 1.25rem;
    gap: 1.25rem;
  }
}
.p-price__grant-img-sp {
  width: 100%;
  max-width: 22.5rem;
  height: auto;
  margin: 0 auto;
  display: block;
}
.p-price__grant-badge {
  position: absolute;
  top: -1.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #7311BD;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.25rem 1.25rem;
  border-radius: 6.25rem;
  white-space: nowrap;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-price__grant-badge {
    font-size: 0.875rem;
    padding: 0.25rem 1.5rem;
    top: -0.9375rem;
  }
}
.p-price__grant-illu {
  height: 10rem;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-price__grant-illu {
    height: 7.5rem;
  }
}
.p-price__grant-illu--left {
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .p-price__grant-illu--left {
    margin-right: 0;
  }
}
.p-price__grant-illu--right {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-price__grant-illu--right {
    margin-left: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-price__grant-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.p-price__grant-head {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-price__grant-head {
    font-size: 1.125rem;
  }
}
.p-price__grant-main {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-price__grant-main {
    font-size: 1.125rem;
  }
}
.p-price__grant-highlight {
  background-color: #FEDA0F;
  color: #111111;
  font-weight: 700;
  padding: 0.125rem 0.625rem;
  margin: 0 0.25rem;
  display: inline-block;
  letter-spacing: 5%;
}
@media screen and (max-width: 767px) {
  .p-price__grant-highlight {
    font-size: 1.875rem;
  }
}
.p-price__grant-f50 {
  font-size: 3.125rem;
  font-family: "Inter", sans-serif;
}
.p-price__grant-note {
  font-size: 0.875rem;
  color: #4D4D4D;
  line-height: 1.6;
  max-width: 41.25rem;
  margin: 0 auto;
  text-align: left;
}

.p-problem {
  background-color: #DCDCDC;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-problem {
    padding: 3.125rem 0;
  }
}
.p-problem__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-problem__header {
    margin-bottom: 2rem;
  }
}
.p-problem__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #111111;
  margin-bottom: 0.625rem;
  letter-spacing: 0;
}
.p-problem__title .u-purple {
  color: #7311BD;
}
@media screen and (max-width: 767px) {
  .p-problem__title {
    font-size: 1.5rem;
  }
}
.p-problem__subtitle {
  font-size: 1rem;
  color: #111111;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-problem__subtitle {
    font-size: 0.8125rem;
  }
}
.p-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-problem__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-problem__card {
  background-color: #fff;
  border: 2px solid #111111;
  border-radius: 0.625rem;
  padding: 1.875rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-problem__tag {
  display: inline-block;
  background-color: #7311BD;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.1875rem 1.25rem;
  border-radius: 1.25rem;
  white-space: nowrap;
  margin-bottom: 0.625rem;
  line-height: 1.6;
}
.p-problem__card-title {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  min-height: 3.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-problem__card-title {
    font-size: 1.125rem;
    min-height: auto;
  }
}
.p-problem__img-wrapper {
  text-align: center;
  margin-bottom: 1.25rem;
  width: 100%;
}
.p-problem__img-wrapper img {
  max-height: 10.625rem;
  width: auto;
  margin: 0 auto;
}
.p-problem__text {
  font-size: 0.9375rem;
  color: #111111;
  line-height: 2;
  margin-top: auto;
}

.p-reason {
  background-color: #EEDDFD;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding: 3.125rem 0;
  }
}
.p-reason__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-reason__header {
    margin-bottom: 2rem;
  }
}
.p-reason__title {
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
}
@media screen and (max-width: 767px) {
  .p-reason__title {
    font-size: 1.5rem;
  }
}
.p-reason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  max-width: 67.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-reason__list {
    gap: 1.5rem;
  }
}
.p-reason__card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2.5rem 3.75rem;
  border: 2px solid #111111;
  display: grid;
  grid-template-columns: minmax(0, 26.25rem) minmax(0, 30rem);
  gap: 3.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-reason__card--reverse {
  grid-template-columns: minmax(0, 26.25rem) minmax(0, 30rem);
  grid-template-areas: "img text";
}
.p-reason__card--reverse .p-reason__content {
  grid-area: text;
}
.p-reason__card--reverse .p-reason__img-wrapper {
  grid-area: img;
}
@media screen and (max-width: 767px) {
  .p-reason__card {
    grid-template-columns: 1fr !important;
    grid-template-areas: none !important;
    padding: 1.5rem;
    gap: 1.25rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .p-reason__card .p-reason__content {
    grid-area: auto !important;
  }
  .p-reason__card .p-reason__img-wrapper {
    grid-area: auto !important;
  }
}
.p-reason__content {
  width: 100%;
  max-width: 26.25rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__content {
    max-width: 100%;
  }
}
.p-reason__badge {
  display: inline-block;
  background-color: #7311BD;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.1875rem 1.25rem;
  border-radius: 6.25rem;
  margin-bottom: 0.875rem;
}
.p-reason__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-reason__card-title {
    font-size: 1.5rem;
  }
}
.p-reason__text {
  font-size: 1rem;
  color: #242428;
  line-height: 2;
}
.p-reason__img-wrapper {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-reason__img-wrapper {
    max-width: 100%;
  }
}
.p-reason__img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
