@charset "UTF-8";
.container {
  margin: 0 auto;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease; /* スピード調整 */
}

.accordion-content.open {
  max-height: 1000px; /* 開いたときの十分な高さ */
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.rotate-180 {
  transform: rotate(180deg);
}

.loader-hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}

/* HTML: <div class="loader"></div> */
.loader {
  height: 4px;
  width: 130px;
  --c: no-repeat linear-gradient(#39a7ff 0 0);
  background: var(--c), var(--c), rgba(228, 244, 250, 0.9882352941);
  background-size: 60% 100%;
  animation: l16 3s infinite;
}

@keyframes l16 {
  0% {
    background-position: -150% 0, -150% 0;
  }
  66% {
    background-position: 250% 0, -150% 0;
  }
  100% {
    background-position: 250% 0, 250% 0;
  }
}
/* 共通スタイル */
.review-section,
.instagram-section {
  position: relative;
  background-size: cover;
  background-position: center;
  filter: brightness(1.1);
  overflow: hidden;
}

.review-section .overlay,
.instagram-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.review-section .container,
.instagram-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  padding: 80px 16px;
}

/* 波の基本スタイル */
.wave {
  position: absolute;
  width: 100%;
  height: 80px;
  left: 0;
}

/* 口コミセクション（下に波） */
.review-section .wave {
  bottom: 0;
}

/* Instagramセクション（上に波） */
.instagram-section .wave-top {
  top: 0;
  transform: rotate(180deg);
}

.mark_blue {
  background: linear-gradient(to bottom, transparent 60%, #bde1ff 0%);
  display: inline;
  padding: 0 2px;
}

/*# sourceMappingURL=style.css.map */
