@charset "UTF-8";

/*----------------------------------------
	- base
-----------------------------------------*/

/*=======================================
	base
=======================================*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
img,
figure,
picture {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
ul,
li {
	list-style: none;
}
a {
	text-decoration: none;
	opacity: 1;
	transition: all 0.3s ease;
}
@media (hover: hover) {
	a:hover {
		opacity: 0.8;
	}
}

/*=======================================
	page02
=======================================*/
#main .fsvs-body .content {
	container-type: inline-size;
  container-name: main-container; 
	background-color: #fff;
	filter:blur(0);
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	background-clip: content-box;
}
#main .fsvs-body .content .item {
	content: '';
	position: absolute;
}
#main .fsvs-body .content .item.set_bg {
	width: 100%;
	height: 100%;
	display: flex;
	top: 0;
	left: 0;
	z-index: 10;
}
#main .fsvs-body .content .item.ttl {
	width: 67.2cqw;
	top: 33.3333cqw;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
}
#main .fsvs-body .content .item.pop01 {
	width: 37.333cqw;
	top: 46.4cqw;
	left: 12.6666cqw;
	z-index: 10;
	opacity: 0;
}
#main .fsvs-body .content .item.pop02 {
	width: 37.333cqw;
	top: 50.666cqw;
	right: 12.6666cqw;
	z-index: 10;
	opacity: 0;
}
#main .fsvs-body .content .item.bg {
	width: 88.53cqw;
	bottom: 18.666cqw;
	left: 50%;
	transform: translateX(-50%);
}
#main .fsvs-body .content .item.man {
	width: 42.6666cqw;
	bottom: 16.5333cqw;
	left: 50%;
	transform: translateX(-50%);
}
#main .fsvs-body .content .item.sun {
	width: 24.2666cqw;
	bottom: 81.333cqw;
	left: 7.2cqw;
}
#main .fsvs-body .content .item.ase01 {
	width: 2.42666cqw;
	bottom: 82cqw;
	right: 44.5333cqw;
}
#main .fsvs-body .content .item.ase02 {
	width: 2.96cqw;
	bottom: 82.8cqw;
	left: 44.4cqw;
}
#main .fsvs-body .content .item.ase03 {
	width: 3.89333cqw;
	bottom: 68.2cqw;
	right: 43.6cqw;
}
#main .fsvs-body .content .item.ase04 {
	width: 2.552cqw;
	bottom: 67.666cqw;
	left: 42.2cqw;
}
#main .fsvs-body .content .item.ase05 {
	width: 2.96cqw;
	bottom: 60.8cqw;
	right: 47.333cqw;
}

/* ふわふわ動き */
#main .fsvs-body .content .item.Pop01 {
	animation: 2.5s fuwafuwa infinite;
}
#main .fsvs-body .content .item.Pop02 {
	animation: 2.5s fuwafuwa infinite;
	animation-delay: 0.3s;
}
/* 回転するアニメーション */
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
