<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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: 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;
}



.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;
  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;
}

@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: 24%;
  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: #000;
      background: #000;
      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%;
  }


</pre></body></html>