@charset "UTF-8";

/********************************************************
 common
 *******************************************************/
/* html {
    scroll-behavior: smooth;
    animation-timing-function: linear;
} */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  z-index: 100;
  right: 0px;
  bottom: 0px;
  background: rgba(255, 255, 255, 0);
}
.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}

.marker {
  background: linear-gradient(transparent 70%, #fff237 70%);
}

/*****************************************************
 LP用header 
 ******************************************************/
header {
  position: static;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 120px;
  padding: 16px 20px;
  background: #fff;
}
.nav {
  display: flex;
  gap: 10px;
}
.nav_btn {
  text-align: center;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  min-width: 232px;
}
.nav_btn a {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  color: #fff;
  padding: 15px 75px;
}
.material a {
  background: rgba(255, 151, 0);
  line-height: 42px;
  border: none;
  box-shadow: 7px 7px 20px 0px rgba(0, 0, 0, 0.2),
    4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
}
.material a:hover {
  background: linear-gradient(
    0deg,
    rgb(251, 75, 2, 1) 0%,
    rgba(255, 151, 0, 2) 100%
  );
  transition: all 0.3s ease;
}
.discussion a {
  background: rgb(0, 172, 238);
  line-height: 42px;
  border: none;
  box-shadow: 7px 7px 20px 0px rgba(0, 0, 0, 0.2),
    4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
}
.discussion a:hover {
  background: linear-gradient(
    0deg,
    rgb(2, 126, 251, 1) 0%,
    rgba(0, 172, 238, 2) 100%
  );
  transition: all 0.3s ease;
}
.yoyaku a {
  background: rgb(146, 7, 131);
  line-height: 42px;
  border: none;
  box-shadow: 7px 7px 20px 0px rgba(0, 0, 0, 0.2),
    4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 50px;
}
.yoyaku a:hover {
  background: linear-gradient(
    0deg,
    rgba(96, 24, 131, 1) 0%,
    rgb(146, 7, 131, 2) 100%
  );
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header {
    min-height: 80px;
    padding: 5px;
  }
  .nav {
    display: flex;
    gap: 5px;
  }
  .nav_btn {
    min-width: 100px;
  }
  .nav_btn a {
    padding: 10px 17px;
  }
  .logo_wrap img {
    width: 100%;
  }
  .material a {
    background: linear-gradient(
      0deg,
      rgb(251, 75, 2, 1) 0%,
      rgba(255, 151, 0, 2) 100%
    );
    box-shadow: 7px 7px 20px 0px rgba(0, 0, 0, 0.2),
      4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  }
  .discussion a {
    background: linear-gradient(
      0deg,
      rgb(2, 126, 251, 1) 0%,
      rgba(0, 172, 238, 2) 100%
    );
    box-shadow: 7px 7px 20px 0px rgba(0, 0, 0, 0.2),
      4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  }
  .yoyaku a {
    background: linear-gradient(
      0deg,
      rgba(96, 24, 131, 1) 0%,
      rgb(146, 7, 131, 2) 100%
    );
    box-shadow: 7px 7px 20px 0px rgba(0, 0, 0, 0.2),
      4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  }
}
/********************************************************
 article 
 *******************************************************/
.title {
  text-align: center;
  font-size: 5rem;
  margin-top: 40px;
}
.container {
  display: flex;
  justify-content: center;
  background: #ffffff;
  gap: 20px;
  margin-top: 40px;
}
.summary {
  text-align: center;
  margin-top: 50px;
  font-size: 2rem;
}
.inquiry {
  text-align: center;
  font-weight: 600;
  font-size: 5rem;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .title {
    text-align: center;
    font-size: 4rem;
    margin-top: 20px;
    text-align: center;
  }
  .container {
    display: flex;
    width: 100%;
    margin-top: 20px;
    gap: 3px;
    padding: 5px;
  }
  .summary {
    text-align: center;
    margin: 20px 15px 0 15px;
  }
  .inquiry {
    text-align: center;
    font-weight: 600;
    font-size: 4rem;
    margin-top: 40px;
  }
}
.summary__animation1 {
  animation: floating-y 1.7s ease-in-out infinite alternate-reverse;
}
.summary__animation2 {
  animation: floating-y 1.3s ease-in-out infinite alternate-reverse;
}
.summary__animation3 {
  animation: floating-y 1.1s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-1.8%);
  }
  100% {
    transform: translateY(2%);
  }
}
@keyframes shine {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/********************************************************
 実績紹介
 *******************************************************/
.section__title--wrap {
  margin-top: 50px;
  background-color: #ffffff;
  padding-top: 40px;
}

.section__title {
  text-align: center;
  font-weight: 800;
  font-size: 3.5rem;
  background-color: none;
}
.achievements__title--color {
  color: rgb(0 140 255);
  font-size: 5rem;
}

/********************************************************
 4つの理由
 *******************************************************/
.reason__title--color {
  color: rgb(30, 27, 207);
}
.reason__imgBox {
  /*親div*/
  position: relative; /*相対配置*/
}

.reason__imgBox--odd {
  position: absolute;
  color: rgb(30, 27, 207);
  top: 20px;
  left: -1px;
  font-size: 25px;
}
.reason__imgBox--even {
  position: absolute;
  color: white;
  top: 20px;
  left: -1px;
  font-size: 25px;
}

.reason__imgBox img {
  width: 100%;
}

.reason__container {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  border: solid 1px #888;
  border-radius: 10px;
}
.reason__img {
  border-radius: 10px 0 0 10px;
}
.reason__title {
  color: rgb(30, 27, 207);
  font-size: 2.8rem;
  margin-top: 10px;
  padding: 10px 10px 0px 10px;
}
.reason__subtitle {
  background-color: #eee;
  padding: 5px;
  font-size: 2rem;
  margin-top: 10px;
}
.reason__paragraph {
  margin-top: 10px;
  padding: 5px;
}
.reason__text {
  width: 1600px;
  padding: 15px;
}
.reason__sub {
  font-size: 2rem;
}
.sp_br {
  display: none;
}
@media screen and (max-width: 767px) {
  .reason__title--color {
    color: rgb(30, 27, 207);
  }

  .reason__container {
    display: block;
    gap: 0;
    margin-top: 10px;
    padding: 0;
    border: solid 1px #888;
    border-radius: 10px;
  }
  .reason__img {
    border-radius: 10px 10px 0 0;
  }
  .reason__title {
    color: rgb(30, 27, 207);
    font-size: 2rem;
    margin-top: 0;
    padding: 10px 10px 0px 10px;
  }
  .reason__subtitle {
    background-color: #eee;
    padding: 5px;
    font-size: 1.5rem;
    margin-top: 10px;
  }
  .reason__paragraph {
    margin-top: 10px;
    padding: 15px;
  }
  .reason__text {
    width: auto;
    gap: 20px;
    margin-top: 0px;
    padding: 15px;
  }
  .sp_br {
    display: block;
  }
}
/********************************************************
 合格者の声
 *******************************************************/
.voice__title--color {
  color: rgb(255 0 92);
}
.voice__background {
  background: linear-gradient(-210deg, #fff6fb 0%, #ffd9b1 60%, #ffbac3 100%);
  margin-top: 60px;
}

.slider {
  position: relative;
  width: 100%;
  .slider__track {
    display: flex;
    /* transition: transform 33s ease; */
    /* 各スライドが全体の1/3の幅を持つように調整 */
    width: 800%; /* ※スライドの枚数を変える場合は修正 */
    .slider__slide {
      width: 100%;
      height: 100%;
    }
  }
  /* ※スライドの枚数を変える場合は修正 */
  .slider__track.active__slide1.carousel-containe {
    transform: translateX(0%);
  }
  .slider__track.active__slide2 {
    transform: translateX(-12.5%);
  }
  .slider__track.active__slide3 {
    transform: translateX(-25%);
  }
  .slider__track.active__slide4 {
    transform: translateX(-37.5%);
  }
  .slider__track.active__slide5 {
    transform: translateX(-50%);
  }
  .slider__track.active__slide6 {
    transform: translateX(-62.5%);
  }
  .slider__track.active__slide7 {
    transform: translateX(-75%);
  }
  .slider__track.active__slide8 {
    transform: translateX(-87.5%);
  }

  .carousel-containe {
    display: flex;
    overflow-x: scroll; /* 水平スクロールを有効にする */
    scroll-snap-type: x mandatory; /* スナップを有効にする */
  }
  .carousel-slide {
    flex: 0 0 100%; /* 各スライドの幅を100%に設定 */
    width: 80%;
    scroll-snap-align: start; /* スナップ位置をスライドの開始位置に設定 */
  }
  .text-area-container {
    width: 100%;
    height: 200px; /* 例: テキストエリアの高さを設定 */
    padding: 30px 10px 10px 10px;
    box-sizing: border-box;
  }

  .textposition {
    background-color: #fff;
    text-align: center;
    padding: 10px 20px 60px 20px;
    margin: 20px 10px 10px 10px;
    border-radius: 10px;
  }
  .voice__name {
    font-size: large;
    margin-top: 10px;
  }
  .voice__pass {
    margin-top: 8px;
  }
  .voice__title {
    margin-top: 20px;
    color: #d90026;
    font-size: large;
  }
  .voice__text {
    margin-top: 15px;
    padding: 0 80px;
  }
  @media screen and (max-width: 767px) {
    .textposition {
      background-color: #fff;
      text-align: center;
      padding: 10px 10px 50px 10px;
      margin: 20px 5px 5px 5px;
      border-radius: 10px;
    }

    .voice__name {
      font-size: large;
      margin-top: 10px;
    }
    .voice__pass {
      margin-top: 8px;
    }
    .voice__title {
      margin-top: 20px;
      color: #d90026;
      font-size: large;
    }
    .voice__text {
      margin-top: 15px;
      padding: 0 10px;
    }
  }

  /* ページネーション */
  .slider-pagination {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    .pagination-item {
      width: 30px;
      height: 30px;
      background-color: rgba(255, 103, 103, 0.3);
      border-radius: 50%;
      margin: 0 8px;
    }
    .pagination-item.active {
      background-color: #ff0080;
    }
  }
}

.voice__imgarea {
  width: auto;
  height: 650px;
  object-fit: cover;
  overflow: hidden;
  margin-top: 10px;
  border-radius: 3%;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .voice__width {
    width: auto;
    object-fit: cover;
    margin: auto;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 3%;
  }
}
.slider__image {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  justify-content: center;
  margin: auto;
}

/********************************************************
 お問い合わせ
 *******************************************************/
.inquiry {
  text-align: center;
  font-weight: 600;
  font-size: 4rem;
  margin-top: 60px;
}
.inquiry__btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 20px;
  background-color: #fff3f3;
  padding: 10px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
  .inquiry {
    text-align: center;
    font-weight: 600;
    font-size: large;
    margin-top: 40px;
  }
  .inquiry__img {
    margin-top: 10px;
    width: 100%;
    gap: 5px;
  }
  .inquiry__btn {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 5px;
    background-color: #fff3f3;
    padding: 5px;
  }
}
.inquiry__btn--reset {
  background-color: #fff;
  margin: 20px 0 0 0;
  width: auto;
}
.bgcolor_syousai {
  background-color: #f7f7f7;
  padding: 5px;
  margin: 10px, 0;
}

.course_courselist_section {
  margin: 0;
  padding: 0;
}

.contents_title {
  margin: 20px;
}

.schedule {
  text-align: center;
}

.wari {
  display: block;
  justify-content: center;
  margin: 20px auto;
}

/*************************************
 btn 
 *************************************/
.newBtn {
  display: flex;
  justify-content: center;
  height: auto;
  padding: 10px 0;
  margin: 30px auto 0 auto;
  gap: 30px;
  position: relative;
}

.newBtn__box {
  width: 200px;
  padding: 10px;
  border: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.box--color1 {
  background-color: #f39800;
}
.box--color2 {
  background-color: #00a0e9;
}
.box--color3 {
  background-color: #ad059d;
}

.siryoseikyu {
  max-width: 150px;
  height: 150px;
  margin: 0 auto;
  background-image: url(/course/1k/1s_lp/image/r7_1sLp/siryoseikyu-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.zyukousoudan {
  max-width: 150px;
  height: 150px;
  margin: 0 auto;
  background-image: url(/course/1k/1s_lp/image/r7_1sLp/zyukousoudan-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.zyukouyoyaku {
  max-width: 150px;
  height: 150px;
  margin: 0 auto;
  background-image: url(/course/1k/1s_lp/image/r7_1sLp/zyukouyoyaku-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.newBtn__txt {
  text-align: center;
  margin-top: 5px;
  font-size: 2.3rem;
  font-weight: 700;
  font-family: Arial;
  color: #ffffff;
}
.newBtn__txt:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .newBtn__box {
    width: 120px;
    padding: 10px;
  }
  .newBtn {
    display: flex;
    justify-content: center;
    height: auto;
    padding: 10px 0;
    margin: 30px auto 0 auto;
    gap: 10px;
    position: relative;
  }
  .siryoseikyu {
    max-width: 80px;
    height: 80px;
  }

  .zyukousoudan {
    max-width: 80px;
    height: 80px;
  }

  .zyukouyoyaku {
    max-width: 80px;
    height: 80px;
  }
}
