/*base*/
body {
	line-height: 1.5;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
}

ul li {
	list-style: none;
	padding-left: 0;
}

.list-square {
	list-style: square;
}

.list-decimal {
	list-style: decimal;
}

ol, ul {
	margin: 0px;
}


h1, h2, h3, h4, h5, h6 {
	letter-spacing: 0.1em;
}

p {
	letter-spacing: 0.1em;
}
/*³q¥Î¼Ë¦¡*/
.badge {
	line-height: 1.5;
}

.flex-column-center {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.flex-column-start {
	display: flex;
	flex-direction: column;
	align-items: start;
}

.flex-column-between {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.flex-row-start {
	display: flex;
	align-items: flex-start;
}

.flex-row-center {
	display: flex;
	align-items: center;
}

.flex-row-end {
	display: flex;
	align-items: end;
	flex-wrap: wrap;
}

.flex-row-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex-center-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-center-end {
	display: flex;
	align-items: center;
	justify-content: end;
}

@media (min-width:768px) {
	.flex-lg-row-between {
		display: flex;
		align-items: center;
		flex-direction: row !important;
		justify-content: space-between;
	}

	.flex-row-md-start {
		display: flex;
		align-items: start;
		flex-direction: row !important;
	}
}

@media (min-width:992px) {
	.flex-row-lg-start {
		display: flex;
		align-items: start;
		flex-direction: row !important;
	}
}

a:focus-visible {
	outline: 0.15rem solid black;
	outline-offset: 2px;
	border-radius: 4px;
}

/*header*/
.header-logo {
	margin: 15px 0px;
	display: flex;
	align-items: start;
}

.header-kids {
	position: absolute;
	left: 50%;
	top: 20px;
	animation: kids 6s ease-in-out infinite;
}

@keyframes kids {
	0% {
		transform: translateY(0) translateX(-50%) scale(0.5);
	}

	50% {
		transform: translateY(-4px) translateX(-50%) scale(0.5);
	}

	100% {
		transform: translateY(0) translateX(-50%) scale(0.5);
	}
}
@media (min-width:992px) {
	.header-kids {
		top: 70px;
	}

}

@media (min-width:1200px) {
	.header-kids {
		top: 100px;
	}

	@keyframes kids {
		0% {
			transform: translateY(0) translateX(-50%) scale(0.7);
		}

		50% {
			transform: translateY(-4px) translateX(-50%) scale(0.7);
		}

		100% {
			transform: translateY(0) translateX(-50%) scale(0.7);
		}
	}
}

@media (min-width:1400px) {
	.header-kids {
		top: 130px;
	}

	@keyframes kids {
		0% {
			transform: translateY(0) translateX(-50%) scale(0.8);
		}

		50% {
			transform: translateY(-4px) translateX(-50%) scale(0.8);
		}

		100% {
			transform: translateY(0) translateX(-50%) scale(0.8);
		}
	}
}

@media (min-width:1600px) {
	.header-kids {
		top: 200px;
	}
}

@media (min-width:1900px) {
	.header-kids {
		top: 220px;
	}

	@keyframes kids {
		0% {
			transform: translateY(0) translateX(-50%) scale(1);
		}

		50% {
			transform: translateY(-4px) translateX(-50%) scale(1);
		}

		100% {
			transform: translateY(0) translateX(-50%) scale(1);
		}
	}
}

@media (min-width:2100px) {
	.header-kids {
		top: 270px;
	}
}

.topbtn{
	margin-top: 10px;
}
.topbtn li{
	display: inline-block;
	margin: 15px;
	margin-bottom: 30px;
}
.topbtn li a{
	background-color: #fff6cf;
	font-weight: bold;
	font-size: 22px;
	padding:15px 30px; 
	border-radius: 8px;
	border:2px solid #4975be;
	color: #4975be;
	box-shadow: 4px 2px 0px #4975be; 
	-webkit-box-shadow: 4px 2px 0px #4975be; 
	-moz-box-shadow: 4px 2px 0px #4975be;
}
.topbtn li a:hover{
	background-color: #4975be;
	color: #fff;
	transition: .3s;
    -webkit-transition: .3s;
}

.icon{
	max-width: 90px;
	position: relative;
	z-index: 5;
}
@media(max-width:768px){
.icon{
max-width: 60px;
	}
}
.line h2 {
    font-weight: bold;
    color: #3c70c7;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #4975be;
}
.bg-success-100{
	background-color: #fff5d5;
}
.linkbtn a,.linkbtn button {
    background-color: #3c70c7;
    padding: 10px 30px;
    border-radius: 8px;
    color: #fff;
	border:0px;
    display: inline-block;
}
.linkbtn a:hover{
	background-color: #3e66a8;
	transition: .3s;
    -webkit-transition: .3s;
}

.btn2 a{background-color: #5c5d61;}
.btn2 a:hover{
	background-color: #111;
	transition: .3s;
    -webkit-transition: .3s;
}
.btnNone button {
	background-color: #ababab;
}
	.btnNone button:hover {
		cursor: no-drop;
		background-color: #ababab;
	}
footer{text-align: center;padding: 25px 15px 15px;}
footer p {
	font-size: 14px;
	color: #626262 ;
	margin:0px;
}
