/*--------------------------------------*
* foundation
*--------------------------------------*/
/*--------------------------------------*
 * base
 *--------------------------------------*/
/*--------------------------------------*
 * color
 *--------------------------------------*/
/*--------------------------------------*
 * breakpoint
 *--------------------------------------*/
/*--------------------------------------*
 * px to vw
 *--------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #232735;
  font-size: 1.6rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  width: 100%;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  color: #8B56FB;
  text-decoration: underline;
  transition: 0.25s;
}
a:hover {
  text-decoration: none;
}

a:hover img {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
/*--------------------------------------*
 * header
 *--------------------------------------*/
.l-header {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .l-header {
    position: fixed;
  }
}
.l-header__content {
  height: 21.3333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .l-header__content {
    height: 120px;
    justify-content: space-between;
  }
}
.l-header__logo img {
  width: 34.6666666667vw;
}
@media (min-width: 768px) {
  .l-header__logo img {
    width: 150px;
  }
}

.l-header.scrolled {
  background-color: rgba(255, 255, 255, 0.4);
  transition: 0.5s;
  backdrop-filter: blur(10px);
}

/*--------------------------------------*
 * footer
 *--------------------------------------*/
.l-footer {
  padding-top: 10.6666666667vw;
  padding-bottom: 10.6666666667vw;
  text-align: center;
  background-color: #232735;
}
@media (min-width: 768px) {
  .l-footer {
    padding: 40px 0;
  }
}
.l-footer__copyright {
  width: 260px;
  margin: 0 auto;
}

/*--------------------------------------*
* object > component
*--------------------------------------*/
/*--------------------------------------*
 * inner
 *--------------------------------------*/
.c-inner__body {
  overflow-x: hidden;
}

.c-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
}
@media (min-width: 768px) {
  .c-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.c-inner__md {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
}
@media (min-width: 768px) {
  .c-inner__md {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.c-inner__sm {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 8vw;
  padding-right: 8vw;
}
@media (min-width: 768px) {
  .c-inner__sm {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/*--------------------------------------*
 * br
 *--------------------------------------*/
.brmd {
  display: none;
}
@media (min-width: 768px) {
  .brmd {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .brsm {
    display: none;
  }
}

/*--------------------------------------*
 * svg
 *--------------------------------------*/
/*--------------------------------------*
 * badges
 *--------------------------------------*/
.c-badge {
  text-align: center;
}
.c-badge__catch {
  font-size: 3.4666666667vw;
  font-weight: bold;
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 768px) {
  .c-badge__catch {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.c-badge__catch span {
  color: #FF7396;
}
.c-badge__list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .c-badge__list {
    gap: 10px;
  }
}
.c-badge__list img {
  height: 12vw;
}
@media (min-width: 768px) {
  .c-badge__list img {
    height: 45px;
  }
}
.c-badge__list a.cs {
  position: relative;
  display: block;
}
.c-badge__list a.cs::before {
  content: "Coming Soon!";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #8B56FB;
  font-size: 3.4666666667vw;
  font-weight: bold;
}
@media (min-width: 768px) {
  .c-badge__list a.cs::before {
    font-size: 1.3rem;
  }
}
.c-badge__list a.cs::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.l-header .c-badge {
  display: none;
}
@media (min-width: 768px) {
  .l-header .c-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
  }
}
.l-header .c-badge__catch {
  margin-bottom: 0;
}

.p-hero .c-badge {
  margin-top: -10.6666666667vw;
}
@media (min-width: 768px) {
  .p-hero .c-badge {
    display: none;
  }
}

/*--------------------------------------*
* object > project
*--------------------------------------*/
/*--------------------------------------*
 * hero
 *--------------------------------------*/
.p-hero {
  padding-top: 21.3333333333vw;
  background: url(../img/hero/hero_logomark.png) no-repeat center -49vw;
  background-size: 129vw auto;
}
@media (min-width: 768px) {
  .p-hero {
    padding-top: 120px;
    background: url(../img/hero/hero_logomark.png) no-repeat center -400px;
    background-size: 1000px auto;
  }
}
.p-hero__catch {
  width: 82.6666666667vw;
  margin: 0 auto;
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 1180px) {
  .p-hero__catch {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
  }
}
.p-hero__catch-text {
  font-size: 3.7333333333vw;
  text-align: center;
  font-weight: bold;
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-hero__catch-text {
    font-size: 1.8rem;
    margin-bottom: 60px;
  }
}
.p-hero__img {
  position: relative;
}
.p-hero__main-img {
  width: 74.6666666667vw;
  margin: 0 auto;
}
@media (min-width: 1180px) {
  .p-hero__main-img {
    width: 700px;
  }
}
.p-hero__sub-img1, .p-hero__sub-img2 {
  width: 26.6666666667vw;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 1.6vw;
  box-shadow: 0 2.6vw 1.2vw rgba(0, 0, 0, 0.1);
}
@media (min-width: 1180px) {
  .p-hero__sub-img1, .p-hero__sub-img2 {
    width: 260px;
    border-radius: 15px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
}
.p-hero__sub-img1 {
  top: 24vw;
}
@media (min-width: 1180px) {
  .p-hero__sub-img1 {
    top: 220px;
  }
}
.p-hero__sub-img2 {
  top: 7.4666666667vw;
}
@media (min-width: 1180px) {
  .p-hero__sub-img2 {
    top: 70px;
  }
}

.fadeRight {
  opacity: 0;
  transform: translateX(-24vw);
}
@media (min-width: 1180px) {
  .fadeRight {
    transform: translateX(-240px);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-24vw);
  }
  100% {
    opacity: 1;
    transform: translateX(-23vw);
  }
}
@media (min-width: 1180px) {
  @keyframes fadeRight {
    0% {
      opacity: 0;
      transform: translateX(-240px);
    }
    100% {
      opacity: 1;
      transform: translateX(-220px);
    }
  }
}
.fadeLeft {
  opacity: 0;
  transform: translateX(26vw);
}
@media (min-width: 1180px) {
  .fadeLeft {
    transform: translateX(260px);
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(26vw);
  }
  100% {
    opacity: 1;
    transform: translateX(25vw);
  }
}
@media (min-width: 1180px) {
  @keyframes fadeLeft {
    0% {
      opacity: 0;
      transform: translateX(260px);
    }
    100% {
      opacity: 1;
      transform: translateX(240px);
    }
  }
}
.delay02s {
  animation-delay: 0.2s;
}

.delay04s {
  animation-delay: 0.4s;
}

.fadeRight.is-animated {
  animation-name: fadeRight;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

.fadeLeft.is-animated {
  animation-name: fadeLeft;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

/*--------------------------------------*
 * point
 *--------------------------------------*/
.p-point {
  padding-top: 16vw;
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 768px) {
  .p-point {
    margin-top: -24vw;
    margin-bottom: 20px;
  }
}
@media (min-width: 1180px) {
  .p-point {
    padding-top: 0;
    margin-top: -80px;
  }
}
@media (min-width: 1180px) {
  .p-point .c-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.p-point__item {
  border-radius: 5.3333333333vw;
  padding: 6.6666666667vw;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-point__item {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 345px;
  }
}
.p-point__item:not(:last-child) {
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 768px) {
  .p-point__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 1180px) {
  .p-point__item:not(:last-child) {
    margin-bottom: 0;
  }
}
.p-point__item.login {
  background-color: #8B56FB;
  padding-bottom: 69.3333333333vw;
}
@media (min-width: 768px) {
  .p-point__item.login {
    padding-bottom: 40px;
    justify-content: space-between;
  }
}
@media (min-width: 1180px) {
  .p-point__item.login {
    width: calc(60% - 10px);
  }
}
@media (min-width: 768px) {
  .p-point__item.login .p-point__content {
    width: calc(100% - 300px);
  }
}
.p-point__item.video {
  background: url(../img/point/point_bg1.jpg) no-repeat right -12vw bottom -17vw;
  background-size: 155vw auto;
  padding-bottom: 21.3333333333vw;
}
.p-point__item.video .c-svg {
  fill: none;
  stroke: #8B56FB;
  stroke-width: 1.3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  width: 29vw;
  height: 29vw;
  position: absolute;
  right: 4vw;
  bottom: 4vw;
}
@media (min-width: 768px) {
  .p-point__item.video .c-svg {
    fill: none;
    stroke: #8B56FB;
    stroke-width: 1.3px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    width: 180px;
    height: 180px;
    top: 20px;
    right: 20px;
  }
}
@media (min-width: 768px) {
  .p-point__item.video {
    background: url(../img/point/point_bg1.jpg) no-repeat right 0 bottom -30px;
    background-size: 100% auto;
    padding-bottom: 40px;
    justify-content: flex-end;
  }
}
@media (min-width: 1180px) {
  .p-point__item.video {
    width: calc(40% - 10px);
    background: url(../img/point/point_bg1.jpg) no-repeat right 0 bottom 0;
    background-size: 630px auto;
  }
}
@media (min-width: 768px) {
  .p-point__item.video .p-point__content {
    width: calc(100% - 40px);
  }
}
.p-point__item.hashtag {
  background: url(../img/point/point_bg2.jpg) no-repeat right -3vw top -8vw;
  background-size: 160vw auto;
  padding-bottom: 21.3333333333vw;
}
.p-point__item.hashtag .c-svg {
  fill: none;
  stroke: #FF5A71;
  stroke-width: 1.3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  width: 29vw;
  height: 29vw;
  position: absolute;
  right: 4vw;
  bottom: 4vw;
}
@media (min-width: 768px) {
  .p-point__item.hashtag .c-svg {
    fill: none;
    stroke: #FF5A71;
    stroke-width: 1.3px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    width: 180px;
    height: 180px;
    top: 20px;
    right: 20px;
  }
}
@media (min-width: 768px) {
  .p-point__item.hashtag {
    background: url(../img/point/point_bg2.jpg) no-repeat right 0 top -30px;
    background-size: 100% auto;
    padding-bottom: 40px;
    justify-content: flex-end;
  }
}
@media (min-width: 1180px) {
  .p-point__item.hashtag {
    width: calc(40% - 10px);
    background: url(../img/point/point_bg2.jpg) no-repeat right 0 top -30px;
    background-size: 800px auto;
  }
}
@media (min-width: 768px) {
  .p-point__item.hashtag .p-point__content {
    width: calc(100% - 40px);
  }
}
.p-point__item.dm {
  background-color: #FF7396;
  padding-bottom: 74.6666666667vw;
}
@media (min-width: 768px) {
  .p-point__item.dm {
    padding-bottom: 40px;
    justify-content: space-between;
  }
}
@media (min-width: 1180px) {
  .p-point__item.dm {
    width: calc(60% - 10px);
  }
}
.p-point__item.dm .c-svg {
  display: none;
}
@media (min-width: 768px) {
  .p-point__item.dm .c-svg {
    display: block;
    fill: none;
    stroke: #fff;
    stroke-width: 1.3px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 768px) {
  .p-point__item.dm .p-point__content {
    width: calc(100% - 300px);
  }
}
.p-point__service-logo {
  display: inline-flex;
  align-items: center;
  gap: 2.6666666667vw;
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-point__service-logo {
    gap: 15px;
    margin-bottom: 0;
  }
}
.p-point__service-logo .service-logo_lists {
  display: inline-flex;
  border-radius: 1.6vw;
  padding-top: 2.1333333333vw;
  padding-bottom: 2.1333333333vw;
  background-color: rgba(255, 255, 255, 0.8);
  border: solid 1px #fff;
}
@media (min-width: 768px) {
  .p-point__service-logo .service-logo_lists {
    border-radius: 8px;
    padding: 10px 0;
  }
}
.p-point__service-logo .service-logo_lists li {
  padding-left: 2.1333333333vw;
  padding-right: 2.1333333333vw;
}
@media (min-width: 768px) {
  .p-point__service-logo .service-logo_lists li {
    padding: 0 10px;
  }
}
.p-point__service-logo .service-logo_lists img {
  height: 4vw;
}
@media (min-width: 768px) {
  .p-point__service-logo .service-logo_lists img {
    height: 15px;
  }
}
.p-point__service-logo .service-logo_lists li:not(:last-child) {
  border-right: solid 1px #fff;
}
.p-point__service-logo .service-logo__title {
  font-size: 3.2vw;
  font-weight: bold;
}
@media (min-width: 768px) {
  .p-point__service-logo .service-logo__title {
    font-size: 1.5rem;
  }
}
.p-point__content .content__title {
  font-size: 4.8vw;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 4vw;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-point__content .content__title {
    font-size: 2.6rem;
    margin-bottom: 15px;
  }
}
.p-point__content .content__text {
  font-size: 3.7333333333vw;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-point__content .content__text {
    font-size: 1.6rem;
  }
}
.p-point__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58.6666666667vw;
}
@media (min-width: 768px) {
  .p-point__img {
    width: 260px;
    right: 40px;
    top: 0;
  }
}
.p-point__img img {
  width: 100%;
}
.p-point__img img.pc {
  display: none;
}
@media (min-width: 768px) {
  .p-point__img img.pc {
    display: block;
  }
}
.p-point__img img.sp {
  border-radius: 5.33vw 0 5.33vw 0;
}
@media (min-width: 768px) {
  .p-point__img img.sp {
    display: none;
  }
}

/*--------------------------------------*
 * download
 *--------------------------------------*/
.p-download {
  text-align: center;
}
.p-download__scroll {
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-bottom: 10.6666666667vw;
}
@media (min-width: 768px) {
  .p-download__scroll {
    margin-bottom: 80px;
  }
}
.p-download__scroll img {
  flex-shrink: 0;
  width: 80vw;
}
@media (min-width: 768px) {
  .p-download__scroll img {
    width: 700px;
  }
}
.p-download__scroll img:nth-child(odd) {
  animation: MoveLeft 24s -12s infinite linear;
}
.p-download__scroll img:nth-child(even) {
  animation: MoveLeft2 24s infinite linear;
}
.p-download__catch {
  font-size: 4.8vw;
  font-weight: bold;
  line-height: 1.4;
  display: inline-block;
  background: linear-gradient(90deg, #8B56FB, #FF7396);
  background: -webkit-linear-gradient(0deg, #8B56FB, #FF7396);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-download__catch {
    font-size: 3.5rem;
    margin-bottom: 40px;
  }
}
.p-download .c-badge {
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 768px) {
  .p-download .c-badge {
    margin-bottom: 10px;
  }
}
.p-download__link {
  font-size: 3.4666666667vw;
  margin-bottom: 13.3333333333vw;
}
@media (min-width: 768px) {
  .p-download__link {
    font-size: 1.4rem;
    margin-bottom: 100px;
  }
}
.p-download__link a {
  font-weight: bold;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*--------------------------------------*
* object > utility
*--------------------------------------*/