@charset "utf-8";

/* リセットCSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#vdbanner {
	width:0;
  height:0;
}

html,
body {
  height: 100%;
  font-family: system-ui, sans-serif;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  margin-top: 0;
  /* marginリセット */
  padding-top: 0px;
  /* paddingリセット */
  overflow: hidden;
  /* マージン折りたたみを防ぐ */
  border-top: none;
}

body {
  background-color: #ede6db;
}

.header,
.main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* padding-left: 100px;
    padding-right: 100px; */
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 0;
}

.left {
  padding-top: 100px;
  padding-left: 0;
  width: 330px;
}

.header-logo {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.nav,
.header-sns-ikon {
  margin-left: 0;
  /* 左の余白をなくす */
  padding-left: 0;
  /* 左のパディングをなくす */
  width: 100%;
  /* 横幅いっぱいに */
}

.nav {
  font-family: "Special Elite";

  font-size: 17px;
}

nav {
  margin-top: 100px;
  margin-left: 0;
  color: #3a3a3a;
}

.nav ul,
.header-sns-ikon ul {
  padding-left: 0;
  margin-left: 0;
}

nav ul li {
  margin-bottom: 30px;
  padding-left: 0;
}

.nav a {
  position: relative;
  display: inline-block;
  padding-right: 40px; /* 矢印用スペース */
  color: #3a3a3a;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* 横棒（→の棒） */
.nav a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 24px;
  height: 2px;
  background-color: #3a3a3a;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* 三角部分（→の矢先） */
.nav a::before {
  content: '';
  position: absolute;
  top: 40%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #3a3a3a;
  border-right: 2px solid #3a3a3a;
  transform: translateY(-50%) rotate(45deg) scale(0); 
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* ホバー時に矢印がスライドして表示 */
.nav a:hover::after {
  transform: translateY(-50%) scaleX(1);
}

.nav a:hover::before {
  transform: translateY(-50%) rotate(45deg) scale(1);
}

.nav a:hover {
  transform: scale(1.03) rotate(0deg);
  transition: transform 0.5s ease;
  color: rgb(201, 199, 198);
}

.header-sns-ikon {
  margin-left: 0;
  margin-top: 100px;
}

.header-sns-ikon ul {
  display: grid;
  grid-template-columns: repeat(4, 30px);
  column-gap: 25px;
  margin: 0;
  padding: 0;
}

.header-sns-ikon ul li img {
  width: 30px;
  height: 30px;
  transition: transform 0.4s ease, filter 0.4s ease;
  transform: scale(1) rotate(0deg);
  filter: invert(0%) brightness(100%);
}

.header-sns-ikon ul li img:hover {
  transform: scale(1.3) rotate(0deg);
  filter: invert(80%) brightness(100%);
}

.slideshow {
  position: relative;
  width: 753px;
  height: 780px;
  overflow: hidden;
}

.slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 753px;
  height: 780px;
  opacity: 0;
  animation: fadeSlideshow 20s infinite;
}

.slideshow .slide:nth-child(1) {
  animation-delay: 0s;
}
.slideshow .slide:nth-child(2) {
  animation-delay: 5s;
}
.slideshow .slide:nth-child(3) {
  animation-delay: 10s;
}
.slideshow .slide:nth-child(4) {
  animation-delay: 15s;
}

@keyframes fadeSlideshow {
  0% { opacity: 0;}
  10% { opacity: 1;}
  30% { opacity: 1;}
  35% {opacity: 0;}
  100% { opacity: 0;}
}


/* ここからメインの設定 */

.main-visual {
  margin-top: 10px;

  padding: 0;
  display: block;
  /* すでに設定済みならOK */
  width: 700px;
  height: auto;
}

.main {
  margin-top: 200px;
}

.main section {
  margin-bottom: 100px;
}

.about {
  font-family: "Zen Old Mincho";
  max-width: 1000px;
  /* 必要に応じてサイズ調整 */
  margin: 0 auto;
  /* 中央寄せ */
  padding: 40px 20px;
  /* 上下や左右の余白は任意 */
  text-align: center;
}

.catch-copy,
.about-text {
  max-width: 100%;
  /* 読みやすい幅に */
  margin: 0 auto;
  /* 中央に配置 */
}

.catch-copy h1 {
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  color: #3a3a3a;
  font-size: 24px;
}

.about-text p {
  margin: 20px 0;
  line-height: 2;
  color: #3a3a3a;
  font-size: 16px;

  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-text p.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ここからカテゴリーの設定 */
.category-section {
  margin-top: 100px;
  padding: 60px 0 80px 0;
}

.category-title {
  position: relative;
  z-index: 3;
  text-align: center;
  font-size: 36px;

  margin: 0 auto 10px auto;
  color: #c3bdae;
  font-family: "Special Elite";

  display: block;
  padding: 10px 20px;
  text-shadow: 0.2px 0.2px 0.5px rgb(54, 40, 12);
}

.category-wrapper {
  position: relative;
  width: 1200px;
  height: 1100px; /* 必ず高さ指定 */

  margin: 0 auto;
  /* background-image: url("./img/category/categryback.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat; */
}

.category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  pointer-events: none;
}

.category-item {
  position: absolute;
  width: auto; /* サイズを固定しない */
  height: auto;
  text-align: center;
  transition: transform 0.3s ease;
}

.category-item img {
  width: auto; /* 横幅は自動 */
  height: auto; /* 高さも自動 */
  max-width: none; /* 最大幅制限を解除 */
  max-height: none; /* 最大高さ制限も解除 */
  object-fit: none; /* 画像のトリミングや拡大縮小しない */
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
}

.category-item span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  font-family: "Zen Old Mincho";
}

/* 🔀 ランダム風な配置 */
.category-item:nth-of-type(1) {
  top: 100px;
  left: 140px;
  transform: rotate(-2deg);
}
.category-item:nth-of-type(2) {
  top: 200px;
  left: 550px;
  transform: rotate(1.5deg);
}
.category-item:nth-of-type(3) {
  top: 90px;
  left: 850px;
  transform: rotate(-3deg);
}
.category-item:nth-of-type(4) {
  top: 550px;
  left: 130px;
  transform: rotate(2.5deg);
}
.category-item:nth-of-type(5) {
  top: 650px;
  left: 530px;
  transform: rotate(-1.5deg);
}
.category-item:nth-of-type(6) {
  top: 530px;
  left: 950px;
  transform: rotate(3deg);
}
.category-item:nth-of-type(7) {
  top: 900px;
  left: 120px;
  transform: rotate(-1deg);
}
.category-item:nth-of-type(8) {
  top: 1000px;
  left: 750px;
  transform: rotate(2deg);
}


/* 🖱️ ホバーアニメーション */
.category-item:hover {
  transform: scale(1.2) rotate(0deg);
  filter: grayscale(100%) brightness(30%) opacity(0.6);
  z-index: 2;
}


/* ここから新作商品の設定 */

.new-arrivals-section {
  margin-top: 400px;
}

/* セクションタイトル */
.section-title {
  font-size: 36px;
  margin: 0 auto 40px auto;
  color: #c3bdae;
  font-family: "Special Elite", serif;
  text-align: center;
}

/* 横並び */
.new-arrivals-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

/* 商品全体 */
.arrival-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* 画像とオーバーレイを包むラッパー */
.image-wrapper {
  position: relative;
  display: inline-block;
  height: 500px;
  transition: transform 0.6s ease;
  transform-origin: center center;
}

/* ホバー時に画像＋オーバーレイを拡大 */
.image-wrapper:hover {
  transform: scale(1.05);
}

/* 商品画像 */
.image-wrapper img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: none;
}

/* 黒いオーバーレイ */
.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform: scale(0);
  transform-origin: center center;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 1;
}

/* ホバーで黒オーバーレイが表示 */
.image-wrapper:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* 値段（画像中央に白文字で表示） */
.overlay-price {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-family: sans-serif;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}

/* ホバー時に値段を表示 */
.image-wrapper:hover .overlay-price {
  opacity: 1;
}

/* NEWバッジ */
.new-badge {
  background-color: #000;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 8px;
  font-family: sans-serif;
}



/* ここからItemの設定 */

/* 背景画像：画面いっぱいに */
.items-section {
  width: 100vw; /* ビューポート幅に合わせる */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-image: url('./img/itemsbackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  margin-top: 100px;
}

/* 中身の最大幅制限と中央揃え */
.items-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* タイトル */
.section-title {
  font-size: 36px;
  color: #c3bdae;
  font-family: "Special Elite", serif;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0.2px 0.2px 0.5px rgb(54, 40, 12);
}

/* グリッド：4列×3行（12個） */
.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* 商品カード */
.item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 画像ラッパー */
.item-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 300 / 430;
  overflow: hidden;
  transition: transform 0.4s ease;
  transform-origin: center center;
}

/* 商品画像 */
.item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 黒の半透明オーバーレイ */
.item-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}

/* 値段（中央） */
.overlay-price {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  font-family: "Zen Old Mincho";
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}

/* ホバー時の効果 */
.item-image-wrapper:hover::before {
  opacity: 1;
  transform: scale(1);
}

.item-image-wrapper:hover .overlay-price {
  opacity: 1;
}

.item-image-wrapper:hover {
  transform: scale(1.05);
}




.footer-section {
  width: 100%;
  background-image: url('./img/footer-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 60px;
  padding-bottom: 100px; /* 中央下のコピーライト用に余裕を */
  color: #c3bdae;
  font-family: "Zen Old Mincho";
  position: relative; /* footer-centerを絶対配置するために */
}

/* 内部コンテンツの横幅制限＆中央寄せ */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* 狭い画面で崩れないように */
  gap: 40px;
}

/* 左カラム */
.footer-left {
  flex: 1 1 300px; /* 最小幅300pxで伸縮可能 */
  min-width: 280px;
}

.footer-left .store-info {
  font-size: 14px;
  line-height: 1;
  white-space: pre-line; /* 改行を反映 */

}

/* フッターナビ */
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.footer-nav ul li a {
  white-space: nowrap; /* 改行しない */
  color: #c3bdae;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-weight: 600;
  font-size: 14px;
}

.footer-nav ul li a:hover {
  opacity: 0.7;
}

/* 右カラム（SNS） */
.footer-right {
  flex: 1 1 200px;
  min-width: 180px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sns-icons {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sns-icons li a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sns-icons li a:hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

/* 中央：ロゴ＋コピーライト */
.footer-center {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  max-width: 200px;
 
}

.footer-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 10px;
 
}

.footer-center p {
  font-size: 12px;
  color: #ddd;
  white-space: nowrap;
  margin: 30px 0 10px;
}



/* ここからオープニングの設定 */

.opening {
  background-color: rgb(36, 19, 5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* ロゴを画面中央に配置 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* アニメーションの設定 */
  animation: fadeOut 1.5s ease 1.5s forwards; 
}

@keyframes open {
  100% {
    /* opacity: 0;で透明になる */
    opacity: 0;
    z-index: -1;
  }
}

/* ロゴのアニメーションの設定 */
.opening img {
  animation: fadeIn 1.5s ease forwards;
  width: auto;
  height: 150px;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


.wrap {
  height: 100vh;
  /* はみ出した部分を非表示にする */
  overflow: hidden;
  animation: scroll 0s 3s both;
}

@keyframes scroll {
  100% {
    /* overflow: hidden;の解除 */
    overflow: visible;
    /* height: 100vh;の解除 */
    height: auto;
  }
}

body {
  overflow-y: scroll;
}


/* 最初は非表示＆透明＆下にズレておく */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 可視状態になるとフェードインしてズレを戻す */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
