@charset "UTF-8";
/* base
------------------------------*/
body {
  margin:0;
  font-family: 'Helvetica Neue', sans-serif;
  background: #000;
  color: #3e3e3e;/**文字テキスト**/
}
.grid-container2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:1px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #ddd;
}

.grid-container3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #ddd;
}

.grid-container4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #ddd;
}


/*スライド*/
* { box-sizing: border-box; }
.carousel25 {
  position: relative;
  overflow: hidden;
  max-width: 1200px;  
  margin: 0 auto; 
  background:#ddd; /* 隙間が見えるよう色 */
}

/* 横スクロール枠 */
.c25-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* スマホでなめらか */
  scroll-snap-type: x mandatory;     /* カードごとにピタッと止まる（任意） */
}

.c25-scroll {
    scrollbar-width: none;     /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
  }

.c25-scroll::-webkit-scrollbar {
    display: none;             /* Chrome / Safari / iOS */
  }

/* 中身を横並びに */
.c25-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1px; /* ★ コンテンツ間の隙間1px */
}

.c25-product{
  margin: 0 auto; 
  width: 100%;
  max-width: 1200px; 
  display: flex;
  gap: 1px;
  background:#ddd; 
}

.c25-item {
  flex: 0 0 calc(25% - 1px); /* ★ 隙間を引いた25% */
  aspect-ratio: 10 / 13;
  position: relative;
  background: #f6f4ef;         
  text-align: center;
  border-top:1px solid #ddd;
  border-bottom:1px solid #ddd;
}

@media screen and (max-width:789px) {
/* sp：3枚表示（例） */
.c25-item {
    flex: 0 0 40% ;/*calc(50% - 1px);*/
    aspect-ratio: 10 / 15;
    scroll-snap-align: start;
}
 /* SPでは左右ボタンを非表示にする */
.c25-nav {
    display: none;
  }
}

/* 矢印ボタン */
.c25-nav {
  position: absolute;
  top: 50%; 
  transform: translateY(-50%);
  border: none;
  font-size: 24px;
  padding: 15px 14px;
  border-radius: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  cursor: pointer; 
  z-index: 10;
}
.c25-prev { left: 0px; }
.c25-next { right: 0px; }
.c25-nav:disabled { opacity: .3; cursor: default; }



.item {
  background: #f6f4ef;
  box-sizing: border-box;
  
}
.img-full {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 13; /* ← ここに移動 */
  overflow: hidden; 
}

.img-full_sp {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 10; /* ← ここに移動 */
  overflow: hidden; 
}

.img-full img,
.img-full video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.img-full_sp img,
.img-full_sp video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 3s ease;
}

.fade-slide.active {
  opacity: 1;
}

.op{
opacity: 0.8;
}

.zoom-wrap {
  overflow: hidden; /* 親 */
  position: relative;

}

.zoom-wrap img,
.zoom-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠にフィット */
  transition: transform 0.5s ease;
  transform-origin: center center;


}

/* PC hover時 / SPタップ時にズーム */
.zoom-wrap:hover img,
.zoom-wrap:active img,
.zoom-wrap:hover video,
.zoom-wrap:active video {
  transform: scale(1.2);    /* ズーム倍率 */
}

.img-full p{
  position: absolute;
  top: 50%;          
  left: 50%;          
  transform: translate(-50%, -50%);
  white-space: nowrap; 
  text-align: center;
  font-size: 28px;
  font-weight: 900; 
  line-height: 1.2;
  color:#000000;
  text-shadow: 0px 0px 2px rgba(255, 254, 227,0.6);
}

.img-full .small{
  font-size: 0.6em;
}

@media screen and (max-width:789px) {
   .img-full p{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
  }
  
  .img-full .small{
  font-size: 0.6em;
}
}

.text-full{
position: relative;
padding: 10% 5%;
text-align:left;
}

@media screen and (max-width:789px) {
.text-full{
padding: 20px 0px 8px 20px;
}
}

.text-full_sp{
width: 100%;
aspect-ratio: 10 /5;
border-bottom:1px solid #ddd;
}

.text-full h2 {
  font-size: 45px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.text-full p {
  position: absolute;
  font-size: 14px;
  line-height: 1.6;
  padding-right:5%;
  bottom: 50px;
}

.text-full a {
  font-size: 14px;
  text-decoration: underline;
}

@media screen and (max-width:789px) {
.text-full h2 {
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.text-full p {
  font-size: 12px;
  bottom:10px;
}

.text-full a {
  font-size: 12px;
}
}

/* product cards */
.c25-item h3 {
 padding:20% 10%;
  font-size: 20px;
  font-weight:700;
  text-align:left;
  line-height: 1.5;
}
.c25-item .samll{
 font-size:0.5em;
}

.c25-item p{
 position:absolute;
 top: 65%;
 left: 50% ;
 transform: translateX(-50%);
 text-align: center;
 white-space: nowrap;
 font-size: 12px;
 line-height: 1.5;
}

.c25-item img{
 position:absolute;
 bottom: 40%;
 left: 50%;
 transform: translateX(-50%);
  width: 25%;
  height:auto;
height:auto; 
display: block;

}

.c25-item .s{
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.c25-item a{
  text-align: center;
  font-size: 12px;
  font-weight:bold;
  text-decoration: underline;
  display: inline-block;
  padding-top: 10px;
}


@media screen and (max-width:789px) {

.c25-item p{
 position:absolute;
 top: 55%;
 left: 50% ;
 transform: translateX(-50%);
 text-align: center;
 white-space: nowrap;
 font-size: 12px;
 line-height: 1.4;
}

.c25-item img{
 position:absolute;
 bottom: 47%;
 left: 50%;
 transform: translateX(-50%);
  width: 23%;
  height:auto;
  display: block;
}

.c25-item .s{
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.c25-item a{
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  text-decoration: underline;
  display: inline-block;
  padding-top: 7px;
}

}

.product p{
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  
}

.product small{
  font-size: 12px;
  color: #555;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  font-size: 14px;
  margin-bottom: 4px;
}


.c25-item.is-new{
  position: relative;
  overflow: hidden;
}

.c25-item.is-new .new-badge{
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  min-width: 56px;
  height: 24px;
  padding: 0 10px;

  background: #000;
  color: #ddd;

  font-size: 11px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.08em;
  text-align: center;

  z-index: 20;
}

@media screen and (max-width:789px){
  .c25-item.is-new .new-badge{
    min-width: 50px;
    height: 20px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 20px;
  }
}