@charset "UTF-8";


/*
***********************************************
スライドシュー
***********************************************
*/
#top_movie_wrap{
	position: relative;
	width: 100%;
}
#top_bg_scroll {
  position: absolute;
	bottom: 0;
	max-width: 2000px;
	width: 100%;
	height: 133px;
	overflow: hidden;
	margin: 0 auto;
	z-index: 2;
}
#top_bg_scroll::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100px;
	height: 100%;
	background:linear-gradient(90deg, rgba(206,235,248,1) 0%, rgba(0,0,0,0));
	z-index: 1;
}
#top_bg_scroll::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 100px;
	height: 100%;
	background:linear-gradient(-90deg, rgba(206,235,248,1) 0%, rgba(0,0,0,0));
	z-index: 1;
}
#top_bg_scroll .bg_wrap{
	position: relative;
	width: 100%;
	height: 100%;
}
#top_bg_scroll .bg_wrap:before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 15px;
	background: #f8f7ed;
}
#top_bg_scroll .bg_cont {
	position: absolute;
	width: 1200px;
	height: 150px;
	background: url(../imgs/top/town.png) repeat-x top left;
}
#top_bg_scroll .bg_cont.one {
	animation: scroll-anim 120s linear infinite -40s;
}
#top_bg_scroll .bg_cont.two {
	animation: scroll-anim 120s linear infinite -80s;
}
#top_bg_scroll .bg_cont.three {
	animation: scroll-anim 120s linear infinite -120s;
}
@keyframes scroll-anim {
	0% {  left: 2400px; }
100% {  left:-1200px; }
}
.top_text {
	position: relative;
	width: 100%;
	padding: 35px 0 35px 0;
	background: #f8f7ed;
	z-index: 1;
}
.top_text h2 {
	display: block;
	width: calc(100% - 40px);
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	font-size: 20px;
	font-weight: 100;
	line-height: 40px;
	letter-spacing: 0.1em;
}
@media (max-width: 2000px) {
	#top_bg_scroll::before, #top_bg_scroll::after{
		background: none;
	}
}
@media (max-width: 1000px) {
	.top_text h2 {
		font-size: 2vw;
		line-height: 4vw;
	}
}
/*--------------------------------------------------
**************************************************
コンテンツ
**************************************************
--------------------------------------------------*/
.top_content {
	position: relative;
	width: 100%;
	height: 700px;
	margin: 0 auto;
	background:linear-gradient(0deg, rgba(206,235,248,1) 150px, rgba(173,226,249,1));
}
.top_content .cont_inner{
	width: 100%;
	max-width: 2000px;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.top_content .cloud_wrap {
	position: absolute;
	display: block;
	max-width: 1200px;
	width: 100%;
	height: 150px;
	top: 12%;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.top_content .cloud_wrap li {
  position: absolute;
	display: block;
}
.top_content .cloud_wrap li:nth-child(1){
	width: 160px;
	top: 0;
	left: 0;
}
.top_content .cloud_wrap li:nth-child(2){
	width: 120px;
	top: 80px;
	left: 250px;
}
.top_content .cloud_wrap li:nth-child(3){
	width: 120px;
	top: 80px;
	right: 250px;
}
.top_content .cloud_wrap li:nth-child(4){
	width: 160px;
	top: 0;
	right: 0;
}
.top_content .balloon_wrap {
	position: absolute;
	max-width: 1200px;
	width: 100%;
	height: 800px;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.top_content .balloon_wrap li{
  position: absolute;
	bottom: 0;
}
.top_content .balloon_wrap li:nth-child(1){
	left: 0;
	animation: pop_01 8.5s infinite ease-in-out -4s;
}
.top_content .balloon_wrap li:nth-child(2){
	left: 20%;
	animation: pop_02 9.6s infinite ease-in-out -3.5s;
}
.top_content .balloon_wrap li:nth-child(3){
	left: 40%;
	animation: pop_03 15s infinite ease-in-out -3s;
}
.top_content .balloon_wrap li:nth-child(4){
	left: 60%;
	animation: pop_01 9.6s infinite ease-in-out -2.5s;
}
.top_content .balloon_wrap li:nth-child(5){
	left: 80%;
	animation: pop_02 8.5s infinite ease-in-out -2s;
}
.top_content .balloon_wrap li:nth-child(6){
	right: 0;
	animation: pop_03 9.6s infinite ease-in-out -1.5s;
}
.top_content .balloon_wrap li:nth-child(7){
	left: 10%;
	bottom: 0;
	animation: pop_02 15s infinite ease-in-out -1s;
}
.top_cont_wrap .balloon_img {
	position: absolute;
	display: block;
	left: 200px;
	bottom: 50px;
	animation: pop_04 8s infinite ease-in-out -1.5s;
	z-index: 0;
}
@keyframes pop_01 {
	0% {
		bottom: -160px;
		transform: rotate(20deg);
	}
100% {
	bottom: 100%;
	transform: rotate(-20deg);
	}
}
@keyframes pop_02 {
	0% {
		bottom: -160px;
		transform: rotate(-40deg);
	}
100% {
	bottom: 100%;
	transform: rotate(40deg);
	}
}

@keyframes pop_03 {
	0% {
		bottom: -160px;
		transform: rotate(30deg);
	}
100% {
	bottom: 100%;
	transform: rotate(-30deg);
	}
}

@keyframes pop_04 {
	0% {
		bottom: -160px;
		transform: rotate(-20deg);
	}
100% {
	bottom: 100%;
	transform: rotate(20deg);
	}
}

.top_content .title_wrap {
	position: absolute;
	width: 640px;
	top: 27%;
	left: 0;
	right: 0;
	display: block;
	margin: 0 auto;
}
.top_content .title_wrap #fan_title.pc_only {
	position: relative;
	display: block;
	width: 640px;
	height: 110px;
	margin: 0 auto;
	font-size: 31px;
	letter-spacing: 0.25em;
	text-align: center;
	font-weight: 500;
	z-index: 1;
}
.top_content .title_wrap .rainbow {
	position: absolute;
	top: 22px;
	width: 100%;
}
.top_content .title_wrap .top_center {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
}
.top_content .title_wrap .top_center .top_title {
	font-size: 26px;
	color: #317b9b;
}
.top_content .title_wrap .top_center .top_icon {
	width: 45px;
	padding: 0 20px;
}
.top_cont_wrap {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.top_cont_wrap .cont_list {
	position: relative;
	display: block;
	height: 100%;
	z-index: 3;
}
.top_cont_wrap .cont_list li {
	position: absolute;
	width: 200px;
	height: 200px;
	z-index: 1;
}
.top_cont_wrap .cont_list li:nth-child(1) {
	top: 240px;
	left: -260px;
	animation: 5s fuwafuwa 0s ease-in-out infinite;
}
.top_cont_wrap .cont_list li:nth-child(2) {
	top: 88px;
	left: -100px;
	animation: 5s fuwafuwa 0.2s ease-in-out infinite;
}
.top_cont_wrap .cont_list li:nth-child(3) {
	top: 88px;
	right: -100px;
	animation: 5s fuwafuwa 0.45s ease-in-out infinite;
}
.top_cont_wrap .cont_list li:nth-child(4) {
	top: 240px;
	right: -260px;
	animation: 5s fuwafuwa 0.85s ease-in-out infinite;
}
@keyframes fuwafuwa {
	0%, 100% {
    transform: translateY(0) scale(1);
  }
	32%, 68% {
    transform: translateY(0) scale(1);
  }
	50%{
    transform: translateY(-2px) scale(1.05);
  }
}
.center_img {
	position: absolute;
	width: 400px;
	left: 0;
	right: 0;
	bottom: -28px;
	margin: auto;
	z-index: 3;
}
@media (max-width: 1200px) {
	.top_cont_wrap .cont_list li:nth-child(1){
	}
	.top_cont_wrap .cont_list li:nth-child(2){
	}
	.top_cont_wrap .cont_list li:nth-child(3){
	}
	.top_cont_wrap .cont_list li:nth-child(4){
	}
}
@media (max-width: 1000px) {
	.top_cont_wrap .cont_list li {
		width: 190px;
		height: 190px;
	}
	.top_cont_wrap .cont_list li:nth-child(1){
		top: 270px;
    left: -70px;
	}
	.top_cont_wrap .cont_list li:nth-child(2){
		top: 68px;
	}
	.top_cont_wrap .cont_list li:nth-child(3){
		top: 68px;
	}
	.top_cont_wrap .cont_list li:nth-child(4){
		top: 270px;
    right: -70px;
	}
	.center_img{
	}
	.top_content .cloud_wrap li:nth-child(2){
		top: 8vw;
		left: 25vw;
	}
	.top_content .cloud_wrap li:nth-child(3){
		top: 8vw;
		right: 25vw;
	}
}
@media (max-width: 900px) {
	.top_content .title_wrap #fan_title{
		/* transform: scale(0.8); */
	}
}

/*--------------------------------------------------
**************************************************
事業内容
**************************************************
--------------------------------------------------*/
#project {
	position: relative;
	width: 100%;
	height: auto;
	padding: 200px 0 0 0;
}
#project::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	background: url(../imgs/top/pattern.svg);
	background-repeat: repeat;
	background-size: 60%;
}
#project::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 50px;
	top: 0;
	left: 0;
	right: 0;
	background: url(../imgs/top/flag.svg) center center repeat-x;
}
.project_cont.sp_only {
  display: none;
}
.project_cont {
	position: relative;
	display: block;
	max-width: 1200px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.project_cont li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 250px;
}
.project_cont li:nth-child(1){

}
.project_cont li:nth-child(2){

}
.project_cont .project_img {
	position: relative;
  width: 300px;
	z-index: 2;
}
.project_cont li:nth-child(1) .project_img {
	margin-right: -50px;
}
.project_cont li:nth-child(2) .project_img {
	order: 2;
	margin-left: -50px;
}
.project_cont .text_cont {
	position: relative;
	width: calc(100% - 300px);
	max-width: 500px;
	text-align: center;
	padding: 0 50px;
	z-index: 1;
}
.project_cont li .text_cont::before{
	position: absolute;
	content: "";
	width: 600px;
	height: 450px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	z-index: -1;
}
.project_cont li:nth-child(1) .text_cont::before{
	background: #f7f5d9;
}
.project_cont li:nth-child(2) .text_cont::before{
	background: #e9f8ff;
}
.project_cont .text_cont h2 {
	position: relative;
	display: inline-block;
	font-size: 25px;
	letter-spacing: 0.2em;
	font-weight: 100;
	color: #333333;
	text-align: center;
	margin-bottom: 30px;
}
.project_cont .text_cont h2::before {
	position: absolute;
	content: "";
	width: calc(100% + 40px);
	height: 10px;
	left: -20px;
	right: 0;
	bottom: 10px;
	background: #ffffff;
	z-index: -1;
}
.project_cont .text_cont .text {
	width: 100%;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 30px;
	text-align: left;
	padding: 0 20px;
	margin: 0 auto;
	box-sizing: border-box;
}
.forte_cont {
  position: relative;
}
.forte_cont::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 130px;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../imgs/top/top_bg01.png);
	background-repeat: repeat-x;
	background-position: bottom;
	z-index: 0;
}
.forte_cont h2 {
	font-size: 25px;
	letter-spacing: 0.2em;
	font-weight: 100;
	color: #333333;
	text-align: center;
	margin-bottom: 30px;
}
.forte_cont .forte_img {
	position: relative;
	width: 300px;
	margin: 0 auto;
	z-index: 2;
}
#project .forte_text {
	position: relative;
	background: #ceedfc;
}
#project .forte_text .cont_inner{
	position: relative;
	max-width: 900px;
	width: 100%;
	line-height: 30px;
	font-size: 18px;
	margin: 0 auto;
	padding: 50px 20px 50px 20px;
	box-sizing: border-box;
	z-index: 1;
}
.last_bg {
  display: none;
}
