@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=IBM+Plex+Sans+JP:wght@300;400;500;600;700&family=Zen+Kaku+Gothic+New:wght@500;700;900&display=swap");
:root {
  --font-family-sans-serif: "IBM Plex Sans JP", sans-serif;
  --font-family-serif: "Hanken Grotesk", sans-serif;
  --font-family-monospace: "Zen Kaku Gothic New", monospace;
  font-family: var(--font-family-sans-serif);
  font-size: 100%;
  color: #000;
  --primary-color: #7b56fa;
  --secondary-color: #ddf100;
  font-weight: 500;
  line-height: 1.8;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f6f6f6;
}

h2, h3, h4, h5 {
  font-weight: 900;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
}

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

/* =========================
   Skip link（フォーカス時にだけ表示）
========================= */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  padding: 10px 14px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 8px;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(12px);
}

/* =========================
   フォーカスリング（見える化）
   ※デザインに合わせて調整してOK
========================= */
a:focus-visible,
button:focus-visible,
[role=button]:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

/* =========================
   動きが苦手な人向け：モーション抑制
========================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* Swiperの矢印をbutton化した時の見た目リセット */
.swiper-button-prev,
.swiper-button-next {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* フォーカス可視化（既に全体で入れてるなら不要） */
.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

.contact__fixed-nav {
  position: fixed;
  width: 90px;
  height: 90px;
  top: 30px;
  right: 20px;
  z-index: 10;
}

.contact__fixed-comment {
  position: absolute;
  right: 64px; /* ←ボタンの左に出したい距離。ここは調整 */
  top: 0; /* 位置はデザインに合わせて調整 */
  transform-origin: right center; /* 伸びる基準を右に */
  transition: width 220ms ease;
  will-change: width;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: calc(14 / 16 * 1rem);
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

/* しっぽも右側に合わせる */
.contact__fixed-comment::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #111;
  transform: rotate(-20deg);
  display: block;
}

/* タイピングカーソル（位置は文字の末尾でOK＝どこにいるかは不要、点滅だけ） */
#typingText::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 6px;
  background: currentColor;
  vertical-align: -0.15em;
  animation: blinkCursor 0.8s steps(1) infinite;
}

@keyframes blinkCursor {
  0%, 49% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 0;
  }
}
/* 動きが苦手な人向け：モーション削減 */
@media (prefers-reduced-motion: reduce) {
  .contact__fixed-comment {
    transition: none;
  }
  #typingText::after {
    animation: none;
  }
}
@media screen and (max-width: 834px) {
  .contact__fixed-comment {
    right: 75px;
    top: 17px;
  }
  .contact__fixed-comment::before {
    right: -5px;
    bottom: 6px;
    transform: rotate(-93deg);
  }
  .contact__fixed-nav {
    top: -9px;
    right: -15px;
  }
}
.p-main__heading {
  margin: 100px auto 0 5%;
}

.p-main__title {
  display: block;
  font-size: 15vw;
  font-weight: 900;
  line-height: 0.9;
  font-family: var(--font-family-serif);
}

.p-main__subtitle {
  display: block;
  font-size: 3vw;
  font-weight: 900;
  line-height: 0.9;
  font-family: var(--font-family-serif);
  position: absolute;
  left: calc(33vw + 5%);
  top: calc(100px + 6vw);
}

/* 文字分割後の1文字 */
.js-reveal .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.12em);
  transition: opacity 500ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

/* 再生 */
.js-reveal.is-animate .char {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

/* アクセシビリティ：動き苦手な人は即表示 */
@media (prefers-reduced-motion: reduce) {
  .js-reveal .char {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.p-main__content {
  margin-top: 100px;
  width: 90%;
  margin: 100px auto 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.p-main__content-subtitle {
  font-size: calc(18 / 16 * 1rem);
}

.p-main__content-title {
  font-weight: 900;
  text-align: right;
  font-family: var(--font-family-monospace);
  font-size: 2vw;
}

.p-problem {
  height: 3000px; /* ← stickyさせたい距離 */
  position: relative;
}

.p-problem__sticky {
  width: 90%;
  margin: 0 auto;
  height: 90vh;
  max-height: 1200px;
  overflow: hidden;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: sticky;
  top: 5vh;
  z-index: 1;
}

.p-problem__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-custom {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6);
}

.p-problem__title {
  color: #fff;
  text-align: center;
  line-height: 1.4;
  font-size: calc(48 / 16 * 1rem);
  font-weight: 900;
  font-family: var(--font-family-monospace);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-problem__list {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-problem__list > li {
  position: absolute;
  bottom: -180px;
  width: 320px;
  aspect-ratio: 3/2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px 40px 0 40px;
  font-size: calc(24 / 16 * 1rem);
  font-weight: 600;
  background: #fff;
  color: #111;
  line-height: 1.5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  animation: problemBubbleUp 12s linear infinite;
}

/* 左右交互 */
.p-problem__list > li:nth-child(odd) {
  left: calc(50% - 600px);
}

.p-problem__list > li:nth-child(even) {
  left: calc(50% + 280px);
}

/* 6個用 delay（12s / 6 = 2s） */
.p-problem__list > li:nth-child(1) {
  animation-delay: 0s;
}

.p-problem__list > li:nth-child(2) {
  animation-delay: 2s;
}

.p-problem__list > li:nth-child(3) {
  animation-delay: 4s;
}

.p-problem__list > li:nth-child(4) {
  animation-delay: 6s;
}

.p-problem__list > li:nth-child(5) {
  animation-delay: 8s;
}

.p-problem__list > li:nth-child(6) {
  animation-delay: 10s;
}

@keyframes problemBubbleUp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-problem__list > li {
    animation: none;
    opacity: 1;
    bottom: 12%;
  }
}
.p-problem__list-text {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}
.p-problem__list-text::before {
  content: "";
  position: absolute;
  bottom: -120px;
  right: 20px;
  width: 90px;
  height: 90px;
  background-image: url(../img/webp/person01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.p-problem__list li:nth-child(2) .p-problem__list-text::before {
  background-image: url(../img/webp/person02.webp);
}
.p-problem__list li:nth-child(3) .p-problem__list-text::before {
  background-image: url(../img/webp/person03.webp);
}
.p-problem__list li:nth-child(4) .p-problem__list-text::before {
  background-image: url(../img/webp/person04.webp);
}
.p-problem__list li:nth-child(5) .p-problem__list-text::before {
  background-image: url(../img/webp/person05.webp);
}
.p-problem__list li:nth-child(6) .p-problem__list-text::before {
  background-image: url(../img/webp/cta_person.webp);
}

.c-title {
  font-size: calc(16 / 16 * 1rem);
  font-weight: bold;
}

.c-title--center {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.c-subtitle {
  line-height: 1.2;
  font-size: calc(80 / 16 * 1rem);
  font-weight: 900;
  color: var(--primary-color);
  font-family: var(--font-family-serif);
}

.c-subtitle--center {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}

.p-important {
  padding: 120px 0;
}

.p-important__main-txt {
  text-align: center;
  margin-bottom: 100px;
}

.p-important__card-list {
  position: relative;
  height: 2300px;
  width: 1500px;
  margin: 0 auto;
  max-width: 100%;
}
.p-important__card-list > li {
  height: 680px;
  position: sticky;
  top: 0;
  margin-bottom: 40px;
  display: flex;
  gap: 20%;
  border-radius: 40px;
  background-color: #fff;
  padding: 100px;
}
.p-important__card-list > li::after {
  content: "01";
  line-height: 1;
  position: absolute;
  top: 30px;
  right: 30px;
  color: #4a4a4a;
  opacity: 0.1;
  font-size: calc(80 / 16 * 1rem);
  font-weight: 900;
  font-family: var(--font-family-serif);
}
.p-important__card-list > li:nth-child(2) {
  background-color: #383838;
}
.p-important__card-list > li:nth-child(2)::after {
  content: "02";
}
.p-important__card-list > li:nth-child(3)::after {
  content: "03";
}

.p-important__card-content {
  width: 50%;
}

.p-important__card-img {
  width: 30%;
  position: relative;
}
.p-important__card-img::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -55%;
  width: 70%;
  aspect-ratio: 244/268;
  background-image: url(../img/webp/important_deco01.webp);
  background-size: contain;
  display: block;
}

.p-important__card-list li:nth-child(2) .p-important__card-img img {
  transform: translateX(-40%);
}

.p-important__card-list li:nth-child(2) .p-important__card-img::after {
  background-image: url(../img/webp/important_deco02.webp);
  left: 30%;
  bottom: -30px;
  aspect-ratio: 256/221;
}

.p-important__card-list li:nth-child(3) .p-important__card-img::after {
  background-image: url(../img/webp/important_deco03.webp);
  left: -55%;
  bottom: -20px;
  aspect-ratio: 1/1;
}

.p-important__card-title {
  font-size: calc(42 / 16 * 1rem);
  font-weight: 900;
  margin-bottom: 50px;
  position: relative;
  font-family: var(--font-family-monospace);
  white-space: nowrap;
}
.p-important__card-title::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 220px;
  height: 40px;
  background-image: url(../img/under_line01.svg);
  background-size: contain;
}

.p-important__card-list li:nth-child(2) .p-important__card-title::after {
  width: 291px;
}

.p-important__card-list li:nth-child(3) .p-important__card-title::after {
  width: 256px;
}

.p-strengths {
  padding: 120px 0 200px;
  background-color: #fff;
  position: relative;
}
.p-strengths::after {
  width: 865px;
  max-width: 40%;
  aspect-ratio: 640/354;
  background-image: url(../img/webp/keybord.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 0 center;
  content: "";
  position: absolute;
  top: -100px;
  right: 0;
  display: block;
}
.p-strengths::before {
  width: 50%;
  height: calc(100% - 120px - 200px);
  top: 120px;
  left: 0;
  display: block;
  content: "";
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 0 40px 40px 0;
}
.p-strengths .c-subtitle {
  color: #000;
  margin-bottom: 50px;
}
.p-strengths .c-title {
  margin-top: 100px;
}

.p-strength-content {
  position: relative;
  z-index: 1;
}

.c-inner--l {
  max-width: 1500px;
  margin: 0 auto;
  max-width: 90%;
}

.p-strengths__list {
  width: 1050px;
  max-width: 90%;
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-bottom: 140px;
}
.p-strengths__list > li {
  display: flex;
  align-items: center;
}

.p-strengths__list-img {
  width: 60%;
}
.p-strengths__list-img img {
  border-radius: 30px;
}

.p-strengths__list-content {
  width: 40%;
  padding-left: 5%;
}

.p-strengths__list-title {
  margin-bottom: 10px;
}

.p-strengths__list-title-num {
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-family-serif);
  font-size: calc(15 / 16 * 1rem);
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  border-radius: 50px;
  background-color: var(--secondary-color);
  padding: 3px 20px;
}

.p-strengths__list-title-en {
  font-size: calc(42 / 16 * 1rem);
  font-weight: 900;
  font-family: var(--font-family-monospace);
  display: block;
}

.p-strengths__list-title-ja {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.c-check-list li {
  position: relative;
  padding-left: 1.5em;
}
.c-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../img/webp/check.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-mouse {
  background-size: contain;
  aspect-ratio: 950/407;
  width: 950px;
  max-width: 60%;
  background-image: url(../img/webp/mouse.webp);
  background-repeat: no-repeat;
  background-position: left 0 center;
  position: absolute;
  bottom: -45px;
  z-index: 3;
}

.p-service {
  padding: 120px 0;
  background-color: #fff;
}

.p-service__card {
  display: flex;
  gap: 2%;
  margin-bottom: 25px;
}
.p-service__card > li {
  width: 24%;
  background-color: #f6f6f6;
  padding: 120px 30px;
  border-radius: 30px;
  position: relative;
}
.p-service__card > li::before {
  width: 25px;
  height: 25px;
  background-image: url(../img/webp/service_icon01.webp);
  background-size: contain;
  content: "";
  position: absolute;
  top: 30px;
  right: 25px;
  display: block;
}
.p-service__card > li:nth-child(2)::before {
  background-image: url(../img/webp/service_icon02.webp);
}
.p-service__card > li:nth-child(3)::before {
  background-image: url(../img/webp/service_icon03.webp);
}
.p-service__card > li:nth-child(4)::before {
  background-image: url(../img/webp/service_icon04.webp);
}

.p-service__card-title {
  font-size: calc(21 / 16 * 1rem);
  margin-bottom: 20px;
}

.p-service__card-text {
  font-size: calc(15 / 16 * 1rem);
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #ddd;
}

.p-service__card-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.p-service__card-list li {
  width: calc(50% - 5px);
  font-size: calc(15 / 16 * 1rem);
  position: relative;
  padding-left: 1em;
}
.p-service__card-list li::before {
  content: "•";
  color: var(--primary-color);
  display: inline-block;
  width: 1em;
  position: absolute;
  left: 0;
  top: 0;
}

.p-service__card-point {
  display: flex;
  gap: 2%;
}
.p-service__card-point li {
  width: 49%;
  background-color: var(--secondary-color);
  padding: 60px;
  border-radius: 30px;
}

.p-service__card-point-title {
  font-size: calc(12 / 16 * 1rem);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary-color);
}

.p-service__card-point-text {
  font-size: calc(21 / 16 * 1rem);
  text-align: center;
  font-weight: 600;
}

.p-price {
  padding: 120px 0;
  background-color: #fff;
}

.p-price__text {
  margin-top: 20px;
}

.p-price__bl {
  display: flex;
}

.p-price__content {
  width: 30%;
  padding-right: 7%;
}

.p-price__price-content {
  width: 70%;
  border-radius: 40px;
  padding: 60px;
  background-color: #f6f6f6;
}

.p-price__price-item {
  display: flex;
}

.p-price__price-item-title {
  width: 30%;
  padding-right: 20px;
}
.p-price__price-item-title .small {
  font-size: 80%;
}

.p-price__table {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
}
.p-price__table dt {
  width: 50%;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #ddd;
}
.p-price__table dd {
  width: 50%;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #ddd;
  text-align: right;
  font-weight: bold;
}
.p-price__table dd .yen {
  font-weight: 500;
  font-size: 80%;
  display: inline-block;
  margin-left: 0.2em;
}

.c-list--perple li {
  position: relative;
  padding-left: 1em;
}
.c-list--perple li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 1em;
  height: 1em;
  color: var(--primary-color);
}

.p-flow {
  padding: 200px 0;
  background-image: url(../img/webp/flow_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.p-flow .c-title {
  color: #fff;
}
.p-flow .c-subtitle {
  color: #fff;
  margin-bottom: 70px;
}

.p-flow__list {
  display: flex;
  gap: 4%;
  position: relative;
  z-index: 1;
}
.p-flow__list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  width: 84%;
  height: 6px;
  background-image: url(../img/webp/flow_dot.webp);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: center;
  transform: translateY(-50%);
  z-index: 0;
}
.p-flow__list li {
  width: 16.8%;
  background-color: #fff;
  border-radius: 30px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.p-flow__list li .num {
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 15px;
  border-radius: 50px;
  background-color: var(--secondary-color);
  font-family: var(--font-family-serif);
  font-weight: bold;
  font-size: calc(12 / 16 * 1rem);
  margin: 0 auto 15px;
  display: block;
}

.p-flow__list-text {
  display: block;
  text-align: center;
  font-size: calc(16 / 16 * 1rem);
  font-weight: bold;
  line-height: 1.6;
}

.p-faq {
  padding: 120px 0;
}

.p-faq__bl {
  display: flex;
}

.p-faq__title {
  width: 30%;
  padding-right: 7%;
  padding-bottom: 30px;
}

.p-faq__content {
  width: 70%;
}

.c-faq__item {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
}

.c-faq__trigger {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: center;
}
.c-faq__trigger[aria-expanded=true] .c-faq__title-text::after {
  transform: rotate(-180deg);
  transition: all 300ms ease;
}

.c-faq__title-q {
  width: 50px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5px 15px;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  font-size: calc(15 / 16 * 1rem);
  text-align: center;
}

.c-faq__title-text {
  width: calc(100% - 60px);
  text-align: left;
  position: relative;
  padding-right: 30px;
}
.c-faq__title-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--primary-color);
  transform: translateY(-50%);
  display: block;
  transition: all 300ms ease;
}

.c-faq__content {
  border-top: 2px dotted #ddd;
  padding-top: 20px;
  margin-top: 20px;
}

.c-faq__inner {
  display: flex;
  gap: 10px;
}

.c-faq__content-a {
  width: 50px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5px 15px;
  border-radius: 50px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-weight: bold;
  font-size: calc(15 / 16 * 1rem);
  text-align: center;
}

.p-cta {
  padding: 240px 0 120px;
  background-color: #fff;
}
.p-cta .p-cta__text {
  font-size: calc(21 / 16 * 1rem);
  text-align: center;
  color: #000;
}

.p-cta__title {
  position: relative;
  font-size: calc(42 / 16 * 1rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-family-monospace);
}
.p-cta__title::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 90px;
  height: 90px;
  background-image: url(../img/webp/cta_person.webp);
  background-size: contain;
  transform: translateX(-50%);
  display: block;
}

.p-cta__bl {
  background-color: var(--primary-color);
  border-radius: 30px;
  padding: 60px;
}
.p-cta__bl .p-cta__text {
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}

.p-cta__link {
  width: 330px;
  max-width: 100%;
  display: block;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  color: var(--primary-color);
  font-weight: bold;
  margin: 0 auto;
  border-radius: 100px;
}

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

.p-footer__copy {
  text-align: center;
  padding: 0 0 30px;
  font-size: calc(13 / 16 * 1rem);
}

.p-fixed-card {
  width: 240px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 10;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.p-fixed-card__button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-size: calc(16 / 16 * 1rem);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -5px;
  left: -5px;
  padding-top: 2px;
  z-index: 100;
  pointer-events: auto;
}

.p-fixed-card__img {
  margin-bottom: 10px;
}

.p-fixed-card__content {
  display: flex;
  gap: 6px;
  align-items: center;
}

.p-fixed-card__text {
  width: calc(100% - 3px);
  font-size: 13px;
  line-height: 1.5;
}

.p-fixed-card__link {
  width: calc(50% - 3px);
  background-color: var(--primary-color);
  padding: 10px 15px;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  display: block;
  font-size: 12px;
  line-height: 1.3;
  height: -moz-fit-content;
  height: fit-content;
}

.c-inner--s {
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
}

/* --- Form Layout --- */
.form-wrapper {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border: 3px solid #ccc;
  /* ボーダーを#cccに変更 */
  border-radius: 20px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.form-group label span {
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 9px 1px;
  border-radius: 4px;
  margin-left: 5px;
  background: black;
  transform: translateY(-2px);
  display: inline-block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-black);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  background-color: #fff;
}

.form-group textarea {
  min-height: 150px;
}

/* 入力中の色変更 */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-orange);
}

/* バリデーションエラー用 */
.error-msg {
  color: var(--red);
  font-size: 0.8rem;
  display: none;
  margin-top: 5px;
}

.is-error {
  border-color: var(--red) !important;
}

/* Submit Button */
.btn-main {
  padding: 15px 30px;
  border-radius: 100px;
  background-color: #fff;
  color: var(--primary-color);
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: none;
  /* アウトライン削除 */
  outline: none;
  cursor: pointer;
  /* 以前のスタイルを継承 */
}

/* 無効化状態のボタン */
.btn-main.is-disabled {
  background: #ccc !important;
  cursor: not-allowed;
  transform: none !important;
}

/* エラーメッセージ初期状態 */
.error-msg {
  display: none;
  color: var(--red);
  font-size: 0.85rem;
  margin-top: 5px;
  font-weight: 700;
}

/* 入力エラー時のスタイル */
.val-input.is-invalid {
  border-color: var(--red) !important;
}

/* プライバシーポリシーエリアのブラッシュアップ */
.privacy-area {
  margin: 30px 0;
  text-align: left;
}

.privacy-box-sm {
  background: #f8f9fa;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

.privacy-box-sm h3 {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 12px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.privacy-content {
  max-height: 200px;
  /* 長くなる場合はスクロール可能に */
  overflow-y: auto;
  padding-right: 10px;
}

/* スクロールバーのカスタマイズ（ブラウザ対応） */
.privacy-content::-webkit-scrollbar {
  width: 6px;
}

.privacy-content::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.privacy-content p {
  margin-bottom: 15px;
}

.privacy-content strong {
  color: var(--text-color);
}

.agree-check {
  margin-top: 20px;
  font-weight: 700;
  font-size: 1rem;
}

.agree-check label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
}

.agree-check input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.p-important__card-list > li:nth-child(2) {
  color: #fff;
}

.js-reveal-view .char {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal-view.is-animate .char {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fadeUp.is-show {
  opacity: 1;
  transform: translateY(0);
}

.p-faq button {
  color: #000;
}

@media screen and (max-width: 1350px) {
  .p-main__content-subtitle {
    width: 475px;
    max-width: 60%;
  }
  .p-main__content-title {
    font-size: 2.7vw;
  }
  .p-main__content {
    margin: 7vw auto 5vw;
  }
  .p-problem__title {
    font-size: 4vw;
  }
  .p-problem__list > li {
    width: 24vw;
    font-size: 2vw;
  }
  .p-problem__list > li:nth-child(2n+1) {
    left: calc(50% - 42vw);
  }
  .p-problem__list-text::before {
    bottom: -9vw;
    width: 6vw;
    height: 6vw;
  }
  .p-problem__list > li:nth-child(2n) {
    left: calc(50% + 18vw);
  }
  .p-important__card-list > li {
    padding: 100px 80px;
  }
  .p-important__card-title {
    font-size: calc(38 / 16 * 1rem);
  }
  .p-strengths::before {
    width: 56%;
  }
  .p-service__card > li {
    padding: 80px 25px 40px;
  }
  .p-service__card-list {
    gap: 0px;
  }
  .p-service__card-list li {
    width: 100%;
  }
  .p-price__table dd {
    width: 30%;
  }
  .p-price__table dt {
    width: 70%;
  }
  .p-price__price-content {
    padding: 60px 40px;
  }
  .p-price__price-item-title {
    width: 35%;
  }
  .p-price__table {
    width: 65%;
  }
  .p-flow__list li {
    padding: 25px;
  }
  .p-important__card-list > li {
    height: 620px;
  }
  .p-mouse {
    bottom: 0;
  }
  .p-important__card-title::after {
    width: 192px;
  }
  .p-important__card-list li:nth-child(2) .p-important__card-title::after {
    width: 266px;
  }
  .p-important__card-list li:nth-child(3) .p-important__card-title::after {
    width: 230px;
  }
}
@media screen and (max-width: 1024px) {
  .c-subtitle {
    font-size: 8vw;
  }
  .p-important__card-img {
    margin-top: 65px;
  }
  .p-important__card-title {
    font-size: calc(35 / 16 * 1rem);
  }
  .p-strengths__list-title-ja {
    font-size: 1.1875rem;
  }
  .p-strengths__list-title-en {
    font-size: 2.25rem;
  }
  .c-check-list li {
    margin-bottom: 0.5em;
    line-height: 1.5;
  }
  .p-mouse {
    bottom: 5vw;
  }
  .p-service__card {
    gap: 15px 2%;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  .p-service__card > li {
    padding: 65px 25px 30px;
    border-radius: 20px;
  }
  .p-price__table {
    width: 100%;
  }
  .p-price__price-item-title {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-price__price-item {
    flex-direction: column;
  }
  .p-price__price-content {
    width: 60%;
  }
  .p-price__content {
    width: 40%;
    padding-right: 5%;
  }
  .p-service__card > li {
    width: 49%;
  }
  .p-flow__list li {
    padding: 25px 15px;
    width: 18.4%;
    border-radius: 20px;
  }
  .p-flow__list {
    gap: 2%;
  }
  .p-important__card-title::after {
    width: 175px;
  }
  .p-important__card-list li:nth-child(2) .p-important__card-title::after {
    width: 244px;
  }
  .p-important__card-list li:nth-child(3) .p-important__card-title::after {
    width: 211px;
  }
}
@media screen and (max-width: 834px) {
  .p-important__card-list > li {
    padding: 60px 30px;
  }
  .p-main__heading {
    margin: 55px auto 0 5%;
  }
  .p-main__subtitle {
    font-size: 4vw;
    left: calc(47vw + 5%);
    top: calc(55px + 13vw);
  }
  .p-main__title {
    font-size: 21.5vw;
  }
  .p-main__content-subtitle {
    width: 100%;
    max-width: 100%;
  }
  .p-main__content-title {
    font-size: 5.7vw;
  }
  .p-main__content {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 15px;
  }
  .p-problem__title {
    font-size: 6vw;
    white-space: nowrap;
    z-index: 5;
  }
  .p-problem__list > li {
    width: 45vw;
    font-size: 3.7vw;
  }
  .p-problem__list > li:nth-child(2n) {
    left: calc(50% - 4vw);
  }
  .p-problem__list-text::before {
    bottom: -15vw;
    width: 12vw;
    height: 12vw;
  }
  .p-main__content-subtitle {
    font-size: 1rem;
  }
  .p-important {
    padding: 60px 0;
  }
  .c-subtitle {
    font-size: 9vw;
    margin: 0 auto 0.6em;
  }
  .p-important__main-txt {
    margin-bottom: 40px;
  }
  .p-important__card-title {
    font-size: 1.625rem;
    margin-bottom: 1em;
  }
  .p-important__card-list > li {
    padding: 40px 25px;
    flex-direction: column-reverse;
    gap: 20px;
    height: auto;
    position: relative;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .p-important__card-list > li:last-child {
    margin-bottom: 0;
  }
  .p-important__card-content {
    width: 100%;
  }
  .p-important__card-img {
    width: 60%;
    margin-top: 0;
  }
  .p-important__card-text {
    font-size: calc(14 / 16 * 1rem);
  }
  .p-important__card-list {
    height: auto;
  }
  .p-strengths__list {
    max-width: 90%;
    margin: 0 7% 0 3%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 25vw;
  }
  .p-strengths__list-title-num {
    background-color: #fff;
  }
  .p-strengths__list li {
    flex-direction: column;
  }
  .p-strengths__list-img {
    width: 100%;
    margin-bottom: 15px;
  }
  .p-strengths__list-content {
    width: 100%;
    padding-left: 0;
  }
  .p-strengths::before {
    width: 95%;
  }
  .p-strengths::after {
    max-width: 70%;
    top: -11vw;
  }
  .p-strengths {
    padding: 25vw 0 10vw;
  }
  .p-strengths::before {
    height: calc(100% - 40vw);
    top: 35vw;
    border-radius: 0 30px 30px 0;
  }
  .p-mouse {
    bottom: -5vw;
    max-width: 77%;
  }
  .p-strengths__list-title-en {
    line-height: 1.5;
  }
  .p-strengths__list-title-num {
    margin-bottom: 0;
  }
  .p-service {
    padding: 60px 0;
  }
  .p-service__card > li {
    width: 100%;
  }
  .p-service__card-title {
    font-size: 1.1875rem;
    margin-bottom: 12px;
  }
  .p-service__card-point {
    gap: 15px;
    flex-direction: column;
  }
  .p-service__card-point li {
    width: 100%;
    padding: 30px 20px;
    border-radius: 20px;
  }
  .p-service__card-point-text {
    font-size: 1.0625rem;
  }
  .p-price {
    padding: 60px 0;
  }
  .p-price__bl {
    flex-direction: column;
  }
  .p-price__content {
    width: 100%;
    padding-right: 0;
  }
  .p-price__price-content {
    padding: 40px 20px;
    border-radius: 20px;
    margin-top: 20px;
    width: 100%;
  }
  .p-price__table dt {
    font-size: calc(14 / 16 * 1rem);
  }
  .p-price__table dd {
    font-size: calc(14 / 16 * 1rem);
  }
  .p-flow {
    padding: 60px 0;
  }
  .p-flow .c-subtitle {
    margin-bottom: 40px;
  }
  .p-flow__list {
    gap: 30px;
    flex-direction: column;
  }
  .p-flow__list li {
    padding: 20px 10px;
    width: 100%;
    position: relative;
  }
  .p-flow__list li::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 10px solid var(--secondary-color);
    border-bottom: 0;
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
  }
  .p-flow__list li:last-of-type::after {
    display: none;
  }
  .p-flow__list li .num {
    margin: 0 auto 8px;
  }
  .p-faq {
    padding: 60px 0 40px;
  }
  .p-faq__bl {
    flex-direction: column;
  }
  .p-faq__title {
    width: 100%;
    padding-right: 0;
    padding-bottom: 0;
  }
  .p-faq__title .c-title {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .p-faq__title .c-subtitle {
    margin: 0 auto 30px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-faq__content {
    width: 100%;
  }
  .c-faq__title-text {
    font-size: calc(16 / 16 * 1rem);
  }
  .c-faq__content-block {
    width: calc(100% - 60px);
  }
  .p-cta__title {
    font-size: 1.5rem;
  }
  .p-cta .p-cta__title + .p-cta__text {
    font-size: 0.9375rem;
  }
  .p-cta__bl {
    border-radius: 20px;
    padding: 30px 20px;
  }
  .p-cta .p-cta__text {
    font-size: calc(18 / 16 * 1rem);
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .p-cta__title::before {
    top: -95px;
    width: 70px;
    height: 70px;
  }
  .p-cta {
    padding: 150px 0 40px;
  }
  .p-important__card-img::after {
    left: 82%;
  }
  .p-service__card > li::before {
    top: 20px;
    right: 20px;
  }
  .p-problem {
    height: 1500px;
  }
  .p-strengths .c-check-list li::before {
    background-image: url(../img/check_w.png);
  }
  .p-important__card-list li:nth-child(2) .p-important__card-img img {
    transform: translateX(0);
  }
  .p-important__card-list li:nth-child(2) .p-important__card-img::after {
    left: 87%;
    bottom: 1px;
  }
  .p-important__card-list li:nth-child(3) .p-important__card-img::after {
    left: 93%;
  }
  .p-fixed-card__content {
    margin-left: 7px;
  }
  .p-fixed-card {
    width: 300px;
    align-items: center;
    display: flex;
  }
  .p-fixed-card__img {
    margin-bottom: 0;
    display: block;
    width: 76px;
  }
  .p-fixed-card__text {
    white-space: nowrap;
  }
  .p-fixed-card__link {
    padding: 10px 10px;
    white-space: nowrap;
  }
  .p-important__card-title::after {
    width: 132px;
  }
  .p-important__card-list li:nth-child(2) .p-important__card-title::after {
    width: 182px;
  }
  .p-important__card-list li:nth-child(3) .p-important__card-title::after {
    width: 160px;
  }
  .p-problem__list > li {
    aspect-ratio: 2/1.2;
  }
}
/* --- Thanks Page --- */
.thanks-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--primary-color);
}
.thanks-page .btn-main {
  background-color: var(--primary-color);
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.thanks-page .l-footer {
  background-color: var(--primary-color);
}

.thanks-container {
  flex: 1; /* フッターを最下部に固定するため */
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-box {
  background: #fff;
  border: 3px solid #000;
  border-radius: 30px;
  padding: 60px 40px;
  width: 600px;
  margin: 0 auto;
  max-width: 90%;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: white;
  font-size: 3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  padding-top: 7px;
  border: 3px solid #000;
}

.thanks-box h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}

.thanks-message {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.next-step {
  background: #eeeeee;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: left;
}

.next-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: 900;
  display: flex;
  align-items: center;
}

.next-step h3::before {
  content: "";
  width: 6px;
  height: 1.2em;
  background: var(--primary-color);
  margin-right: 10px;
  border-radius: 3px;
}

.next-step p {
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 600px) {
  .thanks-box {
    padding: 30px 20px;
    width: auto;
  }
  .thanks-box h2 {
    font-size: 1.4rem;
  }
  .thanks-message {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .thanks-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    margin: 0 auto 20px;
    padding-top: 7px;
  }
  .next-step {
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=style.css.map */