/*
** main visual
*/

.p-mv {
  position: relative;
  background: var(--white);
  height: calc(100vh - 150px);
  overflow: hidden;
}
.p-mv__container {
  padding: 2rem 2rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-mv__image-swiper {
  width: 100%;
  height: 100%;
}
.p-mv__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.p-mv__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.p-mv__logo {
  max-width: 850px;
  width: 100%;
}
.p-mv__texts {
  position: absolute;
  left: 8rem;
  bottom: -0.7rem;
  width: 58.82%;
  max-width: 847px;
  z-index: var(--layer-content);
}
.p-mv__badge {
  position: absolute;
  bottom: 3.5rem;
  right: 4.5rem;
  width: 28.89%;
  max-width: 416px;
  z-index: var(--layer-content);
}
.p-mv__badge img {
  filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.35));
}
@media screen and (max-width: 1023px) {
  .p-mv__texts {
    left: 4.5rem;
  }
  .p-mv__copy {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
  }
  .p-mv__badge {
    bottom: 1.5rem;
  }
} 
@media screen and (max-width: 767px) {
  .p-mv {
    height: calc(100vh - 70px);
  }
  .p-mv__container {
    padding: 1rem 1rem 0;
  }
  .p-mv__container::before {
    content: "";
    position: absolute;
    left: 1rem;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    width: calc(100% - 2rem);
    height: auto;
    aspect-ratio: 370 / 152;
    z-index: var(--layer-content);
  }
  .p-mv__texts {
    bottom: -0.3rem;
    width: calc(100% - 2rem);
    left: 1rem;
  }
  .p-mv__copy {
    font-size: 1.5rem;
    margin-left: 1.5rem;
    margin-bottom: 1.8rem;
  }
  .p-mv__badge {
    bottom: 6rem;
    right: 3rem;
    width: 30.5%;
  }
  .p-mv__badge img {
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.35));
  }
}

/*
** campaign
*/
.p-campaign {
  margin-top: 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-campaign {
    margin-top: 5rem;
  }
}

/*
** about
*/
.p-about {
  margin-top: 16.5rem;
  background-image: url(../img/index/bg-about.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  position: relative;
  aspect-ratio: 480 / 437;
}
.p-about::before {
  content: "";
  position: absolute;
  right: 0;
  top: -150px;
  background-image: url(../img/index/bg-icon--about.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 260px;
  height: 351px;
}
.p-about__title {
  position: absolute;
  left: 50%;
  top: -54px;
  transform: translateX(-50%);
}
.p-about__container {
  padding: 0 4rem;
  max-width: 1440px;
  margin: 0 auto;
}
.p-about__points-wrapper {
  padding-top: 14rem;
}
.p-about__points {
  display: flex;
  flex-direction: column;
}
.p-about-point {
  display: flex;
  align-items: center;
  gap: 7rem;
}
.p-about-point--1 {
  max-width: 1250px;
  align-self: flex-start;
}
.p-about-point--2 {
  max-width: 1250px;
  margin-top: -8rem;
  align-self: flex-end;
}
.p-about-point--3 {
  max-width: 1140px;
  margin: -1.2rem auto 0;
}
.p-about-point--reverse {
  flex-direction: row-reverse;
}
.p-about-point__label {
  border-bottom: 1px solid var(--black);
  padding-bottom: 0.4rem;
  font-size: 1.3rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  display: inline-block;
}
.p-about-point__number {
  font-size: 2.7rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  display: inline-block;
  padding-bottom: 0.4rem;
  margin-left: 0.4rem;
}
.p-about-point__title {
  font-size: 3.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06rem;
  margin-top: 2rem;
}
.p-about-point__title--red {
  color: var(--red);
}
.p-about-point__description {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
  margin-top: 2rem;
}
.p-about-point__button {
  margin-top: 4rem;
  width: 300px;
  padding-left: 3rem;
}
@media screen and (max-width: 1279px) {
  .p-about::before {
    width: 12.5%;
    height: auto;
    aspect-ratio: 20 / 27;
    top: -80px;
  }
  .p-about__container {
    padding: 0 2rem;
  }
  .p-about__points {
    gap: 3rem;
  }
  .p-about-point {
    gap: 5rem;
  }
  .p-about-point__image {
    width: calc((100% - 5rem) / 2);
    max-width: 400px;
  }
  .p-about-point__text {
    width: 100%;
  }
  .p-about-point--2 {
    margin-top: 0;
  }
  .p-about-point--3 {
    max-width: none;
    margin: 0 auto;
  }
  .p-about-point__title {
    font-size: 2.8rem;
  }
  .p-kids-lesson__title {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .p-about {
    background-image: url(../img/index/bg-about--sp.webp);
    aspect-ratio: 390 / 779;
  }
  .p-about-point {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-about {
    margin-top: 8rem;
  }
  .p-about::before {
    background-image: url(../img/index/bg-icon-sp--about.svg);
    width: 70px;
    height: 161px;
    aspect-ratio: 70 / 160;
    top: -120px;
  }
  .p-about__title {
    top: -24px;
  }
  .p-about__container {
    padding: 0 2.5rem;
  }
  .p-about__points-wrapper {
    padding: 9rem 0 0;
  }
  .p-about__points {
    gap: 6rem;
  }
  .p-about-point__image {
    width: 100%;
  }
  .p-about-point__label {
    font-size: 1.2rem;
    padding-bottom: 0.3rem;
  }
  .p-about-point__number {
    font-size: 2.2rem;
    padding-bottom: 0;
  }
  .p-about-point__title {
    font-size: 2.2rem;
    letter-spacing: 0.02em;
    margin-top: 1.5rem;
  }
  .p-about-point__description {
    font-size: 1.4rem;
    letter-spacing: 0;
    margin-top: 1.5rem;
  }
  .p-about-point__button {
    margin: 4rem auto 0;
  }
}

/*
** KIDS LESSON
*/
.p-kids-lesson {
  background: var(--light-yellow);
  margin-top: 25rem;
  padding-bottom: 16.6rem;
  position: relative;
}
.p-kids-lesson::before {
  content: "";
  position: absolute;
  left: 0;
  top: -200px;
  background-image: url(../img/index/bg-icon--kids-lesson.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 256px;
  height: 351px;
}
.p-kids-lesson__title {
  position: absolute;
  left: 50%;
  top: -54px;
  transform: translateX(-50%);
}
.p-kids-lesson__content {
  padding-top: 15rem;
  position: relative;
  z-index: var(--layer-content);
}
.p-kids-lesson__main-lessons {
  display: flex;
  gap: 4rem;
}
.p-kids-lesson-main-item {
  width: calc((100% - 4rem) / 2);
  background: var(--white);
}
.p-kids-lesson-main-item__link {
  display: block;
  padding: 1.5rem;
  color: var(--black);
}
.p-kids-lesson-main-item__image {
  position: relative;
}
.p-kids-lesson-main-item__image img {
  width: 100%;
}
.p-kids-lesson-main-item__badge {
  position: absolute;
  right: 16.5px;
  bottom: -2.95rem;
  border: 2px solid var(--red);
  border-radius: 7px;
  background: var(--white);
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}
.p-kids-lesson-main-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-kids-lesson-main-item__name {
  font-size: 1.6rem;
	font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--red);
}
.p-kids-lesson-main-item__bottom {
  padding: 2.5rem 2.5rem 5rem;
}
.p-kids-lesson-main-item__title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.45;
  color: var(--black);
}
.p-kids-lesson-main-item__description {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  margin-top: 2.3rem;
  color: var(--text-gray);
}
.p-kids-lesson-others {
  margin-top: 4rem;
  padding-top: 4.5rem;
  padding-bottom: 8.1rem;
  background: var(--white);
}
.p-kids-lesson-others__title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02rem;
  text-align: center;
  padding-bottom: 2.6rem;
  margin-bottom: 3rem;
  position: relative;
}
.p-kids-lesson-others__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 6px;
  background: var(--red);
}
.p-kids-lesson-others__text {
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--text-gray);
}
.p-kids-lesson-others__list {
  max-width: 970px;
  width: 100%;
  margin: 3rem auto 0;
  padding: 0 2rem;
}
.p-kids-lesson__button {
  margin: 5.5rem auto 0;
  width: 300px;
  padding-left: 3.1rem;
}
@media screen and (max-width: 1279px) {
  .p-kids-lesson::before {
    width: 12.5%;
    height: auto;
    aspect-ratio: 85 / 117;
    top: -70px;
  }
}
@media screen and (max-width: 1023px) {
  .p-kids-lesson::before {
    display: none;
  }
  .p-kids-lesson-main-item__badge {
    width: 100px;
    height: 100px;
    right: 20px;
    bottom: -2.6rem;
  }
  .p-kids-lesson-main-item__icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-kids-lesson {
    margin-top: 10rem;
    padding-bottom: 9.5rem;
  }
  .p-kids-lesson__title {
    width: 100%;
    top: -25px;
  }
  .p-kids-lesson__container {
    padding: 0 1.5rem;
  }
  .p-kids-lesson__content {
    padding-top: 8rem;
  }
  .p-kids-lesson__main-lessons {
    flex-direction: column;
    gap: 2rem;
  }
  .p-kids-lesson-main-item {
    width: 100%;
  }
  .p-kids-lesson-main-item__link {
    padding: 2rem;
  }
  .p-kids-lesson-main-item__badge {
    width: 90px;
    height: 90px;
    right: 25px;
    bottom: -2.8rem;
    border-radius: 7px;
    gap: 0;
  }
  .p-kids-lesson-main-item__icon {
    width: 60px;
    height: 60px;
  }
  .p-kids-lesson-main-item__name {
    font-size: 1.2rem;
  }
  .p-kids-lesson-main-item__bottom {
    padding: 1.5rem 0.5rem 1rem;
  }
  .p-kids-lesson-main-item__title {
    font-size: 1.8rem;
  }
  .p-kids-lesson-main-item__description {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
  .p-kids-lesson-others {
    margin-top: 2rem;
    padding-top: 3rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 1;
  }
  .p-kids-lesson-others__title {
    font-size: 1.9rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .p-kids-lesson-others__title::after {
    height: 5px;
  }
  .p-kids-lesson-others__text {
    font-size: 1.4rem;
  }
  .p-kids-lesson-others__list {
    margin: 3rem auto 0;
    max-width: 400px;
  }
  .p-kids-lesson__button {
    margin-top: 5rem;
    max-width: 280px;
    padding-left: 2.9rem;
  }
}

/*
** OPEN LESSON
*/
.p-open-lesson {
  position: relative;
  background: var(--white);
  padding-bottom: 17rem;
}
.p-open-lesson::before {
  content: "";
  position: absolute;
  right: 0;
  top: -220px;
  background-image: url(../img/index/bg-icon--open-lesson.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 260px;
  height: 351px;
}
.p-open-lesson__title {
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  width: 100%;
}
.p-open-lesson-top {
  padding-top: 18rem;
}
.p-open-lesson-top__inner {
  max-width: 1255px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 15.5rem;
}
.p-open-lesson-top__copy {
  font-size: 3.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.65;
  color: #1C1C1C;
}
.p-open-lesson-top__copy span {
  color: var(--red);
}
.p-open-lesson-top__text {
  margin-top: 0.9rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
.p-open-lesson-top__button {
  margin-top: 3rem;
  width: 280px;
}
.p-open-lesson__image {
  margin-top: 8.7rem;
}
.p-open-lesson__image img {
  width: 100%;
}
.p-open-lesson-experience__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.p-open-lesson-experience__box {
  background: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-open-lesson-experience__box--relative {
  position: relative;
  z-index: 1;
}
.p-open-lesson-experience__inner {
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  padding: 3.5rem 3.5rem 5.2rem;
  margin: 1rem;
}
.p-open-lesson-experience__logo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.p-open-lesson-experience__header {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--red);
  text-align: center;
}
.p-open-lesson-experience__header--number {
  font-size: 3.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-left: 0.2rem;
}
.p-open-lesson-experience__header--unit {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-left: 0.2rem;
}
.p-open-lesson-experience__letters {
  margin-top: 2.3rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  vertical-align: middle;
}
.p-open-lesson-experience__letter {
  width: 66px;
  height: 66px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 5rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-open-lesson-experience__letter--white {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}
.p-open-lesson-experience__letter--red {
  background: var(--white);
  color: var(--red);
  border: 1px solid var(--red);
}
.p-open-lesson-experience__text {
  max-width: 408px;
  width: 100%;
  margin: 2.4rem auto 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--red);
}
.p-open-lesson-experience__button {
  max-width: 560px;
  width: 100%;
  height: 120px;
  margin: 2.8rem auto 0;
  background: var(--red);
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.45;
  padding-left: 5.2rem;
  gap: 1.8rem;
}
@media screen and (max-width: 1279px) {
  .p-open-lesson::before {
    width: 12.5%;
    height: auto;
    aspect-ratio: 20 / 27;
    top: -100px;
  }
}
@media screen and (max-width: 1023px) {
  .p-open-lesson::before {
    display: none;
  }
  .p-open-lesson-top__inner {
    gap: 5rem;
  }
  .p-open-lesson-top__copy {
    font-size: 2.4rem;
  }
} 
@media screen and (max-width: 767px) {
  .p-open-lesson::before {
    display: block;
    background-image: url(../img/index/bg-icon-sp--open-lesson.svg);
    width: 70px;
    height: 161px;
    aspect-ratio: 70 / 160;
    top: -200px;
  }
  .p-open-lesson {
    padding-bottom: 8rem;
  }
  .p-open-lesson__title {
    top: -25px;
  }
  .p-open-lesson-top {
    padding-top: 8rem;
  }
  .p-open-lesson-top__inner {
    flex-direction: column;
    gap: 2rem;
    padding: 0 2.5rem;
  }
  .p-open-lesson-top__copy {
    font-size: 1.9rem;
  }
  .p-open-lesson-top__text {
    margin-top: 0;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .p-open-lesson-top__button {
    margin: 4rem auto 0;
    padding-left: 5rem;
  }
  .p-open-lesson__image {
    margin-top: 4.5rem;
  }
}

/*
** teaching material
*/
.p-material {
  padding-top: 14rem;
  padding-bottom: 24.5rem;
  background: var(--light-yellow);
  position: relative;
}
.p-material::before {
  content: "";
  position: absolute;
  left: 0;
  top: -70px;
  background-image: url(../img/index/bg-icon--material.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 256px;
  height: 351px;
}
.p-material__container {
  position: relative;
}
.p-material__box {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-material-item {
  position: relative;
  background: var(--white);
  padding: 4.8rem 5rem;
  display: flex;
  gap: 6.7rem;
}
.p-material-item__left {
  flex: 1 1 0;
}
.p-material-item__label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.8rem 3.6rem;
  border-radius: 26px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.p-material-item__title {
  margin-top: 1.8rem;
  font-size: 3.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.p-material-item__title--red {
  color: var(--red);
}
.p-material-item__image {
  margin-top: 3.7rem;
}
.p-material-item__right {
  flex: 1 1 0;
}
.p-material-item__text {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
  margin-top: 1.1rem;
  color: var(--text-gray);
}
.p-material-item-feature {
  margin-top: 5rem;
}
.p-material-item-feature__title {
  border: 1px solid var(--red);
  border-radius: 50px;
  padding: 0.1rem 2rem;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--red);
  display: inline-block;
}
.p-material-item-feature__list {
  margin-top: 1.3rem;
}
.p-material-item-feature__list-item {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  color: #1C1C1C;
}
.p-material-item-feature__list-item span {
  color: var(--red);
}
@media screen and (max-width: 1279px) {
  .p-material::before {
    width: 12.5%;
    height: auto;
    aspect-ratio: 85 / 117;
    top: -30px;
  }
}
@media screen and (max-width: 1023px) {
  .p-material-item__label {
    padding: 0.8rem 2rem;
  }
  .p-material-item__title {
    font-size: 2.4rem;
  }
  .p-material-item__text {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-material {
    padding-top: 6.5rem;
    padding-bottom: 19.5rem;
  }
  .p-material::before {
    background-image: url(../img/index/bg-icon-sp--material.svg);
    width: 61px;
    height: 161px;
    aspect-ratio: 61 / 160;
    top: -40px;
  }
  .p-material__box {
    padding: 0 2.5rem;
  }
  .p-material-item {
    padding: 3rem 2.5rem;
    flex-direction: column;
    gap: 2rem;
  }
  .p-material-item__label {
    font-size: 1.2rem;
    display: block;
    max-width: 210px;
    width: 100%;
    padding: 0.6rem 1.8rem;
    margin: 0 auto;
  }
  .p-material-item__title {
    font-size: 2.4rem;
    text-align: center;
    letter-spacing: 0;
  }
  .p-material-item__image {
    margin-top: 2.5rem;
    width: 100%;
  }
  .p-material-item__text {
    margin-top: 0;
    font-size: 1.4rem;
  }
  .p-material-item-feature {
    margin-top: 4rem;
  }
  .p-material-item-feature__title {
    font-size: 1.2rem;
  }
  .p-material-item-feature__list {
    margin-top: 1.2rem;
  }
  .p-material-item-feature__list-item {
    font-size: 1.3rem;
  }
}

/*
** doremi brothers
*/
.p-doremi-brothers {
  margin-top: -17rem;
}
.p-doremi-brothers__container {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-doremi-brothers {
    margin-top: -13.5rem;
  }
  .p-doremi-brothers__container {
    padding: 0 2.5rem;
  }
}

/*
** cases
*/
.p-cases {
  padding-top: 13rem;
}
.p-cases__container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-cases {
    margin-top: 6rem; 
    padding-top: 0;
  }
  .p-cases__container {
    padding: 0 2.5rem;
  }
}

/*
** faq
*/
.p-faq {
  padding-top: 12.4rem;
  padding-bottom: 16.5rem;
  position: relative;
}
.p-faq::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50px;
  background-image: url(../img/index/bg-icon--faq.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 260px;
  height: 351px;
  z-index: var(--layer-behind-content);
}
.p-faq__text {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 1.5rem;
}
.p-faq__button {
  margin: 4.2rem auto 0;
}
@media screen and (max-width: 1279px) {
  .p-faq::before {
    width: 12.5%;
    height: auto;
    aspect-ratio: 20 / 27;
  }
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-top: 6.5rem;
    padding-bottom: 8rem;
  }
  .p-faq::before {
    background-image: url(../img/index/bg-icon-sp--faq.svg);
    width: 70px;
    height: 161px;
    aspect-ratio: 70 / 160;
    top: -50px;
  }
  .p-faq__text {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
  .p-faq__button {
    width: 260px;
    padding-left: 7.4rem;
    margin-top: 3rem;
  }
}

/*
** lesson accepting
*/
.p-lesson-accepting {
  background: var(--red);
  position: relative;
  color: var(--white);
}
.p-lesson-accepting::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/index/bg-icon--lesson-accepting.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 426px;
  height: 537px;
}
.p-lesson-accepting__inner {
  max-width: 1320px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
.p-lesson-accepting__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8.9rem;
}
.p-lesson-accepting__left {
  margin-left: 4rem;
}
.p-lesson-accepting__header {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-lesson-accepting__title {
  font-size: 4.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-top: 2rem;
  position: relative;
  padding-bottom: 2rem;
}
.p-lesson-accepting__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 47px;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--white) 0 2px, transparent 2px 4px);
}
.p-lesson-accepting__text {
  margin-top: 2.5rem;
  max-width: 455px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.p-lesson-accepting__button {
  margin-top: 5rem;
  background: var(--white);
  color: var(--red);
  width: 383px;
  height: 90px;
  padding-left: 3.9rem;
  font-size: 1.7rem;
}
.p-lesson-accepting__button::before {
  background: var(--red);
}
.p-lesson-accepting__button::after {
  width: 14px;
  height: 12px;
  background-image: url(../img/common/arrow--red.svg);
}
@media screen and (max-width: 1279px) {
  .p-lesson-accepting::before {
    width: 30%;
    height: auto;
    aspect-ratio: 142 / 179;
  }
  .p-lesson-accepting__header {
    font-size: 1.6rem;
  }
  .p-lesson-accepting__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-lesson-accepting::before {
    width: 280px;
    height: 352px;
  }
  .p-lesson-accepting__inner {
    padding: 0;
  }
  .p-lesson-accepting__left {
    margin-left: 0;
  }
  .p-lesson-accepting__box {
    flex-direction: column;
    gap: 6rem;
    padding-top: 6rem;
  }
  .p-lesson-accepting__left {
    padding: 0 2.5rem;
    width: 100%;
  }
  .p-lesson-accepting__right {
    width: 100%;
  }
  .p-lesson-accepting__header {
    font-size: 1.5rem;
    text-align: center;
  }
  .p-lesson-accepting__title {
    font-size: 2.8rem;
    line-height: 1.45;
    text-align: center;
    margin-top: 2.5rem;
    padding-bottom: -0;
  }
  .p-lesson-accepting__title::after {
    display: none;
  }
  .p-lesson-accepting__text {
    font-size: 1.4rem;
    letter-spacing: 0;
    margin: 2.5rem auto 0;
  }
  .p-lesson-accepting__button {
    width: 300px;
    height: 70px;
    margin: 4.5rem auto 0;
    font-size: 1.4rem;
  }
  .p-lesson-accepting__image {
    width: 100%;
  }
}

/*
** instagram
*/
.p-instagram {
  padding-top: 14.6rem;
  position: relative;
}
.p-instagram::before {
  content: "";
  position: absolute;
  right: 0;
  top: 54px;
  background-image: url(../img/index/bg-icon--instagram.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 290px;
  height: 401px;
}
.p-instagram__container {
  max-width: 1140px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
.p-instagram__account-name {
  display: block;
  width: fit-content;
  margin: 0.8rem auto 0;
  border: 1px solid var(--black);
  border-radius: 50px;
  padding: 0.6rem 3rem;
  font-size: 1.8rem;
	font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}
.p-instagram__text {
  margin-top: 2.5rem;
  text-align: center;
}
.p-instagram #sb_instagram {
	margin-top: 4.5rem;
	padding-bottom: 0!important;
}
.p-instagram #sbi_images {
	padding: 0!important;
}
@media screen and (max-width: 1279px) {
  .p-instagram::before {
    width: 12.5%;
    height: auto;
    aspect-ratio: 29 / 40;
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-instagram::before {
    background-image: url(../img/index/bg-icon-sp--instagram.svg);
    right: auto;
    left: 0;
    width: 61px;
    height: 161px;
    aspect-ratio: 61 / 160;
    top: -30px;
  }
  .p-instagram__feed-container {
    padding: 0 2rem;
  }
  .p-instagram #sb_instagram {
		margin-top: 3rem;
	}
}

/*
** follow us
*/
.p-instagram-follow-us {
  padding-top: 5.5rem;
  padding-bottom: 10rem;
}
.p-instagram-follow-us__container {
  max-width: 1140px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
.p-instagram-follow-us__title {
	font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 6rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--red);
  text-align: center;
}
.p-instagram-follow-us__text {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.85;
  text-align: center;
  margin-top: 1.4rem;
}
.p-instagram-follow-us-account {
  margin-top: 3rem;
}
.p-instagram-follow-us-account__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.p-instagram-follow-us-account__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.85;
  color: var(--black);
}
@media screen and (max-width: 767px) {
  .p-instagram {
    padding-top: 8rem;
  }
  .p-instagram__account-name {
    margin-top: 1rem;
    font-size: 1.5rem;
    padding: 0.5rem 2.5rem;
  }
  .p-instagram__text {
    display: none;
  }
  .p-instagram-follow-us {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
  .p-instagram-follow-us__container {
    padding: 0 2.5rem;
  }
  .p-instagram-follow-us__title {
    font-size: 3.2rem;
    letter-spacing: 0;
  }
  .p-instagram-follow-us__text {
    margin-top: 1rem;
    font-size: 1.4rem;
    text-align: left;
  }
}

/*
** coordination
*/
.p-coordination {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 14rem;
  background-image: url(../img/index/coordination-image.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--white);
}
.p-coordination::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0, 0, 0, 0.5);
}
.p-coordination__container {
  position: relative;
}
.p-coordination__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  max-width: fit-content;
  margin: 0 auto;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--white);
}
.p-coordination__main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 5rem;
}
.p-coordination__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 4rem;
}
.p-coordination__button {
  margin: 4rem auto 0;
}
@media screen and (max-width: 1023px) {
  .p-coordination__main {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-coordination {
    padding-top: 6.5rem;
    padding-bottom: 8.5rem;
  }
  .p-coordination__title {
    font-size: 1.4rem;
    border-bottom: none;
    position: relative;
    padding-bottom: 0.8rem;
  }
  .p-coordination__title::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: var(--white);
  }
  .p-coordination__main {
    margin-top: 3.5rem;
    font-size: 1.9rem;
    line-height: 1.65;
  }
  .p-coordination__text {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
  .p-coordination__button {
    width: 260px;
    padding-left: 7.4rem;
  }
}

/*
** banners
*/
.p-banners {
  padding-top: 7.5rem;
  padding-bottom: 13rem;
}
.p-recruit-instructor-banner {
  margin-top: 6rem;
}
.p-recruit-instructor-banner__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-recruit-instructor-banner__box {
  width: 100%;
  height: 190px;
  position: relative;
  padding: 1rem;
}
.p-recruit-instructor-banner__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/index/banner-border.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-recruit-instructor-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding: 0 5rem;
  height: 100%;
}
.p-recruit-instructor-banner__title {
  font-size: 4.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}
.p-recruit-instructor-banner__text {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.85;
  max-width: 375px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-banners {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
  .p-recruit-instructor-banner__container {
    padding: 0 2.5rem;
  }
  .p-recruit-instructor-banner__box {
    width: 340px;
    height: 356px;
    margin: 0 auto;
    padding: 0.8rem;
  }
  .p-recruit-instructor-banner__box::before {
    background-image: url(../img/index/banner-border--sp.svg);
  }
  .p-recruit-instructor-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 4rem 2rem;
    gap: 3rem;
  }
  .p-recruit-instructor-banner__title {
    font-size: 2.8rem;
  }
  .p-recruit-instructor-banner__text {
    text-align: left;
    font-size: 1.4rem;
  }
  .p-recruit-instructor-banner__button {
    width: 260px;
    margin: 0 auto;
    padding-left: 7.4rem;
  }
}

/*
** 無料体験レッスンバナーコンポーネント
*/
.c-lesson-experience-banner__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.c-lesson-experience-banner__box {
  background: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-lesson-experience-banner__box--relative {
  position: relative;
  z-index: 1;
}
.c-lesson-experience-banner__inner {
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  padding: 3.5rem 3.5rem 5.2rem;
  margin: 1rem;
}
.c-lesson-experience-banner__logo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.c-lesson-experience-banner__header {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--red);
  text-align: center;
}
.c-lesson-experience-banner__header--number {
  font-size: 3.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-left: 0.2rem;
}
.c-lesson-experience-banner__header--unit {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-left: 0.2rem;
}
.c-lesson-experience-banner__letters {
  margin-top: 2.3rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  vertical-align: middle;
}
.c-lesson-experience-banner__letter {
  width: 66px;
  height: 66px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 5rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-lesson-experience-banner__letter--white {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}
.c-lesson-experience-banner__letter--red {
  background: var(--white);
  color: var(--red);
  border: 1px solid var(--red);
}
.c-lesson-experience-banner__text {
  max-width: 408px;
  width: 100%;
  margin: 2.4rem auto 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--red);
}
.c-lesson-experience-banner__button {
  max-width: 560px;
  width: 100%;
  height: 120px;
  margin: 2.8rem auto 0;
  background: var(--red);
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.45;
  padding-left: 5.2rem;
  gap: 1.8rem;
}
.c-lesson-experience-banner__button br {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-lesson-experience-banner__container {
    padding: 0 2.5rem;
  }
  .c-lesson-experience-banner__inner {
    padding: 3rem 2rem 6rem;
    margin: 0.5rem;
  }
  .c-lesson-experience-banner__header {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .c-lesson-experience-banner__header--number {
    font-size: 2.8rem;
  }
  .c-lesson-experience-banner__header--unit {
    font-size: 1.7rem;
  }
  .c-lesson-experience-banner__letters {
    max-width: 220px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
  }
  .c-lesson-experience-banner__letter {
    width: 52px;
    height: 52px;
    font-size: 4rem;
  }
  .c-lesson-experience-banner__text {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .c-lesson-experience-banner__button {
    max-width: 290px;
    height: 100px;
    padding-left: 2.9rem;
    font-size: 1.6rem;
    gap: 1.6rem;
  }
  .c-lesson-experience-banner__button br {
    display: block;
  }
  .c-lesson-experience-banner__logo {
    width: calc(100% - 1rem);
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: 0.5rem;
  }
}