/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 93:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.tabs-container { margin-top: 30px; }

.tab-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab-buttons button {
  border: 1px solid black;
  padding: 8px 20px;
  background-color: white;
  cursor: pointer;
}

.tab-buttons button.active {
  background-color: black;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tab-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
  margin-top: 30px;
}

.tab-gallery img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.tab-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 横2列に */
  gap: 20px;
  margin: 40px auto 0; /* 上から40px空けて中央揃え */
  width: 70%;
}
  
.youtube-video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube-video-wrapper iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 749px) {
  .tab-gallery {
    grid-template-columns: 1fr;
  }

  .tab-gallery img {
    width: 80vw;
  }

  .tab-videos {
    grid-template-columns: 1fr;
  }
}
</style>