@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
body.js-drawer_show {
  overflow: hidden;
}

.animated__fadeIn {
  opacity: 0;
  translate: 0 0;
  transition: opacity 0.5s ease, translate 0.3s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

/* スクロール出現アニメーション：ポンッと拡大 */
.animated__pop {
  opacity: 0;
  transform: scale(0);
  transform-origin: center center;
  will-change: transform, opacity;
}
.animated__pop.js-show {
  opacity: 1;
  /* “ポンッ”感 */
  animation: popIn 0.5s linear both;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.03);
  } /* ちょい跳ね */
  100% {
    transform: scale(1);
  }
}
/* スクロール出現アニメーション：白黒からカラーへフェード */
.animated__bwToColor {
  opacity: 0;
  filter: grayscale(100%);
  transition: opacity 0.6s ease, filter 1.2s ease 0.3s;
}
.animated__bwToColor.js-show {
  opacity: 1;
  filter: grayscale(0%);
}

.trouble__arrow,
.anxiety__arrow {
  margin-top: 40px;
  width: 87px;
  margin-inline: auto;
  height: auto;
  aspect-ratio: 87/39;
}
@media screen and (max-width: 767px) {
  .trouble__arrow,
  .anxiety__arrow {
    margin-top: 28px;
    width: 52px;
  }
}
.trouble__arrow svg,
.anxiety__arrow svg {
  width: 100%;
}
.trouble__arrow svg path,
.anxiety__arrow svg path {
  animation: scrollPulse 1.5s infinite;
}
.trouble__arrow svg path:nth-child(1),
.trouble__arrow svg path:nth-child(2),
.anxiety__arrow svg path:nth-child(1),
.anxiety__arrow svg path:nth-child(2) {
  animation-delay: 0s;
}
.trouble__arrow svg path:nth-child(3),
.trouble__arrow svg path:nth-child(4),
.anxiety__arrow svg path:nth-child(3),
.anxiety__arrow svg path:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes scrollPulse {
  0% {
    opacity: 0.2;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.animated__kakuRotate {
  transform-origin: center bottom;
  animation: kakuRotate 2s infinite;
}

@keyframes kakuRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.inner {
  padding-left: 35px;
  padding-right: 35px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.container-1440 {
  max-width: 1510px;
  margin-inline: auto;
}

.cta-button {
  width: 633px;
  max-width: 100%;
  margin-inline: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: linear-gradient(91deg, #00C2E4 0%, #00C2E4 50%, #1A6AFF 70.7%, #4900F4 100%);
  background-size: 200% auto;
  background-position: right center;
  transition: background-position 1s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s ease;
  border-radius: 999px;
  padding: 19px 44px;
}
@media screen and (max-width: 767px) {
  .cta-button {
    padding: 9px 22px 10px 22px;
    gap: 7px;
  }
}
.cta-button .left {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #3A3FA6;
  background: #FFF;
  border-radius: 999px;
  width: 64px;
  height: auto;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .cta-button .left {
    font-size: 13px;
    width: 35px;
  }
}
.cta-button .text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .cta-button .text {
    font-size: 12px;
  }
}
.cta-button {
  animation: ctaPulse 1.8s infinite ease-in-out;
}
@media (any-hover: hover) {
  .cta-button:hover {
    animation-play-state: paused;
    transform: scale(0.96) translateY(2px);
    background-position: left center;
  }
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
a {
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

button {
  cursor: pointer;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  background: rgba(255, 255, 255, 0.8);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-left: 54px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 5.641025641vw;
    gap: min(5.1282051282vw, 20px);
  }
}

.header__logo {
  width: 120px;
  height: auto;
  aspect-ratio: 120/57;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: min(18.7179487179vw, 73px);
  }
}

.header__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  background: linear-gradient(91deg, #00C2E4 0.48%, #1A6AFF 41.43%, #4900F4 99.52%);
  padding: 8px 21px 8px 27px;
}
@media screen and (max-width: 767px) {
  .header__cta {
    justify-content: start;
    padding-block: min(3.3333333333vw, 13px);
    padding-inline: min(4.6153846154vw, 18px);
    gap: min(5.1282051282vw, 20px);
  }
}
.header__cta .left {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #3A3FA6;
  background: #FFF;
  border-radius: 999px;
  width: 64px;
  height: auto;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__cta .left {
    font-size: min(3.3333333333vw, 13px);
    width: min(8.9743589744vw, 35px);
  }
}
.header__cta .text {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .header__cta .text {
    font-size: min(3.5897435897vw, 14px);
  }
}

.fv {
  background: url(../img/fv_bg.jpg) no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/918;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv {
    background: url(../img/fv_bg_sp.jpg) no-repeat center center/cover;
    aspect-ratio: 366/680;
  }
}
.fv::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 2.8472222222vw;
  z-index: 5;
  width: 46.9444444444vw;
  height: auto;
  aspect-ratio: 676/814;
  background: url(../img/fv_bg_woman.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .fv::after {
    right: 0;
    background: url(../img/fv_bg_woman_sp.png) no-repeat center center/contain;
    width: 93.8461538462vw;
    height: auto;
    aspect-ratio: 366/631;
  }
}

.fv__inner {
  position: absolute;
  top: 11.8055555556vw;
  left: 11.8055555556vw;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    top: 26.6666666667vw;
    left: 6.4102564103vw;
  }
}

.fv__copy {
  display: flex;
  align-items: center;
  gap: 0.6944444444vw;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fv__copy {
    display: block;
  }
}

.fv__copy-appeal {
  display: inline-block;
  padding: 1.1111111111vw;
  font-size: 4.0277777778vw;
  font-weight: 700;
  background: #fff;
  color: #03A9F5;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .fv__copy-appeal {
    font-size: 8.9743589744vw;
  }
}

.fv__copy-appeal.--dekisou {
  position: relative;
  padding-right: 3.125vw;
}
@media screen and (max-width: 767px) {
  .fv__copy-appeal.--dekisou {
    margin-top: 14px;
    padding-right: 6.4102564103vw;
  }
}
.fv__copy-appeal.--dekisou span {
  position: absolute;
  top: 18;
  right: -3px;
  display: inline-block;
  transform: rotate(14deg);
}

.fv__copy-text {
  display: inline-block;
  font-size: 3.6805555556vw;
  font-weight: 700;
  color: #27272E;
}
@media screen and (max-width: 767px) {
  .fv__copy-text {
    font-size: 7.6923076923vw;
  }
}
@media screen and (max-width: 767px) {
  .fv__copy-text.--kawaru {
    line-height: 1.2;
    margin-top: 13px;
  }
}

.fv__title {
  margin-top: 4.2361111111vw;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fv__title {
    margin-top: 31.5384615385vw;
  }
}

.fv__title-main {
  display: flex;
  gap: 0.9027777778vw;
}
@media screen and (max-width: 767px) {
  .fv__title-main {
    gap: 1.7948717949vw;
  }
}
.fv__title-main .char {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 10.0694444444vw;
  aspect-ratio: 1;
  font-size: 8.4722222222vw;
  font-weight: 700;
  color: #fff;
  line-height: 0.9;
  background-image: linear-gradient(91deg, #00C2E4 0.48%, #1A6AFF 41.43%, #4900F4 99.52%);
  background-size: 400% 100%;
}
.fv__title-main .char:nth-child(1) {
  background-position: 0% 0;
}
.fv__title-main .char:nth-child(2) {
  background-position: 33.33% 0;
}
.fv__title-main .char:nth-child(3) {
  background-position: 66.66% 0;
}
.fv__title-main .char:nth-child(4) {
  background-position: 100% 0;
}
@media screen and (max-width: 767px) {
  .fv__title-main .char {
    width: 16.4102564103vw;
    font-size: 14.1025641026vw;
  }
}

.fv__title-sub {
  margin-top: 1.5277777778vw;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6944444444vw;
}
@media screen and (max-width: 767px) {
  .fv__title-sub {
    margin-top: 2.0512820513vw;
    gap: 0.7692307692vw;
  }
}
.fv__title-sub .char {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 7.0138888889vw;
  aspect-ratio: 1;
  font-size: 5.6944444444vw;
  font-weight: 700;
  color: #0092D5;
  background: #fff;
  border: 2px solid #00C2E4;
  line-height: 0.9;
}
@media screen and (max-width: 767px) {
  .fv__title-sub .char {
    width: 12.0512820513vw;
    aspect-ratio: 47/48;
    font-size: 9.4871794872vw;
  }
}

.fv__message {
  margin-top: 7.0138888889vw;
  position: relative;
  z-index: 1;
  width: 66.6666666667vw;
  margin-left: -11.8055555556vw;
  padding-left: 11.8055555556vw;
  background: linear-gradient(90deg, #03A9F5 59.96%, rgba(3, 169, 245, 0) 114.42%);
}
@media screen and (max-width: 767px) {
  .fv__message {
    margin-top: 5.8974358974vw;
    z-index: 20;
    width: 97.4358974359vw;
  }
}

.fv__message-text {
  font-size: 3.1944444444vw;
  font-weight: 700;
  color: #fff;
  padding-top: 0.1388888889vw;
  padding-bottom: 0.1388888889vw;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .fv__message-text {
    font-size: 5.8974358974vw;
    padding-top: 3.8461538462vw;
    padding-bottom: 3.8461538462vw;
  }
}

.trouble {
  padding-top: 97px;
  padding-bottom: 102px;
  position: relative;
  background: url(../img/trouble_bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .trouble {
    padding-top: 82px;
    padding-bottom: 39px;
    background: url(../img/trouble_bg_sp.png) no-repeat center center/cover !important;
  }
}

.trouble__box {
  height: 100%;
  position: relative;
}
.trouble__box::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 5;
  width: min(53.8194444444vw, 775px);
  height: auto;
  aspect-ratio: 775/624;
  background: url(../img/why_image_01.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .trouble__box::after {
    width: min(95.1282051282vw, 371px);
  }
}

.trouble__title {
  margin-left: 12px;
  width: min(55.2777777778vw, 796px);
  height: auto;
  aspect-ratio: 796/126;
}
@media screen and (max-width: 767px) {
  .trouble__title {
    width: 100%;
    margin-left: 0;
  }
}

.trouble__contents {
  margin-top: 59px;
  display: grid;
  grid-template-columns: auto 262px;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .trouble__contents {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }
}

.trouble__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .trouble__list {
    gap: 14px;
  }
}

.trouble__list-item {
  color: #27272E;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  padding-left: 50px;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .trouble__list-item {
    font-size: 12px;
    padding-left: 18px;
  }
}
.trouble__list-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 32px;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/trouble_check-list_icon.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .trouble__list-item::before {
    top: 4px;
    width: 14px;
  }
}
.trouble__list-item::before {
  filter: grayscale(100%);
  transition: filter 0.8s ease 0.3s;
}
.trouble__list-item.js-show::before {
  filter: grayscale(0%);
}

@media screen and (max-width: 767px) {
  .trouble__image {
    max-width: 167px;
    margin-inline: auto;
  }
}

.trouble__arrow {
  margin-top: 40px;
  width: 87px;
  margin-inline: auto;
  height: auto;
  aspect-ratio: 87/39;
}
@media screen and (max-width: 767px) {
  .trouble__arrow {
    margin-top: 28px;
    width: 52px;
  }
}
.trouble__arrow svg {
  width: 100%;
}

.trouble__answer {
  margin-top: 25px;
  color: #03A9F5;
  font-size: 44px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trouble__answer {
    margin-top: 16px;
    font-size: 20px;
    letter-spacing: 0;
  }
}

.why-about-wrap {
  padding-top: min(18.5416666667vw, 267px);
  padding-bottom: 99px;
  background: linear-gradient(180deg, #EBFBFF 0%, #C6E6EF 45.87%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .why-about-wrap {
    padding-top: min(60.2564102564vw, 235px);
    padding-bottom: 120px;
  }
}
.why-about-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(6.1805555556vw, 89px);
  background-color: #fff;
  z-index: 3;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.why-about-wrap__box {
  position: relative;
}

.why-about__bg-text {
  position: absolute;
  top: max(-11.4583333333vw, -165px);
  left: 45px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .why-about__bg-text {
    top: -160px;
    left: 0;
  }
}

.why {
  position: relative;
  z-index: 3;
}

.why__title {
  color: #03A9F5;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .why__title {
    font-size: 23px;
  }
}
.why__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #03A9F5;
}
@media screen and (max-width: 767px) {
  .why__title::after {
    width: 67px;
  }
}
.why__title::before {
  content: "";
  position: absolute;
  bottom: 82%;
  left: min(15.8333333333vw, 228px);
  width: 161px;
  height: auto;
  aspect-ratio: 161/89;
  background: url(../img/why_title_fukidashi.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .why__title::before {
    width: 70px;
  }
}

.why__description {
  margin-top: 35px;
  color: #27272E;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .why__description {
    margin-top: 13px;
    font-size: 15px;
    letter-spacing: 0;
  }
}
.why__description span {
  color: #03A9F5;
}

.why__contents {
  margin-top: 55px;
  position: relative;
}
.why__contents::after {
  content: "";
  position: absolute;
  bottom: max(-6.5277777778vw, -94px);
  left: 32px;
  width: min(10.7638888889vw, 155px);
  height: auto;
  aspect-ratio: 155/147;
  background: url(../img/why_image_02.png) no-repeat center center/contain;
  transform-origin: center bottom;
  animation: kakuRotate 2s infinite;
}
@media screen and (max-width: 767px) {
  .why__contents::after {
    left: 11px;
    width: min(18.2051282051vw, 71px);
  }
}

.why__contents-title {
  position: relative;
  z-index: 3;
  border-radius: 999px;
  background: #fff;
  max-width: 1027px;
  margin-inline: auto;
  padding: 8px 20px;
  color: #03A9F5;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .why__contents-title {
    font-size: 18px;
    padding: 2px 20px;
  }
}

.why__contents-body {
  margin-top: -30px;
  border-radius: 20px;
  background: rgba(223, 234, 237, 0.86);
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.12);
  padding-block: 58px 40px;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .why__contents-body {
    margin-top: -14px;
    padding-block: 25px;
    padding-inline: 10px;
  }
}

.why__contents-text {
  color: #27272E;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .why__contents-text {
    font-size: 14px;
  }
}

.about {
  margin-top: 107px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 72px;
  }
}

.about__title {
  color: #03A9F5;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 23px;
  }
}
.about__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #03A9F5;
}
@media screen and (max-width: 767px) {
  .about__title::after {
    width: 67px;
  }
}

.about__contents {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .about__contents {
    margin-top: 22px;
  }
}

.about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .about__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.about__item {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.12);
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__item-image {
  margin-inline: auto;
  height: auto;
}
.about__item-image.--24h {
  width: 117px;
  aspect-ratio: 117/119;
}
@media screen and (max-width: 767px) {
  .about__item-image.--24h {
    width: 75px;
  }
}
.about__item-image.--repeat {
  width: 201px;
  aspect-ratio: 201/119;
}
@media screen and (max-width: 767px) {
  .about__item-image.--repeat {
    width: 127px;
  }
}
.about__item-image.--secretary {
  width: 103px;
  aspect-ratio: 103/120;
}
@media screen and (max-width: 767px) {
  .about__item-image.--secretary {
    width: 69px;
  }
}

.about__item-description {
  color: #03A9F5;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .about__item-description {
    font-size: 18px;
  }
}

.about__message {
  margin-top: 33px;
  color: #27272E;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .about__message {
    font-size: 14px;
  }
}

.usecase {
  padding-top: 142px;
  position: relative;
  background: url(../img/usecase_bg.png) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .usecase {
    padding-top: 76px;
    background: url(../img/usecase_bg_sp.png) no-repeat top center/cover;
  }
}

.usecase__box {
  position: relative;
}
.usecase__box::before {
  content: "";
  position: absolute;
  top: -262px;
  right: min(9.375vw, 135px);
  width: 79px;
  height: auto;
  aspect-ratio: 79/179;
  background: url(../img/usecase__image.png) no-repeat center center/contain;
  transform-origin: center bottom;
  animation: kakuRotate 2s infinite;
}
@media screen and (max-width: 767px) {
  .usecase__box::before {
    width: 68px;
    top: -180px;
  }
}

.usecase__inner {
  position: relative;
  z-index: 5;
}

.usecase__title {
  color: #27272E;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .usecase__title {
    font-size: 23px;
  }
}

.usecase__description {
  margin-top: 35px;
  color: #27272E;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .usecase__description {
    margin-top: 31px;
    font-size: 14px;
  }
}

.usecase__cards {
  margin-top: 47px;
}
@media screen and (max-width: 767px) {
  .usecase__cards {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}

.usecaseSwiper__swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 34px !important;
}
@media screen and (max-width: 767px) {
  .usecaseSwiper__swiper-wrapper {
    display: flex !important;
    gap: 0 !important;
  }
}

/* =============================
swiperのカスタマイズ
============================= */
.usecaseSwiper__swiper-container,
.usecaseSwiper__swiper,
.usecaseSwiper__swiper-wrapper,
.usecaseSwiper__swiper-slide {
  position: relative;
}

/* 位置のreset */
.usecaseSwiper__swiper-button-prev,
.usecaseSwiper__swiper-button-next,
.usecaseSwiper__swiper-pagination .swiper-pagination-bullets .swiper-pagination-horizontal {
  top: unset !important;
  bottom: unset !important;
  left: unset !important;
  right: unset !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* =============================
ページネーション (bullets)
============================= */
.usecaseSwiper__swiper-pagination {
  position: static !important;
}

/* 位置の設定 (枠組み) */
.p-topWorks__swiper-pagination {
  position: static !important;
  width: auto !important;
  margin-inline: auto !important;
  flex: 1;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  width: 100% !important;
}

/* それぞれのページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  width: 6px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #C6C6C6 !important;
  margin-inline: 12.5px;
}

/* activeな部分 */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #00A4DA !important;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-inline: min(1.1538461538vw, 4.5px) !important;
}

.usecaseSwiper__swiper-bottom {
  margin-top: 15px;
  height: fit-content !important;
  margin-inline: auto !important;
  position: relative;
}

.usecase__message {
  margin-top: 42px;
  color: #03A9F5;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .usecase__message {
    margin-top: 17px;
    font-size: 16px;
    letter-spacing: 0;
  }
}

.usecase__button {
  margin-top: 74px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .usecase__button {
    margin-top: 33px;
  }
}

.usecase__bg-text {
  position: absolute;
  top: max(-2.4305555556vw, -35px);
  right: 22px;
  width: fit-content;
  height: auto;
  aspect-ratio: 151/732;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .usecase__bg-text {
    top: max(5.1282051282vw, 20px);
    right: 0;
  }
}

.anxiety {
  margin-top: 98px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .anxiety {
    margin-top: 74px;
  }
}

.anxiety__box {
  border-radius: 15px;
  background: rgba(223, 226, 237, 0.86);
  padding: 33px 50px;
}
@media screen and (max-width: 767px) {
  .anxiety__box {
    padding: 25px 16px;
  }
}

.anxiety__contents {
  display: grid;
  grid-template-columns: auto 132px;
  gap: 19px;
}
@media screen and (max-width: 767px) {
  .anxiety__contents {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.anxiety__title {
  color: #7856A1;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .anxiety__title {
    font-size: 18px;
  }
}

.anxiety__list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .anxiety__list {
    margin-top: 20px;
    width: fit-content;
    margin-inline: auto;
  }
}

.anxiety__list-item {
  color: #27272E;
  font-size: 28px;
  font-weight: 500;
  position: relative;
  padding-left: 36px;
}
@media screen and (max-width: 767px) {
  .anxiety__list-item {
    font-size: 16px;
    padding-left: 18px;
  }
}
.anxiety__list-item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 19px;
  height: auto;
  aspect-ratio: 19/21;
  background: url(../img/anxiety__list_arrow.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .anxiety__list-item::before {
    top: 9px;
    width: 11px;
  }
}

.anxiety__image {
  width: 132px;
  height: auto;
  aspect-ratio: 132/176;
}
@media screen and (max-width: 767px) {
  .anxiety__image {
    max-width: 100px;
    margin-inline: auto;
  }
}

.anxiety__lead {
  margin-top: 51px;
  color: #27272E;
  text-align: center;
  font-size: 41px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .anxiety__lead {
    margin-top: 29px;
    font-size: 23px;
  }
}
.anxiety__lead span {
  color: #27272E;
  transition: color 0.3s ease 0.3s;
}
.anxiety__lead.js-show span {
  color: #00A4DA;
}

.anxiety__arrow {
  margin-top: 56px;
  width: 87px;
  margin-inline: auto;
  height: auto;
  aspect-ratio: 87/39;
}
@media screen and (max-width: 767px) {
  .anxiety__arrow {
    margin-top: 29px;
    max-width: 52px;
  }
}
.anxiety__arrow svg {
  width: 100%;
}

.strength {
  margin-top: 55px;
}

.strength__title {
  padding: 10px 17px;
  background: linear-gradient(90deg, #03A9F5 0%, rgba(3, 169, 245, 0) 100%);
  color: #FFF;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .strength__title {
    font-size: 23px;
    padding: 8px 17px;
  }
}

.strength__contents {
  position: relative;
}
@media screen and (max-width: 767px) {
  .strength__contents {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image" "message";
  }
}

.strength__text {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .strength__text {
    margin-top: 23px;
    font-size: 14px;
    line-height: 1.8;
    grid-area: text;
  }
}

.strength__message {
  margin-top: 26px;
  color: #03A9F5;
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .strength__message {
    font-size: 25px;
    text-align: center;
    grid-area: message;
  }
}

.strength__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 343px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 343/232;
}
@media screen and (max-width: 767px) {
  .strength__image {
    position: static;
    width: 247px;
    max-width: 100%;
    margin-inline: auto;
    grid-area: image;
    margin-top: 23px;
  }
}

.speaker {
  margin-top: 166px;
}
@media screen and (max-width: 767px) {
  .speaker {
    margin-top: 64px;
  }
}

.speaker__title {
  color: #27272E;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .speaker__title {
    font-size: 23px;
  }
}

.speaker__items {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .speaker__items {
    margin-top: 21px;
    grid-template-columns: 1fr;
    gap: 21px;
  }
}

.speaker__item-image img {
  width: 332px;
  max-width: 100%;
  margin-inline: auto;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .speaker__item-image img {
    width: 210px;
  }
}

.speaker__item-body {
  margin-top: 19px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .speaker__item-body {
    margin-top: 10px;
    gap: 0;
  }
}

.speaker__item-job {
  font-size: 17px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .speaker__item-job {
    font-size: 12px;
  }
}

.speaker__item-name {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .speaker__item-name {
    margin-top: 13px;
    font-size: 20px;
  }
}

.speaker__item-description {
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .speaker__item-description {
    margin-top: 19px;
    font-size: 12px;
  }
}

.outline {
  margin-top: 93px;
  padding-bottom: 67px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .outline {
    margin-top: 62px;
    padding-bottom: 112px;
  }
}
.outline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/2823;
  background: url(../img/outline__bg.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .outline::after {
    aspect-ratio: 390/2344;
    background: url(../img/outline__bg_sp.png) no-repeat center center/contain;
  }
}

.outline__box {
  padding: 45px 27px;
  padding-inline: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .outline__box {
    padding: 35px 20px 25px;
  }
}
.outline__box::after {
  content: "";
  position: absolute;
  top: -21px;
  right: 18px;
  width: min(9.8611111111vw, 142px);
  height: auto;
  aspect-ratio: 1;
  background: url(../img/outline__free_image.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .outline__box::after {
    top: -43px;
    right: 12px;
    width: min(24.1025641026vw, 94px);
  }
}

.outline__box-inner {
  max-width: 887px;
  margin-inline: auto;
}

.outline__title {
  color: #03A9F5;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .outline__title {
    font-size: 26px;
    line-height: 1.4;
  }
}

.outline__subTitle {
  margin-top: 8px;
  color: #03A9F5;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .outline__subTitle {
    margin-top: 8px;
    font-size: 12px;
  }
}

.outline__schedule {
  margin-top: 18px;
  font-size: 36px;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  width: 548px;
  max-width: 100%;
  margin-inline: auto;
  line-height: 1.4;
  padding: 7px 20px;
  position: relative;
  background: linear-gradient(91deg, #00C2E4 0%, #1A6AFF 41%, #4900F4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .outline__schedule {
    font-size: 23px;
  }
}
.outline__schedule::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(91deg, #00C2E4 0%, #1A6AFF 41%, #4900F4 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.outline__datetime {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
  gap: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .outline__datetime {
    margin-top: 40px;
    flex-direction: column;
    gap: 40px;
  }
}

.outline__datetime-item {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.outline__datetime-day {
  color: #000;
  width: min(26.0416666667vw, 375px);
  max-width: 100%;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .outline__datetime-day {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.outline__datetime-day .big {
  display: inline-block;
  font-size: min(4.1666666667vw, 60px);
}
@media screen and (max-width: 767px) {
  .outline__datetime-day .big {
    font-size: min(12.8205128205vw, 50px);
  }
}
.outline__datetime-day .small {
  display: inline-block;
  font-size: min(3.125vw, 45px);
}
@media screen and (max-width: 767px) {
  .outline__datetime-day .small {
    font-size: min(8.4615384615vw, 33px);
  }
}

.outline__datetime-time {
  font-size: min(3.8194444444vw, 55px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .outline__datetime-time {
    font-size: min(9.7435897436vw, 38px);
  }
}

.outline__info {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "hour format" "target target";
  gap: 10px 22px;
}
@media screen and (max-width: 767px) {
  .outline__info {
    grid-template-columns: 1fr;
    grid-template-areas: "hour" "format" "target";
    gap: 9px;
  }
}

.outline__info-item {
  display: flex;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .outline__info-item {
    gap: 27px;
  }
}
.outline__info-item .head {
  margin-top: 7px;
  color: #27272E;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .outline__info-item .head {
    font-size: 16px;
    flex-shrink: 0;
  }
}
.outline__info-item .text {
  font-size: 31px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .outline__info-item .text {
    font-size: 20px;
  }
}

.outline__info-item.--hour {
  grid-area: hour;
}

.outline__info-item.--format {
  grid-area: format;
}

.outline__info-item.--target {
  grid-area: target;
}

.outline__index {
  margin-top: 46px;
  border-radius: 8px;
  background: #9DD9EB;
  padding: 19px;
  padding-left: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .outline__index {
    margin-top: 19px;
    padding: 15px 9px 16px;
  }
}
.outline__index::after {
  content: "";
  position: absolute;
  bottom: -9px;
  right: max(-5.2777777778vw, -76px);
  width: min(17.8472222222vw, 257px);
  height: auto;
  aspect-ratio: 257/247;
  background: url(../img/outline__index_image.png) no-repeat center center/contain;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .outline__index::after {
    bottom: -6px;
    right: max(-3.3333333333vw, -13px);
    width: min(29.4871794872vw, 115px);
  }
}

.outline__index-item {
  color: #FFF;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  z-index: 5;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .outline__index-item {
    font-size: 12px;
    padding-left: 16px;
  }
}
.outline__index-item::after {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.outline__message {
  margin-top: 20px;
  color: #03A9F5;
  text-align: center;
  font-size: 33px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .outline__message {
    margin-top: 17px;
    font-size: 18px;
  }
}

.outline__button {
  margin-top: 52px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .outline__button {
    margin-top: 36px;
  }
}

.message {
  padding-block: 60px 103px;
  background: var(--Linear, linear-gradient(91deg, #00C2E4 0.48%, #1A6AFF 41.43%, #4900F4 99.52%));
}
@media screen and (max-width: 767px) {
  .message {
    padding-block: 50px 114px;
  }
}

.message__title {
  padding: 15px 23px;
  background: #fff;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .message__title {
    padding: 12px 14px;
  }
}
.message__title p {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  background: var(--Linear, linear-gradient(91deg, #00C2E4 0.48%, #1A6AFF 41.43%, #4900F4 99.52%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .message__title p {
    font-size: 24px;
  }
}

.message__text {
  margin-top: 21px;
  color: #FFF;
  text-align: center;
  font-size: 33px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .message__text {
    font-size: 20px;
    letter-spacing: 0;
  }
}
.message__text .big {
  font-size: 42px;
}
@media screen and (max-width: 767px) {
  .message__text .big {
    font-size: 30px;
  }
}