@charset "UTF-8";

/* 共通部分 */
body {
  font-family: "Poppins", "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .05em;
  color: #333333;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: #333333;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* 全体設定 */
.section {
  padding: 90px 0;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

ul {
  list-style: none;
}


/* メインビジュアル */
.mv {
  width: 100%;
  overflow: hidden;
}

.mv-container {
  position: relative; 
  width: 100%;
  text-align: center;
}

.mv-container img {
  width: 100%;
  height: auto;
  vertical-align: bottom; 
}

.mv-text-wrap {
  position: absolute; 
  top: 18%;           
  left: 50%;          
  transform: translate(-50%, -50%); 
  pointer-events: none;
}

.mv-text {
  font-size: 24px;
  color: #a5a1a1;    
  text-align: center;
  white-space: nowrap; 
  margin: 0;
}

/* アニメーション */
.blur-in {
  animation: focusIn 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
  filter: blur(12px);
}

.blur-in.delay {
  animation-delay: 0.8s;
}

@keyframes focusIn {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
}

/* ギャラリー・カルーセル */
.gallery-lead {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 100px;
  margin-bottom: 200px;
  color: #333333;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.carousel-section {
  width: 100%;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex; 
  width: max-content;
  user-select: none;
  animation: loop-scroll 40s linear infinite;
}

.carousel-list {
  display: flex;
  gap: 20px;
  padding-right: 20px; 
  flex-shrink: 0;
}

.carousel-item {
  width: 260px;
  flex-shrink: 0;
}

.carousel-img {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
}

@keyframes loop-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* フッター */
.footer {
  padding: 30px;
  background-color: #ffffff;
}

.copyright {
  font-size: 10px;
  text-align: center;
  color: #797979;
}

/* カウンター */
.counter-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.counter-label {
  font-size: 11px;
  font-family: "Poppins", sans-serif;
  color: #797979;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}

.counter-area * {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.counter-area img {
  display: inline-block !important;
  vertical-align: middle;
}

/* レスポンシブ（768px以下） */
@media screen and (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .container {
    padding: 0 20px;
  }

  .mv-text {
    font-size: 14px;
    top: 18%;
  }


  .gallery-lead {
    font-size: 12px;
    margin-top: 50px;
    margin-bottom: 100px;
  }

  .carousel-item {
    width: 140px;
    flex-shrink: 0;
  }

  .carousel-img {
    width: 100%;
    height: 190px;
    overflow: hidden;
  }

  .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-title {
    font-size: 12px;
    margin-top: 6px;
  }

  .carousel-list {
    gap: 12px;
    padding-right: 12px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}