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


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */


body {
}

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

.anim {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease-out;
}
.anim.on {
	opacity: 1;
	transform: translateY(0);
}


@media screen and (min-width: 813px) {
	
	.sp { display: none;}
	
	a {
		-webkit-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}
	
}
@media screen and (max-width: 812px) {
	
	.pc { display: none;}
	
}

#container {
    max-width: 1000px;
    margin: 0 auto;
}

#container h2 {
    font-size: 41px;
    text-align: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: ttl 0.5s ease-out 1s forwards;
}
@keyframes ttl {
	0% { opacity: 0; transform: translateY(30px);}
	100% { opacity: 1; transform: translateY(0);}
}

#container .leadTxt {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
	margin-bottom: 80px;
	
	opacity: 0;
	transform: translateY(30px);
	animation: ttl 0.5s ease-out 1.3s forwards;
}


#container .aboutApp {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin-bottom: 80px;
}
#container .aboutApp li {
	width: 32%;
    padding: 0 25px 40px;
	position: relative;
	color: #021124;
}

#container .aboutApp li::before,
#container .aboutApp li::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #FBFBFB;
	z-index: -1;
}
#container .aboutApp li::before {
	content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1;
    top: 15%;
    height: 85%;
}
#container .aboutApp li::after {
    bottom: 0;
    background: #600e0e;
}

@keyframes mask {
	0% { height: 100%;}
	100% { height: 0%;}
}


#container .aboutApp li .pic {
	max-width: 70%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	opacity: 0;
}
@keyframes pic {
	0% { opacity: 0; transform: translateY(30px);}
	100% { opacity: 1; transform: translateY(0);}
}


#container .aboutApp li .num {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #600e0e;
}
#container .aboutApp li .num span {
	display: inline-block;
	padding: 0 10px;
    line-height: 1.4;
	border-bottom: #021124 solid 2px;
}
#container .aboutApp li h3 {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    color: #600e0e;
}

#container .aboutApp li p {
    font-size: 12px;
    color: #050406;
}


#container .method {
    max-width: 340px;
    margin: 0 auto 80px;
}
#container .method a {
	display: block;
    text-align: center;
    background-color: #000;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 20px;
}



#container h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 50px;
}
#container h3 span {
    border-bottom: solid 2px;
    padding-bottom: 10px;
}


#container .appBtn {
	display: flex;
	justify-content: center;
	list-style: none;
	margin-bottom: 60px;
}
#container .appBtn li {
	margin: 0 20px;
}
#container .appBtn li a {
    display: block;
    height: 70px;
}
#container .appBtn li img {
	height: 100%;
	width: auto;
}

#container .noteBox {
    padding: 25px 40px;
    background: #050406;
}

#container .noteBox h5 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}
#container .noteBox p {
	font-size: 15px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 10px;
}
#container .noteBox .note {
    font-size: 12px;
    font-weight: normal;
    margin: 0;
}

#container .copyright {
	text-align: center;
	font-size: 12px;
}







@media screen and (min-width: 813px) {
	
	#container .method a:hover,
	#container .appBtn li a:hover {
		opacity: 0.5;
	}
	
	#container .aboutApp li::after {
		animation: mask 0.8s ease-out 2s forwards;
	}
	#container .aboutApp li .pic {
		animation: pic 1s ease-out 1.6s forwards;
	}
	
}
@media screen and (max-width: 812px) {
	
	#container {
	}
	#container h2 {
	    font-size: 7.2vw;
	    margin-bottom: 4vw;
	}
	#container .leadTxt {
		font-size: 4vw;
		line-height: 1.8;
		margin-bottom: 8vw;
	}
	
	#container .aboutApp {
		display: block;
		margin-bottom: 10vw;
	}
	#container .aboutApp li {
		width: 100%;
		padding: 0 4vw 6vw;
		margin-bottom: 8vw;
	}
	#container .aboutApp li:last-child {
		margin-bottom: 0;
	}
	
	#container .aboutApp li.about01::after {
		animation: mask 0.8s ease-out 2s forwards;
	}
	#container .aboutApp li.about01 .pic {
		animation: pic 1s ease-out 1.6s forwards;
	}
	#container .aboutApp li.about02.on::after {
		animation: mask 0.8s ease-out forwards;
	}
	#container .aboutApp li.about02.on .pic {
		animation: pic 1s ease-out forwards;
	}
	#container .aboutApp li.about03.on::after {
		animation: mask 0.8s ease-out forwards;
	}
	#container .aboutApp li.about03.on .pic {
		animation: pic 1s ease-out forwards;
	}
	
	#container .aboutApp li .pic {
		max-width: 53%;
	}
	
	#container .aboutApp li .num {
		font-size: 6vw;
		margin-bottom: 4vw;
	}
	#container .aboutApp li .num span {
		padding: 0 2vw;
	}
	#container .aboutApp li h3 {
		font-size: 4.6vw;
		line-height: 1.6;
		margin-bottom: 5vw;
	}
	
	#container .method {
		max-width: 72vw;
		margin: 0 auto 10vw;
	}
	#container .method a {
		font-size: 4.6vw;
		padding: 3vw;
	}
	
	#container h3 {
		font-size: 3.2vw;
		margin-bottom: 8vw;
	}
	
	#container .appBtn {
		margin-bottom: 10vw;
	}
	#container .appBtn li {
		margin: 0 2vw;
	}
	#container .appBtn li a {
	    height: 11vw;
	}

	#container .noteBox {
		padding: 4vw 6vw;
		margin-bottom: 10vw;
	}
	
	#container .noteBox h5 {
		font-size: 4vw;
		margin-bottom: 3vw;
	}
	#container .noteBox p {
		font-size: 3.4vw;
		margin-bottom: 3vw;
	}
	#container .noteBox .note {
		font-size: 3vw;
		font-weight: normal;
	}
	
	#container .copyright {
		font-size: 2.8vw;
	}
	
}



