/* **************************
	reset
************************** */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  font-family: "Noto Sans", sans-serif;
}
a {
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
img,
video {
  width: 100%;
  vertical-align: middle;
}
button {
  cursor: pointer;
}

/* **************************
	common
************************** */
.section {
  padding: 150px 0;
  overflow-x: hidden;
}
.section--lower {
  padding-top: 100px;
}
.section-color-gray {
  background-color: #eff4f7;
}
.section-color-blue {
  background-color: #004da0;
}
.section__inner {
  max-width: 1200px;
  padding: 0 5%;
  margin: auto;
}
.section__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section__flex--col2 {
  width: calc(95% / 2);
}
.section__flex--col3 {
  width: calc(95% / 3);
}
.section__title {
  margin-bottom: 80px;
}
.section__title--h2 {
  font-size: 5rem;
}
.section__text--m {
  font-size: 1.4rem;
}
.section__text--l {
  font-size: 1.6rem;
  line-height: 1.8;
}
.section__text--blue {
  color: #004da0;
}
.section__text--white {
  color: #fff;
}
.section__text--gray {
  color: #404040;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 100px 0;
  }
  .section__flex {
    display: block;
  }
  .section__flex--col2 {
    width: 100%;
  }
  .section__flex--col3 {
    width: 100%;
  }
  .section__flex--col2:last-child {
    margin-top: 30px;
  }
  .section__title--h2 {
    font-size: 4.6rem;
  }
}

/* **************************
	header nav
************************** */
.header-nav {
  position: fixed;
  width: 100%;
  padding: 15px 5% 0;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}
.header-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
  background-color: #004da0;
  border-radius: 100px;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.header-nav__logo {
  width: 150px;
}
.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 600px;
}
.header-nav__link {
  display: block;
  padding: 20px 10px;
  font-size: 1.6rem;
  color: #fff;
}
.header-nav__link--label {
  display: inline-block;
  margin-left: 20px;
  padding: 6px 40px;
  background-color: #fff352;
  border-radius: 50px;
  font-size: 1.6rem;
  color: #004da0;
}
.header-ham {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 12px;
}
.header-ham__bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  border-width: 0;
}
.header-ham__button {
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #004da0;
  border-radius: 3px;
  left: 50%;
  transition: all 0.3s ease-in-out;
}
.header-ham__button:first-child {
  top: 12px;
  transform: translateX(-50%);
}
.header-ham__button:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-ham__button:last-child {
  bottom: 12px;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .header-nav.nav-open {
    padding: 0;
    height: 100vh;
    background-color: #004da0;
  }
  .nav-open .header-nav__inner {
    align-items: baseline;
    background-color: #004da0;
    border-radius: 0;
  }
  .header-nav__logo {
    padding: 15px 0;
  }
  .header-nav__list {
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
    text-align: center;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(50%);
    transition: all 0.2s ease-in-out;
  }
  .nav-open .header-nav__list {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .header-nav__link--label {
    margin: 50px 0 0 0;
  }
  .header-ham {
    display: block;
  }
  .nav-open .header-ham__button:first-child,
  .nav-open .header-ham__button:last-child {
    visibility: hidden;
    opacity: 0;
  }
}

/* **************************
	main visual
************************** */
.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.main-visual__image-wrap {
  position: relative;
}
.main-visual__image-wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100vh;
  background-image: url(/lp/all-course/images/main-visual-filter.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.main-visual__image {
  display: none;
  position: absolute;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 0;
}
.main-visual__image.show {
  display: block;
  animation: scaleUp 50s ease-out infinite;
}
.main-visual__image:first-child {
  background-image: url(/lp/all-course/images/slider/slider01.jpg);
}
.main-visual__image:nth-child(2) {
  background-image: url(/lp/all-course/images/slider/slider02.jpg);
}
.main-visual__image:nth-child(3) {
  background-image: url(/lp/all-course/images/slider/slider03.jpg);
}
.main-visual__image:nth-child(4) {
  background-image: url(/lp/all-course/images/slider/slider04.jpg);
}
.main-visual__image:nth-child(5) {
  background-image: url(/lp/all-course/images/slider/slider05.jpg);
}
.main-visual__image:nth-child(6) {
  background-image: url(/lp/all-course/images/slider/slider06.jpg);
}
.main-visual__image:nth-child(7) {
  background-image: url(/lp/all-course/images/slider/slider07.jpg);
}
.main-visual__image:nth-child(8) {
  background-image: url(/lp/all-course/images/slider/slider08.jpg);
}
.main-visual__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 2;
}
.main-visual__title {
  margin-bottom: 30px;
  font-size: 4.8rem;
  font-weight: bold;
  color: #fff;
}
.main-visual__sub-title {
  display: inline-block;
  padding: 5px 50px;
  background-color: #fff;
  font-size: 2.6rem;
  color: #004da0;
}
.main-visual__third-title {
  width: 95%;
  margin: 44px auto 0;
  font-size: 2.8rem;
  font-weight: 300;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 820px) {
  .main-visual::before {
    width: 100%;
    height: calc(100vh - 30%);
  }
  .main-visual__inner {
    flex-direction: column;
  }
  .main-visual__text {
    width: 100%;
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .main-visual__title {
    margin-bottom: 18px;
    font-size: 3rem;
  }
  .main-visual__sub-title {
    padding: 5px 20px;
    font-size: 1.6rem;
  }
  .main-visual__third-title {
    margin: 36px auto 0;
    font-size: 2rem;
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}

/* **************************
	about
************************** */
.about {
  position: relative;
  padding: 250px 0 200px;
}
.about__title {
  padding-right: 20%;
}
.about__image-wrap {
  padding-bottom: 100px;
}
.about__image {
  height: 100%;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.about__image-bg01,
.about__image-bg02 {
  z-index: -1;
}
.about__image-bg-wrap {
  overflow: hidden;
}
.about__image-bg01 {
  position: absolute;
  width: 20%;
  height: 20%;
  border-radius: 16px;
  top: 48px;
  right: -50px;
}
.about__image01 {
  width: 100%;
  height: 100%;
  background-image: url(/lp/all-course/images/img01-01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about__image-bg02 {
  position: absolute;
  width: 35%;
  height: 35%;
  border-radius: 16px;
  bottom: 48px;
  left: -50px;
}
.about__image02 {
  width: 100%;
  height: 100%;
  background-image: url(/lp/all-course/images/img01-02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .about__image-bg01 {
    width: 30%;
  }
  .about__image-bg02 {
    position: absolute;
    height: 20%;
    bottom: 0;
    left: -50px;
  }
}
@media screen and (max-width: 480px) {
  .about__image-bg01 {
    position: absolute;
    width: 50%;
    height: 12%;
    right: -10px;
  }
  .about__image-bg02 {
    position: absolute;
    width: 60%;
    height: 15%;
    left: -10px;
  }
}

.conversion-banner {
  width: 700px;
  max-width: 90%;
  margin: 150px auto 0;
}
.conversion-banner__link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.conversion-banner__image--sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .conversion-banner__image {
    display: none;
  }
  .conversion-banner__image--sp {
    display: block;
  }
}

/* **************************
	recommend
************************** */
.recommend {
  position: relative;
  z-index: 100;
}
.recommend__image-wrap {
  width: 80%;
  margin: 60px auto 0;
}
.recommend__image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}
.recommend-panel {
  margin-top: -15%;
}
.recommend-panel-wrap {
  display: flex;
  justify-content: space-between;
}
.recommend-panel__group {
  width: calc(95% / 2);
}
.recommend-panel__item {
  padding: 24px;
  background-color: #004da0;
  border-radius: 16px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
.recommend-panel__item:nth-child(n + 2) {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .recommend__image-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .recommend-panel-wrap {
    display: block;
  }
  .recommend-panel__group {
    width: 100%;
  }
  .recommend-panel__group:nth-child(n + 2) {
    margin-top: 20px;
  }
}

/* **************************
	benefit
************************** */
.benefit__list {
  margin-top: 80px;
  text-align: center;
}
.benefit__item {
  display: inline-block;
  position: relative;
  margin: 30px auto;
  padding: 10px 20px;
  background: linear-gradient(to left, #004da0, #5085a1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
.benefit__item::before,
.benefit__item::after {
  position: absolute;
  content: '"';
  background: linear-gradient(to left, #004da0, #5085a1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}
.benefit__item::before {
  top: 0;
  left: 0;
}
.benefit__item::after {
  bottom: -20px;
  right: 0;
}
.benefit__image {
  aspect-ratio: 3 / 5;
  object-fit: cover;
  border-radius: 16px;
}
.active-user {
  margin-top: 150px;
}
.active-user__title {
  background: linear-gradient(to left, #004da0, #5085a1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}
.active-user__list {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.active-user__item {
  width: calc(95% / 3);
}
.active-user__item-inner {
  display: inline-block;
  padding: 24px;
  background: linear-gradient(to left, #004da0, #5085a1);
  border-radius: 16px;
}
.active-user__image {
  margin-bottom: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}
.user-voice__image {
  width: 100px;
  height: 100px;
  margin: 20px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
}
.user-voice__image--user01 {
  background-image: url(/lp/all-course/images/user/user01.jpeg);
}
.user-voice__image--user02 {
  background-image: url(/lp/all-course/images/user/user02.JPG);
}
.user-voice__image--user03 {
  background-image: url(/lp/all-course/images/user/user03.JPG);
}
.user-voice__name {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
.active-user__slider {
  position: relative;
}
.user-swiper-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  top: 100px;
  cursor: pointer;
  z-index: 1;
}
.user-swiper-lower-button-prev,
.user-swiper-button-prev {
  left: -20px;
}
.user-swiper-lower-button-next,
.user-swiper-button-next {
  right: -20px;
}
.user-swiper-button-prev-arrow {
  width: 12px;
  height: 12px;
  margin-left: 4px;
  border-top: solid 2px #004da0;
  border-left: solid 2px #004da0;
  transform: rotate(-45deg);
}
.user-swiper-button-next-arrow {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-top: solid 2px #004da0;
  border-right: solid 2px #004da0;
  transform: rotate(45deg);
}
.active-user__link {
  margin-top: 50px;
  text-align: center;
}
.active-user__link-button {
  display: inline-block;
  position: relative;
  padding: 12px 40px 15px 30px;
  background: linear-gradient(to left, #004da0, #5085a1);
  border-radius: 30px;
  font-size: 1.4rem;
  color: #fff;
}
.active-user__link-button::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  top: 17px;
  right: 16px;
  transform: rotate(45deg);
}

/* **************************
	course
************************** */
.section__course {
  position: relative;
}
.section__course::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background-color: #004da0;
  bottom: 0;
  left: 0;
}
.course-slider {
  position: relative;
}
.course-slider::before,
.course-slider::after {
  position: absolute;
  content: "";
  width: 200%;
  height: 1px;
  background-color: #004da0;
  left: 50%;
  transform: translateX(-50%);
}
.course-slider::before {
  top: 0;
}
.course-slider::after {
  bottom: 0;
}
.course-slider-wrapper {
  position: relative;
  overflow: hidden;
}
.course-slider__item {
  aspect-ratio: 1 / 1;
  border: solid 1px #004da0;
}
.course-slider__item:not(:last-child) {
  border: solid 1px #004da0;
  border-right: 0;
}
.course-slider__button {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-width: 0;
}
.course-slider__button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 77, 160, 0.6);
  top: 0;
  left: 0;
}
.course-slider__button::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  transition: all 0.2s ease-in-out;
}
.course-slider__button:hover::after {
  bottom: 18px;
}
.course-slider__item:first-child .course-slider__button {
  background-image: url(/lp/all-course/images/img-course1.webp);
}
.course-slider__item:nth-child(2) .course-slider__button {
  background-image: url(/lp/all-course/images/img-course2.webp);
}
.course-slider__item:nth-child(3) .course-slider__button {
  background-image: url(/lp/all-course/images/img-course3.webp);
}
.course-slider__item:nth-child(4) .course-slider__button {
  background-image: url(/lp/all-course/images/img-course4.webp);
}
.course-slider__item:nth-child(5) .course-slider__button {
  background-image: url(/lp/all-course/images/img-course5.webp);
}
.course-slider__button.selected {
  background-color: #004da0 !important;
  background-image: none !important;
}
.course-slider__button.selected::after {
  display: none;
}
.course-slider__title {
  position: absolute;
  width: 100%;
  padding: 12px;
  font-weight: bold;
  font-size: 1.8rem;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.course-swiper-prev,
.course-swiper-next {
  position: absolute;
  width: 20px;
  height: 20px;
  border-top: solid 1px #004da0;
  top: 50%;
  cursor: pointer;
  z-index: 1;
}
.course-swiper-prev {
  border-left: solid 1px #004da0;
  left: -24px;
  transform: translateY(-50%) rotate(-45deg);
}
.course-swiper-next {
  border-right: solid 1px #004da0;
  right: -24px;
  transform: translateY(-50%) rotate(45deg);
}
.course-detail {
  display: none;
  position: relative;
  padding: 36px 24px 24px;
  background-color: #004da0;
  border-radius: 0 0 16px 16px;
}
.course-detail.selected {
  display: block;
}
.course-detail::before {
  position: absolute;
  content: "";
  width: 200%;
  height: 100%;
  background-color: #004da0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.course-detail__group:nth-child(n + 2) {
  margin-top: 50px;
}
.course-detail__title {
  position: relative;
  margin-bottom: 24px;
  padding-left: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
}
.course-detail__title::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
  top: 0;
  left: 0;
}
.course-detail__item {
  position: relative;
  padding-left: 24px;
  font-size: 1.6rem;
  color: #fff;
}
.course-detail__item::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.course-detail__item:nth-child(n + 2) {
  margin-top: 10px;
}
.course-detail__class {
  display: flex;
  flex-wrap: wrap;
}
.course-detail__class-item {
  margin-top: 16px;
}
.course-detail__class-item-button {
  padding: 12px 32px;
  background-color: #004da0;
  border: solid 1px #fff;
  border-radius: 30px;
  font-size: 1.4rem;
  color: #fff;
}
.course-detail__class-item.selected .course-detail__class-item-button {
  background-color: #fff;
  color: #004da0;
}
.course-detail__class-item:not(:last-child) {
  margin-right: 16px;
}
.course-detail__link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 24px;
  background-color: #fff;
  border-radius: 30px;
  font-size: 1.4rem;
  color: #004da0;
}
.course-detail__apply {
  margin: 50px 0 20px;
  text-align: center;
}
.course-detail__apply-button {
  display: inline-block;
  padding: 16px 32px;
  background-color: #fff;
  border-radius: 30px;
  font-size: 1.6rem;
  color: #004da0;
}

@media screen and (max-width: 768px) {
  .course-detail__class-item {
    padding: 8px 16px;
  }
  .course-swiper-prev,
  .course-swiper-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 77, 160, 0.6);
    border-radius: 50%;
    border-width: 0;
    top: 50%;
    cursor: pointer;
    z-index: 1;
  }
  .course-swiper-prev {
    left: -16px;
    transform: translateY(-50%) rotate(0);
  }
  .course-swiper-next {
    right: -16px;
    transform: translateY(-50%) rotate(0);
  }
  .course-swiper-prev__arrow,
  .course-swiper-next__arrow {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .course-swiper-prev__arrow {
    background-image: url(/lp/all-course/images/slider-arrow-prev.png);
  }
  .course-swiper-next__arrow {
    background-image: url(/lp/all-course/images/slider-arrow-next.png);
  }
}

/* **************************
	qa
************************** */
.qa-wrap {
  padding: 24px 24px 48px;
  background-color: #fff;
  border-radius: 16px;
}
.qa-group {
  margin-top: 50px;
}
.qa-group__title {
  margin-bottom: 32px;
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
}
.qa__item {
  background-color: #fff;
  border-radius: 35px;
  transition: all 0.3s ease-in-out;
}
.qa__item:nth-child(n + 2) {
  margin-top: 28px;
}
.qa__item.open {
  border-radius: 30px;
}
.qa__item-title {
  position: relative;
  width: 100%;
  padding: 24px 48px 24px 24px;
  background-color: transparent;
  border-width: 0;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  color: #004da0;
}
.qa__item-title::before,
.qa__item-title::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background-color: #004da0;
  top: 50%;
  right: 24px;
  transition: all 0.3s ease-in-out;
}
.qa__item-title::before {
  transform: translateY(-50%);
}
.qa__item-title::after {
  transform: translateY(-50%) rotate(90deg);
}
.qa__item.open .qa__item-title::before {
  transform: translateY(-50%) rotate(45deg);
}
.qa__item.open .qa__item-title::after {
  transform: translateY(-50%) rotate(135deg);
}
.qa__body {
  position: relative;
  padding: 0 24px;
  max-height: 0;
  visibility: hidden;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.qa__item.open .qa__body {
  padding: 24px;
  max-height: 999px;
  visibility: visible;
  opacity: 1;
}
.qa__body::before {
  position: absolute;
  content: "";
  width: calc(100% - 24px);
  height: 2px;
  background-color: #004da0;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
}

/* **************************
	conversion area
************************** */
.conversion-area {
  position: relative;
}
.conversion-area__bg {
  display: flex;
  flex-wrap: nowrap;
}
.conversion-area__bg-image {
  position: relative;
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 3 / 2;
}
.conversion-area__bg-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 47, 97, 0.6);
  top: 0;
  left: 0;
}
.conversion-area__bg-image--left {
  background-image: url(/lp/all-course/images/conversion/img-cv-left.jpeg);
}
.conversion-area__bg-image--right {
  background-image: url(/lp/all-course/images/conversion/img-cv-right.jpg);
}
.conversion-area__link {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: absolute;
  width: 90%;
  max-width: 1200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.conversion-area__item {
  display: block;
  position: relative;
  width: calc(95% / 2);
  padding: 24px 24px 60px;
  border: solid 1px #fff;
  border-radius: 16px;
  backdrop-filter: blur(6px);
}
.conversion-area__item::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px #fff;
  bottom: 24px;
  right: 24px;
}
.conversion-area__item::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  background-image: url(/lp/all-course/images/arrow-white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 39px;
  right: 34px;
}
.conversion-area__title {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-color: #fff;
  font-size: 3rem;
  font-weight: bold;
  color: #004da0;
}

@media screen and (max-width: 768px) {
  .conversion-area__bg {
    display: block;
  }
  .conversion-area__bg-image {
    width: 100%;
    aspect-ratio: 2 / 1;
  }
}
@media screen and (max-width: 640px) {
  .conversion-area__bg-image {
    aspect-ratio: 1 / 1;
  }
  .conversion-area__link {
    display: block;
  }
  .conversion-area__item {
    width: 100%;
    backdrop-filter: blur(4px);
  }
  .conversion-area__item:nth-child(n + 2) {
    margin-top: 50px;
  }
}

/* **************************
	feature
************************** */
.feature {
  padding-top: 100px;
}
.feature-slider {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 100px;
  animation: imageSlider 30s linear 0s infinite normal none running;
}
.feature-slider__image {
  flex-shrink: 0;
  position: relative;
  width: calc(100% / 5);
  margin-right: 36px;
  border-radius: 16px;
  overflow: hidden;
}
.feature-slider__image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #004da0;
  border-radius: 16px;
  opacity: 0.3;
  top: 0;
  left: 0;
}
.feature-slider__image:nth-child(odd) img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.feature-slider__image:nth-child(even) img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature__item:nth-child(n + 2) {
  margin-top: 30px;
}
.feature__item-inner {
  padding: 24px;
  background: linear-gradient(to left, #004da0, #5085a1);
  border-radius: 16px;
}
.feature__item-title {
  display: inline;
  background-color: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-size: 3.2rem;
  font-weight: bold;
  color: #004da0;
}

@media screen and (max-width: 768px) {
  .feature-slider__image {
    width: calc(100% / 3);
  }
}
@media screen and (max-width: 480px) {
  .feature-slider {
    animation: imageSlider 15s linear 0s infinite normal none running;
  }
  .feature-slider__image {
    width: calc(100% / 2);
  }
}

@keyframes imageSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* **************************
	user voice
************************** */
.user-voice {
  position: relative;
}
.user-voice__item {
  position: relative;
  padding: 24px;
  background: linear-gradient(to left, #004da0, #5085a1);
  border-radius: 16px;
}
.user-voice__text {
  margin: 16px 0 24px;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.user-voice__button-wrap {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.user-voice__button {
  position: relative;
  padding: 12px 36px 12px 24px;
  background-color: #fff;
  border-radius: 30px;
  border-width: 0;
  font-size: 1.4rem;
  color: #004da0;
}
.user-voice__button::before,
.user-voice__button::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #004da0;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.user-voice__button::after {
  transform: translateY(-50%) rotate(90deg);
}
.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}
.user-voice-modal {
  position: fixed;
  width: 90%;
  max-width: 1000px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1100;
}
.user-voice-modal__inner {
  width: 100%;
  padding: 24px 24px 84px;
  background-color: #fff;
  border-radius: 16px;
  overflow-y: auto;
}
.user-voice-content__item:nth-child(n + 2) {
  margin-top: 40px;
}
.user-voice-content__title {
  position: relative;
  padding-bottom: 16px;
  background: linear-gradient(to left, #004da0, #5085a1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.8rem;
  font-weight: bold;
}
.user-voice-content__title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, #004da0, #5085a1);
  bottom: 0;
  left: 0;
}
.user-voice-content__body {
  margin-top: 16px;
}
.modal-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border-radius: 0 0 16px 16px;
  bottom: 0;
  left: 0;
}
.modal-close__button {
  position: relative;
  padding: 12px 36px 12px 36px;
  background-color: #888;
  border-width: 0;
  border-radius: 30px;
  font-size: 1.6rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .feature__item {
    margin-top: 30px;
  }
  .user-voice-content__title {
    font-size: 2.4rem;
  }
}

/* **************************
	apply area
************************** */
.application {
  padding-top: 70px;
}
.application__text-slider {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 90px;
  animation: textSlider 70s linear 0s infinite normal none running;
}
.application__text {
  white-space: nowrap;
  font-size: 11rem;
  font-weight: 800;
  color: #fff;
}
.application__text:nth-child(n + 2) {
  margin-left: 24px;
}
.contact {
  justify-content: space-between;
}
.contact__item {
  width: calc(95% / 2);
}
.contact__item:nth-child(n + 3) {
  margin-top: 40px;
}
.contact__item-button {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
  border-width: 0;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  color: #004da0;
}
.contact__item-button::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 1px #004da0;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.contact__item-button::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  background-image: url(/lp/all-course/images/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
}
.contact__link {
  display: block;
  position: relative;
  padding: 24px 24px 70px 24px;
  background-color: #fff;
  border-radius: 16px;
}
.contact__link::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 1px #004da0;
  bottom: 12px;
  right: 16px;
}
.contact__link::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  background-image: url(/lp/all-course/images/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  bottom: 27px;
  right: 26px;
}
.contact__title {
  margin-bottom: 16px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #004da0;
}
.apply-modal {
  position: fixed;
  max-width: 1000px;
  width: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  z-index: 1000;
}
.apply-modal__inner {
  width: 100%;
  padding: 24px 24px 84px;
  background-color: #fff;
  border-radius: 16px;
  overflow-y: auto;
}
.modal-open {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .apply-form {
    width: 100%;
  }
  .contact__list {
    width: 100%;
    margin-top: 50px;
  }
  .contact__item {
    width: 100%;
  }
  .contact__item:nth-child(n + 2) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .application__text-slider {
    animation: textSlider 30s linear 0s infinite normal none running;
  }
  .application__text {
    font-size: 8rem;
  }
}

@keyframes textSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300%);
  }
}

/* **************************
	footer
************************** */
.footer {
  padding: 48px 24px;
  background-color: #004da0;
}
.footer__inner {
  max-width: 1200px;
  margin: auto;
}
.footer__link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: solid 2px #fff;
}
.footer__link-bbic {
  display: flex;
  flex-wrap: wrap;
}
.footer__link-bbic-item {
  margin: 10px 20px 10px 0;
}
.footer__link-sns {
  width: 100px;
  margin: 20px 0;
}
.footer__link-bbic-button {
  display: inline-block;
  position: relative;
  padding: 20px 75px 20px 30px;
  background-color: #fff;
  border-radius: 8px;
  font-size: 1.6rem;
  color: #004da0;
}
.footer__link-bbic-button::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #004da0;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.footer__link-bbic-button::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #004da0;
  border-right: solid 2px #004da0;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
.footer__link-sns {
  display: flex;
}
.footer__link-sns div {
  width: 50%;
}
.footer__link-sns-button {
  display: block;
  padding: 0 10px;
}
.footer__about-bbic {
  display: flex;
  margin-top: 36px;
}
.footer__about-bbic-item:first-child {
  width: 30%;
  padding-right: 10px;
}
.footer__about-bbic-item:last-child {
  width: 70%;
}
.footer__about-bbic-logo {
  width: 150px;
  margin-bottom: 20px;
}
.footer__about-bbic-text {
  margin: 8px 0;
  font-size: 1.3rem;
  color: #fff;
}
.footer__about-bbic-link {
  display: block;
  position: relative;
  margin-top: 12px;
  font-size: 1.6rem;
  color: #fff;
}

.footer__copy {
  margin-top: 30px;
  text-align: center;
}
.footer__copy-text {
  font-size: 1.2rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer__about-bbic {
    display: block;
  }
  .footer__about-bbic-item {
    width: 100% !important;
    padding: 0 !important;
  }
  .footer__about-bbic-item:last-child {
    margin-top: 24px;
  }
}
@media screen and (max-width: 600px) {
  .footer__link-bbic-item {
    margin-right: 0 !important;
  }
}

/* **************************
	move top
************************** */
.move-top {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 24px;
  right: 24px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.move-top.show {
  visibility: visible;
  opacity: 1;
}
.move-top__button {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-width: 0;
  background-color: #004da0;
}
.move-top__button::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

/* **************************
	utility
************************** */
.mt-20 {
  margin-top: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.line-clamp-3 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
}
.overflow-auto {
  overflow: initial !important;
}
.overflow-y-auto {
  overflow-y: initial !important;
}
