@charset "utf-8";

html, body {
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;  /* font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; */
  background-color: #f0ece3; 
   height: 100vh;
   color: rgb(0, 0, 0);
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* 全画面ヒーローエリア */
.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
  margin-bottom: -40px;
}

/* スライド基本スタイル */
.main-visual .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left; /* 左側を優先表示 */
  opacity: 0;
  transform: scale(1.05); /* 初期状態はアップ */
  transition:
    opacity 1.5s cubic-bezier(0.33, 0, 0.67, 1),
    transform 6s cubic-bezier(0.33, 0, 0.67, 1);
}

/* 4枚目のスライドのみ中央に表示 */
.main-visual .slide.center-slide {
  background-position: center center; /* 中央寄せ */
  transform: scale(1); /* ズームなし */
}

.main-visual .slide.active {
  opacity: 1;
  transform: scale(1);
  /* ズームアウトと同時にフェードイン */
}

.main-logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10; /* スライドの前に表示されるように */
  pointer-events: none; /* 画像透過時にクリックを妨げない */
  max-width: 50%; /* 任意: レスポンシブ対応 */
}

.scroll_down {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  animation: arrowmove 2s ease-in-out infinite;
  z-index: 3000;
  pointer-events: none;
}

.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: -22px;
  color: #ffffff;
  font-size: 7px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
  mix-blend-mode: difference;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #ffffff;
  transform: skewX(-31deg);
  mix-blend-mode: difference;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

.scroll_down:after {
  content: "";
  position: absolute;
  bottom:-20px;
  right: 0;
  width: 1px;
  height: 60px;
  background: #ffffff;
  mix-blend-mode: difference;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

@keyframes arrowmove {
  0% { bottom: 2%; }
  50% { bottom: 5%; }
  100% { bottom: 2%; }
}


/* ハンバーガーメニュー */
.burger{
  width: 45px;
  top: 40px;
  padding: 20px;
  right: 25px;
  height: auto;
  background-image: url(../image/burger.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: fixed;
  z-index: 1000;
}

.burger.is-active{
  top: 45px;
  right:20px;
  background-image: url(../image/close.png);
}
.header_logo img{
  width: 200px;
}
.menu{
    width: 100%;
    height: 100%;
    background-color: #795548;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    overflow-y: auto; /* 縦スクロール許可 */
    overscroll-behavior: contain; /* スクロールのバウンス抑制 */
  }
.menu.is-active{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.menu .header_logo{
    width: 100%;
    margin: 0 auto;
    margin-top: 16px;
}
.menu ul{
  margin: 50px auto 0;
  width: 80%;
}
.burger_menu li{
    justify-content: center;
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #0504041c;
}
.burger_menu li a{
  color: #ededed;
  display: block;
    width: 100%;
    text-align: center;
  }
/* shopping cart */
.cart-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.cart-fixed img {
  width: 24px;
  height: 24px;
}
.top-catch {
  position: absolute;
  top: 20px;
  left: 10px;
  color: #ffffff;
  font-family: 'Outfit', 'Helvetica Neue', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.05em;
  z-index: 15;
  padding: 8px 12px;
  border-radius: 4px;
  line-height: 1.8;
}

.section-title {
  font-family: 'Outfit';
    text-align: center;
    letter-spacing: 0.1em;
    margin: 153px 0 40px 0;
    margin-bottom: 80px;
    position: relative;
    font-size: 24px;
    font-weight: bold;
}

.section-title::after {
  content: "新製品";
  display: block;
  width: 90px;
  font-size: 15px;
  color: #43403e;
  height: 2px;
  margin: 10px auto 0;
  opacity: 0.8;
}

/* ニュープロダクト */
.product-grid {
  display: flex;
  margin: 30px auto;
  max-width: 95%;
  gap: 0;              /* ← gapでの偏りを避ける */
  align-items: stretch;
}

/* 左側：30% */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 35%;
}

/* 右側：70% */
.right-column {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
}

.image-box {
  overflow: hidden;
  border-radius: 4px;
  padding: 0 5px; /* ← 左右に5pxずつ余白を追加 */
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* 左の縦2枚は均等に分ける */
.image-box.small {
  flex: 1;
}

/* 右の1枚は全体に */
.image-box.tall {
  flex: 1;
}



/* ニュープロダクト2：左1枚、右に2枚 */
.product-grid_1 {
  display: flex;
  margin: 30px auto;
  max-width: 95%;
  gap: 0;              /* ← gapでの偏りを避ける */
  align-items: stretch;
}

/* 左：大きな1枚（65%） */
.left-column_1 {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
}

/* 右：縦に2枚（35%） */
.right-column_1 {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-box {
  overflow: hidden;
  border-radius: 4px;
  padding: 0 5px; /* ← 左右に5pxずつ余白を追加 */
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.image-box.small {
  flex: 1;
}

.image-box.tall {
  flex: 1;
}


/* .about {
  max-width: 800px;
  margin: 0 auto 100px;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 2;
  font-family: 'クレー';
  text-align: left;
}

.about img {
  display: block;
  width: 100%;
  height: auto;
  margin: 40px auto;

} */
.scenes-heading-wrapper {
  position: relative;
  text-align: center;
  margin: 60px 0 30px;
}

.scenes-heading-wrapper::before {
  content: "";
  background-image: url(../image/mountain.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  position: absolute;
  top: -450px;
  left: 0;
  width: 100%;
  height: 1000px;
  /* transform: translate(-50%, -50%); */
  opacity: 0.2;
  z-index: 0;

}

.scenes-heading-wrapper .section-title {
  position: relative;
  z-index: 1; /* タイトル文字が前面に来るように */
}
.image-collage-section {
  padding: 40px 0;

}
.top-deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* 必要に応じて調整 */
  z-index: 10;
}
.top-svg {
  display: block;
  margin: 0 auto 20px;
  width: 100px; /* 必要に応じて調整 */
  height: auto;
}

.image-collage {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 900px;
  margin: 0 auto;
  z-index: 1;
}

.image-collage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1000px;
  height: 1000px;
  background-image: url(../image/26606724.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  opacity: 0.2;
  z-index: -1; /* 背景として表示 */
}

.image-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* precise placement for snow-like falling effect */
.image-collage img:nth-child(1) {
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
}
.image-collage img:nth-child(2) {
  top: 0;
  right: 20px;
  width: 110px;
  height: 100px;
}
.image-collage img:nth-child(3) {
  top: 220px;
  right: 0;
  width: 130px;
  height: 130px;
}
.image-collage img:nth-child(4) {
  top: 290px;
  left: 10px;
  width: 140px;
  height: 140px;
}
.image-collage img:nth-child(5) {
  top: 600px;
  left: 100;
  width: 180px;
  height: 140px;
}
.image-collage img:nth-child(6) {
  top: 465px;
  right: 30px;
  width: 120px;
  height: 120px;
}
.image-collage img:nth-child(7) {
  top: 730px;
  right: 20px;
  width: 130px;
  height: 130px;
}
.image-collage img:nth-child(8) {
  top: 880px;
  left: 20px;
  width: 180px;
  height: 180px;
}

.fade-up,
.fade-down,
.fade-left,
.fade-right {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.8s ease-out, transform 1.8s ease-out;
  will-change: opacity, transform;
  filter: blur(8px); /* ぼかしを追加してさらに柔らかく */
}

.fade-down {
  transform: translateY(-60px);
}
.fade-left {
  transform: translateX(-60px);
}
.fade-right {
  transform: translateX(60px);
}

.fade-up.in-view,
.fade-down.in-view,
.fade-left.in-view,
.fade-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0); /* 出てくると同時にくっきり */
}

.section-title_1 {
  font-family: 'Outfit';
  text-align: center;
  letter-spacing: 0.1em;
  margin: 153px 0 40px 0;
  margin-bottom: 80px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
}

.section-title_1::after {
  content: "おすすめ商品";
  display: block;
  width: 200px;
  font-size: 15px;
  color: #43403e;
  height: 2px;
  margin: 10px auto 0;
  opacity: 0.8;
}
.section-title_2 {
  font-family: 'Outfit';
  text-align: center;
  letter-spacing: 0.1em;
  margin: 153px 0 40px 0;
  margin-bottom: 80px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
}

.section-title_2::after {
  content: "お知らせ";
  display: block;
  width: 200px;
  font-size: 15px;
  color: #43403e;
  height: 2px;
  margin: 10px auto 0;
  opacity: 0.8;
}

.section-title_3 {
  font-family: 'Outfit';
  text-align: center;
  letter-spacing: 0.1em;
  margin: 153px 0 80px 0;
  position: relative;
  font-size: 24px;
  font-weight: bold;
}

.section-title_3::after {
  content: "";
  display: block;
  background-color: #ffffff; /* 線の色 */
  width: 200px;
  height: 2px;
  margin: 10px auto 0;
  opacity: 0.8;
}

.section-title_4 {
  font-family: 'Outfit';
  text-align: center;
  letter-spacing: 0.1em;
  margin:0 auto;
  margin-bottom: 80px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
}

.section-title_4::after {
  content: "私たちについて";
  display: block;
  width: 200px;
  font-size: 8px;
  color: #43403e;
  height: 2px;
  margin: 10px auto 0;
  opacity: 0.8;
}

/* ボタン */
.button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  padding: 12px 50px;
  color: #616161;
  text-decoration: none;
  box-shadow: 0 4px 10px rgb(0 0 0 / 20%);
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid;
}



.cta-button:hover {
  background-color: #f0f0f0;
  color: #000;
}

/* お知らせ */
#news-list {
  padding: 20px 15px;
}

.news-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-items li {
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
  transition: transform 0.2s ease;
}

.news-items li:hover {
  transform: translateX(4px); /* 軽く右へスライド */
}

.news-items a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.news-items .date {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 4px;
}

.news-items .title {
  font-size: 1rem;
  font-weight: 500;
}
/* インスタグラム */
.instagram-grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 10px;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形 */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.instagram-grid img:hover {
  transform: scale(1.03);
}
.instagram-link-wrapper {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 80px;
}

.instagram-button {
  display: inline-block;
  padding: 14px 32px;
  background: #00000000;
  color: #838080;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1.5px solid #707070;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.instagram-button:hover {
  background: #fff;
  color: #111;
  transform: scale(1.03);
}

.info {
  width: 100%;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.infoo {
  max-width: 800px;
  margin: 0 auto;
}

.about {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  color: #333;
  position: relative;
}

.about p {
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0;
  padding: 0 10px;
}

.about img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  position: relative;
  z-index: 1;
  object-fit: cover;
}

/* 画像の上に文字を載せたい場合 ↓ */

.about {
  position: relative;
}

.about img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1px;
}

.about::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
  z-index: 2;
  width: 90%;
  max-width: 500px;
  text-align: center;
  pointer-events: none;
}

/* フェードアニメーション用（必要なら） */

.fade-left {
  animation: fadeLeft 1s ease-in-out;
}

.fade-right {
  animation: fadeRight 1s ease-in-out;
}

.fade-up {
  animation: fadeUp 1s ease-in-out;
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
a.gototop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  line-height: 50px;
  text-align: center;
  background: rgba(100,100,100,0.6);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  z-index: 9999;
  display: none; /* 初期は非表示 */
}
.footer {
  background-color: #6D4C41;
  padding: 40px 20px 20px;
  font-size: 14px;
  color: #ffffff;
  position: relative; /* ロゴを絶対配置するために必要 */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.footer-left {
  flex: 1;
  min-width: 280px;
}
.footer-left strong {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px; /* 文字間ちょっと広げたい場合 */
}
.footer-right {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
}

.footer-logo {
  max-width: 120px; /* ロゴのサイズ調整はここで */
  height: auto;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #ffffff;
}