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

    .slideshow-container {
      overflow: hidden;
      width: 100%;
      height: 350px;
		  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: 300px;
  height: 350px;
  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(5, 1fr); /* 3カラム */
  gap: 5px;
  padding: 5px;
}

.grid-item {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 3カラム */
  gap: 5px;
  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;
}



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

.image-wrapper {
  position: relative;
}


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

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


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

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

.left-text {
  position: absolute;
  left: 10px;
  bottom: 5px;
  font-size: 12px;
  color: black;
  font-weight: normal;
  z-index: 10; /* 画像より前面に表示 */
}

.right-text {
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-size: 5px;
  color: black;
  font-weight: normal;
  z-index: 10; /* 画像より前面に表示 */
}




.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: 26%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none; /* スライド操作の邪魔をしない */
}

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

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

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


.fixed-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

/* 固定バーの下にくるように、containerに上マージンを追加 */
.container {
  margin-top: 50px; /* .fixed-barの高さと同じに */
}


.tabs {
  display: flex;
  justify-content: center; /* 中央揃え */
  gap: 100px;
  margin-bottom: 20px;
}

.tab-btn {
  margin-top: 100px; /* .fixed-bar の高さ分 */
  padding: 15px 150px;
  border: 1px solid #333;
  background: #fff;
  cursor: pointer;
}

.tab-btn.active {
  background: #333;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-btn.font-adam {
font-family: 'Active Grotesk', sans-serif;
   font-weight: 500;    /* 太さを変更（100〜900で指定） */
  letter-spacing: 5px;     /* 文字間隔を調整 */
  font-size: 16px; 
}



@font-face {
  font-family: 'Adorn Engraved Regular';
  src: url('adorn-engraved.ttf') format('woff2');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Adorn Engraved Regular';
  src: url('../fonts/AdornEngraved-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.tab-btn.font-wild {
  font-family: 'Adorn Engraved Regular', serif;
  font-size: 16px;
  color: #333;
}

.tab-btn.font-wild.active {
  background: #333;
  color: #fff;
}


.menu-btn {
      position: fixed;
      top: 150px;
      left: 0px;
      z-index: 1001;
      background: #000;
      color: #fff;
      padding: 5px 15px;
      cursor: pointer;
      border-radius:　0px;
	  font-size: 15px;
    }

    /* サイドメニュー */
    .side-menu {
      position: fixed;
      top: 0;
      left: -560px; /* 初期は隠す */
      width: 500px;
      height: 100%;
      background: #fff;
      color: #000;
      transition: left 0.3s ease;
      z-index: 1000;
      padding: 0px;
      box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }
    .side-menu.open {
      left: 0;
    }
    .side-menu a {
      display: block;
      color: #000;
      text-decoration: none;
      margin: 15px 0;
      font-size: 16px;
    }
    .side-menu a:hover {
      text-decoration: underline;
    }

    /* オーバーレイ */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      display: none;
      z-index: 999;
    }
    .overlay.show {
      display: block;
    }

    /* ページコンテンツ */
    main {
      padding: 80px 20px; /* ボタンと被らないように上に余白 */
    }

.close-btn {
  text-align: right;
  font-size: 15px;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 20px;
  color: #000;
}
.close-btn:hover {
  text-decoration: underline;
}

.side-menu {
  z-index: 1002; /* ← ここを追加 or 修正 */
}

.overlay {
  z-index: 1000; /* ← サイドメニューより小さい数に */
}

.side-menu {
  padding: 0px 30px;   /* 上下20px 左右30px */
}

.side-menu {
  position: fixed;
  top: 0;
  left: -560px;
  width: 500px;
  height: 100%;
  background: #fff;
  color: #000;
  transition: left 0.3s ease;
  z-index: 1002;
  padding: 20px 30px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);

  /* 追加部分 */
  overflow-y: auto;    /* 縦スクロール有効 */
  -webkit-overflow-scrolling: touch; /* スマホでスムーズスクロール */
}