@charset "utf-8";
/* CSS Document */

body{
	font-family: "IBM Plex Sans JP", sans-serif;
	overflow-x: hidden;
}

p{
	color: #1D1D1D;
	font-weight: 400;
}

.sp{
	display: none;
}

img{
	max-width: 100%;
    width: auto;
    height: auto;
	vertical-align: bottom;
}

header{
	background-color: #74C1CC;
	padding: 18px 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

header .header-logo{
	max-width: 210px;
	padding: 0 40px 0 25px;
	margin-right: 40px;
	border-right: 1px solid #FFF;
}

header .sub{
	font-size: 18px;
	color: #FFF;
}

section{
	background-color: #FFF095;
	background-image: url("../images/img-background.jpg");
	background-repeat: no-repeat;
	background-position: center center;
}

section .inner{
	max-width: 1200px;
	width: 90%;
	margin: auto;
}

section h1{
	font-size: 110px;
	text-align: center;
	color: #E95550;
	font-weight: 500;
	padding: 170px 0 40px;
	line-height: 1.1;
}

section .lead{
	font-size: 30px;
	text-align: center;
	line-height: 1.75;
}

section .button{
	max-width: 540px;
	width: 100%;
	padding: 80px 0 100px;
	margin: auto;
}

section .button a{
	font-size: 24px;
	background: #fff;
	border: 1px solid #E95550;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 37px 25px;
    color: #1D1D1D;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

section .button a:hover {
	background: #E95550;
	border-color: #E95550;
	color: #FFF;
}

section .button a:before, section .button a:after{
	content: "";
	position: absolute;
	display: block;
	transition: all 0.3s;
	right: 0.6rem;
	top: 50%;
}

section .button a:before{
	width: 1.4rem;
	height: 2px;
	background: #E95550;
	transform: translateY(-50%);
}

section .button a:after{
	width: 8px;
	height: 8px;
	border-top: solid 2px #E95550;
	border-right: solid 2px #E95550;
	transform: translateY(-50%) rotate(45deg);
}

section .button a:hover:before{
	width: 1.7rem;
	background: #FFF;
}

section .button a:hover:after{
	border-top: solid 2px #FFF;
	border-right: solid 2px #FFF;
}

footer{
	background-color: #74C1CC;
	padding: 70px 0 25px;
}

footer .footer-logo{
    max-width: 276px;
    margin: 0 auto 20px
}

footer .logo-wrap{
	display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    margin: auto;
}

footer .logo-wrap .logo{
	width: 45px;
	margin-right: 5px;
}

footer .logo-wrap p{
	font-size: 15px;
	font-weight: 500;
	color: #FFF;
}

footer .privacy{
	text-align: center;
	margin: 70px 0 30px;
}

footer .privacy a{
	color: #FFF;
	text-decoration: underline;
	margin-right: 10px;
}

footer .copyright{
	text-align: center;
	color: #FFF;
	font-size: 12px;
	width: 90%;
	margin: auto;
	line-height: 1.45;
}

@media screen and (max-width: 1200px) {
	section h1{
		font-size: 90px;
		padding-top: 140px;
	}
}

@media screen and (max-width: 960px) {
	section h1{
		font-size: 70px;
		padding-top: 110px;
	}
}

/* sp */
@media screen and (max-width: 768px) {
	.sp{
		display: block;
	}
	
	header .header-logo{
		width: 110px;
        padding-right: 10px;
        margin-right: 10px;
	}
	
	header .sub{
		font-size: 12px;
	}
	
	section{
		background-image: url("../images/img-background-sp.jpg");
		background-position: bottom;
		background-size: 90%;
		/* margin-bottom: 20px; */
	}
	
	section h1{
		font-size: 32px;
		padding-top: 60px;
		padding-bottom: 20px;
	}
	
	section .lead{
		font-size: 16px;
	}
	
	section .button{
		padding: 40px 0 24%;
	}
	
	section .button a{
		font-size: 15px;
		padding: 20px 15px;
	}
	
	footer .footer-logo{
		max-width: 220px;
	}
	
	footer .logo-wrap{
		display: block;
	}
	
	footer .logo-wrap .logo{
		margin: 0 auto 10px;
		width: 35px;
	}
}


/* sp */
@media screen and (max-width: 768px) {
	.border { 
		padding-bottom: 20px;
		background-color: #FFF095;
	}
}