@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

html {
  font-size: 100%;
  background-color: #f9f9ed;
  height: 100%;
}

body {
  color: #121212;
  font-size: 0.9rem;
  line-height: 1.7;
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: #121212;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

li {
  list-style: none;
}

.site-title {
  line-height: 1px;
}

.site-title a {
  display: block;
}

.sec-title {
  font-size: 2.25rem;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Literata", serif;
}

.sec-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}

.sec-title:before {
  content: '';
  position: absolute;
  bottom: -6px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #A96C6E;
  border-radius: 2px;
}

/*
フェード表示させる要素に使用するためのクラス
*/
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/

.header-line {
  width: 100%;
  height: 15px;
  background-color: #f6cbeb ;
  position: fixed;
  z-index: 20;
}

#header {
  width: 100%;
  display: flex;
  padding: 20px 40px;
  position: fixed;
  z-index: 10;
  background-color: #fff;
  box-shadow: 10px 5px 5px #f5f5f5;
}

.site-title img {
  width: 100%;
  height: 80px;
}

/*
ハンバーガーメニュー
*/
#navi {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  color: #fff;
  padding: 60px 25px;
  background-color: #f6cbeb;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}

#navi a {
  color: #fff;
}

.open #navi {
  left: 0;
  opacity: 1;
}

#navi ul {
  margin: 0;
  padding: 0;
}

#navi ul.nav-menu {
  margin-bottom: 60px;
  border-top: solid 1px #fff;
}

#navi ul.nav-menu li {
  position: relative;
  margin: 0;
  padding: 20px 0;
  border-bottom: solid 1px #fff;
}

#navi ul.nav-sns li {
  padding: 5px 0;
}

.toggle_btn {
  display: block;
  position: fixed;
  top: 48px;
  right: 45px;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}

.toggle_btn span:nth-child(2) {
  top: 14px;
}

.toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.open .toggle_btn span {
  background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

#mask {
  display: none;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  opacity: 0.8;
  z-index: 10;
  cursor: pointer;
}

/*-------------------------------------------
Main
-------------------------------------------*/

.main-box {
  width: 90%;
  max-width: 500px;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.main-box h1 {
  display: inline-block;
  border-bottom: 2px solid #A96C6E;
  padding-bottom: 10px;
  font-family: "Literata", serif;
}

.main-box p {
  padding-top: 10px;
}

.main-btn {
  line-height: 50px;
  width: 200px;
  margin-top: 10px;
  display: inline-block;
  color: #fff;
  background-color: #A96C6E;
  border-radius: 30px;
  font-size: 18px;
  text-align: center;
}

/*-------------------------------------------
Video
-------------------------------------------*/
.fade-area {
  overflow: hidden;
}

.fade {
  height: 85vh;
  position: relative;
  overflow: hidden;
}

.fade li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  animation: fade 15s infinite;
}

.fade li:nth-child(1) {
  animation-delay: 0s;
}

.fade li:nth-child(2) {
  animation-delay: 5s;
}

.fade li:nth-child(3) {
  animation-delay: 10s;
}

.fade li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




@keyframes fade {
  0% {
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  45% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.slider {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slider>div {
  height: 100%;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}


.top-slider .slick-active,
.top-slider .slick-slide:has(+ .slick-active),
.top-slider .slick-slide:last-child {
  animation: zoom-in 4s ease-out infinite;
}

@keyframes zoom-in {
  100% {
    transform: scale(1.3);
  }
}

/*-------------------------------------------
Pickup
-------------------------------------------*/
#pickup {
  width: 100%;
  padding: 100px 0 50px 0;
}

#pickup .slick-area {
  font-size: 0;
}

#pickup .slick-area li {
  padding: 0 30px;
  /* border: 1px solid red; */
}

/*-------------------------------------------
Feature
-------------------------------------------*/
#feature {
  padding-top: 80px;
  text-align: center;
}

#feature .feature-content {
  width: 100%;
  display: flex;
}

#feature .feature-content img {
  width: 50%;
}

#feature .feature-text {
  width: 50%;
  background-color: #F7D5DB;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#feature .sub-title {
  padding-top: 24px;
  font-weight: normal;
  font-size: 24px;
}

#feature .cat-title {
  font-size: 36px;
  font-family: "Literata", serif;
  padding-bottom: 24px;
  font-weight: normal;
}

#feature .feature-text p {
  text-align: left;
  padding: 0 30px;
}

#feature .feature-text .btn {
  text-align: center;
  margin-top: 30px;
}

#feature .btn-feature {
  line-height: 50px;
  width: 200px;
  display: inline-block;
  color: #fff;
  background-color: #A96C6E;
  border: 2px solid #A96C6E;
  border-radius: 30px;
  font-size: 20px;
}

#feature .btn-feature:hover {
  background-color: #fff;
  color: #000;
}


#news {
  max-width: 1240px;
  padding: 100px 16px 50px 16px;
  margin: -50px auto 10px auto;
  text-align: center;
}

/*
グリッドレイアウト
要素の最小サイズは300pxで、画面の幅にあわせて要素の幅が自動で変化する
repeatで全ての要素に対して適用
「gap: 26px;」で行と列の隙間を設定
*/
#news .grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  padding-bottom: 30px;
}

#news .grid .item {
  transition: all 0.3s ease;
  box-shadow: 0 0 8px 4px #ccc;
  flex-direction: column;
}

#news .grid img {
  vertical-align: top;
}

#news .grid .item-content {
  padding: 30px;
}

#news .grid .item-cat {
  font-size: 0.75rem;
  margin-bottom: 20px;
}

#news .grid .cat-news {
    background: #e8b5c8;
}

/* EVENT */
.cat-event {
    background: #c7b8e3;
}

/* BLOG */
.cat-blog {
    background: #d9c7a1;
}

#news .grid .item-text {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

#news .grid .item-date {
  font-size: 0.75rem;
  text-align: right;
}



/*-------------------------------------------
Contact
-------------------------------------------*/
#contact {
  color: #fff;
  background-color: #121212;
  padding: 50px 0;
}

#contact .contact-title {
  color: #fff;
  text-align: center;
}

#contact .content {
  max-width: 1240px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

#contact .contact-info p {
  margin-bottom: 30px;
}

#contact .contact-info,
#contact .contact-form {
  width: 45%;
}

#contact .contact-form input,
#contact .contact-form textarea {
  width: 100%;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 20px;
}

#contact .contact-form .button input {
  width: 200px;
  color: #fff;
  background-color: #121212;
  border: solid 1px #fff;
  padding: 12px 0;
  margin-bottom: 0;
}

#contact .contact-form .button input:hover {
  color: #202020;
  background-color: #fff;
}

/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
  color: #fff;
  background-color: #121212;
  text-align: center;
  padding: 10px;
  font-size: 0.75rem;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media (max-width: 600px) {
  .sec-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  /*-------------------------------------------
  ヘッダー
  -------------------------------------------*/
  #header {
    padding: 20px 16px;
  }

  .toggle_btn {
    right: 20px;
  }

  .fade-area {
    height: 60vh;
  }



  .main-box h1 {
    display: none;
  }

  .main-box p {
    display: none;
  }

  .main-btn {
    align-items: center;
  }

  /*-------------------------------------------
  Video
  -------------------------------------------*/
  #bg-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }

  /*-------------------------------------------
  Pickup
  -------------------------------------------*/
  #pickup {
    padding: 80px 0;
  }

  #pickup .slick-area li {
    padding: 0 10px;
  }

  /*-------------------------------------------
  Feature
  -------------------------------------------*/

  /*-------------------------------------------
  Contact
  -------------------------------------------*/
  #contact {
    padding: 80px 0;
  }

  #contact .content {
    flex-direction: column;
  }

  #contact .contact-info,
  #contact .contact-form {
    width: 100%;
  }

  #contact .contact-form .button input {
    width: 100%;
  }
}


#about {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-top: 80px;
}

p {
  font-size: 1.2rem;
  /* 読みやすい大きさ */
  line-height: 1.8;
  /* 行間を少し広めに */
  max-width: 800px;
  /* 横幅制限で読みやすく */
  margin: 0 auto;
  /* センターに配置 */

}

#about p {
  line-height: 2.4;
}

#about .about-btn {
  line-height: 50px;
  width: 200px;
  display: inline-block;
  color: #fff;
  background-color: #A96C6E;
  border: 2px solid #A96C6E;
  border-radius: 30px;
  font-size: 20px;
  margin-top: 30px;
}

#about .about-btn:hover {
  background-color: #fff;
  color: #000;
}



/* TOP PRODUCTS */

#products {
  padding-top: 80px;
  text-align: center;
}

.top-product-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.btn-products {
  line-height: 50px;
  width: 200px;
  display: inline-block;
  color: #fff;
  background-color: #A96C6E;
  border: 2px solid #A96C6E;
  border-radius: 30px;
  font-size: 20px;
}

.btn-products:hover {
  background-color: #fff;
  color: #000;
}


@media (max-width: 768px) {
  .top-product-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    padding: 0 15px;
  }
}

.top-product-item img {
  width: 100%;
  display: block;
}

.top-product-item h3 {
  text-align: center;
  margin-top: 10px;
}

/* パンくずの位置を main コンテンツと揃える */
.breadcrumb-wrap {
  padding-top: 160px;
  max-width: 1100px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  padding-top: 20px;
  align-items: left;
}

.breadcrumb a {
  text-decoration: none;
  color: #666;
}

.btn-news {
  line-height: 50px;
  width: 200px;
  display: inline-block;
  color: #fff;
  background-color: #A96C6E;
  border: 2px solid #A96C6E;
  border-radius: 30px;
  font-size: 20px;
}

.btn-news:hover {
  background-color: #fff;
  color: #000;
}

.back-link {
  margin: 40px;
  text-align: center;
}

.back-link a {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: #A96C6E;
  border: 2px solid #A96C6E;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.back-link a:hover {
  background: #fff;
  color: #000;
}

.title-area {
  text-align: center;
}



.wave01 {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 0;
}

.wave01 svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(180deg);
}

.wave02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 0;
}

.wave02 svg {
  width: 100%;
  height: 100%;
  display: block;
}