body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9722222222vw;
  font-weight: 400;
}

.scroll-up {
  transition: 1.8s ease-in-out;
  transform: translateY(0.6944444444vw);
  opacity: 0;
}

.scroll-up.on {
  transform: translateY(0);
  opacity: 1;
}

.c-button {
  background-color: #1C3A02;
}

.c-button-group {
  display: flex;
  justify-content: end;
  gap: 0.6944444444vw;
  position: fixed;
  top: 0;
  right: 3%;
  z-index: 999;
}

.c-button__text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15.625vw;
  height: 4.1666666667vw;
  flex-direction: column;
  color: #fff;
  position: relative;
  padding-left: 1.3888888889vw;
}

.c-button__text::before {
  position: absolute;
  content: "";
  background-image: url(../img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.875vw;
  height: 1.875vw;
  top: 1.1805555556vw;
  left: 0.6944444444vw;
}

.c-button--off {
  background-color: #1C3A02;
  line-height: 0.7;
}

.c-button--off .c-button__text {
  padding-left: 0.6944444444vw;
}

.c-button--off .c-button__text::before {
  left: 0.688889vw;
}

.c-button--corporate {
  background-color: #000;
}

.p-mv img {
  width: 100%;
}

.p-scroll {
  position: relative;
  z-index: 1;
}

.p-scroll::before {
  position: absolute;
  content: "SCROLL";
  color: #fff;
  font-family: "Lexend Zetta", sans-serif;
  font-size: 0.6944444444vw;
  top: -2.7777777778vw;
  right: 0;
  left: 0;
  text-align: center;
  letter-spacing: 0.08em;
}

.p-scroll::after {
  position: absolute;
  content: "";
  width: 0.0694444444vw;
  height: 0;
  background-color: #fff;
  top: -1.3888888889vw;
  right: 0;
  left: 0;
  margin: 0 auto;
  animation: lineDown 3s ease-in-out infinite;
}

@keyframes lineDown {
  0% {
    height: 0;
    top: -1.3888888889vw;
    opacity: 1;
  }

  50% {
    height: 2.7777777778vw;
    top: -1.3888888889vw;
    opacity: 1;
  }

  100% {
    height: 2.7777777778vw;
    opacity: 0;
  }
}

.p-about {
  color: #fff;
  background: url(../img/bg_about.png) no-repeat 0 0/cover;
  width: 100%;
}

.p-about__inner {
  border-left: 0.0694444444vw solid #fff;
  margin-left: 4.8611111111vw;
}

.p-about__group {
  width: 34.1666666667vw;
  padding-top: 7.9861111111vw;
  position: relative;
  z-index: 1;
  height: 52.7777777778vw;
  margin-left: 2.0833333333vw;
}

.p-about__title {
  font-size: 1.6666666667vw;
  padding-bottom: 0.3472222222vw;
  line-height: 1.5;
}

.p-about__text {
  line-height: 2;
}

.p-ticket {
  color: #fff;
  background: url(../img/bg_ticket.png) no-repeat 0 0/cover;
  width: 100%;
}

.p-ticket__inner {
  display: flex;
  gap: 6.9444444444vw;
  padding-left: 28.4722222222vw;
  padding-top: 5.2777777778vw;
  padding-bottom: 5.5555555556vw;
}

.p-ticket__title {
  font-size: 1.6666666667vw;
  font-family: "Lexend Zetta", sans-serif;
}

.p-ticket__price {
  font-family: "Lexend Zetta", sans-serif;
  font-size: 4.8611111111vw;
  letter-spacing: -0.09em;
}

.p-ticket__price .yen {
  font-size: 3.3333333333vw;
}

.p-ticket__price .tax {
  font-size: 0.9722222222vw;
  letter-spacing: initial;
}

.p-ticket__announce-title {
  position: relative;
  font-size: 1.25vw;
  padding-left: 3.6111111111vw;
  padding-top: 2.0833333333vw;
  font-weight: 700;
}

.p-ticket__announce-title::before {
  position: absolute;
  content: "";
  background-image: url(../img/mark.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.3611111111vw;
  height: 2.0833333333vw;
  top: 1.8055555556vw;
  left: 0.5555555556vw;
}

.p-ticket__list {
  padding-left: 1.6666666667vw;
  padding-top: 1.25vw;
}

.p-ticket__list li {
  position: relative;
  padding-bottom: 0.5555555556vw;
}

.p-ticket__list li::before {
  position: absolute;
  content: "";
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  background-color: #fff;
  border-radius: 50%;
  top: 0.2083333333vw;
  left: -1.3888888889vw;
}

.p-ticket__discount img {
  height: 17.1527777778vw;
}

.p-img img {
  width: 100%;
}

.p-loop {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.p-loop__wrapper {
  display: flex;
  animation: loop 10s linear infinite;
  padding: 0.2777777778vw 0;
}

.p-loop__text {
  font-size: 5vw;
  flex-shrink: 0;
  padding-right: 2rem;
  font-family: "Lexend Zetta", sans-serif;
  color: #EBEBEB;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.p-timetable {
  padding: 6.5277777778vw 0 5.5555555556vw;
  background-color: #D6C9C9;
}

.p-timetable__title {
  padding-bottom: 2.2916666667vw;
  text-align: center;
  font-family: "Lexend Zetta", sans-serif;
  font-size: 3.3333333333vw;
  letter-spacing: 0.3rem;
}

.p-timetable__wrapper {
  display: flex;
  justify-content: center;
  gap: 3.4722222222vw;
}

.p-timetable__date {
  font-size: 2.7777777778vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lexend Zetta", sans-serif;
  padding-bottom: 0.6944444444vw;
}

.p-timetable__date span {
  font-size: 1.1111111111vw;
  position: relative;
  top: 0.1388888889vw;
  padding-left: 0.3472222222vw;
}

.p-timetable__day1 {
  padding-left: 3.125vw;
  border-left: 0.0694444444vw solid #000;
}

.p-timetable__day2 {
  padding: 0 3.125vw;
  border-left: 0.0694444444vw solid #000;
  border-right: 0.0694444444vw solid #000;
}

.p-time {
  text-align: center;
  padding-bottom: 1.3888888889vw;
  padding-top: 2.7777777778vw;
  font-family: "Lexend Zetta", sans-serif;
  font-size: 1.25vw;
}

.p-time--no-pt {
  padding-top: initial;
}

.p-card {
  background-color: #fff;
  border: 0.0694444444vw solid #000;
  width: 35.5555555556vw;
  box-shadow: 0.6944444444vw 0.6944444444vw 0.6944444444vw 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 1.3888888889vw;
}

.p-card:last-child {
  margin-bottom: initial;
}

.p-card__image img {
  width: 35.4166666667vw;
  height: 19.9305555556vw;
  object-fit: cover;
}

.p-card__title {
  padding: 1.25vw 1.7361111111vw;
  font-size: 1.6666666667vw;
  font-weight: 600;
  line-height: 1.4;
  height: 11.805556vw;
}

.p-card__button--link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3D97BD;
  color: #fff;
  height: 4.1666666667vw;
  font-size: 1.25vw;
  font-weight: 600;
}

.p-instructor {
  display: flex;
  gap: 1.3888888889vw;
  padding: 0 1.7361111111vw 2.0833333333vw 1.7361111111vw;
}

.p-instructor__label {
  background-color: #1C3A02;
  color: #fff;
  font-size: 1.1111111111vw;
  padding: 0.4166666667vw 0.6944444444vw;
}

.p-instructor__name {
  font-size: 1.6666666667vw;
}

.p-join {
  background-color: #FFFCD5;
  padding: 3.8888888889vw 0 5.5555555556vw;
}

.p-join__inner {
  text-align: center;
}

.p-join__title {
  padding-bottom: 0.2083333333vw;
  border-bottom: 0.1388888889vw solid #000;
  font-weight: 600;
  width: 8.3333333333vw;
  margin: 0 auto;
  margin-bottom: 1.8055555556vw;
  font-size: 1.9444444444vw;
}

.p-step {
  width: 43.8888888889vw;
  margin: 0 auto;
}

.p-step__first {
  padding-bottom: 6.1111111111vw;
  position: relative;
}

.p-step__first::after {
  position: absolute;
  content: "";
  background-image: url(../img/arrow-step.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 1.9444444444vw;
  height: 0.9027777778vw;
  bottom: 2.4305555556vw;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.p-step__title {
  font-size: 2.2222222222vw;
  font-weight: 600;
  padding-bottom: 1.3888888889vw;
}

.p-step__text {
  padding-bottom: 1.25vw;
  border-bottom: 0.0694444444vw solid #000;
  text-align: left;
  line-height: 1.5;
}

.p-step__number {
  padding-bottom: 1.9444444444vw;
  font-family: "Antonio", sans-serif;
  font-size: 4.4444444444vw;
}

.p-step__announce {
  padding-top: 1.3888888889vw;
  line-height: 1.5;
  text-align: left;
  font-size: 0.8333333333vw;
}

.p-step__announce-title {
  padding-bottom: 0.6944444444vw;
  text-align: center;
}

.p-step__announce-text {
  text-align: left;
}

.l-footer {
  background-color: #1C3A02;
  color: #fff;
  text-align: center;
  padding: 4.5138888889vw 0 5.3472222222vw;
}

.l-footer__cgworld {
  padding: 1.1111111111vw 0 2.6388888889vw;
  font-family: "Lexend Zetta", sans-serif;
  font-size: 1.25vw;
}

.l-footer__text {
  line-height: 1.6;
  padding: 1.9444444444vw 0 1.1111111111vw;
}

.l-footer__copyright {
  font-size: 0.8333333333vw;
}

.l-footer__logo img {
  width: 20.1388888889vw;
}

.l-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.0833333333vw;
  padding-right: 1.3888888889vw;
}

.p-sns-icon--facebook img {
  width: 4.6527777778vw;
}

.p-sns-icon--x img {
  width: 2.7777777778vw;
}

@media screen and (min-width: 441px) {

  .u-br-sp,
  .c-button-group--sp,
  .p-mv-sp,
  .p-ticket__discount-img-sp {
    display: none;
  }
}

@media screen and (max-width: 440px) {
  body {
    font-size: 3.5897435897vw;
  }

  .p-mv,
  .p-ticket__discount-img {
    display: none;
  }

  .c-button-group {
    display: none;
  }

  .c-button-group--sp {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    color: #fff;
    z-index: 999;
  }

  .c-button-sp {
    background-color: #152F02;
    width: 50vw;
  }

  .c-button-sp--corporate {
    background-color: #111313;
    width: 50vw;
    border-left: 0.2564102564vw solid #fff;
  }

  .c-button-sp__text {
    height: 20.5128205128vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 0.7;
    position: relative;
    z-index: 999;
  }

  .c-button-sp__text::before {
    background-image: initial;
  }

  .p-mv-sp img {
    width: 100%;
  }

  .p-scroll::before {
    font-size: 2.5641025641vw;
    top: -108.9743589744vw;
  }

  .p-scroll::after {
    width: 0.2564102564vw;
    height: 0;
    top: -105.1282051282vw;
  }

  @keyframes lineDown {
    0% {
      height: 0;
      top: -105.1282051282vw;
      opacity: 1;
    }

    50% {
      height: 10.2564102564vw;
      top: -105.1282051282vw;
      opacity: 1;
    }

    100% {
      height: 10.2564102564vw;
      opacity: 0;
    }
  }

  .p-about {
    background: url(../img/bg_about_sp.png) no-repeat 0 0/cover;
    height: 200vw;
  }

  .p-about__inner {
    height: 200vw;
    margin-left: 3.8461538462vw;
  }

  .p-about__group {
    width: 84.6153846154vw;
    margin: 0 auto;
    padding-top: 10.2564102564vw;
    height: initial;
  }

  .p-about__title {
    font-size: 4.6153846154vw;
    padding-bottom: 4.1025641026vw;
    line-height: 1.5;
  }

  .p-about__text {
    line-height: 1.85;
  }

  .p-ticket {
    color: #fff;
    background: url(../img/bg_ticket_sp.png) no-repeat 0 0/cover;
    height: 232.8205128205vw;
  }

  .p-ticket__inner {
    display: block;
    padding-left: initial;
    padding-top: 73.5897435897vw;
    padding-bottom: initial;
  }

  .p-ticket__title {
    font-size: 6.1538461538vw;
    text-align: center;
  }

  .p-ticket__price {
    font-size: 17.9487179487vw;
    letter-spacing: -0.13em;
    padding-left: 4.6153846154vw;
  }

  .p-ticket__price .yen {
    font-size: 12.3076923077vw;
  }

  .p-ticket__price .tax {
    font-size: 3.5897435897vw;
  }

  .p-ticket__announce-title {
    font-size: 4.6153846154vw;
    padding-left: 10.2564102564vw;
    padding-top: 4.358974359vw;
    text-align: center;
  }

  .p-ticket__announce-title::before {
    width: 8.7179487179vw;
    height: 7.6923076923vw;
    top: 2.5641025641vw;
    left: 17.9487179487vw;
  }

  .p-ticket__list {
    padding-left: 6.1538461538vw;
    padding-top: 4.6153846154vw;
    width: 89.7435897436vw;
    margin: 0 auto;
  }

  .p-ticket__list li {
    padding-bottom: 2.0512820513vw;
    line-height: 1.25;
  }

  .p-ticket__list li::before {
    width: 3.0769230769vw;
    height: 3.0769230769vw;
    left: -5.1282051282vw;
    top: 0.7692307692vw;
  }

  .p-ticket__discount {
    width: 91.5384615385vw;
    margin: 0 auto;
    padding-top: 8.4615384615vw;
  }

  .p-ticket__discount img {
    height: initial;
    width: 91.5384615385vw;
  }

  .p-loop__wrapper {
    padding: 1.0256410256vw 0;
  }

  .p-loop__text {
    font-size: 6.1538461538vw;
    padding-right: 2rem;
  }

  .p-timetable {
    padding: 9.2307692308vw 0 20.5128205128vw;
  }

  .p-timetable__title {
    padding-bottom: initial;
    font-size: 8.2051282051vw;
    letter-spacing: 0.1rem;
  }

  .p-timetable__wrapper {
    display: block;
  }

  .p-timetable__date {
    font-size: 8.9743589744vw;
    padding-bottom: 2.5641025641vw;
    padding-top: 6.6666666667vw;
  }

  .p-timetable__date span {
    font-size: 3.5897435897vw;
    top: 0.5128205128vw;
    padding-left: 1.2820512821vw;
  }

  .p-timetable__day1 {
    padding-left: initial;
    border-left: initial;
  }

  .p-timetable__day2 {
    padding: initial;
    border-left: initial;
    border-right: initial;
  }

  .p-timetable .u-pt-57 {
    padding-top: 14.6153846154vw;
  }

  .p-time {
    padding-bottom: 4.358974359vw;
    padding-top: 10.2564102564vw;
    font-size: 3.8461538462vw;
  }

  .p-time--no-pt {
    padding-top: initial;
  }

  .p-card {
    margin: 0 auto;
    width: 87.1794871795vw;
  }

  .p-card__image img {
    width: 86.6666666667vw;
    height: auto;
  }

  .p-card__title {
    padding: 2.8205128205vw 4.1025641026vw 3.5897435897vw;
    font-size: 4.1025641026vw;
    line-height: 1.4;
    height: initial;
  }

  .p-card__button--link {
    height: 10.2564102564vw;
    font-size: 3.5897435897vw;
  }

  .p-instructor {
    gap: 5.1282051282vw;
    padding: 0 4.1025641026vw 5.1282051282vw 4.1025641026vw;
  }

  .p-instructor__label {
    font-size: 2.5641025641vw;
    padding: 1.5384615385vw 2.5641025641vw;
  }

  .p-instructor__name {
    font-size: 4.1025641026vw;
  }

  .p-join {
    padding: 12.8205128205vw 0 20.5128205128vw;
  }

  .p-join__title {
    padding-bottom: 0.7692307692vw;
    border-bottom: 0.5128205128vw solid #000;
    width: 27.1794871795vw;
    margin-bottom: 6.6666666667vw;
    font-size: 6.1538461538vw;
  }

  .p-step {
    width: 84.6153846154vw;
  }

  .p-step__first {
    padding-bottom: 17.1794871795vw;
  }

  .p-step__first::after {
    width: 7.1794871795vw;
    height: 3.3333333333vw;
    bottom: 6.1538461538vw;
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .p-step__title {
    font-size: 8.2051282051vw;
    padding-bottom: 5.1282051282vw;
  }

  .p-step__text {
    padding-bottom: 5.8974358974vw;
    border-bottom: 0.2564102564vw solid #000;
  }

  .p-step__number {
    padding-bottom: 7.1794871795vw;
    font-family: "Antonio", sans-serif;
    font-size: 16.4102564103vw;
  }

  .p-step__announce {
    padding-top: 5.1282051282vw;
    line-height: 1.5;
    text-align: left;
    font-size: 3.0769230769vw;
  }

  .p-step__announce-title {
    padding-bottom: 2.5641025641vw;
  }

  .l-footer {
    padding: 17.9487179487vw 0 38.4615384615vw;
  }

  .l-footer__cgworld {
    padding: 4.1025641026vw 0 9.7435897436vw;
    font-size: 4.6153846154vw;
  }

  .l-footer__text {
    line-height: 1.6;
    padding: 7.1794871795vw 0 4.1025641026vw;
  }

  .l-footer__copyright {
    font-size: 3.0769230769vw;
  }

  .l-footer__logo img {
    width: 74.358974359vw;
  }

  .l-footer__sns {
    gap: 7.6923076923vw;
    padding-right: 5.1282051282vw;
  }

  .p-sns-icon--facebook img {
    width: 17.1794871795vw;
  }

  .p-sns-icon--x img {
    width: 10.2564102564vw;
  }
}

/*# sourceMappingURL=style.css.map */