/*===========================================================================*/
/*  function  */
/*===========================================================================*/
/*===========================================================================*/
/*  common  */
/*===========================================================================*/
.g-footer {
  -webkit-font-smoothing: antialiased;
}

/*===========================================================================*/
/*  mixin  */
/*===========================================================================*/
html {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  min-width: 375px;
  color: #464343;
  -webkit-font-smoothing: inherit;
}

main {
  position: relative;
  overflow: hidden;
}

span {
  display: inline-block;
}

picture {
  display: block;
}

figure img,
picture img {
  width: 100%;
}

img {
  height: auto;
  object-fit: contain;
  max-width: 100%;
}

a {
  display: inline-block;
}
a:hover {
  text-decoration: none;
}

@media (min-width: 901px) {
  .hover-normal {
    transition: opacity 0.5s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  }
  .hover-normal:hover {
    opacity: 0.7;
  }
  .hover-underline {
    transition: all 0.5s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  }
  .hover-underline:hover {
    text-decoration: underline;
    opacity: 0.7;
  }
}
.pc-only {
  display: block;
}

.br-pc-only {
  display: inline-block;
}

.sp-only {
  display: none;
}

.br-sp-only {
  display: none;
}

@media (max-width: 900px) {
  .pc-only {
    display: none;
  }
  .br-pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .br-sp-only {
    display: inline-block;
  }
}
.text-center {
  text-align: center;
}

/*===========================================================================*/
/*  utility  */
/*===========================================================================*/
.u-en {
  font-family: "Inter", sans-serif;
}

/*===========================================================================*/
/*  component, color  */
/*===========================================================================*/
/* layout */
.l-wrapper {
  padding-left: 45px;
  padding-right: 45px;
}

.l-inner {
  margin: 0 auto;
  max-width: 1100px;
}

@media (max-width: 900px) {
  .l-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .l-inner {
    max-width: 500px;
  }
}
/* component */
.c-head__image {
  width: 72px;
  margin: 0 auto 27px;
}
@media (max-width: 900px) {
  .c-head__image {
    width: 40px;
    margin-bottom: 15px;
  }
}
.c-head__title {
  color: #2864f0;
  text-align: center;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: 1.61px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .c-head__title {
    font-size: 24px;
    letter-spacing: 0.84px;
    margin-bottom: 5px;
  }
}
.c-head__description {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: 0.84px;
  padding-left: 34px;
  padding-right: 34px;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .c-head__description {
    font-size: 16px;
    letter-spacing: 0.56px;
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 25px;
  }
}
.c-head__description::before {
  content: "";
  width: 24px;
  height: 2px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background: url(../images/head_decoration.svg) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .c-head__description::before {
    width: 18px;
  }
}
.c-head__description::after {
  content: "";
  width: 24px;
  height: 2px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background: url(../images/head_decoration.svg) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .c-head__description::after {
    width: 18px;
  }
}

.c-more__link {
  margin-top: 50px;
  text-align: center;
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.16));
}
@media (max-width: 900px) {
  .c-more__link {
    margin-top: 30px;
    filter: drop-shadow(2.6px 2.6px 8.667px rgba(0, 0, 0, 0.16));
  }
}
.c-more__link a {
  padding: 21px 107px 20px 87px;
  background-color: #2864f0;
  border-radius: 40px;
  background-image: url(../images/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 16px 15px;
}
@media (max-width: 900px) {
  .c-more__link a {
    padding: 19px 93px 18px 78px;
    border-radius: 36px;
    background-size: 14px 13px;
    background-position: right 20px center;
  }
}
.c-more__link a span {
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.85px;
}
@media (max-width: 900px) {
  .c-more__link a span {
    font-size: 15px;
    letter-spacing: 0.75px;
  }
}
@media (max-width: 900px) {
  .c-more__link.flaps__button a {
    padding: 15px 53px 14px 38px;
  }
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.header {
  padding: 20px 0;
}
@media (max-width: 900px) {
  .header {
    position: relative;
    padding: 16px 25px;
  }
}
.header__inner {
  text-align: center;
}
@media (max-width: 900px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}
.header__logo {
  margin: 0 auto;
  width: 138px;
}
@media (max-width: 900px) {
  .header__logo {
    margin: inherit;
    width: 91px;
  }
}
@media (min-width: 901px) {
  .header__nav {
    margin-top: 17px;
  }
}
@media (max-width: 900px) {
  .header__nav {
    display: none;
    position: absolute;
    left: 0;
    bottom: -436px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
}
@media (max-width: 900px) {
  .header__nav.active {
    display: block;
  }
}
.header__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .header__list {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 25px 40px;
  }
}
@media (max-width: 900px) {
  .header__item {
    width: 100%;
    padding: 20px 0;
    border-bottom: 2px solid #eee;
  }
}
@media (min-width: 901px) {
  .header__item:not(:last-child) {
    margin-right: 35px;
    border-right: 2px solid #eee;
    padding-right: 35px;
  }
}
.header__item a {
  color: #464343;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .header__item a {
    display: block;
    font-size: 18px;
  }
}
.header__item a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 24px;
  height: 14px;
  background: none;
  border: none;
  padding: 0;
}
@media (max-width: 900px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2864f0;
}
.header__hamburger span:not(:last-child) {
  margin-bottom: 4px;
}
.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/*===========================================================================*/
/*  sns  */
/*===========================================================================*/
.sns {
  background-color: #ebf3ff;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 900px) {
  .sns {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.sns__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 57px;
  background-color: #fff;
  padding: 68px 0 65px;
  border-radius: 30px;
}
@media (max-width: 900px) {
  .sns__inner {
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    border-radius: 16px;
  }
}
.sns__text {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .sns__text {
    font-size: 20px;
  }
}
.sns__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 900px) {
  .sns__list {
    gap: 39px;
  }
}
.sns__item {
  width: 50px;
}
@media (max-width: 900px) {
  .sns__item {
    width: 32px;
  }
}

/*===========================================================================*/
/*  challenge-path  */
/*===========================================================================*/
.challenge-path {
  padding-top: 90px;
  padding-bottom: 100px;
}
@media (max-width: 900px) {
  .challenge-path {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.challenge-path__items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .challenge-path__items {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.challenge-path__item {
  width: calc((100% - 80px) / 3);
}
@media (max-width: 900px) {
  .challenge-path__item {
    width: 100%;
  }
}
.challenge-path__image {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 16px;
}
.challenge-path__image img {
  border-radius: 16px;
}
@media (max-width: 900px) {
  .challenge-path__image {
    margin-bottom: 10px;
  }
}
.challenge-path__title {
  color: #989898;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.195px;
  margin-bottom: 8px;
  font-feature-settings: "palt" on;
}
@media (max-width: 900px) {
  .challenge-path__title {
    font-size: 12px;
    letter-spacing: 0.18px;
  }
}
.challenge-path__title span {
  margin-left: 3.4482758621%;
  padding-left: 3.4482758621%;
  border-left: 1px solid #c4c4c4;
  line-height: 1;
}
.challenge-path__description {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #464343;
}
@media (max-width: 900px) {
  .challenge-path__description {
    font-size: 18px;
    letter-spacing: 0.27px;
  }
}
.challenge-path__description span {
  color: #2864f0;
  display: inline;
}
.challenge-path__tags {
  display: flex;
  gap: 15px;
}
@media (max-width: 900px) {
  .challenge-path__tags {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.challenge-path__tags .tag {
  background-color: #ebf3ff;
  color: #2864f0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 5px 20px;
  border-radius: 18px;
}
@media (max-width: 900px) {
  .challenge-path__tags .tag {
    font-size: 14px;
    padding: 2px 12px;
  }
}
.challenge-path__tags .tag a:hover {
  color: #2864f0;
}

/*===========================================================================*/
/*  hero-faces  */
/*===========================================================================*/
.hero-faces {
  background-color: #ebf3ff;
}
.hero-faces__inner {
  padding-top: 90px;
  padding-bottom: 100px;
}
@media (max-width: 900px) {
  .hero-faces__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.hero-faces__slide--item {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 20px 30px;
  height: auto;
}
.hero-faces__slide--image {
  position: relative;
  margin-bottom: 15px;
}
.hero-faces__slide--image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 48px;
  height: 48px;
  background-image: url(../images/play.svg);
  background-repeat: no-repeat;
  background-size: 48px 48px;
}
@media (max-width: 900px) {
  .hero-faces__slide--image::before {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
}
.hero-faces__slide--image img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
}
.hero-faces__slide--title {
  padding: 0 10px;
  color: #989898;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.195px;
  margin-bottom: 8px;
  font-feature-settings: "palt" on;
}
@media (max-width: 900px) {
  .hero-faces__slide--title {
    padding: 0 5px;
    font-size: 12px;
    letter-spacing: 0.18px;
  }
}
.hero-faces__slide--title span {
  margin-left: 3.4482758621%;
  padding-left: 3.4482758621%;
  border-left: 1px solid #c4c4c4;
  line-height: 1;
}
.hero-faces__slide--description {
  padding: 0 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 900px) {
  .hero-faces__slide--description {
    padding: 0 5px;
    font-size: 18px;
    letter-spacing: 0.27px;
  }
}
.hero-faces__slide--description span {
  color: #2864f0;
  display: inline;
}
.hero-faces .hero-faces__button--prev,
.hero-faces .hero-faces__button--next {
  position: absolute !important;
  top: 42% !important;
  display: block !important;
  width: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  z-index: 100 !important;
  cursor: pointer;
}
@media (max-width: 900px) {
  .hero-faces .hero-faces__button--prev,
  .hero-faces .hero-faces__button--next {
    width: 32px !important;
    height: 32px !important;
  }
}
.hero-faces .hero-faces__button--prev {
  left: 8.9% !important;
}
@media (max-width: 900px) {
  .hero-faces .hero-faces__button--prev {
    left: 3% !important;
  }
}
.hero-faces .hero-faces__button--next {
  right: 8.9% !important;
}
@media (max-width: 900px) {
  .hero-faces .hero-faces__button--next {
    right: 3% !important;
  }
}
.hero-faces .hero-faces__button--prev::after,
.hero-faces .hero-faces__button--next::after {
  content: "" !important;
  display: block;
  width: 54px !important;
  height: 54px !important;
  margin: auto !important;
  background-repeat: no-repeat !important;
  background-size: 54px 54px;
}
@media (max-width: 900px) {
  .hero-faces .hero-faces__button--prev::after,
  .hero-faces .hero-faces__button--next::after {
    width: 32px !important;
    height: 32px !important;
    background-size: 32px 32px;
  }
}
.hero-faces .hero-faces__button--prev::after {
  background-image: url(../images/app_arrow_left.svg) !important;
}
.hero-faces .hero-faces__button--next::after {
  background-image: url(../images/app_arrow_right.svg) !important;
}
.hero-faces .swiper-mask-wrapper {
  position: relative;
}
@media (max-width: 900px) {
  .hero-faces .swiper-mask-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
.hero-faces .swiper-mask-wrapper::before,
.hero-faces .swiper-mask-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 11.9333333333%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-faces .swiper-mask-wrapper::before,
  .hero-faces .swiper-mask-wrapper::after {
    content: none;
  }
}
.hero-faces .swiper-mask-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ebf3ff 0%, rgba(235, 243, 255, 0.85) 80%, rgba(235, 243, 255, 0) 100%);
}
.hero-faces .swiper-mask-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ebf3ff 0%, rgba(235, 243, 255, 0.85) 80%, rgba(235, 243, 255, 0) 100%);
}
.hero-faces__banner {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 900px) {
  .hero-faces__banner {
    margin-top: 40px;
  }
}

/*===========================================================================*/
/*  startup-challenge  */
/*===========================================================================*/
.startup-challenge {
  padding-top: 90px;
}
@media (max-width: 900px) {
  .startup-challenge {
    padding-top: 60px;
  }
}
.startup-challenge__slide--item {
  padding: 0 22px;
  text-align: center;
}
.startup-challenge__slide--image {
  position: relative;
  margin: 0 auto 15px;
  width: calc(100% - 20px);
}
.startup-challenge__slide--image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 48px;
  height: 48px;
  background-image: url(../images/play.svg);
  background-repeat: no-repeat;
  background-size: 48px 48px;
  z-index: 10;
}
@media (max-width: 900px) {
  .startup-challenge__slide--image::before {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
}
.startup-challenge__slide--image img {
  position: relative;
  border: 2px solid #2864f0;
  border-radius: 8px;
}
.startup-challenge__slide--text {
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.24px;
}
.startup-challenge__slide--text:first-of-type {
  margin-bottom: 5px;
}
.startup-challenge .startup-challenge__button--prev,
.startup-challenge .startup-challenge__button--next {
  position: absolute !important;
  display: block !important;
  top: 42% !important;
  width: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  z-index: 100 !important;
  cursor: pointer;
}
@media (max-width: 900px) {
  .startup-challenge .startup-challenge__button--prev,
  .startup-challenge .startup-challenge__button--next {
    top: 35% !important;
    width: 32px !important;
    height: 32px !important;
  }
}
.startup-challenge .startup-challenge__button--prev {
  left: 8.9% !important;
}
@media (max-width: 900px) {
  .startup-challenge .startup-challenge__button--prev {
    left: 16% !important;
  }
}
.startup-challenge .startup-challenge__button--next {
  right: 8.9% !important;
}
@media (max-width: 900px) {
  .startup-challenge .startup-challenge__button--next {
    right: 16% !important;
  }
}
.startup-challenge .startup-challenge__button--prev::after,
.startup-challenge .startup-challenge__button--next::after {
  content: "" !important;
  display: block;
  width: 54px !important;
  height: 54px !important;
  margin: auto !important;
  background-repeat: no-repeat !important;
  background-size: 54px 54px;
}
@media (max-width: 900px) {
  .startup-challenge .startup-challenge__button--prev::after,
  .startup-challenge .startup-challenge__button--next::after {
    width: 32px !important;
    height: 32px !important;
    background-size: 32px 32px;
  }
}
.startup-challenge .startup-challenge__button--prev::after {
  background-image: url(../images/arrow_left_blue.svg) !important;
}
.startup-challenge .startup-challenge__button--next::after {
  background-image: url(../images/arrow_right_blue.svg) !important;
}
.startup-challenge .swiper-mask-wrapper {
  position: relative;
}
@media (max-width: 900px) {
  .startup-challenge .swiper-mask-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
.startup-challenge .swiper-mask-wrapper::before,
.startup-challenge .swiper-mask-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 11.9333333333%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 900px) {
  .startup-challenge .swiper-mask-wrapper::before,
  .startup-challenge .swiper-mask-wrapper::after {
    content: none;
  }
}
.startup-challenge .swiper-mask-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.85) 80%, rgba(255, 255, 255, 0) 100%);
}
.startup-challenge .swiper-mask-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.85) 80%, rgba(255, 255, 255, 0) 100%);
}

/*===========================================================================*/
/*  flaps  */
/*===========================================================================*/
.flaps {
  padding-bottom: 120px;
}
@media (max-width: 900px) {
  .flaps {
    padding-left: 37px;
    padding-right: 37px;
    padding-bottom: 60px;
  }
}
.flaps__inner {
  position: relative;
  padding: 137px 32px 50px;
  border: 8px solid #ebf3ff;
  border-radius: 50px;
}
@media (max-width: 900px) {
  .flaps__inner {
    padding: 107px 14px 14px;
    border: 6px solid #ebf3ff;
    border-radius: 20px;
  }
}
.flaps__title {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 52px);
  background-color: #2864f0;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.4;
  padding: 24px 0 21px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: center;
}
@media (max-width: 900px) {
  .flaps__title {
    top: 9px;
    width: calc(100% + 48px);
    font-size: 20px;
    padding: 10px 0;
  }
}
.flaps__title .small {
  background-color: #ebf3ff;
  color: #2864f0;
  padding: 6px 18px 9px;
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.91px;
  border-radius: 6px;
}
@media (max-width: 900px) {
  .flaps__title .small {
    padding: 4px 5px 3px;
    margin-bottom: 5px;
    font-size: 13px;
    border-radius: 3px;
  }
}
.flaps__title .midium {
  font-size: clamp(22px, 2.2vw, 30px);
}
@media (max-width: 900px) {
  .flaps__title .midium {
    font-size: 16px;
  }
}
.flaps__title::before, .flaps__title::after {
  content: "";
  position: absolute;
  bottom: -13px;
  background-image: url(../images/flaps_triangle_left.svg);
  background-repeat: no-repeat;
  display: block;
  width: 18px;
  height: 13px;
}
.flaps__title::before {
  background-image: url(../images/flaps_triangle_left.svg);
  left: 0;
}
.flaps__title::after {
  background-image: url(../images/flaps_triangle_right.svg);
  right: 0;
}
.flaps__images {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 39px;
}
@media (max-width: 900px) {
  .flaps__images {
    flex-direction: column;
    margin-bottom: 44px;
  }
}
.flaps__image {
  max-width: 181px;
}
@media (max-width: 900px) {
  .flaps__image {
    max-width: 214px;
    margin-bottom: 10px;
  }
}
.flaps__logo {
  max-width: 762px;
}
@media (max-width: 900px) {
  .flaps__logo {
    max-width: 100%;
  }
}
.flaps__container {
  display: flex;
  gap: 40px;
}
@media (max-width: 900px) {
  .flaps__container {
    flex-direction: column;
    gap: 33px;
  }
}
.flaps__contents {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 40px 30px;
  background-color: #ebf3ff;
  border-radius: 23px;
}
@media (max-width: 900px) {
  .flaps__contents {
    flex-direction: column;
    gap: 5px;
    padding: 27px 15px 20px;
    border-radius: 12px;
  }
}
.flaps__contents figure {
  flex-shrink: 0;
  width: 58px;
}
@media (max-width: 900px) {
  .flaps__contents figure {
    width: 36px;
  }
}
.flaps__contents p {
  color: #2864f0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.24px;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .flaps__contents p {
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
  }
}
.flaps__contents span {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.63px;
  border-radius: 25px;
  text-align: center;
  width: 172px;
}
@media (max-width: 900px) {
  .flaps__contents span {
    padding: 6px 0;
    font-size: 16px;
    letter-spacing: 0.56px;
    width: 139px;
  }
}
.flaps__contents.-first span {
  color: #2864f0;
  background-color: #fff;
  border: 1px solid #2864f0;
}
.flaps__contents.-second span {
  color: #fff;
  background-color: #2864f0;
  border: 1px solid #2864f0;
}

/*===========================================================================*/
/*  student-startup, report  */
/*===========================================================================*/
.student-startup {
  padding-bottom: 60px;
}
@media (max-width: 900px) {
  .student-startup {
    padding-bottom: 40px;
  }
}

.report {
  padding-bottom: 100px;
}
@media (max-width: 900px) {
  .report {
    padding-bottom: 60px;
  }
}

.student-startup,
.report {
  padding-top: 120px;
}
@media (max-width: 900px) {
  .student-startup,
  .report {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.student-startup__items,
.report__items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  margin-top: 35px;
}
@media (max-width: 900px) {
  .student-startup__items,
  .report__items {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 25px;
  }
}
.student-startup__item,
.report__item {
  width: calc((100% - 80px) / 3);
}
@media (max-width: 900px) {
  .student-startup__item,
  .report__item {
    width: 100%;
  }
}
.student-startup__image,
.report__image {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 8px;
}
.student-startup__image img,
.report__image img {
  border-radius: 8px;
}
@media (max-width: 900px) {
  .student-startup__image,
  .report__image {
    width: 100%;
    margin-bottom: 10px;
  }
}
.student-startup__title,
.report__title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.24px;
  color: #989898;
}
@media (max-width: 900px) {
  .student-startup__title,
  .report__title {
    font-size: 14px;
    letter-spacing: 0.21px;
    margin-bottom: 5px;
  }
}
.student-startup__description,
.report__description {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #464343;
}
@media (max-width: 900px) {
  .student-startup__description,
  .report__description {
    font-size: 18px;
    letter-spacing: 0.27px;
  }
}
.student-startup__description span,
.report__description span {
  color: #2864f0;
  display: inline;
}

.report {
  padding-top: 0;
}

/*===========================================================================*/
/*  app  */
/*===========================================================================*/
.app {
  padding-top: 91px;
  padding-bottom: 87px;
  background-color: #ebf3ff;
}
@media (max-width: 900px) {
  .app {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.app__head__image {
  width: 243px;
  margin: 0 auto 20px;
}
@media (max-width: 900px) {
  .app__head__image {
    width: 143px;
    margin-bottom: 28px;
  }
}
.app__head__box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.app__head__subtitle {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.2px;
  padding: 8px 23px;
  background-color: #2864f0;
  border-radius: 24.545px;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}
@media (max-width: 900px) {
  .app__head__subtitle {
    font-size: 13px;
    letter-spacing: 0.975px;
    margin-bottom: 16px;
    padding: 6px 25px;
  }
}
.app__head__subtitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  background: url(../images/app_text_balloon.svg) no-repeat center center/contain;
  width: 23px;
  height: 23px;
}
@media (max-width: 900px) {
  .app__head__subtitle::before {
    bottom: -12px;
  }
}
.app__head__title {
  color: #2864f0;
  text-align: center;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: 1.82px;
  margin-bottom: 35px;
  display: inline-block;
  position: relative;
}
@media (max-width: 900px) {
  .app__head__title {
    font-size: 24px;
    letter-spacing: 0.84px;
    margin-bottom: 25px;
  }
}
.app__head__title::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  right: -115px;
  bottom: 23px;
  background: url(../images/app_baloon.png) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .app__head__title::before {
    width: 52px;
    height: 52px;
    right: -60px;
    bottom: -6px;
  }
}
.app__item__image {
  width: 204px;
}
.app__item__image img {
  border: 5px solid #fff;
  border-radius: 16px;
}
.app__text {
  color: #2864f0;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.41;
  letter-spacing: 0.7px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
  padding-right: 36px;
  display: inline-block;
}
@media (max-width: 900px) {
  .app__text {
    font-size: 16px;
    letter-spacing: 0.56px;
    padding-left: 27px;
    padding-right: 27px;
    margin-bottom: 10px;
  }
}
.app__text::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
  height: 51px;
  background: url(../images/service_decoration.svg) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .app__text::before {
    width: 24px;
    height: 41px;
  }
}
.app__text::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
  height: 51px;
  background: url(../images/service_decoration_r.svg) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .app__text::after {
    width: 24px;
    height: 41px;
  }
}
.app__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 900px) {
  .app__download {
    gap: 20px;
  }
}
.app__download li a {
  color: inherit;
}
.app__download li p {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.195px;
  text-align: center;
}
@media (max-width: 900px) {
  .app__download li p {
    font-size: 12px;
    letter-spacing: 0.18px;
    margin-bottom: 5px;
  }
}
.app__download li figure {
  width: 241px;
}
@media (max-width: 900px) {
  .app__download li figure {
    width: 148px;
  }
}
.app .app__button--prev,
.app .app__button--next {
  position: absolute !important;
  top: 42% !important;
  display: block !important;
  width: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  z-index: 100 !important;
  cursor: pointer;
}
@media (max-width: 900px) {
  .app .app__button--prev,
  .app .app__button--next {
    width: 32px !important;
    height: 32px !important;
  }
}
.app .app__button--prev {
  left: 8.9% !important;
}
@media (max-width: 900px) {
  .app .app__button--prev {
    left: 3% !important;
  }
}
.app .app__button--next {
  right: 8.9% !important;
}
@media (max-width: 900px) {
  .app .app__button--next {
    right: 3% !important;
  }
}
.app .app__button--prev::after,
.app .app__button--next::after {
  content: "" !important;
  display: block;
  width: 54px !important;
  height: 54px !important;
  margin: auto !important;
  background-repeat: no-repeat !important;
  background-size: 54px 54px;
}
@media (max-width: 900px) {
  .app .app__button--prev::after,
  .app .app__button--next::after {
    width: 32px !important;
    height: 32px !important;
    background-size: 32px 32px;
  }
}
.app .app__button--prev::after {
  background-image: url(../images/app_arrow_left.svg) !important;
}
.app .app__button--next::after {
  background-image: url(../images/app_arrow_right.svg) !important;
}
.app .swiper-pagination {
  bottom: -6px !important;
  margin: 0 !important;
}
@media (max-width: 900px) {
  .app .swiper-pagination {
    bottom: -13px !important;
  }
}
.app .swiper-pagination .swiper-pagination-bullet {
  width: 20px !important;
  height: 3px !important;
  border-radius: 2px !important;
}
@media (max-width: 900px) {
  .app .swiper-pagination .swiper-pagination-bullet {
    width: 20px !important;
    height: 3px !important;
  }
}
.app .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px !important;
  background-color: #fff !important;
}
.app .swiper-pagination .swiper-pagination-bullet-active {
  background: #2864f0 !important;
}
.app .swiper-mask-wrapper {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .app .swiper-mask-wrapper {
    max-width: 500px;
    margin: 0 auto 30px;
  }
}
.app .swiper-mask-wrapper::before,
.app .swiper-mask-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 11.9333333333%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 900px) {
  .app .swiper-mask-wrapper::before,
  .app .swiper-mask-wrapper::after {
    content: none;
  }
}
.app .swiper-mask-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ebf3ff 0%, rgba(235, 243, 255, 0.85) 80%, rgba(235, 243, 255, 0) 100%);
}
.app .swiper-mask-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ebf3ff 0%, rgba(235, 243, 255, 0.85) 80%, rgba(235, 243, 255, 0) 100%);
}

/*===========================================================================*/
/*  magazine  */
/*===========================================================================*/
.magazine {
  padding-top: 103px;
  padding-bottom: 90px;
}
@media (max-width: 900px) {
  .magazine {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.magazine__inner {
  border-radius: 50px;
  border: 8px solid #ebf3ff;
  padding: 76px 79px 86px 86px;
}
@media (max-width: 900px) {
  .magazine__inner {
    border-radius: 20px;
    padding: 22px;
  }
}
.magazine__introduction {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .magazine__introduction {
    flex-direction: column;
  }
}
.magazine__image {
  width: 34.4940152339%;
}
@media (max-width: 900px) {
  .magazine__image {
    width: 215px;
    margin: 0 auto;
  }
}
.magazine__content {
  width: 61.3710554951%;
}
@media (max-width: 900px) {
  .magazine__content {
    width: 100%;
  }
}
.magazine__title {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .magazine__title {
    width: 251px;
    margin: 0 auto 11px;
  }
}
.magazine__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.24px;
  margin-bottom: 33px;
}
@media (max-width: 900px) {
  .magazine__description {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.21px;
    margin-bottom: 25px;
  }
}
.magazine__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}
@media (max-width: 900px) {
  .magazine__buttons {
    flex-direction: column;
    gap: 15px;
  }
}
.magazine__buttons li {
  width: 208px;
  border-radius: 40px;
}
@media (max-width: 900px) {
  .magazine__buttons li {
    width: 250px;
  }
}
.magazine__buttons li a {
  width: 100%;
  padding: 21px 25px 19px 29px;
  background-color: #00b9b9;
  border-radius: 40px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .magazine__buttons li a {
    padding: 18px 45px 20px 47px;
  }
}
.magazine__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .magazine__list {
    margin-top: 30px;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.magazine__list li {
  width: 15.0163220892%;
}
@media (max-width: 900px) {
  .magazine__list li {
    width: calc((100% - 20px) / 3);
  }
}
.magazine__achievement {
  width: 265px;
  margin: 0 auto 20px;
}

/*===========================================================================*/
/*  about  */
/*===========================================================================*/
.about {
  background: url(../images/about_bg.png) no-repeat center center/cover;
}
@media (max-width: 900px) {
  .about {
    background: url(../images/about_bg_sp.png) no-repeat center center/cover;
  }
}
@media screen and (min-width: 788px) and (max-width: 900px) {
  .about {
    background: url(../images/about_bg_sp.png) no-repeat center center/contain;
  }
}
.about__inner {
  padding-top: 234px;
  padding-bottom: 386px;
}
@media (max-width: 900px) {
  .about__inner {
    padding-top: 170px;
    padding-bottom: 178px;
  }
}
.about__title {
  width: 392px;
  margin: 0 auto 49px;
}
@media (max-width: 900px) {
  .about__title {
    width: 180px;
    margin-bottom: 25px;
  }
}
.about__description {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.27px;
}
@media (max-width: 900px) {
  .about__description {
    font-size: 16px;
    letter-spacing: 0.24px;
  }
}

/*===========================================================================*/
/*  contact  */
/*===========================================================================*/
.contact {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 900px) {
  .contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.contact__head {
  color: #2864f0;
  text-align: center;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: 1.61px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .contact__head {
    margin-bottom: 25px;
    font-size: 24px;
    letter-spacing: 0.84px;
  }
}
.contact__link a {
  padding: 19px 54px 19px 40px;
}

/*===========================================================================*/
/*  service  */
/*===========================================================================*/
.service {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f3f3f3;
}
@media (max-width: 900px) {
  .service {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.service__inner {
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .service__inner {
    max-width: 500px;
  }
}
.service__head {
  color: #2864f0;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.41;
  letter-spacing: 0.7px;
  margin-bottom: 39px;
  padding-left: 49px;
  padding-right: 50px;
  position: relative;
  display: inline-block;
}
@media (max-width: 900px) {
  .service__head {
    font-size: 16px;
    letter-spacing: 0.56px;
    padding-left: 32px;
    padding-right: 27px;
    margin-bottom: 25px;
  }
}
.service__head::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/service_decoration.svg) no-repeat center center/contain;
  width: 31px;
  height: 51px;
}
@media (max-width: 900px) {
  .service__head::before {
    width: 25px;
    height: 41px;
  }
}
.service__head::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: trasnlateY(-50%);
  transform: translateY(-50%);
  background: url(../images/service_decoration_r.svg) no-repeat center center/contain;
  width: 31px;
  height: 51px;
}
@media (max-width: 900px) {
  .service__head::after {
    width: 25px;
    height: 41px;
  }
}
.service__items {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 900px) {
  .service__items {
    flex-direction: column;
    gap: 25px;
  }
}
.service__items li {
  width: calc((100% - 40px) / 2);
  padding: 50px 30px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #2864f0;
  position: relative;
}
@media (max-width: 900px) {
  .service__items li {
    width: 100%;
    padding: 40px 37px;
  }
}
.service__items li::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  width: 20px;
  height: 20px;
  background: url(../images/service_eclipse.svg) no-repeat center center/contain;
}
.service__items li::after {
  content: "";
  position: absolute;
  bottom: -1.9px;
  right: -1.9px;
  width: 20px;
  height: 20px;
  background: url(../images/service_eclipse.svg) no-repeat center center/contain;
  rotate: 180deg;
}
.service__items li:nth-of-type(2) .service__title {
  width: 242px;
}
@media (max-width: 900px) {
  .service__items li:nth-of-type(2) .service__title {
    width: 202px;
  }
}
.service__items li:nth-of-type(2) .service__title img {
  width: 100%;
}
.service__items li:nth-of-type(2) .service__description {
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .service__items li:nth-of-type(2) .service__description {
    margin-bottom: 25px;
  }
}
.service__subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.41;
  letter-spacing: 0.7px;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .service__subtitle {
    font-size: 18px;
    letter-spacing: 0.63px;
    margin-bottom: 25px;
  }
}
.service__title {
  width: 196px;
  margin: 0 auto 30px;
}
@media (max-width: 900px) {
  .service__title {
    margin-bottom: 20px;
    width: 164px;
  }
}
.service__title img {
  width: 100%;
}
.service__description {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.63px;
  margin-bottom: 69px;
}
@media (max-width: 900px) {
  .service__description {
    font-size: 16px;
    letter-spacing: 0.56px;
    margin-bottom: 25px;
  }
}
.service__link {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
  padding: 24px 21px 24px 58px;
  background-color: #00b9b9;
  border-radius: 32px;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.16));
}
.service__link:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .service__link {
    padding: 19px 20px 19px 50px;
  }
}
.service__link__lg {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
  padding: 24px 21px 24px 36px;
  background-color: #00b9b9;
}
@media (max-width: 900px) {
  .service__link__lg {
    padding: 19px 20px 19px 33px;
  }
}

/*----------------------------------------
  Aside
----------------------------------------*/
.aside {
  position: fixed;
  z-index: 199;
  bottom: 10px;
  right: 10px;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .aside {
    bottom: 5px;
    right: 5px;
  }
}
.aside.fadeIn {
  pointer-events: all;
  opacity: 1;
}
.aside.fadeOut {
  pointer-events: none;
  opacity: 0;
}
.aside .aside-inner {
  position: relative;
}
.aside .close-btn {
  position: absolute;
  z-index: 99;
  top: 1px;
  right: 1px;
  width: 15px;
  height: 15px;
  background-color: #fff;
}
.aside .close-btn svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
}
.aside__floating-banner {
  display: block;
  width: 390px;
}
@media (max-width: 900px) {
  .aside__floating-banner {
    width: 179px;
  }
}