@charset "utf-8";
/*-------------------------------------------------------------------
	共通パーツ ※いじると他に影響がでるのでclassを振ってリセットしてください。
-------------------------------------------------------------------*/
.greenText{
	color: #13bf76;
}
.ttl03{
	font-size: 4.2rem;
	font-weight: 600;
}
.ttl03 .enText{
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1;
	color: #13bf76;
}
.PaSCaBtn{
	display: block;
	width: fit-content;
	background: linear-gradient(0deg, #0c8a56, #8bffb7);
	padding: 22px 40px;
	border-radius: 9999px;
	box-shadow: 0px 5px 15px -8px #777777;
	font-size: 2rem;
	line-height: 1;
	color: #fff;
	transition: .4s;
	white-space: nowrap;
}
.PaSCaBtn:hover{
	opacity: .7;
}
.inner .PaSCaBtn.inner{
	max-width: 100%;
}
@media screen and (max-width: 768px){
	.ttl03{
		font-size: 3rem;
		text-align: center;
	}
	.PaSCaBtn{
		font-size: 1.8rem;
		text-align: center;
		padding: 22px 20px;

	}
}
@media screen and (max-width: 425px){
	.PaSCaBtn{
		width: 100%;
		padding: 22px 0;
		font-size: 1.6rem;
	}

}

/*-------------------------------------------------------------------
	header
-------------------------------------------------------------------*/
#header {
	width: 100%;
	max-width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	background: #ffffffE5;
}
#header h1{
	transition: .4s;
}
#header h1:hover{
	opacity: .7;
}

#header .headerFlex{
	display: flex;
	align-items: center;
}
#header .headerFlex a{
	font-size: 1.6rem;
	line-height: 1;
	white-space: nowrap;
	color: #5e5e5e;
	margin-right: 65px;
	transition: .4s;
}

#header .headerFlex a:hover{
	color: #22af73;
}
#header .headerFlex a.spAnchor{
	display: none;
}
#header .headerFlex a.SimpleBtn{
	display: block;
	width: 193px;
	background: #fff;
	padding: 15px 0 15px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	color: #22af73;
	border: #22af73 2px solid;
	border-radius: 9999px;
	margin-right: 25px;
	transition: .4s;
}
#header .headerFlex a.SimpleBtn:hover{
	background: #22af73;
	color: #fff;
}
#header .headerFlex a.PaSCaBtn{
	width: 193px;
	font-weight: 500;
	text-align: center;
	color: #fff;
	padding: 15px 0 15px;
	box-shadow: none;
}

#header .headerFlex a:last-of-type{
	margin-right: 0;
}
#header .headerSpBtn{
	display: none;
	justify-content: center;
	width: 40px;
	height: 15px;
	position: relative;
	cursor: pointer;
}
#header .headerSpBtn::before,
#header .headerSpBtn::after{
    content: "";
    width: 100%;
    height: 2px;
    background: #22af73;
	transition: .4s;
}
#header .headerSpBtn::before{
    position: absolute;
    top: 0;
    left: 0;
}
#header .headerSpBtn::after{
    position: absolute;
    bottom: 0;
    left: 0;
}
#header.open .headerSpBtn::before{
	transform: rotate(-160deg);
    top: 7.5px;
}
#header.open .headerSpBtn::after{
	transform: rotate(160deg);
    top: 7.5px;
}


@media screen and (max-width: 1440px){
	#header {
		padding: 0 2.5%;
	}
	#header .headerFlex a{
		margin-right: 35px;
	}
	#header .headerFlex a.SimpleBtn,
	#header .headerFlex a.PaSCaBtn{
		width: 120px;
	}
}
@media screen and (max-width: 1024px){
	#header {
		height: 55px;
		padding: 11px 5%;
		background: #fff;
	}
	#header h1,
	#header h1 img{
		height: 100%;
	}

	header .sp{
		display: block;
	}
	#header .headerFlex{
		display: block;
		width: 100%;
		height: 100vh;
		position: absolute;
		top: 50px;
		right: -100%;
		flex-flow: column;
		background: url(../image/header_spbg01.jpg);
		background-size: cover;
		background-position: right bottom;
		padding: 90px 5% 0;
		overflow-x: auto;
		transition: .4s;
	}
	#header.open .headerFlex{
		display: block;
		right: 0;
	}
	#header .headerFlex a{
		display: block;
		align-items: center;
		width: 100%;
		margin: 0 auto 50px;
	}
	#header .headerFlex .smooth{
		font-size: 1.8rem;
		display: flex;
		width: calc(195px + 39px);
	}

	#header .headerFlex .smooth::before{
		content: "";
		display: block;
		width: 28px;
		height: 2px;
		background: #27a253;
		margin-right: 10px;
		}
	#header .headerFlex a.SimpleBtn{
		margin: 90px auto 30px;
	}
	#header .headerFlex a.SimpleBtn,
	#header .headerFlex a.PaSCaBtn{
		max-width: 80%;
		width: 245px;
		margin-right: auto;
		box-shadow: 0px 5px 15px -8px #777777;

	}
	#header .headerSpBtn{
		display: block;
	}

}
/*-------------------------------------------------------------------
	#Mv
-------------------------------------------------------------------*/
#Mv{
	position: relative;
	padding: 160px 0 135px;
}
#Mv::before{
	content: "";
	display: block;
	width: 100%;
	aspect-ratio: 1920 / 1912;
	background: url(../image/mv_bg01_pc.png);
	background-size: cover;
	background-repeat: no-repeat;
	pointer-events: none;
	position: absolute;
	top: 0;
	z-index: -1;
}
#Mv .MvFlex{
	display: flex;
	align-items: end;
}
#Mv .MvFlex .MvFlexItem{
	width: 50%;
}
#Mv .MvFlex .MvFlexItem:first-of-type{
	width: 63%;
	margin-right: -12%;
}
#Mv .MvFlex .MvFlexItem img{
	width: 100%;
}
#Mv .MvFlex .PaSCaBtn{
	margin-top: 40px;
}
@media screen and (max-width: 1024px){
		#Mv .MvFlex .MvFlexItem:last-of-type{
		margin: 0 auto 40px;
	}

}

@media screen and (max-width: 768px){
	#Mv{
		padding: 60px 0 100px;
	}
	#Mv::before{
		background: url(../image/mv_bg01_pc.png);
		background-size: cover;
		background-repeat: no-repeat;	
	    aspect-ratio: 750 / 1447;
	}
	#Mv .MvFlex{
		flex-flow: column;
		position: relative;
	}
	#Mv .MvFlex .MvFlexItem{
		width: 90%;
	}
	#Mv .MvFlex .MvFlexItem:first-of-type{
		width: 75%;
		margin: 0 auto 35px;
	}
	#Mv .MvFlex .MvFlexItem:last-of-type{
		margin: 0 auto;
	}
	#Mv .MvFlex .PaSCaBtn{
		position: absolute;
		bottom:-100px;
		left: 50%;
		transform: translateX(-50%);
	}
}


/*-------------------------------------------------------------------
	#Skill
-------------------------------------------------------------------*/
#Skill{
	padding: 120px 0 20px;
}
#Skill .SkillWhite{
	background: #ffffffE5;
	padding: 70px 0 60px;
	margin-top: 35px;
	margin-bottom: 75px;
}
#Skill .SkillWhiteFlex{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#Skill .SkillWhiteFlex .SkillWhiteFlexItem{
	min-width: 100px;
	text-align: center;
	margin: 0 50px;
}
#Skill .SkillWhiteFlexItem figure{
	margin-bottom: 45px;
	height: 94px;
	display: flex;
	align-items: end;
	justify-content: center;
}
#Skill .othersContainer{
	margin-bottom: 80px;
}
#Skill .othersContainer dt{
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1;
	color: #5e5e5e;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px;
}
#Skill .othersContainer dt::before,
#Skill .othersContainer dt::after{
	content: "";
	width: 100px;
	height: 2px;
	background: #5e5e5e;
}
#Skill .othersContainer dt::before{
	margin-right: 30px;
}
#Skill .othersContainer dt::after{
	margin-left: 30px;
}
#Skill .othersContainer dd{
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	width: calc(calc(300px * 3) + 234px);
	max-width: 100%;
}
#Skill .othersContainer dd::after{
	content: "";
	display: inline;
	min-width: 300px;
	height: 0;
}

#Skill .othersContainer dd p{
	display: inline-block;
	min-width: 300px;
	line-height: 2;
}
#Skill .othersContainer dd p:nth-of-type(4n){
	min-width: auto;
}

#Skill .othersContainer dd p::before{
	content: "・";
}
#Skill .othersContainer dd p.noneItem{
	height: 0;
}
#Skill .othersContainer dd p.noneItem::before{
	content: none;
}
@media screen and (max-width: 1260px){
	#Skill .othersContainer dd{
		width: calc(calc(300px * 2) + 126px);
	}
	#Skill .othersContainer dd p:nth-of-type(3n){
		min-width: auto;
	}
	#Skill .othersContainer dd p:nth-of-type(4n){
		min-width: 300px;
	
}
}
@media screen and (max-width: 1050px){
	#Skill .SkillWhite{
		padding: 70px 0 0;
	}
	#Skill .SkillWhiteFlex{
		max-width: calc(208px * 3);
		margin: 0 auto;
	}
	#Skill .SkillWhiteFlex .SkillWhiteFlexItem{
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 1024px){
	#Skill .othersContainer dd{
		width: 68%;
		margin: 0 auto;
		justify-content: space-between;
}

#Skill .othersContainer dd p:nth-of-type(3n){
	min-width: auto;
}
#Skill .othersContainer dd p,
#Skill .othersContainer dd::after{
	min-width: 50%;
}
#Skill .othersContainer dd p:nth-of-type(2n){
	min-width: 234px;
}

}
@media screen and (max-width: 768px){
	#Skill{
		padding: 125px 0 0;
	}
	#Skill .SkillWhite{
		padding: 45px 0 0;
    	margin-top: 0;
	}
	#Skill .SkillWhiteFlexItem figure{
		margin-bottom: 25px;
	}
	#Skill .othersContainer{
		margin-bottom: 60px;
	}
	#Skill .othersContainer dt{
		width: fit-content;
		padding: 0 8% 25px;
		border-bottom: #b5b5b5 1px solid;
		margin: 0 auto 40px;
	}
	#Skill .othersContainer dt::before, #Skill .othersContainer dt::after{
		content: none;
	}
	#Skill .othersContainer dd{
		width: 67%;
		justify-content: center;
	}
	#Skill .othersContainer dd p,
	#Skill .othersContainer dd p:nth-of-type(3n),
	#Skill .othersContainer dd p:nth-of-type(2n),
	#Skill .othersContainer dd::after{
		min-width: 208px;
	}
}
	@media screen and (max-width: 483px){
		#Skill .SkillWhiteFlex{
			width: 78%;
			margin: 0 auto;
		}
		#Skill .SkillWhiteFlex .SkillWhiteFlexItem:nth-of-type(even){
			margin-right: 0;
			margin-left: 25px;

		}

		#Skill .SkillWhiteFlex .SkillWhiteFlexItem:nth-of-type(odd){
			margin-left: 0;
			margin-right: 25px;
		}
		#Skill .SkillWhiteFlex .SkillWhiteFlexItem:last-of-type{
			margin-left: 0;
			margin-right: 0;
			margin-bottom: 0;
		}
	}
	@media screen and (max-width: 395px){
		#Skill .SkillWhiteFlex{
			width: 90%;
			margin: 0 auto;
		}
	}
	@media screen and (max-width: 320px){
		#Skill .othersContainer dd{
			width: 90%;
		}
	}


/*-------------------------------------------------------------------
	#Function
-------------------------------------------------------------------*/
#Function{
	padding: 150px 0 0;
}
#Function .FunctionListItem:nth-of-type(1){
	background: url(../image/frow_bg01.png);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right;
}
#Function .FunctionListItem:nth-of-type(2){
	background: url(../image/frow_bg02.png);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: left;
}
#Function .FunctionListItem:nth-of-type(3){
	background: url(../image/frow_bg03.png);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right;
}
#Function .FunctionListItem:nth-of-type(4){
	background: url(../image/frow_bg04.png);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: left;
}

#Function .FunctionListItem:nth-of-type(even) .FunctionFlex{
	flex-flow: row-reverse;
}
#Function .FunctionFlex{
	display: flex;
	justify-content: space-between;
	padding: 90px 0 60px;
}
#Function .FunctionListItem:nth-of-type(2) .FunctionFlex{
	padding: 175px 0 130px;
}
#Function .FunctionListItem:nth-of-type(3) .FunctionFlex{
	padding: 210px 0 140px;
	margin-top: -100px;
}
#Function .FunctionListItem:nth-of-type(4) .FunctionFlex{
	padding: 250px 0 200px;
	margin-top: -100px;
}
#Function .FunctionFlex .FunctionFlexText{
	width: 58%;
}
#Function .FunctionFlexText .number{
	font-size: 20rem;
	font-weight: 10;
	line-height: 1;
	color: #13bf76;
	padding: 0 0 55px;
	border-bottom: #000 1px solid;
	margin-bottom: 30px;
}
#Function .FunctionFlexText .ttl04{
	font-size: 3.4rem;
	font-weight: 600;
	margin-bottom: 30px;
}
#Function .FunctionFlexText .explanation{
	margin-bottom: 40px;
}
#Function .FunctionFlexText .FunctionBtn{
	width: fit-content;
	background: #f0fff3;
	padding: 20px 25px 20px;
	font-size: 2rem;
	line-height: 1;
	text-align: center;
	border: #13bf76 1px solid;
	border-radius: 9999px;
	transition: .4s;
}
#Function .FunctionFlexText .FunctionBtn a{
	color: #13bf76;
	transition: .4s;
}
#Function .FunctionFlexText .FunctionBtn:hover{
	background: #13bf76;
}
#Function .FunctionFlexText .FunctionBtn:hover a{
	color: #f0fff3;
}

#Function .FunctionFlex .FunctionFlexImg{
	width: 38%;
}
#Function .FunctionFlex .FunctionFlexImg img{
	width: 100%;
}
#Function .FunctionListItem:nth-of-type(2) .FunctionFlexImg{
	width: 55%;
	transform: translateX(-10%);
}
@media screen and (max-width: 1440px){
	#Function .FunctionListItem:nth-of-type(3) .FunctionFlex{
		padding: 110px 0 140px;
    	margin-top: 0;
	}
	#Function .FunctionListItem:nth-of-type(4) .FunctionFlex{
		padding: 150px 0 200px;
    	margin-top: 0;
	}
}

@media screen and (max-width: 1400px){
	#Function .FunctionListItem:nth-of-type(2) .FunctionFlexImg{
		width: 38%;
		transform: translateX(0%);
	}
	
}
@media screen and (max-width: 768px){
	#Function {
		padding: 85px 0 0;
	}
	#Function .FunctionListItem:nth-of-type(1){
		background: url(../image/frow_bg01_sp.png);
		background-size: cover;
	}
	#Function .FunctionListItem:nth-of-type(2){
		background: url(../image/frow_bg02_sp.png);
		background-size: cover;
	}
	#Function .FunctionListItem:nth-of-type(3){
		background: url(../image/frow_bg03_sp.png);
		background-size: cover;
	}
	#Function .FunctionListItem:nth-of-type(4){
		background: url(../image/frow_bg04_sp.png);
		background-size: cover;
	}
	#Function .FunctionFlex,
	#Function .FunctionListItem:nth-of-type(2) .FunctionFlex,
	#Function .FunctionListItem:nth-of-type(3) .FunctionFlex,
	#Function .FunctionListItem:nth-of-type(4) .FunctionFlex{
		padding: 50px 0 0;
		flex-flow: column;
		position: relative;
	}
	#Function .FunctionFlex.sampleBtn,
	#Function .FunctionListItem:nth-of-type(2) .FunctionFlex.sampleBtn{
		padding: 50px 0 calc(35px + 61.33px);
	}
	#Function .FunctionFlex .FunctionFlexText,
	#Function .FunctionFlex .FunctionFlexImg,
	#Function .FunctionListItem:nth-of-type(2) .FunctionFlexImg{
		width: 100%;
	}
	#Function .FunctionListItem:nth-of-type(3) .FunctionFlex,
	#Function .FunctionListItem:nth-of-type(4) .FunctionFlex{
		margin-top: 0;
	}
	#Function .FunctionFlexText .FunctionBtn {
		min-width: 320px;
		padding: 20px 0;
		font-size: 1.8rem;
		text-align: center;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	#Function .FunctionFlexText .number{
		font-size: 12rem;
		padding: 0 0 25px;
		margin-bottom: 30px;
	}
	#Function .FunctionFlexText .ttl04{
		font-size: 2.4rem;
		margin-bottom: 25px;
	}
	#Function .FunctionFlexText .explanation{
		margin-bottom: 25px;
	}
	#Function .FunctionFlex .FunctionFlexImg.mt150{
		margin-top: 0;
	}
	
}
@media screen and (max-width: 425px){
	#Function .FunctionFlexText .FunctionBtn{
		width: 100%;
		min-width: auto;
		font-size: 1.6rem;
		padding: 20px 0 20px;
	}
}



/*-------------------------------------------------------------------
	#UseSceneu
-------------------------------------------------------------------*/
#UseSceneu{
	padding: 150px 0 140px;
	margin-top: 30px;
}
#UseSceneu .UseSceneuFlex{
	display: flex;
	justify-content: space-between;
	padding: 120px 0 0;
}
#UseSceneu .UseSceneuFlex .UseSceneuFlexItem{
	width: calc(calc(100% - 25%) / 3);
}
#UseSceneu .UseSceneuFlex .UseSceneuFlexItem figure{
	width: fit-content;
	height: 285px;
	margin: 0 auto 70px;
}
#UseSceneu .UseSceneuFlex .UseSceneuFlexItem h4{
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px){
	#UseSceneu {
		padding: 85px 0 0;
		margin-top: 0;
	}
	#UseSceneu .UseSceneuFlex{
		padding: 50px 0 0;
		flex-flow: column;
		align-items: center;
	}
	#UseSceneu .UseSceneuFlex .UseSceneuFlexItem{
		width: 100%;
		margin-bottom: 65px;
	}
	#UseSceneu .UseSceneuFlex .UseSceneuFlexItem:last-of-type{
		margin-bottom: 0;
	}

	#UseSceneu .UseSceneuFlex .UseSceneuFlexItem figure {
		height: auto;
		margin: 0 auto 50px;
	}
	#UseSceneu .UseSceneuFlex .UseSceneuFlexItem h4{
		font-size: 2.2rem;
		font-weight: 600;
		margin-bottom: 25px;
	}
}

/*-------------------------------------------------------------------
	#Registration
-------------------------------------------------------------------*/
#Registration{
	padding: 140px 0 50px;
}
#Registration .GreenContainer{
	margin: 85px 0 75px;
	background: #13bf7632;
	padding: 80px 0 85px;
}
#Registration .GreenContainerFlex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#Registration .GreenContainerFlexItem{
	width: calc(calc(100% - calc(40px * 4)) / 4);
	background: #fff;
	padding: 40px 30px 30px;
	position: relative;
}
#Registration .GreenContainerFlexItem::after{
	content: "";
	position: absolute;
	top: 50%;
	right: -22px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 22px solid #fff;
	border-right: 0;
}
#Registration .GreenContainerFlexItem:last-of-type:after{
	content: none;
}
#Registration .GreenContainerFlexItem h4{
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	color: #13bf76;
	margin-bottom: 25px;
}
#Registration .GreenContainerFlexItem .IconImg{
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
#Registration .GreenContainerFlexItem h5{
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	margin-bottom: 15px;
}
@media screen and (max-width: 1024px){
	#Registration{
		padding: 90px 0 0;
	}
	#Registration .GreenContainerFlex{
		justify-content: center;
	}
	#Registration .GreenContainerFlexItem{
		width: 90%;
		margin-bottom: 40px;
	}
	#Registration .GreenContainerFlexItem::after{
		content: "";
		position: absolute;
		top: auto;
		left: 50%;
		right: auto;
		bottom: -22px;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 15px solid transparent;
		border-left: 15px solid transparent;
		border-top: 22px solid #fff;
		border-bottom: 0;	
	}
	#Registration .GreenContainerFlexItem h5{
		font-weight: 600;
	}
	#Registration .GreenContainerFlexItem .IconImg{
		max-width: 35%;
		margin: 0 auto 30px;
		height: auto;
	}
	#Registration .GreenContainerFlexItem p{
		width: fit-content;
		margin: 0 auto;
	}

	.GreenContainerFlexItem .pc{
		display: none;
	}
	.GreenContainerFlexItem .sp1028{
		display: block;
	}

}
@media screen and (max-width: 768px){
	#Registration .GreenContainerFlexItem h4{
		font-weight: 600;
	}
	#Registration .GreenContainer{
		padding: 40px 0;
		margin: 35px 0 40px;
	}
	#Registration .GreenContainerFlexItem{
		padding: 40px 20px 50px;
	}
}


/*-------------------------------------------------------------------
	#FAQ
-------------------------------------------------------------------*/
#FAQ{
	padding: 150px 0 180px;
	overflow: hidden;
}
#FAQ .accordionContainer{
	margin:85px 0 70px;
}
#FAQ .accordion{
	margin-bottom: 25px;
}
#FAQ .accordion:last-of-type{
	margin-bottom: 0;
}
#FAQ .accordion dt{
	background: #f2f2f2;
	font-weight: 500;
}
#FAQ .accordion dd{
	display: none;
	background: #fff;
}
#FAQ .accordion dt p,
#FAQ .accordion dd p{
	display: flex;
	padding: 20px 64px;
	color: #5e5e5e;
}
#FAQ .accordion dt p::before,
#FAQ .accordion dd p::before{
	margin-right: 20px;
}
#FAQ .accordion dt p::before{
	content: "Q";
}
#FAQ .accordion dd p::before{
	content: "A";
}
#FAQ .accordion dt p::after{
	content: "";
	width: 12px;
	min-width: 12px;
	height: 8px;
	background: url(../image/faq_arrow.png);
	background-size: 12px;
	background-position: left center;
	background-repeat: no-repeat;
	margin-left: auto;
	transform: rotate(180deg) translateX(-36px);
	margin: auto 0 auto auto;
}
#FAQ .accordion.open dt p::after{
	transform: rotate(0deg) translateX( 36px);
}
#FAQ .accordion dt span,
#FAQ .accordion dd span{
	display: flex;
	word-break: break-all;
}

@media screen and (max-width: 768px){
	#FAQ{
		padding: 85px 0 90px
	}
	#FAQ .accordionContainer{
		margin: 30px 0 35px;
	}

	#FAQ .accordion dt p, #FAQ .accordion dd p {
		font-size: 1.6rem;
		padding: 20px 30px 20px 15px;
	}
	#FAQ .accordion dt p::after{
		transform: rotate(180deg) translateX(-15px);
	}
	#FAQ .accordion.open dt p::after{
		transform: rotate(0deg) translateX( 15px);
	}
	
}

/*-------------------------------------------------------------------
	#footer
-------------------------------------------------------------------*/
#footer{
	background: url(../image/footer_bg01.jpg);
	padding: 60px 0 45px;
	position: relative;
	font-size: 1.6rem;
}
#footer .footerFlex{
	display: flex;
	justify-content: space-between;
	align-items: end;
	flex-wrap: wrap;
	margin-bottom: 35px;

}
#footer .footerFlex .logoImg{
	transition: .4s;
}
#footer .footerFlex .logoImg:hover{
	opacity: .7;
}
#footer .footerNav{
	margin-left: 15px;
}
#footer .footerNav a{
	font-weight: 500;
	line-height: 1;
	color: #000;
	margin-left: 40px;
}
#footer .footerNav a:hover{
	text-decoration: underline #13bf76;
}

#footer .footerNav a:first-of-type{
	margin-left: 0;
}
#footer .footerNav a:last-of-type{
	margin-left: 28px;
	padding-left: 28px;
	border-left: 1px solid #000 ;
}
#footer .Copyright{
	font-weight: 500;
	line-height: 1;
}
@media screen and (max-width: 972px){
	#footer .footerNav{
		width: 100%;
		display: flex;
		margin-top: 75px;
		margin-bottom: 40px;
		margin-left: 0;
	}
}

@media screen and (max-width: 1024px){
	#footer{
		background: #caf6ce;
	}
}

@media screen and (max-width: 768px){
	#footer .footerFlex{
		margin-bottom: 0;
	}
	#footer .footerNav{
		flex-flow: column;
		margin-bottom: 0
	}
	#footer .footerNav a{
		margin-left: 0;
		margin-bottom: 20px;
	}
	#footer .footerNav a:last-of-type{
		margin-top: 50px;
		margin-bottom: 20px;
	}

	#footer .footerNav a:last-of-type{
		margin-left: 0;
		padding-left: 0;
		border-left: 0px solid #000;
	}
}

@media screen and (max-width: 640px){
	#footer .Copyright{
		line-height: 1.4;
	}
}
@media screen and (max-width: 425px){
	#footer .Copyright{
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 375px){
	#footer .Copyright{
		font-size: 1.4rem;
	}
}

