@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem 2rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-size: max(24px, 4rem);
  color: var(--green);
  letter-spacing: 0.1em;
}

.common__ttl--wt span {
  color: var(--white);
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--green);
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 2rem;
  position: relative;
}

.common__btn--wt a {
  border: solid 1px var(--white);
  color: var(--white);
}

.common__btn a::before {
  content: "";
  background-color: var(--green);
  width: max(40px, 8rem);
  height: 1px;
  position: absolute;
  transform: translate(50%, -50%);
  top: 50%;
  right: 0;
}

.common__btn--wt a::before {
  background-color: var(--white);
}

/*============================
	top
============================*/
.swiper-slide-prev,
.swiper-slide-next {
  filter: brightness(50%); /* 画像を暗くする */
  transform: scale(0.9);   /* 少し小さくする */
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* アクティブなスライドは通常の明るさ */
.swiper-slide-active {
  filter: brightness(100%);
  transform: scale(1);
}


.top-kv{
  width: 80%;
  margin: 10rem auto 0;
  
}

.kv-catchphrase{
  font-size: 5rem;
  padding: 0 0 5rem;
  text-align: center;
}

@media (max-width: 767px) {
  .top-kv{
    width: 100%;
    margin: 0;
    
  }

  .swiper-container {
  height: 65rem !important;
}

}



/*============================
	Blog
============================*/
.news {
  border-bottom: solid 2rem var(--green);
  padding: 15rem 0;
  position: relative;
}


.news-contents{
  width: 110rem;
  display: flex;
  gap: 4rem 7.5rem;
  margin: 11rem auto 0;
}

.news-contents p{
  padding: 15rem 0;
}

.eapps-instagram-feed-header-container{
  display: none;
}

#eapps-instagram-feed-1{
  max-width: 70rem;
}

@media (max-width: 767px) {
  .Blog::before {
    width: 9.8rem;
    height: 14.8rem;
    left: 3rem;
    bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .news-contents{
    width: 90%;
    flex-direction: column;
  }
  .news-contents p{
    padding: 5rem 0;
  }

}

/* SNS */
.top-sns{
  padding: 10rem 0;
  width: 100%;
  height: 40rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
 
}
.top-sns::before {
  content: "";
  background: url(../img/parallax_bg_sns.jpg) no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.5);
}

.top-sns .sns__contents{
width: 110rem;
margin: 0 auto;
}

.sns__txt-wrapper{

  display: flex;
  justify-content: center;
  margin: 2rem auto;
  padding: 5rem 0;
  gap: 5rem;

}

.top-sns-icon{
  width: 10rem;
}

@media (max-width: 767px) {
  .sns__txt-wrapper{

  }

  .top-sns .sns__contents{
    width: 100%;
  }
}
/*============================
	subscription
============================*/
.top_subscription{
  padding: 10rem 0;
  width: 100%;
  height: 40rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
 
}

.subscription_contents{
  width: 110rem;
margin: 0 auto;
}

#subscribe-form{
 text-align: center;
 margin-top: 5rem;
 
}

.top_subscription #subscribe-form input#email{
  background: aliceblue;
  font-size: 2rem;
  padding: 1rem;
}

#subscribe-form button{
  background-color: #c3c3c3;
  font-size: 2rem;
  padding: 1rem;
}

@media (max-width:767px) {

  .subscription_contents{
    width: 100%;
  }

  .top_subscription .common__ttl span{
text-align: center;
  }
  
}

#subscription_result{
  color: aliceblue;
  text-align: center;
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 40rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.5);
}


/*============================
	about
============================*/
.about {
  padding: 8rem 0 21.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .about {
    padding: 5rem 0 20rem;
  }
}

.about::before {
  content: "";
  background: url("../img/about_deco.png") no-repeat center / contain;
  width: 15.2rem;
  height: 19rem;
  position: absolute;
  right: 7rem;
  bottom: 8rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .about::before {
    width: 15.2rem;
    height: 19rem;
    right: 3rem;
    bottom: 3rem;
  }
}

.about__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 10rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.about__txt-wrapper {
  width: 100%;
}

.about .common__ttl {
  flex-direction: row;
  align-items: baseline;
}

.about__txt-wrapper h3 {
  border-top: solid 1px var(--black);
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-top: 2.5rem;
  margin-top: 3rem;
}

.about__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.25;
  margin: 2.5rem 0 16rem;
}

@media (min-width: 768px) {
  .about .common__btn {
    margin: 0;
  }
}

.about__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
others
============================*/
.others{
  padding: 18rem 0;
  position: relative;
  background-color: var(--green);
  
}

.others_contents {
  width: 110rem;
  display: flex;
  gap: 4rem 7.5rem;
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .others__contents {
    width: 90%;
    margin: 0 auto;
  }
}

.others__txt-wrapper {
  width: 100%;
  padding-top: 7rem;
}



@media (min-width: 768px) {
  .others .common__btn {
    margin: 8rem auto 0;
  }
}

.others .common__btn{
  margin-top:8rem;

}

.others__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}



.others__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px #562b08;
  position: absolute;
  top: 1rem;
  left: 1rem;
  pointer-events: none;
}


.top-others{
  display: flex;
  width: 100%;
  gap: 20rem;
  justify-content: center;
}
.top-others div{
width: 50rem;
/* filter: brightness(0.5); */
position: relative;
overflow: hidden;
}

.top-others img:hover{
  transform: scale(1.1);
  transition: transform 0.4s ease;
 
}

.top-others div::before{
  content: 'Japanese Lesson';
  width:100%;
  height: 30%;
  top: 70%;
  left: 0;
  position: absolute;
  color: aliceblue;
  font-size: 3rem;
  background-color: var(--black);
 border-radius: 0 0 3rem 3rem;
 align-items: center;
 display: flex;
 justify-content: center;
 z-index: 100;
}

.top-others div:nth-child(2):before{
  content: 'Online Store';
  width:100%;
  height: 30%;
  top: 70%;
  left: 0;
  position: absolute;
  color: aliceblue;
  font-size: 3rem;
  background-color: var(--black);
 border-radius: 0 0 3rem 3rem;
 align-items: center;
 display: flex;
 justify-content: center;
  
}

.top-others div img{
  border-radius: 3rem;
}

@media (max-width: 767px) {
  .top-others{
    flex-direction: column;
    gap: 5rem;
  }
  .top-others div{
    width: 100%;
    filter: contrast(0.6);
    height: 30rem;
    }

}
/*============================
	gallery
============================*/
.ft-blog{
  /* background-color: var(--green); */
  padding: 11.5rem 0;

}

.top-blog{
  width: 110rem;
  margin: 5rem auto;
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
  
}

.top-blog-content{
  width: 30rem;
  overflow: hidden;
  height: 12rem;
}

.top-blog-content:nth-child(n+4){
  display: none;
}

.top-blog img{
  display: none;
}

@media (max-width:767px) {

  .top-blog{
   width: 80%;
  flex-direction: column;
  gap: 3rem;
  }

  .top-blog-content{
    width: 100%;
  }
  .top-blog-content{
    text-align: center;
  }
  
}


/*============================
	review
============================*/
.review {
  padding: 16rem 0 25rem;
  position: relative;
}

.review::before,
.review::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.review::before {
  background: url("../img/access_deco-1.png") no-repeat center / contain;
  width: 12.2rem;
  height: 17rem;
  top: 11.2rem;
  left: 18rem;
}

.review::after {
  background: url("../img/access_deco-2.png") no-repeat center / contain;
  width: 15.2rem;
  height: 19.6rem;
  right: 10rem;
  bottom: 8rem;
}

@media (max-width: 767px) {
  .review::before {
    width: 12.2rem;
    height: 17rem;
    top: 3rem;
    left: 3rem;
  }

  .review::after {
    width: 15.2rem;
    height: 19.6rem;
    right: 2rem;
    bottom: 3rem;
  }
}

.review__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 4rem 17rem;
  margin: 13.5rem auto 0;
}

@media (max-width: 767px) {
  .review__contents {
    width: 90%;
    flex-direction: column;
    margin: 8rem auto 0;
  }
}

.review__img {
  width: 68.6rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .review__img {
    width: 100%;
    margin: 0;
  }
}

.review__list-wrapper {
  width: 100%;
}

.review__list {
  margin: 0 0 12.5rem;
}

.review__list dt,
.review__list dd {
  letter-spacing: 0.05em;
}

.review__list dt {
  font-weight: 200;
  color: #c3c3c3;
  text-transform: capitalize;
}

.review__list dd:not(:last-of-type) {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .review .common__btn {
    margin: 0;
  }
}

/*============================
	insta
============================*/


/* slider */
.swiper-container {
  width: 100%;
  height: 84rem;
  overflow: hidden;
  position: relative;
  /* top: 20rem; */
}
.swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.swiper-container-thumbs {
  height: 0 !important;
  padding: 0;
}
.swiper-container-thumbs .swiper-slide {
  width: 0;
  height: 0;
  opacity: 0.5;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-container-thumbs .swiper-slide img {
  /* width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px; */
}
.swiper-container-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #007aff;
}

/* 矢印ボタンのスタイル */
.swiper-button-prev:hover, .swiper-button-next:hover {
  opacity: .7;
}

.swiper-free-mode>.swiper-wrapper{
  display: none;
}



/* top kv */

/* スマフォレイアウト */
@media screen and (max-width: 768px) {
  .swiper-container {
    width: 100%;
    height: 300px; /* 高さを少し小さくする */
  }

  .swiper-slide img {
    border-radius: 5px; /* 角丸を小さくする */
  }

  .swiper-container-thumbs {
    height: 80px; /* サムネイルの高さを小さく */
  }

  .swiper-container-thumbs .swiper-slide {
    width: 60px; /* サムネイルの幅を小さく */
    height: 60px;
  }


}


/* インスタセクション */
.news.news-contents.elfsight-app-78b5dfcb-ca91-4b73-a1f2-876e44c6a829 insta-post eapps-instagram-feed es-widget eapps-widget eapps-widget-show-toolbar a{
  display: none !important;

}