@charset "utf-8";
/* base */
body {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  color: #444c5c;
}

.modHeading02 {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
}

.c-text-circle {
  --dot: 8px;
  --gap: 0.7em;
  position: relative;
  display: inline-block;
  padding-top: calc(var(--dot) + 10px);
}

.c-text-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--dot);
  height: var(--dot);
  border-radius: 50%;
  background: #78a5a3;
  box-shadow: calc(-2 * (var(--dot) + var(--gap))) 0 0 0 #ce5a57,
    /* 左端（赤） */ calc(-1 * (var(--dot) + var(--gap))) 0 0 0 #444c5c,
    /* 左（濃紺） */ calc(1 * (var(--dot) + var(--gap))) 0 0 0 #e1b16a,
    /* 右（金） */ calc(2 * (var(--dot) + var(--gap))) 0 0 0 #ce5a57; /* 右端（赤） */
}

/* Grid Layout */
.c-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.c-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.c-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.c-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.c-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 599px) {
  .c-grid-max-sm-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 768px) {
  .c-grid-max-md-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 992px) {
  .c-grid-max-lg-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ローディング画面 */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
}

#splash-logo {
  position: relative;
  width: 100%;
  height: 100%;
}

.cp_loading12 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.cp_loading12 .cp_item {
  display: inline-block;
  width: 8px;
  height: 8px;
  animation: loading12 1.8s infinite cubic-bezier(0.51, 0.35, 0.71, 0.55);
  opacity: 0.3;
  border-radius: 50%;
}

.cp_loading12 .cp_item:nth-child(1) {
  animation-delay: 0s;
}

.cp_loading12 .cp_item:nth-child(2) {
  animation-delay: 0.1s;
}

.cp_loading12 .cp_item:nth-child(3) {
  animation-delay: 0.2s;
}

.cp_loading12 .cp_item:nth-child(4) {
  animation-delay: 0.3s;
}

.cp_loading12 .cp_item:nth-child(5) {
  animation-delay: 0.4s;
}
.top__section {
  position: relative;
  margin: 100px 0 0 0;
}

@keyframes loading12 {
  0% {
    transform: translateY(0px);
  }
  35% {
    transform: translateY(0px);
    opacity: 0.3;
    filter: alpha(opacity=30);
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.8;
    filter: alpha(opacity=80);
  }
  70% {
    transform: translateY(3px);
    opacity: 0.8;
    filter: alpha(opacity=80);
  }
  85% {
    transform: translateY(-3px);
  }
}
.splashbg {
  display: block;
  background-color: #ce5a57;
  content: "";
  position: fixed;
  z-index: 999;
  width: 50%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: translateX(-300%) skewX(-45deg);
}

.splashbg.start {
  animation-name: PageAnime;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: translateX(-300%) skewX(-45deg);
  }
  100% {
    transform-origin: left;
    transform: translateX(500%) skewX(-45deg);
  }
}

.c-decorator {
  position: absolute;
  font-size: 13px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  white-space: nowrap;
  top: -27%;
  left: 50%;
}

.c-decorator p {
  color: #464c55;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.c-decorator:after,
.c-decorator:before {
  content: "";
  display: inline-block;
  height: 2px;
  width: 1.2em;
  background: #464c55;
}

.c-decorator::after {
  transform: translate(0.8em, -0.1em) rotate(-45deg);
}

.c-decorator::before {
  transform: translate(-0.8em, -0.1em) rotate(45deg);
}


/* top */

.top__section {
  position: relative;
  margin: 100px 0 0 0;
}

@media screen and (min-width: 769px) {
  .top__section {
    max-width: 100%;
    padding: 80px 0;
  }
}

.top__section {
  overflow: hidden;
}

.top__section--wh {
  background: #fff;
}

.top__section-inner {
  margin: 0 auto;
  padding: 0 5%;
  max-width: calc(1120px + 10%);
}

.modHeading02 {
  font-weight: 700;
  letter-spacing: 1px;
  color: #272d36;
}

.modHeading03 {
  color: #272d36;
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  font-weight: 700;
}

.modHeadingWithIcon {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  color: #464c55;
}

.modBtn {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
}

/* header */
.header__nav__content .headerMenu__item {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  color: #464c55;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.header__nav__content .headerLang {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  color: #464c55;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.header__nav__content .headerContact .contactBtn__text {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  font-weight: 700;
}

.footer__pageTop__item {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  font-weight: 700;
}

/* footer */
.footer__top__main li {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  font-weight: 700;
}

/* 共通ページFV アニメーション削除 */
.modHeadingTop__text:before {
  display: none;
}
.modHeadingTop:after {
  display: none;
}
.modHeadingTop__text:after {
  display: none;
}
.modContainer--company::before {
  display: none;
}

/* 共通ページ上部fv　追加 */
.p-page-fv {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
}

.p-page-fv__bg {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
}

.p-page-fv__video-frame {
  position: absolute;
  right: 0%;
  top: -50%;
  width: 65%;
  height: 150%;
}

@media (max-width: 1200px) {
	.p-page-fv__video-frame {
	  position: absolute;
	  right: 0%;
	  top: -50%;
	  width: 100%;
	  height: 150%;
	}
}

.p-page-fv__bg video {
  width: 100%;
  height: 100%;
  object-position: right center;
  object-fit: cover;
  outline: none;
  border: none;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}

.modHeadingTop {
  height: 330px;
}

@media (max-width: 1180px) {
  .p-page-fv__bg img {
    object-position: 85% center;
  }
  .p-page-fv__bg video {
    object-position: 85% center;
  }
}
@media (max-width: 1024px) {
  .p-page-fv__bg img {
    object-position: 70% center;
  }
  .p-page-fv__bg video {
    object-position: 70% center;
  }
  .p-page-fv__bg video {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-page-fv__bg img {
    opacity: 0.7;
  }
  .p-page-fv__bg video {
    opacity: 0.7;
  }
}

/* fv */
.p-fv {
  position: sticky;
  top: 0;
  aspect-ratio: 1920/1020;
  max-height: 100vh;
  width: 100%;
  transition: 0.6s;
}
@media (max-width: 1420px) {
  .p-fv {
    height: 100vh;
  }
}
.p-fv .p-fv__video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}
.p-fv .p-fv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1420px) {
  .p-fv .p-fv__video video {
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .p-fv .p-fv__video video {
    height: 100dvh;
  }
}

.p-fv .p-fv__inner {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1280px) {
  .p-fv .p-fv__inner {
    width: 50%;
    padding: 0 5%;
  }
}

@media (max-width: 768px) {
  .p-fv .p-fv__inner {
    width: 100%;
    justify-content: flex-start;
    padding: 0 5%;
  }
}

.p-fv .p-fv__title {
  font-size: min(64px, 3.3333333333vw);
  color: #464c55;
  font-weight: 700;
  line-height: 180%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-16px);
}

.p-fv .p-fv__title.hide {
  opacity: 0 !important;
  transition: all 0.3s ease;
}

.p-fv .p-fv__title::before {
  content: "";
  position: absolute;
  /* 	rotate:180deg; */
   top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: shine-anime 4s ease-in-out infinite;
  animation-delay: 3.2s;
  z-index: 1;
  pointer-events: none;
}

@keyframes shine-anime {
  0% {
    left: -150%;
    top: 150%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    left: 150%;
    top: -150%;
    opacity: 0;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}
@media (max-width: 1280px) {
  .p-fv .p-fv__title {
    font-size: clamp(34px, 34px + (42 - 34) * (100vw - 768px) / 512, 42px);
  }
}
@media (max-width: 768px) {
  .p-fv .p-fv__title {
    font-size: clamp(38px, 38px + (49 - 38) * (100vw - 480px) / 288, 49px);
    margin-top: -38%;
  }
}
@media (max-width: 480px) {
  .p-fv .p-fv__title {
    font-size: 8vw;
    margin-top: -78%;
  }
}

/* about */
.sectionWrap--about {
  padding-bottom: 80px;
}

.top__section-inner--about {
  margin-left: max((90% - 1120px) / 2, 0px);
  padding: 0 0 0 5%;
  display: flex;
  justify-content: space-between;
  gap: 4%;
}
@media (max-width: 768px) {
  .top__section-inner--about {
    flex-direction: column;
  }
}
.top__section--about {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(22.5px);
  padding: 120px 0;
  margin-left: 0;
}
/* transform初期位置　right最終位置 */
.topEffort__gsap {
  position: absolute;
  right: -20%;
  transform: translateX(20%);
  top: -40px;
  color: #f2f2f2;
  font-family: "Mulish", sans-serif;
  font-size: 160px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -8px;
}
@media (max-width: 768px) {
  .topEffort__gsap {
    font-size: 60px;
    top: 12px;
    letter-spacing: -4px;
  }
}

.top__section--about .topAbout__main .modText {
  color: #272d36;
}

/* effort */
.top__section--effort .top__section-inner {
  position: relative;
}

/* picture */
.top__picture {
  position: relative;
}
@media screen and (min-width: 769px) {
  .top__picture {
    margin: 100px 0 0 max((90% - 1120px) / 2, 0px);
  }
}

.top__section--adCompany {
  margin-left: 0;
}

/* app */
@media (max-width: 768px) {
  .top__section--app .topApp__about__main {
    margin-top: 0;
  }

  .topApp__ad {
    margin-left: -5%;
    margin-right: -5%;
  }
}
.top__section--app .topApp__download__head .text {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  font-weight: 700;
}

.top__section--app .topApp__ad__main .recommend__title {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  font-weight: 700;
}

/* pictureList */
.top__pictureList {
  margin-top: 100px;
}
.top__pictureList__inner.swiper-wrapper {
  height: auto;
}

/* adCompany */
.adCompany__list__inner.swiper-wrapper {
  height: auto;
}
.adCompany__list__item.swiper-slide figure {
  aspect-ratio: 1;
}

/* blogs */
.top__blog-gsap-container {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .top__blog-gsap-container {
    margin-bottom: 16px;
    padding: 0 5%;
  }
}
.top__blog-gsap {
  color: rgba(70, 76, 85, 0.9);
  font-family: "Mulish", sans-serif;
  font-size: 160px;
  font-style: normal;
  font-weight: 500;
  max-width: calc(1120px + 10%);
  line-height: 155px;
  transform: translateX(-20%);
  margin: 0 auto;
  letter-spacing: -8px;
}
@media (max-width: 768px) {
  .top__blog-gsap {
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -6px;
  }
}
.top__blog-warap {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(22.5px);
}
.top__section--blog.top__section--wh {
  max-width: calc(1120px + 10%);
  margin: 0 auto;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .top__section.top__section--wh {
    padding: 80px 0;
  }
}

.modListBlog__item__img {
  aspect-ratio: 1;
}

.top__section--news.top__section {
  margin-top: -2px;
}

.top-bottom {
  height: 220px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(22.5px);
}
@media screen and (max-width: 768px) {
  .top-bottom {
    height: 200px;
  }
}

.top {
  margin-bottom: 0;
}

/* 下層ページ共通 */
.modHeadingCenter {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
}

.modTextEmphasis {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
}

.modHeadingTop__text {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
}

/* ==================================================
   LP
   ================================================== */

/* 既存クラス　reset */
.lp__section {
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1024px) {
  .lp__section {
    padding: 60px 5%;
  }
}

@media (max-width: 768px) {
    .lp .modHeading02--center {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .lp .modHeading02--center:before {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* common */
.sm-none {
  display: inline-block;
}
@media (max-width: 520px) {
  .sm-none {
    display: none;
  }
}

.sm-only {
  display: none;
}
@media (max-width: 520px) {
  .sm-only {
    display: inline-block;
  }
}

.sectionWrap--dotsBg {
  background-image: radial-gradient(
    circle at 10px 10px,
    rgba(0, 0, 0, 0.2) 1px,
    transparent 1.01px
  );
  background-size: 18px 18px;
  background-position: 0 0;
  background-repeat: repeat;
}

.c-side {
  z-index: 99;
  position: fixed;
  right: 0;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
@media (max-width: 992px) {
  .c-side {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .c-side {
    top: auto;
    bottom: 0;
    flex-direction: row;
    width: 100%;
    gap: 0;
    transform: none;
    transition: none;
  }
}

.c-side.is-shown {
  transform: translateX(0);
}
.c-side.is-hidden {
  transform: translateX(120%);
}

@media (max-width: 768px) {
  .c-side__btn-wrap {
    width: 50%;
  }
}

.c-side__btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3.6px;
  border-radius: 8px 0 0 8px;
  padding: 20px 28px 28px;
  transition: filter 0.3s ease, transform 0.3s ease;
  gap: 12px;
}
@media (max-width: 1480px) {
  .c-side__btn {
    font-size: 15px;
    padding: 18px 24px 24px;
    gap: 16px;
  }
}
@media (max-width: 992px) {
  .c-side__btn {
    font-size: 14px;
    padding: 16px 20px 20px;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .c-side__btn {
    writing-mode: horizontal-tb;
    border-radius: 8px 8px 0 0;
    padding: 12px clamp(8px, 8px + (16 - 8) * (100vw - 320px) / 448, 16px);
    font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 448, 14px);
    gap: 16px;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 40px;
  }
}

.c-side__btn:hover {
  filter: brightness(1.2);
}

@media (max-width: 768px) {
  .c-side__btn-icon {
    width: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 448, 20px);
  }
}

.c-side__btn-icon img {
  width: 100%;
  height: auto;
}

.c-side__btn--ad {
  background: #ce5a57;
}
.c-side__btn--ad .c-side__btn-icon {
  margin-right: -5px;
}
@media (max-width: 768px) {
  .c-side__btn--ad .c-side__btn-icon {
    margin-right: 0;
  }
}

.c-side__btn--doc {
  background: #444c5c;
}

.lp img {
  width: 100%;
  height: auto;
  display: block;
}

.lp .modBtn {
  position: relative;
}

.lp .cv__btn .modBtn {
  max-width: 218px;
  padding: 8px 10px 7px;
}
@media (max-width: 768px) {
  .lp .cv__btn .modBtn {
    max-width: 100%;
  }
}

.lp .modBtn--ad {
  border: 1px solid #ce5a57;
  background: #ce5a57;
}

.lp .modBtn--white {
  background: #444c5c;
  color: #fff;
  border: 1px solid #444c5c;
}

.lp .modBtn--document.modBtn--white::before {
  background: url(/wp-content/themes/kids_scope/assets/img/common/icon/icon_document.svg)
    no-repeat 0 0;
}

.lp .modBtn--ad::before {
  width: 26px;
  background: url(/wp-content/themes/kids_scope/assets/img/common/icon/icon_ad2.svg);
}

.header--lp .modBtn--ad::before {
  width: 26px;
  background: url(/wp-content/themes/kids_scope/assets/img/common/icon/icon_ad2.svg);
}

.lp .modHeading02__sub {
  font-size: 20px;
  font-weight: 500;
}

.lp .modHeading02 {
  font-size: 30px;
  font-weight: 700;
}

.modHeading03--line {
  color: #272d36;
  font-size: 30px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.5px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-color: #e1b16a;
  text-decoration-thickness: 11%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}

/* lp header */
.header--lp .header__nav__content .headerBtnCont .modBtn--ad {
  border: 1px solid #ce5a57;
  background: #ce5a57;
}

.header--lp .header__nav__content .headerBtnCont .modBtn--document {
  background: #444c5c;
  color: #fff;
  border: 1px solid #444c5c;
}

.header--lp .modBtn--document.modBtn--white::before {
  background: url(/wp-content/themes/kids_scope/assets/img/common/icon/icon_document.svg)
    no-repeat 0 0;
}

/* kv */
.lp__kv_bg-left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
}
@media (max-width: 992px) {
  .lp__kv_bg-left {
    display: none;
  }
}

.lp_kv_bg-sp {
  display: none;
}
@media (max-width: 992px) {
  .lp_kv_bg-sp {
    display: block;
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.7;
  }

  .lp_kv_bg-sp img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .lp_kv_bg-sp::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(70px, 20vw, 180px);
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.65) 55%,
      #fff 100%
    );
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .lp_kv_bg-sp {
    height: 250px;
  }
}

.lp__kv .kv {
  background: url(/wp-content/themes/kids_scope/assets/img/lp/img-fv-bg.jpg)
    no-repeat right center/cover;
  height: 630px;
  position: relative;
}
@media (max-width: 1680px) {
  .lp__kv .kv {
    background: url(/wp-content/themes/kids_scope/assets/img/lp/img-fv-bg.jpg)
      no-repeat calc(100% + 100px) center/cover;
  }
}
@media (max-width: 1240px) {
  .lp__kv .kv {
    background: url(/wp-content/themes/kids_scope/assets/img/lp/img-fv-bg.jpg)
      no-repeat calc(100% + 120px) center/cover;
  }
}
@media (max-width: 992px) {
  .lp__kv .kv {
    background: none;
    height: auto;
    padding-top: 102px;
  }
}

.lp__kv .kv__content {
  top: 49%;
  left: clamp(40px, 40px + (300 - 40) * (100vw - 1240px) / 680, 300px);
  transform: translateY(-50%);
  max-width: 580px;
  width: 41vw;
}
@media (max-width: 1480px) {
  .lp__kv .kv__content {
    left: clamp(20px, 20px + (131 - 20) * (100vw - 992px) / 488, 131px);
  }
}
@media (max-width: 992px) {
  .lp__kv .kv__content {
    top: 0;
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 40px 5% 60px 5%;
  }
}
@media (max-width: 768px) {
  .lp__kv .kv__content {
    padding: 24px 5% 40px 5%;
  }
}

.kv__content__catch {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
@media (max-width: 992px) {
  .kv__content__catch {
    margin-top: -60px;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(1px) saturate(100%);
    backdrop-filter: blur(1px) saturate(100%);
    isolation: isolate;
    position: relative;
  }
  .kv__content__catch::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    background: #fff;
    filter: blur(12px);
    opacity: 0.35;
    z-index: -1;
  }
}

.kv__content__catch-main {
  color: #1b1b1b;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.kv__content__catch-main-line {
  background-image: linear-gradient(#fae01166, #fae01166);
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: 100% 0.4em;
  display: inline;
  padding-bottom: 0.2em;
  letter-spacing: 1.2px;
}
@media (max-width: 1480px) {
  .kv__content__catch-main {
    font-size: clamp(24px, 24px + (36 - 24) * (100vw - 992px) / 488, 36px);
  }
}
@media (max-width: 992px) {
  .kv__content__catch-main {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .kv__content__catch-main {
    font-size: clamp(19px, 19px + (24 - 19) * (100vw - 350px) / 418, 24px);
  }
}

.kv__content__catch-line {
}

@media (max-width: 992px) {
  .kv__content__catch-main {
    display: inline-block;
  }
}

.kv__content__catch-sm {
  font-size: 24px;
}
@media (max-width: 992px) {
  .kv__content__catch-sm {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .kv__content__catch-sm {
    font-size: 18px;
  }
}

.kv__content__highlight {
  color: #ce5a57;
}

.kv__content__catch-sub {
  span {
    color: #1b1b1b;
    letter-spacing: 1.2px;
    font-size: 34px;
    font-weight: 700;
    background-image: linear-gradient(#fae01166, #fae01166);
    background-position: 0 80%;
    background-repeat: no-repeat;
    background-size: 100% 0.4em;
    padding-bottom: 0.2em;
  }
}
@media (max-width: 1480px) {
  .kv__content__catch-sub span {
    font-size: clamp(24px, 24px + (36 - 24) * (100vw - 992px) / 488, 36px);
  }
}
@media (max-width: 992px) {
  .kv__content__catch-sub span {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .kv__content__catch-sub span {
    font-size: clamp(19px, 19px + (24 - 19) * (100vw - 350px) / 418, 24px);
  }
}

.kv__content__title-wrapper {
  margin: 28px auto 28px auto;
  max-width: 442px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(225, 177, 106, 0.2);
  padding: 16px 16px 20px;
  position: relative;
}
@media (max-width: 1480px) {
  .kv__content__title-wrapper {
    width: clamp(380px, 380px + (440 - 380) * (100vw - 992px) / 488, 440px);
  }
}

@media (max-width: 992px) {
  .kv__content__title-wrapper {
    max-width: 560px;
    padding: 12px 12px 16px;
  }
}
@media (max-width: 768px) {
  .kv__content__title-wrapper {
    padding: 8px 8px 12px;
    width: 100%;
  }
}

.kv__content__app {
  position: absolute;
  right: -360px;
  width: 311px;
  top: 80%;
  transform: translateY(-50%);
}
@media (max-width: 1480px) {
  .kv__content__app {
    right: -21vw;
    width: clamp(200px, 200px + (311 - 200) * (100vw - 992px) / 488, 311px);
  }
}
@media (max-width: 1280px) {
  .kv__content__app {
    right: -19.25vw;
  }
}
@media (max-width: 992px) {
  .kv__content__app {
    display: none;
  }
}

.kv__content__app-sp {
  display: none;
}
@media (max-width: 992px) {
  .kv__content__app-sp {
    display: block;
    margin: 0 auto 0 auto;
    width: 50%;
    max-width: 240px;
  }
}

.kv__content__app img {
  width: 100%;
  height: auto;
}

.lp__kv .kv__content__title {
  color: #000;
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .lp__kv .kv__content__title {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .lp__kv .kv__content__title {
    margin-bottom: 16px;
  }
}

.lp__kv .kv__content__logo {
  margin-bottom: 15px;
  max-width: 333px;
  width: 100%;
}
@media (max-width: 992px) {
  .lp__kv .kv__content__logo {
    max-width: 260px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .lp__kv .kv__content__logo {
    max-width: 200px;
    width: 100%;
    margin: 0 auto 16px auto;
  }
}

.lp__kv .kv__content__logo > img {
  width: 100%;
}

@media (max-width: 768px) {
  .kv__content__ad {
    width: clamp(200px, 200px + (240 - 200) * (100vw - 350px) / 418, 240px);
  }
}

.lp__kv .kv__content__text {
  color: #464c55;
  text-align: center;
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1480px) {
  .lp__kv .kv__content__text {
    font-size: clamp(16px, 16px + (22 - 16) * (100vw - 992px) / 488, 22px);
  }
}
@media (max-width: 992px) {
  .lp__kv .kv__content__text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .lp__kv .kv__content__text {
    font-size: clamp(14px, 14px + (16 - 14) * (100vw - 350px) / 418, 16px);
  }
}

.lp__kv .modBtn {
  position: relative;
}

.lp__kv .modBtn .c-decorator {
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  white-space: nowrap;
  top: -27%;
  left: 50%;
}

.lp__kv .kv__content__btn {
  margin-top: 48px;
  justify-content: center;
}

@media (max-width: 768px) {
  .lp__kv .kv__content__btn {
    align-items: center;
    gap: 32px;
  }
}

.lp__kv .kv__content__btn .modBtn {
  max-width: 224px;
}

/* intro */
.sectionWrap--intro {
  background: #fbf4e9;
  padding-top: 80px;
}
@media (max-width: 1024px) {
  .sectionWrap--intro {
    padding-bottom: 80px;
  }
}

.introTitle__img {
  display: flex;
  gap: 10px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 768px) {
  .introTitle__img {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

.introTitle__logo {
  max-width: 333px;
  width: 100%;
}
@media (max-width: 768px) {
  .introTitle__logo {
    max-width: 300px;
    width: 100%;
  }
}

.introTitle__logo-text {
  max-width: 310px;
  width: 100%;
}

.lp__section--intro {
  position: relative;
  z-index: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1;
}

.introBg {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100vw - 15px);
  padding: 0 50px;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

.lp__section--intro .introBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .introBg {
    display: none;
  }

  .sectionWrap--intro {
    position: relative;
  }

  .sectionWrap--intro::after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("/wp-content/themes/kids_scope/assets/img/lp/img-intro-bg.png");
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;
  }
}

.introItems {
  margin: 48px auto 0 auto;
  gap: 40px;
}
@media (max-width: 992px) {
  .introItems {
  }
}

.introItem {
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 992px) {
  .introItem {
    max-width: 260px;
    width: 100%;
    justify-self: center;
  }
}

.introItem_baloon {
  width: 100%;
  position: relative;
  display: inline-block;
  background: #fff;
  border: 2px solid #e1b16a;
  border-radius: 24px;
  padding: 22px 16px;
  text-align: center;
  margin-bottom: 3.8rem;
  z-index: 1;
}

.introItem_baloon::after {
  content: "";
  width: 28px;
  height: 32px;
  background-color: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -20px;
  left: 56px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  rotate: -8deg;
  z-index: 0;
}

.introItem_baloon::before {
  content: "";
  width: 29px;
  height: 33px;
  background-color: #e1b16a;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -22px;
  left: 56px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  rotate: -8deg;
  z-index: -1;
}

.introItem_img {
  width: 260px;
  height: 260px;
  aspect-ratio: 1;
}

.introItem_baloon p {
  color: #464c55;
  text-align: center;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: none;
  text-decoration-color: #e1b16a;
  text-decoration-thickness: 13%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 1px;
}

.introItem_baloon p::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 8px;
  background: #fff;
  bottom: 0;
  left: 35px;
}

.introHead__desc {
  color: #272d36;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 24px;
}

.introBottom_bg {
  position: relative;
  z-index: 0;
  margin-top: -2px;
  height: 120px;
}

/* about */
@media (max-width: 992px) {
  .sectionWrap--about.sectionWrap--dotsBg {
    margin-top: -60px;
    padding: 0 5%;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .sectionWrap--about.sectionWrap--dotsBg {
    margin-top: -100px;
    padding-bottom: 60px;
  }
}

.lp__section--about {
  position: relative;
  background: #fff;
  max-width: 1080px;
  margin-top: 0;
  padding: 64px 40px;
}
@media (max-width: 992px) {
  .lp__section--about {
    padding: 60px 32px;
  }
}
@media (max-width: 768px) {
  .lp__section--about {
    gap: 40px;
  }
}

.aboutBorder {
  position: absolute;
  width: 120px;
  height: 120px;
}

.lp__section--about .aboutMovie {
  margin: 0 auto;
}

.lp__section--about .aboutText .modHeading02 {
  letter-spacing: 1px;
}

.aboutText__img-wrap {
  border: 1px solid #eaeaea;
  padding: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .aboutText__img-wrap {
    padding: 16px;
  }
}

.aboutImg {
  width: 100%;
  max-width: 416px;
  margin: 0 auto;
}

.aboutBorder--right-top {
  top: 0;
  right: 0;
  border-top: 10px solid #ce5a57;
  border-right: 10px solid #e1b16a;
}

.aboutBorder--right-down {
  bottom: 0;
  right: 0;
  border-right: 10px solid #444c5c;
  border-bottom: 10px solid #78a5a3;
}

.aboutBorder--left-top {
  top: 0;
  left: 0;
  border-left: 10px solid #444c5c;
  border-top: 10px solid #78a5a3;
}

.aboutBorder--left-down {
  bottom: 0;
  left: 0;
  border-left: 10px solid #ce5a57;
  border-bottom: 10px solid #e1b16a;
}

.aboutTop_img {
  margin: -45px auto 0 auto;
  max-width: 657px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .aboutTop_img {
    max-width: 520px;
    width: 85%;
    margin: 0 auto 40px auto;
  }
}

/* meritList */
.meritBg {
  background-image: url(/wp-content/themes/kids_scope/assets/img/lp/img-bg2.svg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
  position: absolute;
  top: -9%;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.lp__section--merit {
  padding-top: 60px;
}
@media (max-width: 992px) {
  .lp__section--merit {
    padding-bottom: 0;
  }
  .lp__section--merit:not(:has(.meritSupport)) {
    padding-bottom: 60px;
  }
}

.sectionWrap--merit {
  position: relative;
}

.meritList__wrapper {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .meritList__wrapper {
    gap: 40px;
    margin-bottom: 60px;
  }
}

.meritList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 55px 5%;
}
@media (max-width: 992px) {
  .meritList {
    flex-direction: column;
    gap: 40px;
  }
}

.meritList__item {
  width: 30%;
  gap: 10px;
}
@media (max-width: 992px) {
  .meritList__item {
    width: 100%;
    gap: 24px;
  }
}

.meritList__item__img {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .meritList__item__img {
    max-width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.meritList__item__text {
  font-size: 15px;
  line-height: 200%;
  font-weight: 400;
  color: #272d36;
  letter-spacing: 1.5px;
}
.meritList__item__text span {
  font-size: 12px;
}

.meritSupport {
  background: #fbf4e9;
  padding: 80px 94px;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .meritSupport {
    padding: 60px 32px 60px;
    margin-top: 80px;
    position: relative;
    background: none;
  }
  .meritSupport::before {
    content: "";
    position: absolute;
    background: #fbf4e9;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1;
  }
}
@media (max-width: 768px) {
  .meritSupport {
    padding: 60px 24px 60px;
  }
}

.meritSupport__text {
  text-align: center;
}

.meritSupport__items {
  margin-top: 40px;
  gap: 32px;
}

.meritSupport__item {
  background: #ccc;
  height: auto;
  width: 100%;
  overflow: hidden;
}

.meritSupport__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp__section--merit .modSectionLv3 {
  margin: 0 0 100px 0;
}
@media (max-width: 768px) {
  .lp__section--merit .modSectionLv3 {
    margin: 0 0 60px 0;
  }
}

.lp__section--merit .modSectionLv3.modSectionLv3--fst {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .lp__section--merit .modSectionLv3.modSectionLv3--fst {
    margin-bottom: 24px;
  }
}

.lp__section--merit .modSectionLv3.modSectionLv3--last {
  margin-bottom: 0;
}

.lp__section--merit .modHeading02 {
  margin-bottom: 40px;
}

.lp__section--merit .modSectionLv3__content {
  margin-top: 0;
}

.lp__section--merit .modSectionLv3--reverse .modSectionLv3__content {
  margin-top: 24px;
}

.lp__section--merit .modSectionLv3__content__number {
  background: #ce5a57;
}

.lp__section--merit .modSectionLv3__content__heading {
  color: #272d36;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 1.8;
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
}

.lp__section--merit .modSectionLv3__content__heading > span {
  color: #272d36;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-color: #e1b16a;
  text-decoration-thickness: 11%;
  text-underline-offset: 25%;
  border-bottom: none;
  font-size: 30px;
  text-underline-position: from-font;
  margin-top: 8px;
}

.lp__section--merit .modSectionLv3__content .modText {
  margin-top: 40px;
}

.lp__section .modSectionLv3 .modImage.modImage--radius {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 100px 0 #fff inset;
}

/* case */
.caseItems {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.caseItem {
  position: relative;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(68, 76, 92, 0.15);
  width: 100%;
  overflow: hidden;
  padding: 54px 120px;
}
@media (max-width: 1240px) {
  .caseItem {
    padding: 54px 60px;
  }
}
@media (max-width: 992px) {
  .caseItem {
    padding: 40px 32px;
  }
}

.caseItem::before {
  content: "";
  background: url(/wp-content/themes/kids_scope/assets/img/lp/img-case-boxbg1.png)
    no-repeat center center/cover;
  width: 504px;
  height: 384px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .caseItem::before {
    width: 300px;
    height: 228px;
  }
}
@media (max-width: 768px) {
  .caseItem::before {
    width: 200px;
    height: 152px;
  }
}

.caseItem::after {
  content: "";
  background: url(/wp-content/themes/kids_scope/assets/img/lp/img-case-boxbg2.png)
    no-repeat center center/cover;
  width: 347px;
  height: 264px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 992px) {
  .caseItem::after {
    width: 250px;
    height: 190px;
  }
}
@media (max-width: 768px) {
  .caseItem::after {
    width: 180px;
    height: 137px;
  }
}

.caseItem__title {
  color: #272d36;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  line-height: 160%;
  letter-spacing: 1.5px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: auto;
  text-decoration-color: #e1b16a;
  text-decoration-thickness: 11%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}

.caseItem__content {
  display: flex;
  gap: 108px;
  margin-top: 40px;
}
@media (max-width: 1240px) {
  .caseItem__content {
    gap: 80px;
  }
}
@media (max-width: 992px) {
  .caseItem__content {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .caseItem__content {
    flex-direction: column;
    gap: 24px;
  }
}

.caseItem__img {
  max-width: 240px;
  width: 100%;
}
@media (max-width: 768px) {
  .caseItem__img {
    max-width: 320px;
    margin: 0 auto;
  }
}

.caseItem__desc {
  margin-top: 16px;
}

.caseItem__point-icon {
  max-width: 130px;
  width: 100%;
}
@media (max-width: 768px) {
  .caseItem__point-icon {
    max-width: 100px;
  }
}

.caseItem__point p {
  line-height: 1.8;
}

.caseItem__baloon {
  position: relative;
  color: #fff;
  background: #78a5a3;
  border-radius: 32px;
  padding: 40px 24px;
  text-align: left;
  margin-bottom: 3.8rem;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .caseItem__baloon {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .caseItem__baloon {
    margin-bottom: 0;
    padding: 32px 16px;
  }
}

.caseItem__baloon p {
  width: 90%;
}

.caseItem__baloon::after {
  content: "";
  position: absolute;
  top: 65%;
  left: -48px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 48px 2px 0;
  border-color: transparent #78a5a3 transparent transparent;
}

@media (max-width: 992px) {
  .caseItem__baloon::after {
    left: -32px;
    border-width: 28px 32px 2px 0;
  }
}
@media (max-width: 768px) {
  .caseItem__baloon::after {
    content: "";
    position: absolute;
    top: -10%;
    rotate: 130deg;
    left: 15%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 28px 48px 2px 0;
    border-color: transparent #78a5a3 transparent transparent;
  }
}

.caseItem__baloon::before {
  content: "";
  background: url(/wp-content/themes/kids_scope/assets/img/lp/icon-baloon-deco.svg)
    no-repeat center center/cover;
  width: 25px;
  height: 33px;
  position: absolute;
  right: -20px;
  top: -20px;
}

.caseItem__point {
  position: relative;
  padding: 32px 0 16px 0;
  margin-top: 48px;
}

.caseItem__point-icon {
  position: absolute;
  top: 0;
  width: 130px;
  transform: translateY(-50%);
}

.caseItem__point::before {
  content: "";
  background: #ce5a57;
  height: 1px;
  width: calc(100% - 150px);
  right: 0;
  top: 0;
  position: absolute;
}
@media (max-width: 768px) {
  .caseItem__point::before {
    width: calc(100% - 110px);
  }
}

.caseItem__point::after {
  content: "";
  background: #ce5a57;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
}

/* comparison */
.sectionWrap--comparison {
  background: rgba(225, 177, 106, 0.2);
}

.comparisonTable__wrapper {
  max-width: 100%;
  margin-top: 40px;
  font-size: 15px;
}
@media (max-width: 992px) {
  .comparisonTable__wrapper {
    overflow-x: auto;
    padding-bottom: 24px;
  }
}

.comparisonTable {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #e5e9ee00;
  font-size: 14px;
  line-height: 1.7;
  color: #2f2f2f;
}
@media (max-width: 992px) {
  .comparisonTable {
    min-width: 800px;
  }
}

.comparisonTable th,
.comparisonTable td {
  padding: 18px 20px;
  vertical-align: middle;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  text-align: center;
  height: 84px;
}
@media (max-width: 768px) {
  .comparisonTable th,
  .comparisonTable td {
    padding: 12px 16px;
    height: auto;
  }
}

.comparisonTable tr > *:last-child {
  border-right: none;
}
.comparisonTable tbody tr:last-child > * {
  border-bottom: none;
}

.comparisonTable thead th {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.75px;
}

.comparisonTable .is-top--left {
  background: #e1b16a;
}

.comparisonTable .is-top--kikasete {
  background: #ce5a57;
}

.comparisonTable .is-top--google,
.comparisonTable .is-top--local {
  background: #78a5a3;
}

.comparisonTable .rowhead {
  background: #444c5c;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.comparisonTable td {
  background: #ffffff;
  color: #2f2f2f;
  border-bottom: 1px solid#444C5C;
  border-right: 1px solid#444C5C;
}

/* flow */
.flowItems {
  display: flex;
  gap: 54px;
  justify-content: center;
}
@media (max-width: 768px) {
  .flowItems {
    flex-direction: column;
    gap: 80px;
    align-items: center;
  }
}

.flowItem {
  width: 198px;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .flowItem {
    width: 100%;
    max-width: 280px;
  }
}

.flowItem:last-child::after {
  display: none;
}

.flowItem::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 45px;
  background: url(/wp-content/themes/kids_scope/assets/img/lp/icon-arrow.svg)
    no-repeat center center/cover;
  transform: translateY(-50%);
  top: 50%;
  right: -32px;
}
@media (max-width: 768px) {
  .flowItem::after {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    top: auto;
    bottom: -22%;
  }
}

.flowItem__desc {
  margin-top: 16px;
  color: #464c55;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 768px) {
  .flowItem__img {
    width: 90%;
  }
}

.flowNote {
  margin: 40px 32px 0 32px;
  justify-content: center;
  color: #464c55;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
}
@media (max-width: 768px) {
  .flowNote {
    margin: 40px 0 0 0;
  }
}

/* plan */
.sectionWrap--plan {
  background: rgba(120, 165, 163, 0.2);
}

.planBox {
  border-radius: 32px;
  border: 4px solid #78a5a3;
  background: #fff;
  box-shadow: 0 0 12px 0 rgba(120, 165, 163, 0.25);
  max-width: 788px;
  width: 100%;
  padding: 40px 120px;
  margin: 40px auto;
}

@media (max-width: 992px) {
  .planBox {
    padding: 40px 60px;
  }
}
@media (max-width: 768px) {
  .planBox {
    padding: 32px 24px;
  }
}

.planBox__container {
  text-align: center;
  border-radius: 4px;
  background: #f9efe1;
  position: relative;
  max-width: 529px;
  width: 100%;
  margin: 50px auto 0 auto;
  padding: 58px 16px 32px;
}
@media (max-width: 768px) {
  .planBox__container {
    padding: 48px 16px 24px;
  }
}

.planBox__circle {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  aspect-ratio: 1;
  top: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e1b16a;
  color: #fff;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.75px;
}
@media (max-width: 768px) {
  .planBox__circle {
    width: 48px;
    height: 48px;
    font-size: 13px;
  }
}

.planBox__text {
  text-align: center;
  span {
    display: block;
    color: #464c55;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.85px;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: none;
    text-decoration-color: #e1b16a;
    text-decoration-thickness: 13%;
    text-underline-offset: 25%;
    text-underline-position: from-font;
  }
}
@media (max-width: 768px) {
  .planBox__text span {
    font-size: 15px;
  }
}

.planBox__price {
  position: relative;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .planBox__price {
    gap: 16px;
  }
}

.planBox__price::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 6px;
  background: #e1b16a;
  border-radius: 3px;
}

.price__badge {
  border-radius: 6px;
  border: 1px solid #78a5a3;
  background: #fff;
  color: #78a5a3;
  padding: 8px 10px 7px;
  font-weight: 700;
  line-height: 1;
  font-size: 18px;
}
@media (max-width: 768px) {
  .price__badge {
    font-size: 16px;
    padding: 6px 8px 5px;
  }
}

.price__main {
  line-height: 1;
}
.price__value {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .price__value {
    font-size: 32px;
  }
}
.price__yen {
  font-size: 24px;
  margin-left: 4px;
}
@media (max-width: 768px) {
  .price__yen {
    font-size: 18px;
    margin-left: 2px;
  }
}
.price__tax {
  font-size: 14px;
  color: #666;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .price__tax {
    font-size: 12px;
    margin-left: 4px;
  }
}

.planBox__note {
  color: #464c55;
  font-size: 12px;
  font-weight: 400;
  text-align: right;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .planBox__note {
    font-size: 10px;
  }
}

.planBox__btn {
  text-align: center;
  margin: 24px auto 0 auto;
}

.planBox__btn .modBtn {
  margin: 0 auto;
}

/* faq */
.qaList__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qaList__item-block {
  display: flex;
  align-items: center;
}

.qaList__item-block p {
  color: #464c55;
  leading-trim: both;
  text-edge: cap;
  font-size: 17px;
  letter-spacing: 0.85px;
}
@media (max-width: 768px) {
  .qaList__item-block p {
    font-size: 15px;
  }
}

.qaList__item-block--q p {
  color: #464c55;
  leading-trim: both;
  text-edge: cap;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.85px;
}
@media (max-width: 768px) {
  .qaList__item-block--q p {
    font-size: 15px;
  }
}

.qaList__item-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  aspect-ratio: 1;
  margin-right: 32px;
}
@media (max-width: 768px) {
  .qaList__item-icon {
    width: 48px;
    height: 48px;
    margin-right: 24px;
  }
}

@media (max-width: 768px) {
  .lp__section--faq .qaList {
    margin-top: 40px;
  }
}

/* future */
.lp__section--future .modHeading02--big {
  margin-bottom: 40px;
}
.lp__section--feature {
  padding-bottom: 60px;
  padding-top: 60px;
}

/* cv */
.lp .cv {
  padding: 68px 40px 68px;
}
@media (max-width: 992px) {
  .lp .cv {
    padding: 68px 32px 68px;
  }
}
@media (max-width: 768px) {
  .lp .cv {
    padding: 48px 20px 48px;
  }
}

.lp .cv__wrapper {
  margin: 0;
  min-height: 500px;
}
@media (max-width: 768px) {
  .lp .cv__wrapper {
    min-height: auto;
  }
}

.lp .cv__heading__text--big {
  border-color: #e1b16a;
}

.lp .cv__heading__text {
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", sans-serif;
}

.lp .cv__btn {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .lp .cv__btn {
    gap: 40px;
  }
}

.cv__btn .c-decorator {
  top: -35%;
}

/* appDownload */
.appDownload {
  padding-left: 5%;
  padding-right: 5%;
}


/* ==================================================
   request-complete
   ================================================== */
.modContainer--form .modBtn.modBtn--black.modBtn--next::after{
	display:none;
}