@charset "utf-8";

/* CTAをもっと協調
Primarybuttonとsubbuttonで分ける
最後のCTAエリアを想いが込められた逸品を見る→AmazonStoreにする
商品エリアをアイテムごとに押せるようにする
タイトルのあしらいを全部に着ける
お問い合わせアイコンの確認 */


.first-view {
  background-image: url(../images/index/FV.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 100px);
  color: #fff;
}

.first-view-text {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 10% 5%;
  height: 100%;
}

.first-view-text .nav-list {
  color: #fff;
  padding-left: 0;
    /* background-color: rgb(0 0 0 / 0.1); */
    width: 100%;
    height: 100%;
  flex-wrap:wrap;
}

.first-view-text .nav-list li {
  margin: 16px 16px;
 
}



.first-view-text h1 {
  font-size: 3rem;
  font-weight: 400;
}



/* concept */

.togglemenu-area {
    background-image: url(../images/index/concept_part.png);
  background-size: contain;

}
    /* 初期状態 */
/* スライドイン共通 */
.slidein {
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
}

/* 左から */
.slide-left {
  transform: translateX(-60px);
}

/* 右から */
.slide-right {
  transform: translateX(60px);
}

/* 発火後 */
.slidein.is-animated {
  opacity: 1;
  transform: translateX(0);
}
    /* .cp-img1.slidein.is-animated {
      animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    } */
    
    @keyframes slideIn {
      0% {
        transform: translateX(-180px);
        opacity: 0;
      }
    
      100% {
        transform: translateX(0);
      }
    
      40%,
      100% {
        opacity: 1;
      }
    }


/* メニューボタン */
.concept {
  height: 1900px;
  position: relative;
}

.title {

  color: #665035;
}

.title h2 {
  font-family: "Amiri", serif;
    margin-top: 100px;
 /* margin-bottom: 180px; */
  font-weight: 400;
  font-size: 48px;
  line-height: 1.5;
}

.concept-title {
  text-align: center;
  position: relative;

}

.concept-title h2::after {
  content: "";
  display: block;
  width: 1px;
  height: 45px;
  background-color: #665035;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.concept-title h3 {
  font-size: 2rem;
  font-weight: normal;
}

.asirai {

  position: absolute;

  z-index: -1;
}

.concept .asirai {
  height: 200px;
    top: -120px;
  left: 0;
  right: 0;
  margin: 0 auto;
    transform: rotate(-15deg);

}

.concept-item {
  width: 100%;
  max-width: 1800px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.cp-img1 {
  width: 800px;
  max-width: 50vw;
  height: 800px;
  max-height: 100%;
  object-position: 35% 50%;
}

.cp-img3 {
  width: 400px;
  max-width: 30vw;
  max-height: 30vh;
  /* margin-left: 125px; */
}

.cp-img2 {
  width: 400px;
  max-width: 30vw;
  height: 800px;
}

.cp-text-area {
  width: 100%;
  position: relative;
}

.cp-text1 {
  max-width: 400px;
  position: absolute;
  top: 15%;
  left: 10%;
  padding-left: 40px;
}

.cp-text2 {
  max-width: 400px;
  position: absolute;
  bottom: 30%;
  right: 10%;
  padding-left: 40px;

}


.cp-text3 {
  width: 400px;
  max-width: 40vw;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 200px;
}

.concept-item1 {
  position: relative;
  padding-top: 80px;
}

.concept-item2 {
  max-width: 1800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 8%;
  right: 0;
  left: 0;
  margin: 0 auto;

}

/* item */

.item {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.item .asirai, .story .asirai , .review .asirai {
  height: 150px;
  top: -55px;
  right: 0;
  transform: rotate(5deg);
}

.section-title {
  position: relative;
  padding-left: 180px;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.section-title h2::before {
  content: '';
  background-color: #665035;
  width: 160px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}

.item-img {
  max-width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  object-fit: cover;
  /* height: 500px; */
  /* height: 100%; */
}

/* .item-text {
  width: 600px;
} */
.itemlist {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: block;
  justify-content: center;
  align-items: center;

}

.itemlist li a{
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 40px;
  transition: transform .4s;
    color: inherit;
  transition: box-shadow .3s ease, transform .3s ease;
  border-radius: 8px;         /* 角丸（お好み） */
}

.itemlist li a:hover {
    transform: scale(1.01);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);

}


.item-text {
  padding-left: 64px;
}

.item-text h3 {
  font-size: 24px;
}

.item-text h3::before {
  content: "";
  display: inline-block;
  width: 1px;           /* 線の太さ */
  height: 50px;         /* 線の長さ */
  background-color: #d2b48c; /* 線の色（画像に近いベージュ系） */
  
  /* 斜めに傾ける（ここがポイント） */
  transform: rotate(45deg); 
  
  /* 必要に応じて上下位置を微調整 */
  margin-top: -5px;
}

.description-text {
  padding-bottom: 16px;
}

.shop-button {
  background-color: #31403E;
  
  padding: 3% 10%;
  display: inline-block;
  font-size: 1.5rem;
  margin-top: 16px;
  position: relative;
}

.shop-button p {
    color: #fff;
}



/* ボタン */

.button-area {
  text-align: center;
  padding: 100px 0;
}


.button {
  border: 1px solid #31403E;
  padding: 24px 80px;
  display: inline-block;
  font-size: 1.5rem;
  margin-top: 16px;
  position: relative;
  color: #31403E;
  transition: transform .4s, color .4s, border .4s;
}


.button::after {
  content: '';
  position: absolute;
  width: 72px;
  height: 1px;
  background-color: #333;
  left: 90%;
transform-origin: left;
  top: 50%;
  transition: width .4s, background-color .4s;

}


.button:hover {
  transform: scale(1.1);
  color: #665035;
  border: 1px solid #665035;
}

.button:hover::after {
  width: 80px;
  background-color: #665035;
}




/* STORY */

.story-img2 {
  max-width: 800px;
  width: 40vw;

  height: 500px;
}

.story-img1 {
  max-width: 650px;
  width: 30vw;
  height: 550px;
}

.story-area {
  display: flex;
  /* padding: 0 10%;   */
  max-width: 1200px;
  justify-content: space-between;
  margin: 0 auto;
  width: 90%;
}

.story-section {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
}

.story1 {
  position: relative;
  padding-top: 80px;
}

.story2 {
  align-items: end;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 90%;
}


.story1 .story-text {

  padding-left: 80px;
  padding-top: 100px;
}

.story2 .story-text {
  padding-left: 80px;
  margin-right: 40px;
}

/* .story-text {
  margin-right: 200px;
} */


.story-text {
  /* margin-right: 200px;
  padding-left: 160px;
  padding-top: 100px; */
  max-width: 500px;
}

.story-text h3 {
  padding-bottom: 40px;
}

.story .button-area {
  margin-top: 550px;
}

/* REVIEW */
.review-list-mobile {
  display: none;
  padding-top: 40px;
}
.review-star-list li {
  background-image: url(../images/index/star.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 8px;

}

.review-star-list .star-size {
  width: 30px;
  height: 30px;
}

.review-star-list {
  display: flex;
}

.review-list .review-item {
  display: flex;
  padding-bottom: 40px;

}

.review-list img {
  width: 300px;
  height: 300px;
  margin-right: 80px;
  object-fit: cover;
}

.review-list {
  max-width: 1200px;
  width: 90%;
  gap: 40px;
  margin: 0 auto;
  padding-top: 80px;
}

.review-text h3 {
  padding-top: 16px;
  padding-bottom: 16px;
}


/* NEWS */

.news-list li a {
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
}


.news-list li h3 {
  padding-left: 100px;
}

.news-list {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding-top: 40px;
}

.news-list li:not(:last-child) {
  border-bottom: solid 1px #665035;
}

/* CTA */

.cta {
  background-color: #E9DFD4;
}

.cta-area {
  display: flex;
  flex-direction: column;;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  align-items: center;
  background-image: url(../images/index/CTAimg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 90% 50%;
  font-weight: 500;
}

.cta-area p {
  color: #fff;
  padding-bottom: 8px;
  font-size: 1.4rem;
}

.cta-button-area {
  transition: transform .4s;
  background-color: rgba(255, 255, 255, 0.9);
  padding:24px 40px;
  text-align: center;
  margin: 0 auto;
}

.cta-button-area:hover {
  transform: scale(1.1);
    background-color: rgba(255, 255, 255, 1);

}

.cta-area img {
  max-width: 40%;
  height: auto;
  object-fit: cover;
}


.cta-button {
  font-size: 1.5rem;
  display: flex;
  /* border-bottom: 1px solid #665035; */
  /* padding-bottom: 8px; */
  color: #665035;
  font-weight: 500;
  /* margin-top: 8px; */
  align-items: center;
}

.cta-button .cta-button-icon {
  width: 40px;
  height: 40px;
 margin-right: 24px;
}


@media (max-width:1100px) {





  .first-view-text .nav-list {
    display: none;
  }

  .concept {
    height: auto;
  }
  .cp-img1 {
    width: 400px;
    height: 400px;
    }


  .cp-text2 {
    position: static;
    padding-top: 40px;
    padding-bottom: 40px;
  }


  .cp-text1 {
    position: static;
    padding-top: 40px;
    padding-bottom: 40px;

  }

  .concept-item2 {
    position: static;
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
 .cp-img3 {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  padding-top: 40px;

 }

  .cp-text3 {
    grid-column: 1;
    grid-row: 1/3;
    padding-top: 120px;
    padding-bottom: 80px;
    padding-right: 0;
    padding-left: 80px;
    max-width: 100%;
    width: 80%;
  }

  .cp-img2 {
    max-width: 100%;
    width: 100%;
    height: 250px;
    grid-column: 1/3;
    object-position: 50% 60%;
  }




}

@media (max-width: 800px) {
  body {
    font-size: 14px;
  }
  /* ファーストビュー */

  .first-view-text h1 {
    font-size: 1.5rem;
  }

  /* CONCEPT */

  .concept .asirai {
    height: 150px;
    top: -80px;
  }

  .concept-title h3 {
    font-size: 1.5rem;
  }

  .concept-item {
    display: block;
  }

  .cp-text1, .cp-text2, .cp-text3{
    padding: 30px 20px;
    width: 80%;
    max-width: 100%;
    margin: 0 auto;
  }

  .cp-img3 {
    display: none;
  }

  .cp-img2 {
    margin-top: 40px;
  }




  .cp-img1 {
    width: 100%;
    max-width: 100%;
    height: 250px;
    margin-bottom: 40px;
  }

  /* ITEM */

  .item .asirai, .story .asirai , .review .asirai {
  height: 100px;
  top: -40px;


}
  .itemlist li a{
    display: block;

  }

  .item-text {
    padding-left: 0;
  }

  .item-img {
    display: flex;
    margin: 0 auto;
    max-width: 200px;
    height: 200px;
    margin-bottom: 24px;
  }

  .itemlist li.reverse {
    display: block;
  }

  .itemlist .reverse .item-text {
    padding-right: 0;
  }

  .button::after { 
    width: 50px;
  }

  .button:hover::after {
  width: 60px;

}


  /* story */

  .story-area {
    display: block;
  }

  .story-img2 {
    width: 100%;
    height: 200px;
  }

  .story-img1 {
    width: 100%;
    max-width: 100%;
    height: 250px;
    padding-top: 80px;
  }



  .story2 {
    position: static;
    padding-top: 40px;
  }

  .story .button-area {
    margin-top: 0;
    padding-top: 40px;
  }

  /* review */

  .review-list {
    display: none;
  }
  .review-list-mobile {
    display: block;
  }

  .review-list-mobile {
    width: 80%;
    margin: 0 auto;
  }

  .review-list-mobile .review-item {
    padding-bottom: 40px;
  }
  .mobile-review-title img {
    width: 100px;
    height: 100px;
    margin-right: 40px;
    object-fit: cover;
  }

.mobile-review-title .star-size {
    width: 20px;
    height: 20px;
  }

  .mobile-review-title {
    display: flex;
    padding-bottom: 16px;
  }



  /* cta */



  .logo-symbol {
    width: 25px;
    height: 25px;
  }

  .cta-button {
    font-size: 1rem;
    display: flex;
    align-items: end;
  }

  .cta-area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 450px) {



  /* ファーストビュー */
  .first-view-text {
    padding: 0 10% 20%;
  }

  /* COCNEPT */

  .concept-title h3 {
    font-size: 1.3rem;
  }

  /* ITEM */

  .section-title {
      padding-left: 120px;
  }
  .section-title h2::before {
  width: 100px;


}

/* .section-title h2::before {
  content: '';
  background-color: #665035;
  width: 160px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
} */
}