@charset "utf-8";

#lp_contents {
	max-width: 650px;
	margin: 0 auto;
}

#lp_contents h1 {
	margin-bottom: 0;
}

#lp_contents .form_box {
	position: relative;
}

#lp_contents .input_area {
	position: absolute;
	bottom: 4%;
	left: 50%;
	transform: translateX(-50%);
	max-width: 480px;
	width: calc(480 / 650 * 100%);
	text-align: center;
}

#lp_contents .input_area {
	text-align: center;
}

#lp_contents .input_area a {
	position: relative;
	display: block;
	transition: all 0.3s;
	-webkit-animation: expand 2.8s ease-in-out 0s infinite;
	animation: expand 2.8s ease-in-out 0s infinite;
}

#lp_contents .input_area a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 5px;
	animation: glow 1s infinite;
}

#lp_contents .input_area input,
#lp_contents .input_area a img {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
}

#lp_contents .ngredients_box {
	position: absolute;
	left: 50%;
	width: calc(300 / 650 * 100%);
	margin: 6% auto;
	transform: translateX(-50%);
}

#lp_contents .ngredients_box a img {
	width: 100%;
}

/*--トップコンテンツ--*/
#lp_contents .mv .input_area {
	bottom: 9%;
}

/*--メインコンテンツ--*/
#lp_contents .main_contents .sec01 .input_area {
	bottom: 3%;
}

#lp_contents .mask_box .mask_button {
	-webkit-mask-image: url("../img/clip_mask.svg");
	mask-image: url("../img/clip_mask.svg");
	-webkit-mask-size: 100% auto;
	mask-size: 100% auto;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	mask-composite: exclude;
	transition: all 3s;
	-webkit-animation: expand 1.5s ease-in-out infinite;
	animation: expand 1.5s ease-in-out infinite;
}

#lp_contents .mask_box .mask_button a {
	position: relative;
	display: inline-block; 
	overflow: hidden;
	transition: all 0.3s;
	animation: none;
}

#lp_contents .mask_box .mask_button a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -150%;
	width: 200%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 70%);
	animation: shine 2s linear infinite;
	z-index: 10;
}

#lp_contents .mask_box .mask_button:hover {
	animation-play-state: paused;
	-webkit-animation-play-state: paused;
}

#lp_contents .mask_box .mask_button input,
#lp_contents .mask_box .mask_button a img {
	position: relative;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
}

.l-footer {
	max-width: 650px;
	margin: 0 auto;
}

/*-- コモン調整用クラス--*/

.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}
.mt20 {
	margin-top: 20px;
}
.mt25 {
	margin-top: 25px;
}
.mt40 {
	margin-top: 40px;
}
.mt50 {
	margin-top: 50px;
}
.ml15 {
	margin-left: 15px;
}
.ml45 {
	margin-left: 45px;
}
.ml70 {
	margin-left: 70px;
}
.mr22 {
	margin-right: 22px;
}
.pt00 {
	padding-top:0px;
}
.pt15 {
	padding-top:15px;
}
.pt30 {
	padding-top:30px;
}
.pb25 {
	padding-bottom:25px;
}

@keyframes scale {
	0% {
		transform: scale(1);
		opacity: 0;
	}
	18% {
		transform: scale(1.17);
		opacity: 1;
	}
	34% {
		transform: scale(1);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes fade {
	0% {
		opacity: 0;
	}
	50% {
		transform: scale(1.1);
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}

@keyframes shine {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

@keyframes expand {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}