@charset "UTF-8";

body {
    height: 3000px;
    margin: 0px;
    background-color: #ffffff;
    font-weight: lighter;
    width: 100%;
       
}

.footer-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  background-color: #ffffff;
}

/* 背景イメージレイヤー */
.bg-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 40%; /* 幅を狭く */
  height: auto;
  aspect-ratio: 1/1;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.bg-layer.active {
  opacity: 1;
  z-index: 1;
}

/* オーバーレイ効果（背景を薄くグレー） */
.footer-image::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6); /* 半透明の白 */
  z-index: 0;
}

/* Menu */
#load_menu_jp {
  width: 100%;
  height: 100px;
}

#load_menu_en {
  width: 100%;
  height: 100px;
}



/* ロゴ */
.logo {
  display: flex;
  justify-content: center;  /* 中央寄せ */
  align-items: center;
  margin: 20px auto;
}

.logo img {
  width: 100px;   /* 適宜サイズ調整 */
  height: auto;
  cursor: pointer;
}


/* 言語 */
.language-select{
    color: black;
    font-size: 20px;
  position: fixed;
  top: 0px;
  right:150px;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  padding: 0px;
  background: transparent;
  cursor: pointer;
  z-index: 4;
}

.language-select ul{
      width: 40px;
  height: 40px;
    display: flex;
    flex-direction: row;
    list-style-type: none;
}

.language-select li{
    margin-top: 20px;
}

.language-select_item a{
    color: black;
    font-weight: lighter;
    text-decoration: none;

}

.language-select_item.current a{
    font-weight: bold;
}

/* カートアイコン */
.cart_icon img {
  position: fixed;
  top: 30px;
  right:30px;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  padding: 0px;
  background: transparent;
  cursor: pointer;
  z-index: 4;
}

/* サイドオープン時にメインコンテンツを覆う部分 */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 3;
}
.overlay::after {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 40%;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  color: rgba(255,255,255,0);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0,0,0,.7);
}
.side-open .overlay::after {
  visibility: visible;
  color: rgba(255,255,255,.8);
}

/* 開閉用ボタン */
.side-menu-btn {
  position: fixed;
  top: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  padding: 0px;
  background: transparent;
  cursor: pointer;
  z-index: 4;
}

.side-menu-btn img {
  width: 40px;
  height: 40px;
}

/* サイドメニュー  */
.side-menu {
  position: fixed;
  top: 90px;
  left: 0px;
  width: 350px;
  height: 100%;
  text-align: left;
  font-size: 30px;
  background: white;
  z-index: 1;
}

.side-menu li{
  list-style:none;
  height: 70px;
}

.side-menu li a{
  text-decoration: none;
  color: gray;
}

/* 全体のコンテンツ */
.page {
  position: absolute;
  width: 100%;
  height: 3000px;
  text-align: center;
  font-size: 13px;
  background: #ffffff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 2;
}

/* サイドメニューオープン */
.side-open .page,
.side-open .overlay {
  -webkit-transform: translate3d(350px, 0, 0);
  transform: translate3d(350px, 0, 0);
}

/* コンテンツ */


/* リスト */
.item h3{
  margin-top: 40px;
}

.slider-container {

    opacity: 0;
  transform: translateX(-100px);
  transition: all 0.7s ease;

  display: flex;
  align-items: center;
  width: 100%;
    overflow: hidden;
  height: 400px;
  position: relative;
}

.slider-container.show {
  opacity: 1;
  transform: translateX(0);
}


.item-list {
  display: flex;
  width: 90%;
 
  transition: transform 0.5s ease; /* ← ここがアニメーション */
}

.prev-btn, .next-btn {
    background: #ffffff;
  border: none;
  width: 5%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  align-self: stretch; /* ←高さ最大に */
    
  display: flex;
  align-items: center;
  justify-content: center;

  transition: background-color 0.3s;
}



/* PCだけhover */
@media (hover: hover) and (pointer: fine) {
  .prev-btn:hover, .next-btn:hover {
    background-color: rgba(150, 150, 150, 0.7);
  }
}

/* 押してる間だけ */
.prev-btn:active, .next-btn:active {
  background-color: rgba(150, 150, 150, 0.7);
}

.prev-btn span, .next-btn span {
  font-size: 32px; /* 矢印の大きさ */
  user-select: none;
  pointer-events: none; /* ← テキスト部分のクリック透過 */
}

.item-list-content {
  min-width: calc(100% / 5);
  margin: 0;
  background: #ffffff;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

/* 中サイズ：3件表示 */
@media (max-width: 1024px) {
  .item-list-content {
    min-width: calc(100% / 3);
  }
}

/* スマホ：2件表示 */
@media (max-width: 600px) {
  .item-list-content {
    min-width: calc(100% / 2);
  }
}


.item-list-content a {
  text-decoration: none;
  color: black;
}
.item-list-image {
  position: relative;
    width: 100%;
      aspect-ratio: 1/1; /* 正方形にする */
}

.item-list-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* 高さを優先して全体を収める */
  transition: opacity 0.3s ease;
}

.item-list-image img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.item-list-content:hover .item-list-image img.hover {
  opacity: 1;
}

.item-list-content:hover .item-list-image img.normal {
  opacity: 0;
}

.item-list-detail{
  width: 100%;
  aspect-ratio: 4/1;
}

.item-list-detail p {
  width: 80%;
  margin: auto;
}

.tax-info {
  font-size: 10px;
  color: gray;
}

/* CONCEPT */
.concept-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}

.concept-section h1 {
  font-size: 2.5em;
  color: #d09fa1;
  margin-bottom: 20px;
  line-height: 1.3;
}

.concept-section h2 {
  font-size: 1.8em;
  color: #a0787c;
  margin-top: 30px;
}


.concept-section p {
  font-weight: 300;
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.concept-section strong {
  font-weight: bold;
  color: #a7656f;
}

.concept-section .tagline {
  font-style: italic;
  font-size: 1.2em;
  color: #a7656f;
  margin-top: 10px;
}

.concept-section .tagline {
  font-style: italic;
  font-size: 1.2em;
  color: #a7656f;
  margin-top: 10px;
}