/*----------------------------------------------------------*/
/* base */
/*----------------------------------------------------------*/
body {
  font-family: Noto, "Hiragino Sans", Helvetica, Arial, sans-serif;
  color: #212121;
  font-size: 16px;
  background-color: #fff;
}

img {
  width: 100%;
  height: auto;
}

.pc-br {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-br {
    display: none;
  }
}
/*----------------------------------------------------------*/
/* component */
/*----------------------------------------------------------*/
/* button */

.button {
  display: inline-block;
  transition: 0.3s;
  text-align: center;
  background-color: #3dcfd4;
  border-radius: 7px;
  color: #fff;
  padding: 20px 35px;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.8px;
}

.button.--small {
  font-size: 16pz;
  padding: 15px 25px;
}

.button.--center {
  display: block;
  max-width: 380px;
  margin: 0 auto;
}

.button:hover {
  background: #65dadc;
}

@media screen and (max-width: 767px) {
  .button {
    font-size: 20px;
    padding: 20px 0;
    width: 100%;
  }
  .button.--center {
    width: 95%;
  }
}

/* mcopy */
.mcopy {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #268f84;
  margin: 0 0 20px 0;
  line-height: 2;
  position: relative;
}
/* 
.mcopy:before{
	margin: 0-1.5rem-0-0;
  content: "＼";
}
.mcopy:after{
	margin: 0-0-0-1.5rem;
  content: "／";
} */
.mcopy:before {
  margin-right: 1.5rem;
  content: "＼";
}
.mcopy:after {
  margin-left: 1.5rem;
  content: "／";
}

/* container */
.container {
  max-width: 1120px;
  margin: 0 auto;
  width: 95%;
}

.container.--large {
  max-width: 1360px;
  width: 98%;
}
@media screen and (max-width: 767px) {
  .container.--inner {
    width: 90%;
    max-width: 90%;
  }
}
/* headline */
.headline {
  text-align: left;
  margin: 0 0 40px 0;
}

.headline__min {
  margin: 0 0 15px 0;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0.8px;
  display: flex; /*←復習*/
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.headline.--center .headline__min {
  /* 復習 */
  justify-content: center;
}

.headline__min:before {
  /* position: absolute; */ /*←復習*/
  content: "";
  height: 3.5px;
  width: 14px;
  margin: 0 10px 0 0;
  background: #3dcfd4;
}
.headline__item {
  text-align: left;
  font-size: 27px;
  line-height: 1.5;
  letter-spacing: 0.8px;
}

.headline.--center .headline__item {
  /* 復習 */
  text-align: center;
}

.headline__item.--bold {
  font-weight: bold;
  font-size: 42px;
  display: block;
  line-height: 1.5;
  letter-spacing: 0.8px;
  margin: 5px 0 0 0;
}

@media screen and (max-width: 767px) {
  .headline__min {
    font-size: 10px;
    justify-content: center;
    margin: 0 0 8px 0;
  }
  .headline__min:before {
    width: 8px;
    height: 2px;
    margin: 0 6px 0 0;
  }
  .headline__item {
    font-size: 16px;
    text-align: center;
  }
  .headline__item.--bold {
    font-size: 28px;
  }
}

/* background-color */
.--purple {
  background-color: #e0eaff;
}
.--lightgreen {
  background-color: #f4f8d7;
}
.--lightorange {
  background-color: #faf3eb;
}
.--skyblue {
  background-color: #dffbfe;
}
.--skygreen {
  background-color: #f4fcd2;
}
.--lightyellow {
  background-color: #fff6ea;
}

.color--skyblue{
	color:  #65dadc;
}
/*----------------------------------------------------------*/
/* header */
/*----------------------------------------------------------*/
.header {
  background: #f5f6f7;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header__right {
  display: block;
}

.header__logo {
  max-width: 225px;
  margin: 0 22px 0 0;
}

.header__tagline {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.8px;
}

@media screen and (max-width: 767px) {
  .header {
    height: 20vh;
  }
  .header__inner {
    justify-content: center;
  }

  .header__left {
    justify-content: center;
    flex-direction: column;
  }
  .header__right {
    display: none;
  }
  .header__logo {
    margin-bottom: 10px;
  }
  .header__tagline {
    font-size: 11px;
  }
}

/*----------------------------------------------------------*/
/* main-v */
/*----------------------------------------------------------*/

.main-v {
  background: #f5f6f7;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-v__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ↑このinnerいる？ */

.main-v__left {
  display: flex;
  flex-direction: column; /*縦並びなのにこれいるのかな？*/
  align-items: flex-start;
}
.main-v__right {
  max-width: 50%;
}

.main-v__right img {
  max-width: 610px;
  max-height: 70vh;
  margin: 0 auto;
  object-fit: contain; /*復習*/
}

.main-v__headline {
  font-size: 32px;
  letter-spacing: 1.7px;
  font-weight: bold;
}

.main-v__headline.--bold {
  font-size: 55px;
  letter-spacing: 8px;
  margin: 0 0 2vh 0;
  display: block;
}

.main-v__excerpt {
  margin: 3vh 0 2vh;
  font-size: 22px;
  letter-spacing: 1.6px;
}

@media screen and (max-width: 767px) {
  .main-v {
    min-height: 80vh;
  }
  .main-v__inner {
    flex-direction: column-reverse;
    flex-wrap: nowrap;
  }

  .main-v__left {
    max-width: 100%;
    justify-content: space-around;
    align-items: center;
  }

  .main-v__right {
    max-width: 100%;
    margin: 0 0 20px 0;
  }
  .main-v__right img {
    margin: 0 auto 1vh;
    height: auto;
    width: 80%;
    max-width: 450px;
    max-height: 30vh;
    display: block;
  }

  .main-v__headline {
    font-size: 21px;
  }
  .main-v__headline.--bold {
    font-size: 36px;
  }
  .main-v__excerpt {
    font-size: 15px;
  }
}

/*----------------------------------------------------------*/
/* about */
/*----------------------------------------------------------*/

.about {
  background: #f5f6f7;
  padding: 0 0 110px 0;
}
.about__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about__img img {
  display: block;
  max-width: 450px;
  margin: 0;
}

.about__item {
  width: 50%;
}

.about__num {
  display: inline-block;
  background: linear-gradient(transparent 60%, #eeec50 60%);
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.8px;
}

.about__headline {
  margin: 0 0 20px 0;
  font-size: 29px;
  line-height: 2;
  font-weight: bold;
}

.about__text {
  font-size: 16px;
  line-height: 2;
}

.about__inner + .about__inner {
  margin: 140px 0 0 0;
}

.about__inner:last-child {
  margin: 0 0 100px 0;
}

.about__inner.--reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 0 0 60px 0;
  }
  .about__inner,
  .about__inner.--reverse {
    flex-direction: column;
  }
  .about__inner + .about__inner {
    margin: 40px 0 0 0;
  }
  .about__inner:last-child {
    margin: 0 0 40px 0;
  }
  .about__img img {
    margin: 0 0 30px 0;
  }
  .about__item {
    width: 100%;
  }
  .about__num {
    font-size: 20px;
  }
  .about__headline {
    font-size: 25px;
  }
  .about__text {
    font-size: 14px;
  }
}

/*----------------------------------------------------------*/
/* curriculum */
/*----------------------------------------------------------*/
.curriculum {
  background: #f2e0d5;
  padding: 72px 0;
  margin: 0 0 98px 0;
}
.curriculum__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.curriculum__img {
  width: 30%;
}

.curriculum__items {
  width: 60%;
}

.curriculum__headline {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
.curriculum__text {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 30px;
}

.curriculum__button {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .curriculum {
    margin: 0 0 60px 0;
  }
  .curriculum__inner {
    flex-direction: column;
    /* flex-wrap:wrap ; */
    justify-content: center;
  }

  .curriculum__img {
    width: 70%;
    text-align: center;
    margin: 0 0 40px 0;
  }
  .curriculum__items {
    width: 100%;
  }
  .curriculum__headline {
    font-size: 24px;
  }
  .curriculum__text {
    font-size: 14px;
  }

  .curriculum__button {
    font-size: 14px;
    text-align: left;
    padding: 13px 26px;
  }
}

/*----------------------------------------------------------*/
/* メリット */
/*----------------------------------------------------------*/
.benefit {
  margin: 0 0 120px 0;
}
.benefit-cards {
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px 0;
}
.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 60px 0;
  width: calc((100% - 40px) / 3);
  border-radius: 10px;
  padding: 100px 40px;
}
.benefit-card__img {
  width: 100px;
  margin: 0 0 50px 0;
}
.benefit-card__headline {
  color: #df1a1a;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.benefit-card__text {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .benefit {
    margin-bottom: 64px;
  }
  .benefit-cards {
    flex-wrap: wrap;
  }
  .benefit-card {
    width: 100%;
    padding: 50px 30px;
  }
  .benefit-card + .benefit-card {
    margin: 0 0 30px 0;
  }
  .benefit-card__headline {
    font-size: 24px;
  }
  .benefit-card__text {
    font-size: 14px;
    max-width: 400px;
  }
}

/*----------------------------------------------------------*/
/* プライス */
/*----------------------------------------------------------*/
.price {
  background-color: #f5edf3;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-image: url(../img/banner02-bg-pc.jpg);
}

.price__inner {
  margin: 0 auto;
  padding: 72px 0;
}
.price__headline {
  text-align: center;
  font-weight: bold;
  font-size: 21px;
  margin: 30px 0 25px 0;
  line-height: 1.5;
}
.price__bold {
  font-size: 30px;
  display: block;
}
.price__redbold {
  color: #e51642;
  font-size: 30px;
}
.price__text {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  margin: 0 0 45px 0;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 0 0 140px 0;
    background-image: url(../img/banner02-bg-sp.jpg);
  }
  .price__bold {
    font-size: 26px;
  }
  .price__redbold {
    font-size: 26px;
  }
  .price__text {
    font-size: 13px;
  }
}

/*----------------------------------------------------------*/
/* hilosophy */
/*----------------------------------------------------------*/
.philosophy {
  background-image: url(../img/bg_color-pc.jpg);
  padding: 90px 0 400px 0;
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  margin: 0 0 60px 0;
}

.philosophy-contents {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}

.philosophy-contents__img {
  margin: 0 0 36px 0;
  width: 50%;
}

.philosophy-content {
  background-color: #fff;
  max-width: 600px;
  width: 60%;
  padding: 50px;
  position: absolute;
  top: 100px;
  left: 0%;
  z-index: 1;
}
.philosophy-content:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: -5%;
  left: 5%;
  opacity: 0.5;
  z-index: -1;
}

.philosophy-content__text {
  font-size: 16px;
  margin: 0 0 24px 0;
  line-height: 2;
}
.philosophy-content__text.--bold {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .philosophy {
    padding: 50px 0 160px 0;
    margin: 0;
    background-image: url(../img/bg_color.jpg);
    background-size: 100% 120%;
    background-position: 0 30%;
  }

  .philosophy-contents {
    margin: 42px 0 0 0;
    width: 100%;
    flex-direction: column;
  }
  .philosophy-contents__img {
    width: 100%;
  }
  .philosophy-content {
    width: 100%;
    padding: 20px 10px 10px 20px;
    position: relative;
    top: 0;
    left: -3%;
  }

  .philosophy-content__text {
    font-size: 14px;
  }
}

/*----------------------------------------------------------*/
/* コミュニティ */
/*----------------------------------------------------------*/
.community {
  margin: 0 0 120px 0;
}

.community__contents {
  margin: 200px 0 80px 0;
  display: flex;
  justify-content: space-between;
}

.community__content {
  max-width: 50%;
  width: calc((100% - 120px) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 0 60px 60px;
}

.community__content img {
  border-radius: 50%;
  width: 225px;
  text-align: center;
  top: -112.5px;
  position: relative;
  margin: 0 0 -25px 0;
}

.community__name {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 40px 0;
}

.community__text {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .community {
    margin: 0 0 30px 0;
  }
  .community__contents {
    flex-direction: column;
    margin: 130px 0 40px 0;
  }
  .community__content {
    padding: 0 30px 60px;
    max-width: 100%;
    width: 100%;
    margin-right: 0;
  }
  .community__content + .community__content {
    margin-top: 120px;
  }
  .community__img {
    max-width: 175px;
    top: -85.5px;
    margin-bottom: -55.5px;
  }
  .community__name {
    font-size: 16px;
    margin-bottom: 27px;
  }
  .community__text {
    font-size: 14px;
  }
}

/* member */
.member {
  padding: 30px 0 0 0;
}

.member__headline {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 80px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .members__headline {
    font-size: 17px;
    margin-bottom: 24px;
  }
}

/* slider */
.slider-parent {
  position: relative;
}

.slider-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 40px;
}
.slider-img {
  border-radius: 50%;
  width: 70%;
  object-fit: cover;
  margin: 0 0 20px 0;
}
.slider-name {
  font-size: 21px;
  margin: 0 0 10px 0;
  font-weight: bold;
}
.slider-name__sub {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .slider-slide {
    padding: 10px 10px 20px;
  }
  .slider-img {
    width: 90%;
    margin-bottom: 10px;
  }
  .slider-name {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .slider-name__sub {
    font-size: 12px;
  }
}

/*----------------------------------------------------------*/
/* cta */
/*----------------------------------------------------------*/

.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/banner03-bg-under.jpg),
    url(../img/banner03-bg-top-sp.jpg);
  background-position: bottom, top;
  background-repeat: no-repeat, no-repeat;
  background-size: 70%, contain;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}
.cta__headline {
  font-size: 32px;
  font-weight: bold;
  color: #e51642;
  margin: 0 0 57px 0;
}

.cta__text {
  line-height: 2;
  font-size: 16px;
  margin: 0 0 45px 0;
}

@media screen and (max-width: 767px) {
  .cta {
    background-image: url(../img/banner03-bg-under-sp.jpg),
      url(../img/banner03-bg-top-sp.jpg);
    background-size: contain, contain;
  }
  .cta__inner {
    padding: 60px 0 130px;
  }
  .cta__headline {
    font-size: 20px;
    margin: 0 0 24px 0;
  }

  .cta__text {
    font-size: 12px;
  }
}

/*----------------------------------------------------------*/
/* FAQ */
/*----------------------------------------------------------*/

.faq {
  padding: 100px 0;
  background-color: #f5f6f7;
}

.faq__items {
  padding: 43px 0 0 0;
}

.faq__item {
  background-color: #fff;
  border-radius: 15px;
}
.faq__item + .faq__item {
  margin: 20px 0 0 0;
}

.faq__q {
  cursor: pointer;
  padding: 22px 14px 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.faq__q:after {
  content: "";
  width: 64px;
  height: 24px;
  background: url(../img/arrow-pc.svg) center center no-repeat;
  transition: transform 0.2s;
  margin-left: auto;
}

.-active .faq__q:after{
	transform: rotate(-180deg);
}

.faq__a-inner{
	padding: 22px 14px 18px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.faq__q-icon,
.faq__a-icon {
  font-weight: bold;
  font-size: 26px;
  margin: 0 20px;
}
.faq__q-icon {
  color: #cc3399;
}
.faq__a-icon {
  color: #728295;
}
.faq__q-text,
.faq__a-text {
  font-size: 21px;
  line-height: 1.5;
  width: 85%;
  letter-spacing: 0.8px;
}
.faq__q-text{
	font-weight: bold;
}
.faq__a {
  display: none;
}

@media screen and (max-width: 767px) {
  .faq {
    padding-top: 46px;
    padding-bottom: 46px;
  }
  .faq__q:after {
    width: 32px;
    height: 12px;
    background: url(../img/arrow.svg) center center no-repeat;
  }
  .faq__q-icon,
  .faq__a-icon {
    font-size: 18px;
    margin-left: 0;
    margin-right: 0;
    width: 30px;
  }
  .faq__q-text,
  .faq__a-text {
    width: 95%;
    font-size: 13px;
  }
	.faq__item + .faq__item {
		margin: 20px 0 0;
	}
}

/*----------------------------------------------------------*/
/* フッター */
/*----------------------------------------------------------*/

.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0 10px;
}

.footer__logo {
  max-width: 130px;
}
.footer__copy {
  font-size: 10px;
  line-height: 3;
  letter-spacing: 1.5px;
}
