body {
  color: #26455c;
  line-height: 1.85714;
  overflow-wrap: break-word;
  word-wrap: break-word;
  letter-spacing: .05vw;
}

.p-container {
  padding: 0 80px;
}

.font-bold {
  font-weight: bold;
}

.p-breadcrumb {
  background: transparent;
}

.p-content__header {
  padding: 80px 80px;
  font-family: "Noto Serif JP", serif;
}

.font-yu-mincho {
  font-family: "æ¸¸æ˜Žæœä½“", "æ¸¸æ˜Žæœ", "Yu Mincho", YuMincho, serif;
}

.font-noto {
  font-family: "Noto Sans JP";
}

.p-content__body {
  margin: 0;
}

.bg-blue {
  background-color: #1883C3 !important;
  color: #fff !important;
}

.bg-blue-2 {
  background-color: #3D98CD !important;
  color: #fff !important;
}

.color-blue {
  color: #1978B1;
}

.color-red {
  color: #EF5093;
}

.color-white {
  color: #fff !important;
}

.teachers-lists p {
  font-size: 14px;
}

.teachers-lists .tag {
  font-size: 14px;
}

@media screen and (max-width: 321px) {
  .p-content__header {
    padding: 40px 0px;
  }

}

@media screen and (max-width: 959px) {
  .p-content__header {
    padding: 40px 10px;
  }
}

/* navigation */
.p-nav {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 80px;
}

.p-nav__link {
  width: 300px;
  height: 68px;
  background-color: #fff;
  text-align: center;
  color: #1978B1;
  transition: 0.4s ease;
  padding: 0 20px;
  line-height: 68px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.p-nav__link:hover {
  background-color: #1883C3;
  color: #fff;
}

.p-nav a:nth-child(1) div {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.p-nav a:nth-child(2) div {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}


@media screen and (max-width: 959px) {
  /* .p-nav__link {
        width: 170px;
        height: 55px;
        font-size: 12px;
        line-height: 55px;
    } */

  .p-nav {
    /* padding: 0px 12px; */
    justify-content: left;
    width: 100%;
    column-gap: 1px;
  }

  .p-nav .p-nav__link {
    line-height: 17px;
    width: 100%;
    font-size: 12px;
  }

  .p-nav .p-nav__anchor:first-child {
    flex-basis: 50%;
  }

  .p-nav .p-nav__anchor:nth-child(2) {
    flex-basis: 50%
  }

}

@media screen and (max-width: 321px) {
  .p-nav__link {
    font-size: 9px !important;
    width: 135px;
  }
}


/* end navigation */

.p-content__body {
  margin: 0;
}

.reason-box {
  /* margin-bottom: 35px; */
  padding: 70px;
}

.p-section-header__container {
  text-align: center;
}

.reason-box .p-section__header--type1 .pict {
  width: 180px;
  margin-right: 30px;
}

.p-section__header--type1 {
  display: inline-flex;
}

.p-section__header--type1 .p-section__header__text {
  font-size: 36px;
  text-align: left;
  padding-top: 30px;
  font-family: "Noto Serif JP", serif;
}

.p-section__header__text .text-big {
  font-size: 54px;
}

.p-section__sub-header {
  margin-top: 50px;
  font-size: 18px;
  text-align: center;
}

.p-section__sub-header .color-red {
  font-size: 24px;
}

.body-section {
  padding-bottom: 120px;
}

.body-section:not(:first-child) {
  margin-top: 24px;
}

.last-section.body-section {
  margin-bottom: 0%;
}

@media screen and (max-width: 959px) {
  .p-content__body {
    margin: unset;
  }

  .reason-box {
    padding: 20px;
  }

  .p-section__header--type1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .reason-box .p-section__header--type1 .pict {
    margin: unset;
    height: 160px;
    width: 160px;
  }

  .p-section__header--type1 .p-section__header__text {
    font-size: 30px;
    text-align: center;
    line-height: 40px;
  }

  .p-section__header__text .text-big {
    font-size: 44px;
  }

  .p-section__sub-header {
    font-size: 15px;
  }

  .p-section__sub-header .color-red {
    font-size: 20px;
  }

  .body-section {
    padding-bottom: 64px;
  }
}

.teachers-lists {
  margin-bottom: 50px;
  text-align: left;
}

.teachers-lists .comment {
  font-size: 14px !important;
}

.accordion {
  background: #f2f4f5;
  border: 1px solid #D1D4D7;
  border-radius: 4px;
  height: 56px;
  margin: 0px auto 10px;
  text-align: center;
  padding: 15px 20px;
  cursor: pointer;
  color: #1978b1;
}

.accordion-icon {
  float: right;
  font-size: 30px;
  margin-top: -15px;
}

#accordion-content.show {
  display: block;
  opacity: 1;
}

#accordion-content.hide {
  display: none;
  opacity: 0;
}

#accordion-content {
  transition: 1s ease-in;
  animation: fadeIn 0.7s;
}

.c-button__label.trainer {
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 959px) {
  .accordion {
    height: 50px;
    font-size: 12px;
  }

  .accordion-icon {
    font-size: 25px;
  }

  .teachers-lists {
    margin-bottom: 0px;
  }

  .c-button__label.trainer {
    font-size: 12px;
  }
}


#section-2 .p-section-body__container {
  margin-top: 50px;
}

.carousel-container {
  /* height: 633px; */
  background-color: #F1F8FC;
  justify-content: center;
}

.carousel-title {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  padding: 20px;
}

.carousel-wrapper {
  height: 460px;
}

.carousel-slider img,
.carousel-slider--right img {
  height: 100px;
  width: 50px;
}

.carousel-slider--left,
.carousel-slider--right {
  display: flex;
  width: 5%;
  height: 100%;
  align-items: center;
}

.carousel-slider--left {
  float: left;
  /* padding-left: 10px; */
}

.carousel-slider--right {
  float: right;
}

.carousel-content {
  width: 89%;
  /* height: 550px; */
  float: left;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 10px;
}

.carousel-content__wrapper {
  width: 1800px;
  height: auto;
  margin: 0 auto;
}

.carousel-card {
  background-color: #fff;
  height: auto;
  padding: 15px;
  width: 424px;
  border: 1px solid #DEEEF7;
  margin-right: 20px;
  float: left;
}

.carousel-card__image {
  height: 120px;
  text-align: center;
  padding-top: 20px;
}

.carousel-card__image img {
  height: 120px;
  width: 120px;
  border-radius: 120px;
}

.carousel-card__text {
  white-space: normal;
  text-align: left;
  padding: 40px;
  height: 330px;
}

.carousel-card .voice-box__lead {
  padding: 40px 0 0 0;
}

.carousel-card__text p {
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.carousel-card__footer {
  font-weight: bold;
  font-size: 14px;
  text-align: right;
  padding-right: 40px;
  padding-bottom: 30px;
  color: #26455c;
}

#carousel-1,
#carousel-1-sp {
  margin-bottom: 24px;
}

@media screen and (max-width: 1025px) {
  .carousel-slider--right {
    float: unset;
  }

  .carousel-content {
    width: 85%;
  }
}

@media screen and (max-width: 959px) {
  .carousel-container {
    height: 445px;
  }

  .carousel-wrapper {
    height: 500px;
  }

  .carousel-title {
    font-size: 18px;
  }

  .carousel-content {
    width: 290px;
    padding-left: unset;
    margin-left: calc((100% - 290px) / 2);
  }

  .carousel-content__wrapper {
    width: 1290px;
    position: relative;
  }

  .carousel-card {
    width: 290px;
    margin-right: 35px;
  }

  .carousel-card.last-card {
    margin-right: 0px;
  }

  .carousel-card__image img {
    height: 92px;
    width: 92px;
    border-radius: 92px;
  }

  .carousel-card__text p {
    font-size: 14px !important;
  }

  .carousel-card__text {
    padding: 10px;
    height: 250px;
  }

  .carousel-card__footer {
    padding-right: 20px;
    padding-bottom: 10px;
    font-size: 12px;
  }

  .sp-slider-controls {
    width: 290px;
  }

  .carousel-slider img {
    height: 50px;
    width: 30px;
  }

  .carousel-slider--right {
    float: right;
    margin-right: 25px;
  }


}


@media screen and (max-width: 321px) {
  .carousel-content__wrapper {
    width: 1110px;
    margin-left: 3px;
  }

  .carousel-card {
    width: 250px;
  }

  .carousel-card__text p {
    font-size: 12px !important;
  }

  .carousel-card__text {
    padding: 10px;
    height: 225px;
  }

  .carousel-card__footer {
    padding-right: 20px;
    font-size: 12px;
  }

  .sp-slider-controls {
    width: 250px;
  }
}

.voice-box__layout__footer.voice-box__layout__footer--hidden-pc {
  padding: 16px 10px !important;
}

.sp-slider-controls {
  clear: both;
  margin: 0 auto;
}

.sp-slider-page {
  float: left;
  width: 75%;
  text-align: center;
  padding-top: 10px;
  margin-left: 5%;
  display: inline-flex;
  justify-content: center;
  height: 45px;
  align-items: center;
}

.circle-page {
  background-color: #D1D4D7;
  height: 6px;
  width: 6px;
  border-radius: 6px;
  margin-right: 10px;
}

.sp-slider-page div:nth-child(4) {
  margin-right: 0px;
}

.circle-page-blue {
  background-color: #1883C3;
}

.trainer-banner-container {
  width: 100%;
  margin-top: 24px;
  background: rgb(41 79 107);
}

.banner-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-image img {
  height: 100%;
  width: 100%;
  opacity: 0.3;
}

.trainer-banner-container.is-sp .banner-image {
  background-image: url(/assets/images/banner/pc/bnr_trainerlist.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  height: 300px;
}

.banner-content {
  position: absolute;
  z-index: 1;
  width: 60%;
  left: 20%;
  color: #fff;
  text-align: center;
  font-size: 24px;
  padding-top: 8%;
}

.banner-content i {
  font-size: 50px !important;
}

.banner-content .btn_icon,
.banner-button-white {
  font-size: 14px !important;
}

.banner-button-white {
  background-color: #fff;
  width: 270px;
  color: #1978B1;
  padding: 10px 35px;
  border-radius: 25px;
  margin: 0 auto;
  transition: 0.5s ease;
  cursor: pointer;
}

.banner-button-white:hover {
  background-color: #1883C3;
  color: #fff;
}

@media screen and (max-width: 1025px) {
  .banner-content i {
    font-size: 44px !important;
  }

  .banner-content {
    font-size: 14px;
    padding-top: 5%;
  }

}

@media screen and (max-width: 959px) {
  .trainer-banner-container {
    padding-bottom: 40px;
  }

  .banner-image {
    height: unset;
  }

  .banner-image img {
    opacity: 1;
    height: 200px;
  }

  .banner-content {
    position: unset;
    width: unset;
    font-size: 16px;
    padding: 30px 10px 10px;
    line-height: 25px;
  }

  .banner-content i {
    font-size: 30px !important;
  }
}


@media screen and (max-width: 769px) {
  .banner-image img {
    height: 335px;
  }
}

@media screen and (max-width: 451px) {
  .banner-image img {
    height: 200px;
  }
}

.banners-container {
  margin: 0 80px;
}

.recruitment-process-container {
  width: 950px;
  margin: 0 auto;
}

.recruitment-process__title {
  font-size: 20px;
  padding: 10px;
  text-align: center;
  background-color: #F1F8FC;
  font-weight: 400;
  margin-top: 50px;
  margin: 14px auto 0px;
  width: 100%;
}

.recruitment-process__row {
  height: 200px;
  background-color: #F1F8FC;
  width: 100%;
  margin: 5px auto;
}

.recruitment-process__content-wrapper {
  position: absolute;
  height: 200px;
  width: 35rem;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.recruitment-process__content-wrapper::before {
  font-size: 2rem;
  background-color: #DEEEF7;
  color: #26455C;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
}

.recruitment-process__content-wrapper.process-num1::before {
  content: '1';
}

.recruitment-process__content-wrapper.process-num2::before {
  content: '2';
}

.recruitment-process__content-wrapper.process-num3::before {
  content: '3';
}

.recruitment-process__content-wrapper.process-num4::before {
  content: '4';
}

.recruitment-process__content-wrapper.process-num5::before {
  content: '5';
}

.recruitment-process__content-wrapper.process-num6::before {
  content: '6';
}

.recruitment-process__content-wrapper.process-num7::before {
  content: '7';
}

.recruitment-process__image {
  height: 200px;
  width: 355px;

}

.recruitment-process__image-container {
  height: 200px;
  background-color: #fff;
  width: 355px;
  float: right;
}

.recruit-text-content {
  font-size: 14px;
  text-align: left;
  color: #26455C;
  padding-left: 60px;
}

.recruit-text-content span {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 5px;
  display: block;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 959px) {
  .recruitment-process-container {
    width: 100%;
  }

  .recruitment-process__title {
    font-size: 18px;
    line-height: 23px;
    margin-top: 48px;
  }

  .recruitment-process__row {
    height: 141px;
  }

  .recruitment-process__image,
  .recruitment-process__image-container {
    height: 100px;
    width: 100px;
    object-fit: cover;
  }

  .recruitment-process__image-container {
    height: 141px;
  }

  .recruit-text-content {
    padding-left: 20px;
    font-size: 12px;
    padding-right: 25px;
    line-height: 19px;
  }

  .recruit-text-content span {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 415px) {
  .recruitment-process__row,
  .recruitment-process__image-container {
    height: 175px;
  }
}

@media screen and (max-width: 1025px) {
  .recruit-text-content span {
    font-size: 17px;
  }
}

@media screen and (max-width: 321px) {

  .recruitment-process__row,
  .recruitment-process__image-container {
    height: 200px;
  }
}

@media screen and (max-width: 281px) {
  .recruitment-process__row {
    height: 167px;
  }

  .recruitment-process__image-container {
    height: 167px;
    width: 60px;
  }

  .recruit-text-content {
    padding-right: 0px;
  }

  .recruitment-process__image {
    height: 60px;
    width: 60px;
  }

  .recruit-text-content {
    font-size: 11px;
  }

  .recruit-text-content span {
    font-size: 18px;
  }
}

/* --------------------------------------- */
@media screen and (max-width: 768px) {

  /* 7th Block */
  .recruitment-process__body .recruitment-process__row:nth-child(13),
  .recruitment-process__body .recruitment-process__row:nth-child(13) .recruitment-process__image-container {
    height: 225px;
  }
}

@media screen and (max-width: 760px) {
  .trainer-banner-container.is-sp .banner-image {
    height: 200px;
  }
}

@media screen and (max-width: 541px) {

  .recruitment-process__body .recruitment-process__row:nth-child(1),
  .recruitment-process__body .recruitment-process__row:nth-child(1) .recruitment-process__image-container {
    height: 145px;
  }

  /* 2nd Block */
  .recruitment-process__body .recruitment-process__row:nth-child(3),
  .recruitment-process__body .recruitment-process__row:nth-child(3) .recruitment-process__image-container {
    height: 145px;
  }

  /* 3rd Block */
  .recruitment-process__body .recruitment-process__row:nth-child(5),
  .recruitment-process__body .recruitment-process__row:nth-child(5) .recruitment-process__image-container {
    height: 160px;
  }

  /* 4th Block */
  .recruitment-process__body .recruitment-process__row:nth-child(7),
  .recruitment-process__body .recruitment-process__row:nth-child(7) .recruitment-process__image-container {
    height: 150px;
  }

  /* 7th Block */
  .recruitment-process__body .recruitment-process__row:nth-child(13),
  .recruitment-process__body .recruitment-process__row:nth-child(13) .recruitment-process__image-container {
    height: 230px;
  }
}

@media screen and (max-width: 415px) {
  /* 1st Block */
  .recruitment-process__body .recruitment-process__row:nth-child(1),
  .recruitment-process__body .recruitment-process__row:nth-child(1) .recruitment-process__image-container {
    height: 180px;
  }

  /* 2nd Block */
  .recruitment-process__body .recruitment-process__row:nth-child(3),
  .recruitment-process__body .recruitment-process__row:nth-child(3) .recruitment-process__image-container {
    height: 200px;
  }

  /* 3rd Block */
  .recruitment-process__body .recruitment-process__row:nth-child(5),
  .recruitment-process__body .recruitment-process__row:nth-child(5) .recruitment-process__image-container {
    height: 220px;
  }

  /* 4th Block */
  .recruitment-process__body .recruitment-process__row:nth-child(7),
  .recruitment-process__body .recruitment-process__row:nth-child(7) .recruitment-process__image-container {
    height: 210px;
  }

    /* 5th Block */
  .recruitment-process__body .recruitment-process__row:nth-child(9),
  .recruitment-process__body .recruitment-process__row:nth-child(9) .recruitment-process__image-container {
    height: 210px;
  }

  /* 6th Block */
  .recruitment-process__body .recruitment-process__row:nth-child(11),
  .recruitment-process__body .recruitment-process__row:nth-child(11) .recruitment-process__image-container {
    height: 250px;
  }

  /* 7th Block */
  .recruitment-process__body .recruitment-process__row:nth-child(13),
  .recruitment-process__body .recruitment-process__row:nth-child(13) .recruitment-process__image-container {
    height: 250px;
  }
}

/* --------------------------------------- */
.triangle-down-container {
  text-align: center;
}

.triangle-down {
  width: 40px;
  height: 20px;
}

@media screen and (max-width: 959px) {
  .triangle-down {
    width: 20px;
    height: 10px;
  }
}

.badge-blue {
  height: 118px;
  width: 118px;
  border-radius: 50%;
  position: relative;
  background-color: #1883C3;
  color: #fff;
  text-align: center;
  top: calc(50% - (118px/2));
  left: 895px;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.badge-blue .yellow-text {
  color: #FFED56;
  font-size: 16px;
}

.badge-blue .yellow-text span {
  font-size: 37px;
}

@media screen and (max-width: 959px) {
  .badge-blue {
    height: 84px;
    width: 84px;
    font-size: 14px;
    line-height: 23px;
  }

  .badge-blue .yellow-text span {
    font-size: 33px;
  }
}

.badges-yellow-container {
  position: relative;
  width: 84px;
  left: 915px;
  display: inline-flex;
  flex-direction: column;
  top: 12px;
  text-align: center;
}

.badges-yellow-container .badges-yellow {
  background-color: #FFED56;
  color: #1883C3;
  height: 84px;
  width: 84px;
  border-radius: 50%;
  line-height: 16px;
  padding-top: 20px;
  font-weight: bold;
  font-size: 1.1rem;
}

.badges-yellow-container .badges-yellow:nth-child(3) {
  padding-top: 26px;
}

.badges-yellow-container .badges-spacer {
  width: 100%;
  height: 5px;
}

/* start - trainer listing & details page */
section[data-type="trainer"] section.p-section {
  padding: 0 !important;
  padding-top: 64px !important;
  position: initial;
}

section[data-type="trainer"] .p-content__header {
  padding: 0;
  padding-top: 64px;
  position: initial;
}

section[data-type="trainer"] .p-content__header[data-no-eyecatch]::before {
  display: none;
}

section[data-type="trainer"] .p-content__navigation {
  display: none;
}

section[data-type="trainer"] .p-section:first-child {
  padding: 0 !important;
  padding-bottom: 100px !important;
}

/* end - trainer listing & details page */

@media screen and (max-width: 959px) {

  /* start - trainer listing & details page */
  section[data-type="trainer"] .p-search {
    margin-right: -2rem;
    margin-left: -2rem;
  }

  section[data-type="trainer"] .p-section:first-child {
    padding-top: 0 !important;
  }

  /* end - trainer listing & details page */
}

.under-line {
  line-height: 0.8;
  padding: 3px;
}

.notice {
  padding: 0px;
}

/* .l-main {
    padding: 0px;
} */

@media screen and (max-width: 1300px) {
  .recruitment-process-container {
    width: 100%;
    margin: 0 auto;
  }

  .recruitment-process__content-wrapper {
    width: 35%;
  }

  .recruitment-process__row .badge-blue {
    left: calc(100% - (118px/2));
  }

  .badges-yellow-container {
    left: calc(100% - (84px/2));
  }
}

@media screen and (max-width: 1025px) {
  .recruitment-process-container {
    width: 100%;
  }

  .recruitment-process__content-wrapper {
    width: 31%;
  }

  .recruitment-process__row .badge-blue {
    left: calc(100% - (118px/2));
  }
}

@media screen and (max-width: 959px) {
  .p-container {
    padding: 0 12px;
  }

  .recruitment-process__content-wrapper {
    width: calc(100% - 160px);
    height: 141px;
    display: flex;
    align-items: center;
  }

  .recruitment-process__content-wrapper::before {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    left: -20px;
  }

  .recruitment-process__row .badge-blue {
    left: calc(100% - 84px);
    top: calc(100% - 84px);
  }

  .badges-yellow-container {
    height: 152px;
    width: 76px;
    font-size: 12px;
    top: 35px;
    line-height: 23px;
    left: calc(100% - 75px);
  }

  .badges-yellow-container .badges-yellow {
    height: 76px;
    width: 76px;
    padding-top: 15px;
    font-size: 0.6rem;
  }

  .badges-yellow-container .badges-yellow:nth-child(3) {
    padding-top: 22px;
  }

  .l-main {
    padding: 0 0 60px;
  }
}

@media screen and (max-width: 768px) {
  .badges-yellow-container {
    left: calc(100% - 75px);
    top: 75px;
  }
}

@media screen and (max-width: 541px) {
  .badges-yellow-container {
    left: 82%;
  }

  .recruitment-process__content-wrapper::before {
    font-size: 1rem;
    width: 30px;
    height: 30px;
    left: -15px;
  }

  .recruitment-process__content-wrapper {
    padding: 30px 10px 0;
  }
}

@media screen and (max-width: 415px) {
  .badges-yellow-container {
    left: 77.5%;
    top: 79px;
  }
}

@media screen and (max-width: 360px) {
  .badges-yellow-container {
    left: 74%;
    top: 100px;
  }
}

@media screen and (max-width: 345px) {
  .recruitment-process__content-wrapper {
    padding-top: 3.5rem;
  }
}

@media screen and (max-width: 321px) {
  .recruit-text-content span {
    font-size: 20px;
  }

  .badges-yellow-container {
    left: 70.5%;
    top: 139px;
  }
}

.p-nav-bottom {
  margin-top: 40px;
  margin-bottom: 0;
}

@media screen and (max-width: 959px) {
  .p-nav-bottom {
    margin-top: 32px;
    margin-bottom: 60px;
  }
}

.FixedArea.tb_pc .Button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    height: 56px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    cursor: pointer;
    background-color: #ffed56;
    color: #141821;
    transition: border .2s, transform .2s;
}
.FixedArea {
  position: fixed;
  z-index: 10;
  width: 100% !important;
  padding: 16px;
  background-color: #ebeef1;
  right: 0px !important;
  bottom: 0px;
  opacity: 10;
  pointer-events: none;
  transition: opacity .2s;
}

.trainer-button {
  display: flex;
  background: #ffed56;
  justify-content: center;
  align-items: center;
  color: #26455c !important;
  width: 100%;
  text-align: center;
  gap: 15px;
  padding: 20px;
  border-radius: 100px;
  max-width: 630px;
  margin: 0 auto;
  cursor: pointer;
}

.small-text-notice {
  padding-top: 24px;
  color: #26455C;
  font-size: 12px;
  line-height: 1.3rem;
}

.small-text-notice.sub{
  padding-top: 19px;
}

.triangle-down {
  display: block;
  margin: 0 auto 12px;
}

.teacher-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 600px) {
  #headerNav {
    padding-bottom: 0;
  }

  .small-text-notice {
    font-size: 10px;
  }
}
