.muji-camp-page {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #F6F2E3;
  color: #13683A;
  line-height: 1.6;
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','メイリオ', Meiryo,sans-serif;
}

.muji-camp-page header {
  background: #13683A;
  position: relative;
  z-index: 100;
}

.muji-camp-page header .inner {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
}

.muji-camp-page header .inner img {
  margin: 0 auto;
  display: block;
}

.muji-camp-page main {
  overflow: hidden;
}

.muji-camp-page .contents {
  max-width: 960px;
  margin: 8px auto 64px;
}

.muji-camp-page .slider-container {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 20px 0;
  position: relative;
  background: #F6F2E3;
}

.muji-camp-page .slider-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.muji-camp-page .slider-content {
  display: flex;
  gap: 16px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  animation: seamlessSlide 55s linear infinite;
}

.muji-camp-page .slide {
  flex: 0 0 326px;
  height: 216px;
}

.muji-camp-page .slide-inner {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.muji-camp-page .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes seamlessSlide {
  0% {
      transform: translateX(-50%);
  }
  100% {
      transform: translateX(calc(-50% - ((326px + 16px) * 5))); /* 5枚分スライド */
  }
}

.muji-camp-page .headline-container {
  text-align: center;
  padding-top: 16px;
  position: relative;
  z-index: 10;
}

.muji-camp-page .headline {
  font-size: 16px;
  border-bottom: 1px solid currentColor;
  padding: 0 0 2px;
}

.muji-camp-page .headline-container .ttl {
  font-size: 32px;
  margin-top: 8px;
  font-weight: bold;
}

.muji-camp-page #section {
  text-align: center;
  border-top: 1px dotted #13683A;
  max-width: 576px;
  margin: 0 auto;
}

.muji-camp-page #section .sub_txt {
  background: #13683A;
  color: #F6F2E3;
  font-size: 12px;
  padding: 2px 6px;
  width: fit-content;
  margin: 0 auto 16px;
  border-radius: 0 0 8px 8px;
}

.muji-camp-page #section p {
  margin: 16px auto;
  font-size: 14px;
  line-height: 1.8;
  border-bottom: 1px dotted #13683A;
  padding-bottom: 16px;
}

.muji-camp-page #section h1 {
  font-size: 24px;
  margin: 24px 0 0;
  font-weight: bold;
}

.muji-camp-page select {
  padding: 12px 24px;
  font-size: 16px;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  border: 2px solid #13683A;
  color: #13683A;
  margin: 16px auto 48px;
  display: block;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2313683A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 16px center;
  cursor: pointer;
}

.muji-camp-page .campground-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 24px 0;
}

.muji-camp-page .campground-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.muji-camp-page .campground-item img {
  width: 358px;
  height: 218px;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}

.muji-camp-page .campground-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 48px 40px 0 0;
}

.muji-camp-page .campground-item h2 {
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
}

.muji-camp-page .campground-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  border-bottom: 1px solid;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.muji-camp-page .campground-item a {
  display: inline-block;
  padding: 8px 40px;
  background: #FFDB3F;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: opacity 0.3s;
  width: fit-content;
  position: relative;
  font-weight: bold;
}

.muji-camp-page .campground-item a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%) rotate(45deg);
	border-top: solid 1.5px #000;
	border-right: solid 1.5px #000;
	display: inline-block;
	width: 8px;
	height: 8px;
}

.muji-camp-page .campground-item a:hover {
  opacity: 0.8;
}

.muji-camp-page footer {
	background: #13683A;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
}
.muji-camp-page footer p {
	margin: 0;
	font-size: 13px;
  color: #F6F2E3;
}

.muji-camp-page .sp{
  display: none;
}

.muji-camp-page .footer_sns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.muji-camp-page .sns-item a {
  display: inline-block;
}

.muji-camp-page .sns-item svg {
  width: 32px;
  height: 32px;
  fill: #13683A;
}

@media (max-width: 768px) {
  .muji-camp-page header{
    padding: 0;
  }

  .muji-camp-page header .inner{
    padding: 0;
    height: 48px;
  }

  .muji-camp-page .headline {
    font-size: 18px;
  }

  .muji-camp-page .headline-container{
    padding-top: 0;
  }

  .muji-camp-page .headline-container .ttl {
    font-size: 32px;
    margin-bottom: 0;
  }

  .muji-camp-page .contents {
    padding: 16px 16px;
    margin-bottom:24px;
    margin-top: 0;;
  }

  .muji-camp-page #section .sub_txt{
    font-size: 14px;
  }
  .muji-camp-page #section h1{
    font-size: 24px;
    margin: 16px 0 0;
    line-height: 32px;
  }

  .muji-camp-page #section p{
    font-size: 16px;
    line-height: 28px;    
  }

  .muji-camp-page .campground-item {
    flex-direction: column;
    gap: 20px;
  }

  .muji-camp-page .campground-item h2{
    line-height: 24px;
  }

  .muji-camp-page .campground-item p{
    line-height: 24px;
  }

  .muji-camp-page .campground-item a{
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 16px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .muji-camp-page .campground-list{
    margin: 24px auto 0;
    padding: 0;
  }
  
  .muji-camp-page .campground-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    border-radius: 8px 8px 0 0;
  }
  
  .muji-camp-page .campground-item-content {
    text-align: left;
    padding: 0px 16px 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .muji-camp-page select {
    font-size: 14px;
    padding: 10px 20px;
    margin: 24px auto 32px;
  }

  .muji-camp-page .slide {
    flex: 0 0 166px;
    height: 110px;
}

.muji-camp-page .slider-content {
    width: calc((166px + 16px) * 6);
    transform: translateX(calc(-1 * (166px + 16px)));
    padding: 0 calc((100vw - 166px) / 2);
}

@keyframes infiniteSlide {
    from {
        transform: translateX(calc(-1 * (166px + 16px)));
    }
    to {
        transform: translateX(calc(-5 * (166px + 16px)));
    }
  }

  .muji-camp-page .sp{
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .muji-camp-page .slider-content {
    animation: none;
  }
}