@charset "utf-8";


html {
	overflow-y: auto;
	margin-bottom: 0;
	height: 100%;
}


body#cover {
	height: auto;
	background-image: url(../img/index/cover/cover_bg.png) !important;
	background-size: 1500px auto;
	background-attachment: fixed;
	background-position: center;
}

/*-- Responsive --*/
@media screen and (max-width:640px) {
	body#cover {
		background-image: url(../img/index/cover/cover_bgSp.png) !important;
		background-size: 150% auto;
	}
}

main.warap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	padding: 2em;
	text-align: center;
	box-sizing: border-box;
}

.main__title {
	margin-bottom: 5rem;
	padding: 0 1rem;
	font-size: 1.8em;
	font-weight: bold;
	letter-spacing: 0.1em;
	border-bottom: 5px dotted #f05e80;
}

.site__container {
	display: flex;
	justify-content: center;
	gap: 40px;
}
/*-- Responsive --*/
@media screen and (max-width:850px) {
	main.warap {
		justify-content: flex-start;
	}
	.main__title {
		margin-bottom: 5rem;
		padding: 0 1rem;
		font-size: 1.8em;
		font-weight: bold;
		letter-spacing: 0.1em;
		border-bottom: 5px dotted #f05e80;
	}

	.site__container {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}
}
/*-- Responsive --*/
@media screen and (max-width:640px) {
	main.warap {
		padding: 1.5em 2em;
		height: 100%;
	}
	.main__title {
		margin-bottom: 2rem;
		font-size: 1.5em;
	}
	.site__container {
		width: 100%;
		gap: 2rem;
	}
}

.site__card {
	display: block;
	width: 35%;
	min-width: 380px;
	padding: 2em;
	border-radius: 50px;
	text-align: center;
	overflow: hidden;
	text-decoration: none;
	color: #000;
	background: #fff;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
	transition: transform 0.3s;
}

.site__card.lkg {
	border: 5px solid #f4b0c1;
}
.site__card.lcl {
	border: 5px solid #ffd68b;
}

.site__card:hover {
	transform: scale(1.03);
}
.site__card img {
	width: 80%;
	height: auto;
	object-fit: cover;
}

.site__card h2 {
	padding: 2rem 0;
	font-size: 1.2em;
	color: #4a2f11;
	text-align: center;
}

.btn {
	letter-spacing: .1em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin:0 auto;
    padding: .9em 1em;
    border-radius: 50px;
    color: #fff;
    font-size: 1.2em;
	cursor: pointer;
}

.btn.lkg {
	background-color: #f05b7d;
	border: 1px solid #f05b7d;
}
.btn.lcl {
	background-color: #ff8433;
	border: 1px solid #ff8433;
}

/*-- Responsive --*/
@media screen and (max-width:640px) {
	.site__card {
		display: grid;
		width: 100%;
		min-width: auto;
		padding: 1.2em;
		border-radius: 40px;

	}
	.site__card h2 {
		padding: .8rem 0 .5rem;
		font-size: 1em;
	}
	.site__card img {
		margin: 0 auto;
		width: 100%;
		height: 80px;
		object-fit: contain;
	}
	.btn {
		width: 90%;
		padding: .6em .3em;
		border-radius: 20px;
		font-size: 1.1em;
		font-weight: 500;
	}
}
