/* CSS Document */




/*============================================================================

	footer

============================================================================*/
footer {
	position:relative;
	padding-top: 120px;
	padding-bottom: 80px;
	background: #f4f2f1;
	border-radius: 100px 100px 0 0;
}
footer::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 300px;
	background: #e6e2de;
	top: -10px;
	z-index: -1;
}
footer::before {
	position: absolute;
	content: "";
	background: url("../images/wave_02.png") no-repeat;
	bottom: 0;
	left: 0;
	background-size: 790px 150px;
	width: 790px; height: 150px;
	transform: scaleX(-1);
}
footer .inner {
	width: 90%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
@media screen and (max-width:640px) {
    footer {
        padding-top: 80px;
        padding-bottom: 50px;
        border-radius: 50px 50px 0 0;
    }
    footer::before {
        background-size: 100% 100%;
        width: 100%;
        height: 80px;
    }
    footer .inner {
        display: block;
    }
}




/*------------------------------ left ------------------------------*/
footer .left {
	width: 43%;
	display: flex;
	justify-content: flex-end;
	
}
footer .left .box {
	width: 500px;
	
}
#footer_logo {
	text-align: center;
	margin-bottom: 30px;
}
#footer_logo h1 {
	margin-top: 20px;
	font-weight: 600;
}
footer .left dl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
footer .left dl dt {
	width: 20%;
	margin-bottom: 12px;
	font-weight: 500;
}
footer .left dl dd {
	width: 80%;
	margin-bottom: 12px;
}
footer .btn a {
	padding: 15px 80px;
}
@media screen and (max-width:640px) {
    footer .left {
        width: 92%;
        display: block;
		margin: auto;
    }
    footer .left .box {
        width: 100%;
    }
    #footer_logo img {
        width: 120px; 
    }
    #footer_logo h1 {
        font-size: 17px;
    }
    footer .left dl dt {
        width: 25%;
        font-size: 14px;
    }
    footer .left dl dd {
        width: 75%;
        font-size: 14px;
    }
    footer .btn {
        text-align: center;
        margin-bottom: 40px;
    }
    footer .btn a {
        display: inline-block;
        width: 87%;
        padding: 12px 0;
        box-sizing: border-box;
    }
}





/*------------------------------ right ------------------------------*/
footer .right {
	width: 50%;
}
footer .right iframe {
	width: 100%;
	height: 480px;
	box-sizing: border-box;
	border: 1px solid #e1dad4 !important;
	border-radius: 10px;
}
@media screen and (max-width:640px) {
    footer .right {
        width: 100%;
    }
    footer .right iframe {
        height: 300px;
    }
}



/*------------------------------ nav ------------------------------*/
.footer_nav {
	width:100%;
	margin: 70px 0 40px;
}
.footer_nav ul {
	display: flex;
	justify-content: center;
}
.footer_nav li {
	margin: 0 20px;
	font-size: 14px;
}
.footer_nav li a:hover {
	color: #cfa972;
}
@media screen and (max-width:640px) {
    .footer_nav {
        display: none;
    }
}





/*------------------------------ コピーライト ------------------------------*/
.copy{
	text-align: center;
}
.copy small{
	font-size:12px;
	letter-spacing: 1px;
	font-family: "Josefin Sans", sans-serif;
  	font-optical-sizing: auto;
	color: #87705a;
}
@media screen and (max-width:640px) {
	.copy{
		margin-top: 40px;
	}
}





