@charset "UTF-8";
/* CSS Document */
    body {
      margin: 0;
      background: #fff;
    }

    .slideshow-container {
      overflow: hidden;
      width: 100%;
      height: 250px;
		  z-index: 1;
    }

    .slide-row {
      display: flex;
      width: max-content;
      animation: slide-left 30s linear infinite;
    }

    .slide-row.reverse {
      animation: slide-right 30s linear infinite;
    }

.slide-item img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  display: block; /* ← ブラウザの隙間防止に補強 */
  /* margin は完全に削除 */
}

    @keyframes slide-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes slide-right {
      0% {
        transform: translateX(-50%);
      }
      100% {
        transform: translateX(0);
      }
    }





img:hover {
   opacity: 0.75; /* 25％ほど透明にする */
}


img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* この一行を追加するだけ！ */
}


* {
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
}


.border{
	width: 180px;
	border: solid 1px #454545;
	padding: 10px;
}

.footer {
  position: absolute;/*②絶対位置*/
  bottom: 0; /*下に固定*/
}




.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3カラム */
  gap: 30px;
  padding: 5px;
}

.img-wrap {
  position: relative;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  display: block;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.img-wrap:hover .hover-img {
  opacity: 1;
}


 .img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* 画像比率に合わせて変更可 */
  overflow: hidden;
}

.img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.img-wrap .hover-img {
  opacity: 0;
  z-index: 1;
}

.img-wrap .default-img {
  z-index: 0;
}

.img-wrap:hover .hover-img {
  opacity: 1;
}

.img-wrap:hover .default-img {
  opacity: 0;
}



.divlogo {
	width:	250px;
     height: 25px;
	margin-bottom: 20px;
	}


.div{
  font-family: 'Helvetica';
}

.image-wrapper {
  position: relative;
}


a:link {
  color:rgba(var(--color-foreground), 0.75) !important;
}
a:visited {
  color:rgba(var(--color-foreground), 0.75) !important;
}
a:active {
  color:rgba(var(--color-foreground), 0.75) !important;
}

a:hover {
   opacity: 0.75; /* 25％ほど透明にする */
}


.text-small {
  font-size: 10px;
  font-family: Helvetica, sans-serif;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .left {
    display: none;
  }

  .right {
    width: 100%;
    margin-left: 0;
    padding: 10px; /* 必要なら調整 */
  }
}

h1 {
      letter-spacing: 2px;
      font-size: 24px;
      margin-bottom: 40px;
        font-family: 'Times New Roman', Times, serif;
    }

    .section1 {
      margin-bottom: 50px;
    }

    .section1-title {
      font-weight: bold;
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      display: inline-block;
      padding: 5px 300px;
      margin-bottom: 20px;
      font-size: 14px;
        font-family: 'Times New Roman', Times, serif;    }

    .brand-columns {
      display: flex;
      justify-content: center;
      gap: 180px;
      flex-wrap: wrap;
        font-family: 'Times New Roman', Times, serif;
    }

    .column {
      text-align: left;
      line-height: 1.8;
        font-family: 'Times New Roman', Times, serif;
    }

    .note {
      margin-top: 10px;
      font-style: italic;
      font-size: 12px;
        font-family: 'Times New Roman', Times, serif;
    }

@media (min-width: 768px) {
  .header {
    display: none !important;
  }
}

.grid-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3カラム */
  gap: 5px;
  padding: 5px;
}

.default-img,
.hover-img {
  display: block;
  width: 100%;
  transition: opacity 0.3s;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.img-wrap:hover .hover-img {
  opacity: 1;
}

  .divlogo2 {
    padding: 0;
    width: 30%;
    text-align: center;
  }

.center-svg-overlay {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none; /* スライド操作の邪魔をしない */
}

.center-svg-overlay img {
  width: 360px; /* 適宜サイズ調整 */
  height: auto;
  opacity: 0.85; /* 任意で透明感を出す */
}

    .container-item {
      color: #ffffff;
      background: #ffffff;
      padding: 40px 20px;
		}

.img-wrap {
  position: relative;
  overflow: hidden;
}

.label-text {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-family: Helvetica, sans-serif;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  font-weight: normal
}

  .divlogo2 {
    padding: 0;
    width: 60%;
  }

  .datail {
    font-size: 6px;
    text-align: right;
    margin: 0;
    padding: 10px 0;
    width: 100%;
    min-width: auto;
	font-weight: 700; /* ←これで太字 */

  }
		

	.title3 {
  display: inline-block; /* 線をテキスト幅に合わせる */
  padding-bottom: 2px; /* 線と文字の間の隙間 */
  margin-bottom: 6px; /* 下のテキストとの余白 */
    background: #fff;
  overflow-x: hidden;
    font-size: 8px;
	  font-weight: 700; /* ←これで太字 */

}


.btn-wrap{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2px;
  margin-top:10px;
}

a.btn_04{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  height:30px;
  background:#fff;
  border:1px solid #000;
  color:#000;
  font-family:"Avenir","Helvetica Neue",Arial,sans-serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:.1em;
  text-decoration:none;
  transition:.3s;
  box-sizing:border-box;
}
	
a.btn_04:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}
a.btn_04:hover {
  background: #000;
  color: #fff !important;  /* 重要度アップ */
}

a.btn_04:hover:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}


.product {
  width: 100%;
  margin: 0 auto;     /* 中央寄せしたい場合 */
  font-family: "Helvetica Neue", Arial, sans-serif;
}


.slick-carousel {
  position: relative;
  box-sizing: border-box;
}

.slick-slide {
  margin: 0 10px; /* スライド間の余白 */
}

.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 30px;
  z-index: 5;
  cursor: pointer;
}

.slick-prev { left: 0; }
.slick-next { right: 0; }

/* 矢印ボタンのスタイルを完全にリセット */
.slick-prev, .slick-next {
  background: transparent !important; /* 背景を透明に */
  border: none !important; /* 枠線を削除 */
  color: #000 !important; /* 矢印の色を黒に設定 */
  font-size: 30px !important; /* フォントサイズの設定 */
  cursor: pointer; /* カーソルをポインタに */
  outline: none !important; /* フォーカス時の青い枠線を消す */
  padding: 0 !important; /* 内部の余白を削除 */
}

.slick-prev, .slick-next {
  text-align: center;
  line-height: 0; /* 矢印が中央に配置されるように調整 */
}

.slick-prev:focus, .slick-next:focus,
.slick-prev:active, .slick-next:active {
  outline: none !important; /* フォーカス時の青い枠線を消す */
  color: #000 !important; /* フォーカス時も黒色に */
}


.slick-carousel .slick-item {
  display: flex;
  justify-content: space-between;  /* アイテムを横並びに配置 */
}

.slick-carousel .slick-item .content {
  width: 48%;  /* 2カラムにするために、各アイテムの幅を48%に設定 */
  box-sizing: border-box;
}

/* カルーセル画像のコンテナ */
..image-wrapper {
  position: relative;
  display: inline-block;
  height: auto;
}

.image-wrapper img {
  display: block;
  height: auto;
}

/* キャプションのスタイル（テキストエリア） */
.image-wrapper .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒色 */
  color: white;
  text-align: left;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center; /* テキストとアイコンを縦方向に中央揃え */
  justify-content: space-between; /* テキストとアイコンを左右に配置 */
  z-index: 1; /* 他の要素より上に配置 */
}


.lookSwiper {
  width: 100%;
  overflow: hidden;
}

.lookSwiper .swiper-slide {
  width: auto;
}

.lookSwiper img {
  width: 100%;
  display: block;
}


.look-lead {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 20px;
}

/* サブコピー */
.lead-sub {
  font-size: 12px;
  letter-spacing: .12em;
  margin-bottom: 10px;
  color: #111;
}

/* タイトル */
.lead-title {
  font-size: 28px;
  letter-spacing: .05em;
  margin-bottom: 16px;
  font-weight: 400;
}

/* 本文 */
.lead-text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: .02em;
  color: #333;
}

/* SP調整 */
@media (max-width: 767px) {

  .look-lead {
    margin: 0 auto 40px;
  }

  .lead-title {
    font-size: 20px;
  }

  .lead-text {
    font-size: 12px;
    line-height: 1.9;
  }
}

@media (max-width: 767px) {

  .look-item {
    width: 70vw; /* 1枚メイン */
  }

  .look-row {
    gap: 16px;
    animation-duration: 18s;
  }
}


@media (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-title {
    font-size: 14px;
    margin: 24px 0 8px;
  }
}


.grid-title {
 grid-column: 1 / -1; /* ←これ超重要（全幅） */
 letter-spacing: .08em;
 font-family: "Times New Roman", "Times", serif !important;
  font-weight: 700; /* ←これで太字 */
  margin: 40px 0 10px;
  padding-bottom: 6px;
}



.grid-title .small{
  font-size: 10px;
  display: inline-block;
}

.grid-title .large{
  font-size: 20px;
  display: inline-block;
  margin-top: 6px;
}


.top-visual {
  width: 100%;
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;
  padding: 20px 0 40px; /* ←上20 / 下40 */
}

.top-visual img {
  width: auto;
  max-width: 150px; /* 必要なら調整 */
  height: auto;
  display: block;
}


.img-wrap {
  border: 1px solid #000;
}


.product-back{
    display:none;
}

.product.active .product-front{
    display:none;
}

.product.active .product-back{
    display:block;
}





.product.active{
    grid-column: span 2;
    transition: all .35s ease;

}

.product.active .datail{
  font-size:10px!important;
  line-height:1.8;
  text-align:right;   /* 左揃えの方が読みやすい */
}



.product.active .title3{
  font-size:15px;
  margin-bottom:15px;
  display:block;
}

.product.active .btn_04{
  height:48px;
  font-size:12px;
}




a{
  text-decoration: none;
}


.fade-slider{
  position: relative;
  overflow: hidden;
}

.fade-slider .slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

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



.img-wrap{
  position: relative;
  overflow: hidden;
}

.fade-slider{
  width: 100%;
  height: 100%;
}



/* =========================
   RESET
========================= */

/* =========================
   SECTION（ここが重要）
========================= */
.grid {
  position: relative;   /* ← stickyやz-index禁止 */
  width: 100%;
  background: #fff;
}

/* セクション間の余白 */
.grid + .grid {
  margin-top: 60px; /* ← 負のmargin絶対NG */
}

/* =========================
   TITLE（ここだけsticky許可）
========================= */
.grid-title {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  padding: 5px 20 5px 0;
}

.grid-title .small {
  font-size: 8px;
  letter-spacing: 0.05em;
}

.grid-title .large {
  font-size: 15px;
  letter-spacing: 0.05em;
}



.look-lead{
  text-align:center;
  padding:120px 20px 90px;
  max-width:900px;
  margin:0 auto;
  color:#000;
}

/* 小さく薄い情報 */
.lead-sub{
  font-family:"Helvetica Neue", Arial, sans-serif;
  font-size:7px;
  letter-spacing:0.35em;
  font-weight:600;
  opacity:0.5;
  margin-bottom:20px;
  text-transform:uppercase;
    color:#000;

}

/* 主役 */
.lead-title{
  font-family:"Didot","Times New Roman",serif;
  font-size:15px;
  font-weight:700;
  letter-spacing:0.25em;
  margin:0 0 30px;
  line-height:1.2;
  color:#000;

}

/* 説明文 */
.lead-text{
  font-family:"Helvetica Neue", Arial, sans-serif;
  font-size:7px;
  line-height:2.2;
  letter-spacing:0.08em;
  max-width:600px;
  margin:0 auto;
  opacity:0.8;
   color:#000;
}



a.btn_04:before {
  display: none;
}


.btn-online {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  background: transparent;
  font-family: 'Times New Roman', Times, serif;

}


.btn-online:hover {
  background: #111;
  color: #fff;
  letter-spacing: 0.2em;
}