﻿@charset "utf-8";

.p-fv__scroll-dot {
	animation: fluffy 3s infinite;
}

@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}

.p-single__content .p-single__info-wrap {
  margin-bottom: 2rem;
}