@charset "utf-8";
body {
  background-color: #f2f9ff;
}

.grid {
    display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  max-width: 1000px;
  margin: auto;
  padding: 30px;
}
.img-item {
    opacity: 0;
    width: 100%;
    /* aspect-ratio: 3 / 2; */
    object-fit: cover;
}
h2, h3 {
    width: 1000px;
    margin: 0 auto;
}
h3 {
    right: 0;
    font-size: 16px;
}

#breadcrumb {
    background-repeat: no-repeat;
}

#top #header_nav_loghouse a {
  background-position: 0 -60px;
  pointer-events: none;
}

/* 流れるログハウスここから */
.marquee-section {
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-repeat: repeat;
  background-color: #e8e6e5;
}

.marquee-section-footer {
  background-repeat: repeat;
  padding: 2.5rem 0;
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 2rem ;
  animation: marqueeLeft 30s linear infinite;
  flex-shrink: 0;
  width: max-content;
}

.marquee-reverse .marquee-content {
  animation: marqueeRight 30s linear infinite;
}

.marquee-content img {
  width: 124px;
  height: 104px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

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

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