@charset "UTF-8";

*{
	-webkit-overflow-scrolling: touch;
}
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
aside,
main,
header,
footer,
p,
ul,
ol,
li,
dl,
dt,
dd {
	margin: 0;
	padding: 0
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize*/
html{
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary{
	display: block;
}

audio,
canvas,
progress,
video{
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]){
	display: none;
	height: 0;
}

[hidden],
template{
	display: none;
}

a{
	background-color: transparent;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	text-decoration: none;
	color: #131313
}
a:not([class]):hover{
	opacity: .6;
}

a:active,
a:hover{
	outline: 0;
}

abbr[title]{
	border-bottom: 1px dotted;
}

b,
strong{
	font-weight: bold;
}

dfn{
	font-style: italic;
}

mark{
	background: #ff0;
	color: #000;
}

small{
	font-size: 80%;
}

sub,
sup{
	vertical-align: baseline;
	line-height: 0;
	position: relative;
	font-size: 75%;
}

sup{
	top: -0.5em;
}

sub{
	bottom: -0.25em;
}

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

svg:not(:root){
	overflow: hidden;
}

figure{
	margin: 1em 40px;
}

hr{
	height: 0;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

pre{
	overflow: auto;
}

code,
kbd,
pre,
samp{
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea{
	margin: 0;
	color: inherit;
	font: inherit;
}

button{
	overflow: visible;
}

button,
select{
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"]{
	cursor: pointer;
	-webkit-appearance: button;
}

button[disabled],
html input[disabled]{
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner{
	padding: 0;
	border: 0;
}

input{
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"]{
	padding: 0;
	box-sizing: border-box;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button{
	height: auto;
}

input[type="search"]{
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration{
	-webkit-appearance: none;
}

fieldset{
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
	border: 1px solid #c0c0c0;
}

legend{
	padding: 0;
	border: 0;
}

textarea{
	overflow: auto;
}

optgroup{
	font-weight: bold;
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th{
	padding: 0;
}

body{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
	background: #fff7e4;
	color: #353535;
	font-size: 14px;
	line-height: 1.6
}
li{
	list-style: none;
}


.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.wrap{
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap
}

.nowrap{
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap
}

.flex-row{
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}

.reverse{
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.column-reverse{
	-webkit-flex-direction: column-reverse;
	-moz-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	-o-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
.flex-column{
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column
}

.justify-start{
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	-o-justify-content: flex-start;
	justify-content: flex-start
}
.justify-end{
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end
}
.justify-center{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center
}
.justify-between{
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between
}
.justify-around{
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	-o-justify-content: space-around;
	justify-content: space-around
}

.align-start{
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start
}
.align-end{
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end
}
.align-center{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center
}
.align-base{
	-webkit-align-items: baseline;
	-moz-align-items: baseline;
	-ms-align-items: baseline;
	-o-align-items: baseline;
	align-items: baseline
}
.align-stretch{
	-webkit-align-items: stretch;
	-moz-align-items: stretch;
	-ms-align-items: stretch;
	-o-align-items: stretch;
	align-items: stretch
}

.content-start{
	-webkit-align-content: flex-start;
	-moz-align-content: flex-start;
	-ms-align-content: flex-start;
	-o-align-content: flex-start;
	align-content: flex-start
}
.content-end{
	-webkit-align-content: flex-end;
	-moz-align-content: flex-end;
	-ms-align-content: flex-end;
	-o-align-content: flex-end;
	align-content: flex-end
}
.content-center{
	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center
}
.content-between{
	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between
}
.content-around{
	-webkit-align-content: space-around;
	-moz-align-content: space-around;
	-ms-align-content: space-around;
	-o-align-content: space-around;
	align-content: space-around
}
.flex-0-auto{
	-webkit-flex: 1 0 auto;
	-moz-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	-o-flex: 1 0 auto;
	flex: 1 0 auto;
}


@media screen and (max-width:768px) {
	.tab-block{
		display: block;
	}
	.tab-wrap{
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap
	}
	.tab-start{
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		-o-justify-content: flex-start;
		justify-content: flex-start
	}
}

@media screen and (max-width:768px) {
	.sp-wrap{
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap
	}
}
.center{
	text-align: center;
}
.set-width{
	width: 100%;
	max-width: 750px;
	margin-right: auto;
	margin-left: auto;
}
.logo{
	background: #020202;
	padding: 5px 0;
}
.logo img{
	max-width: 120px;
}
footer{
	padding: 30px 10px;
	background: #010100;
	color: #fff;
}
footer li{
	display: inline-block;
}
footer li a{
	display: block;
	color: #fff;
	padding: 10px;
}
footer>p{
	font-size: 12px;
	margin-top: 10px;
}
#laws{
	display: none;
}
.overflow{
	background: rgba(0,0,0,.8);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}
.laws-box{
	position: fixed;
	left: 5%;
	top: 5%;
	background: rgba(255,255,255,.95);
	padding: 20px;
	width: 90%;
	height: 90vh;
	overflow-y: auto;
	border-radius: 10px;
	border: 2px solid #000;
}
.laws-box ul,
.laws-box li{
	list-style: decimal-leading-zero;
}
.laws-box ul{
	padding-left: 30px;
}
.laws-box p,
.laws-box li{
	margin: 10px 0;
}
.laws-box .sub{
	font-weight: 600;
}
.laws-box .ttl{
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}
.laws-box td,
.laws-box th{
	padding: 10px 5px;
	border: 1px solid #666;
}
.laws-box table{
	width: 100%;
}
.laws-box th{
	background: #333;
	color: #fff;
	white-space: nowrap;
}
.laws-box a{
	text-decoration: underline;
}
@media screen and (max-width:768px) {
	.laws-box td,
	.laws-box th{
		display: block;
	}
}
#close{
	position: fixed;
	bottom: 10px;
	left: 0;
	z-index: 999;
	width: 100%;
	text-align: center;
}
#close a{
	display: inline-block;
	background: #f00;
	padding: 10px 30px;
	border-radius: 10px;
	border: 2px solid #000;
	color: #fff;
	font-weight: 600;
	font-size: 20px;
}
.pink,
.green{
	font-weight: 600;
}
.pink{
	color: #e41ec1;
}
.green{
	color: #338f36;
}
header>div{
	position: relative;
}
header .kv-txt{
	position: absolute;
	width: 100%;
	top: 10px;
	left: 0;
	padding: 0 30px;
}
header .btn{
	position: absolute;
	bottom: 20px;
	padding: 0 30px;
	color: #fff;
	width: 100%;
}
.btn .pop{
	margin-bottom: 2px;
}
.btn .pop img{
	max-width: 170px;
}
.btn p:last-child{
	margin-top: 10px;
}

.btn .form-wrap{
	max-width: 600px;
	margin: 0 auto;
}
.btn input{
	background: #fff;
	padding: 10px;
	border-radius: 10px;
	border :2px solid #338f36;
	width: 100%;
	color: #131313;
}
.btn button{
	background: 0;
	padding: 0;
	border: 0;
}
.btn .plz_txt{
	margin: 0 auto;
	max-width: 600px;
	font-size: 12px;
	padding: 10px;
	border: 1px solid #d1d1d1;
	background: rgba(255,255,255,.8);
	height: 100px;
	overflow-y: auto;
	margin-bottom: 15px;
	color: #131313;
	text-align: left;
}
.btn .plz_txt p{
	text-shadow: none!important;
}
header .btn p:last-child{
	text-shadow: 0 0 2px rgba(0, 0, 0, 1),0 0 2px rgba(0, 0, 0, 1),0 0 2px rgba(0, 0, 0, 1),0 0 2px rgba(0, 0, 0, 1),0 0 2px rgba(0, 0, 0, 1),0 0 2px rgba(0, 0, 0, 1),0 0 2px rgba(0, 0, 0, 1);
}
.btn .openform{
	font-weight: 600;
	text-decoration: underline;
}
header .btn .openform{
	color: #fff;
}
.ttl-img{
	margin-bottom: 25px;
	padding: 30px 15px 15px;
}
.subttl-img img{
	width: 80%;
	max-width: 390px;
}
.jisseki{
	margin-bottom: 60px;
}
.jisseki-holder{
	position: relative;
	max-width: 300px;
	margin: 0 5px;
}
.jisseki-text{
	position: absolute;
	color: #212e4f;
	left: 25px;
	top: 50%;
	margin-top: -57px;
}
.jisseki-text .date{
	font-size: 15px;
	line-height: 1.3;
	margin-bottom: 15px;
}
.pickup .price,
.jisseki-text .price{
	font-size: 35px;
	line-height: 1.2;
	font-weight: 600;
}
.pickup .price span,
.jisseki-text .price span{
	font-size: 20px;
}
.pickup{
	padding: 0 15px;
	margin-top: 50px;
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}
.pickup2{
	padding: 0 15px;
	margin-top: 50px;
	padding-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.pickup>div{
	position: relative;
	text-align: left;
	max-width: 710px;
	margin: 0 auto;
}
.pickup .info{
	position: absolute;
	padding: 15px 20px;
	top: 20px;
}
.pickup .info>div{
	-webkit-flex: 0 0 50%;
	-moz-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	-o-flex: 0 0 50%;
	flex: 0 0 50%;
}
.pickup .info>div div{
	color: #fff;
	margin-top: 10px;
}
.pickup .info>p{
	padding-left: 10px;
}
.pickup .price{
	color: #fffbb6;
	font-size: 50px;
	position: absolute;
	left: 20px;
	bottom: 15px;
}
.conclude,
.plus-form,
.voice,
.howto{
	position: relative;
	padding: 60px 0 60px;
	/*margin-bottom: 60px;*/
}

.conclude2{
	position: relative;
	padding: 30px 0 0px;
	/*margin-bottom: 60px;*/
}

.voice:before,
.howto:before{
	content: '';
	background: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transform: skewY(-10deg);
	-webkit-box-shadow: 0px 0px 8px 0px rgba(150,150,150, 0.75);
	-moz-box-shadow:    0px 0px 8px 0px rgba(150,150,150, 0.75);
	box-shadow:         0px 0px 8px 0px rgba(150,150,150, 0.75);
}
.voice>*,
.howto>*{
	position: relative;
}
.howto>div{
	padding: 0 15px;
	margin-bottom: 30px;
}
.youtube-holder {
	position: relative;
	padding-top: 56.25%;
}
.youtube-holder iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
.howto li{
	padding: 0 15px;
}
.howto li div{
	padding: 0 15px;
}
.howto li div>p:not(:last-child){
	margin-bottom: 15px;
}
.howto li:not(:last-child){
	margin-bottom: 35px;
}
.howto li:not(:last-child) div{
	padding-bottom: 25px;
	border-bottom: 2px solid #b1b1b1;
	position: relative;
}
.howto li:not(:last-child) div:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(177, 177, 177, 0);
	border-top-color: #b1b1b1;
	border-width: 15px;
	margin-left: -15px;
}
.howto ul{
	margin-bottom: 30px;
}
.voice:before{
	background: #524a46;
}
.voice>div{
	padding: 0 15px;
}
.voice>div li{
	max-width: 540px;
	margin-right: auto;
	margin-left: auto;
	background: #fff;
	padding: 60px 15px 30px;
	border: 2px solid;
	position: relative;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(175,175,175, 0.75);
	-moz-box-shadow:    0px 0px 5px 0px rgba(175,175,175, 0.75);
	box-shadow:         0px 0px 5px 0px rgba(175,175,175, 0.75);
}
.voice>div li:not(:last-child){
	margin-bottom: 30px;
}
.voice>div li .ttl{
	font-size: 22px;
	font-weight: 600;
	color: #e42424;
	margin-bottom: 20px;
	line-height: 1.2;
	letter-spacing: 0;
}
.voice>div .dendo{
	border-color: #a59f83;
}
.voice>div .dendo:before{
	background: url('../../../image/lp/media/voice-dendo.png') no-repeat left top;
	background-size: contain;
}
.voice>div .dendo_{
	border-color: #a59f83;
}
.voice>div .dendo_:before{
	background: url('../../../image/lp/media/voice-dendo_.png') no-repeat left top;
	background-size: contain;
}
.voice>div .colabo{
	border-color: #ff8d00;
}
.voice>div .colabo:before{
	background: url('../../../image/lp/media/voice-colabo.png') no-repeat left top;
	background-size: contain;
}
.voice>div .colabo_{
	border-color: #ff8d00;
}
.voice>div .colabo_:before{
	background: url('../../../image/lp/media/voice-colabo_.png') no-repeat left top;
	background-size: contain;
}
.voice>div .hit{
	border-color: #dbc316;
}
.voice>div .hit:before{
	background: url('../../../image/lp/media/voice-hit.png') no-repeat left top;
	background-size: contain;
}
.voice>div .umatomi{
	border-color: #E52020;
}
.voice>div .umatomi:before{
	background: url('../../../image/lp/media/voice-umatomi.png') no-repeat left top;
	background-size: contain;
}
.voice>div .kaiseki{
	border-color: #27c4c4;
}
.voice>div .kaiseki:before{
	background: url('../../../image/lp/media/voice-kaiseki.png') no-repeat left top;
	background-size: contain;
}
.voice>div li:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 40px;
	width: 100%;
}
.voice>div li div{
	margin-top: 30px;
}
.voice>div li div p:not(:last-child){
	margin-bottom: 15px;
}
.conclude ul{
	max-width: 460px;
	margin-right: auto;
	margin-left: auto;
	padding: 0 15px;
	margin-bottom: 15px;
}
.conclude li{
	padding: 0 15px 0 30px;
	background: url('../../../image/lp/media/icon-check.png') no-repeat left center;
	background-size: 20px;
}
.conclude li .green{
	font-size: 16px;
}
.conclude li:not(:last-child){
	margin-bottom: 10px;
}
.conclude div div span{
	display: inline-block;
	font-weight: 600;
}
.conclude div div span[class]{
	font-size: 16px;
}
.conclude div div p:not(:last-child){
	margin-bottom: 15px;
}
.conclude div{
	padding: 15px;
	max-width: 560px;
	margin-right: auto;
	margin-left: auto;
}
.conclude div div{
	border: 2px solid #fff;
	background: #fff;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 69, 224, 1), inset 0 0 0 2px rgba(51, 143, 54, 1);;
	-moz-box-shadow:    0 0 0 2px rgba(230, 69, 224, 1), inset 0 0 0 2px rgba(51, 143, 54, 1);;
	box-shadow:         0 0 0 2px rgba(230, 69, 224, 1), inset 0 0 0 2px rgba(51, 143, 54, 1);;
}
.conclude .btn{
	margin-top: 30px;
}

.conclude2 ul{
	max-width: 460px;
	margin-right: auto;
	margin-left: auto;
	padding: 0 15px;
	margin-bottom: 15px;
}
.conclude2 li{
	padding: 0 15px 0 30px;
	background: url('../../../image/lp/media/icon-check.png') no-repeat left center;
	background-size: 20px;
}
.conclude2 li .green{
	font-size: 16px;
}
.conclude2 li:not(:last-child){
	margin-bottom: 10px;
}
.conclude2 div div span{
	display: inline-block;
	font-weight: 600;
}
.conclude2 div div span[class]{
	font-size: 16px;
}
.conclude2 div div p:not(:last-child){
	margin-bottom: 15px;
}
.conclude2 div{
	padding: 15px;
	max-width: 560px;
	margin-right: auto;
	margin-left: auto;
}
.conclude2 div div{
	border: 2px solid #fff;
	background: #fff;
	-webkit-box-shadow: 0 0 0 2px rgba(230, 69, 224, 1), inset 0 0 0 2px rgba(51, 143, 54, 1);;
	-moz-box-shadow:    0 0 0 2px rgba(230, 69, 224, 1), inset 0 0 0 2px rgba(51, 143, 54, 1);;
	box-shadow:         0 0 0 2px rgba(230, 69, 224, 1), inset 0 0 0 2px rgba(51, 143, 54, 1);;
}
.conclude2 .btn{
	margin-top: 30px;
}


.plus-form{
	padding: 15px 15px 50px;
}
#popform{
	display: none;
	position: fixed;
	top: 20px;
	width: 100%;
	padding: 0 15px;
	z-index: 999;
}
#popform .set-width{
	max-width: 450px;
}
#popform input{
	background: #fff;
	padding: 10px;
	border-radius: 10px;
	border :1px solid #d1d1d1;
	width: 100%;
}
#popform button{
	background: 0;
	padding: 0;
	border: 0;
}
.form-wrap p{
	margin-bottom: 15px;
}
#overlay_form{
	display: none;
	position: fixed;
	background: rgba(0,0,0,.8);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.plz_txt{
	font-size: 12px;
	padding: 10px;
	border: 1px solid #d1d1d1;
	background: rgba(255,255,255,.8);
	height: 100px;
	overflow-y: auto;
	margin-bottom: 15px;
}
.popclose{
	text-align: right;
	margin-bottom: 10px;
}
.popclose img{
	width: 40px;
}
.closepop a{
	display: inline-block;
	background: #f00;
	padding: 10px 30px;
	border-radius: 10px;
	color: #fff;
	font-weight: 600;
}
.slide-in-elliptic-top-fwd{-webkit-animation:slide-in-elliptic-top-fwd .7s cubic-bezier(.25,.46,.45,.94) both;animation:slide-in-elliptic-top-fwd .7s cubic-bezier(.25,.46,.45,.94) both}

/* ----------------------------------------------
 * Generated by Animista on 2019-11-14 15:30:41
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@-webkit-keyframes slide-in-elliptic-top-fwd{0%{-webkit-transform:translateY(-600px) rotateX(-30deg) scale(0);transform:translateY(-600px) rotateX(-30deg) scale(0);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;opacity:0}100%{-webkit-transform:translateY(0) rotateX(0) scale(1);transform:translateY(0) rotateX(0) scale(1);-webkit-transform-origin:50% 1400px;transform-origin:50% 1400px;opacity:1}}@keyframes slide-in-elliptic-top-fwd{0%{-webkit-transform:translateY(-600px) rotateX(-30deg) scale(0);transform:translateY(-600px) rotateX(-30deg) scale(0);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;opacity:0}100%{-webkit-transform:translateY(0) rotateX(0) scale(1);transform:translateY(0) rotateX(0) scale(1);-webkit-transform-origin:50% 1400px;transform-origin:50% 1400px;opacity:1}}

.slide-in-elliptic-top-fwd-rvs{-webkit-animation:slide-in-elliptic-top-fwd-rvs .7s cubic-bezier(.25,.46,.45,.94) reverse both;animation:slide-in-elliptic-top-fwd-rvs .7s cubic-bezier(.25,.46,.45,.94) reverse both}

/* ----------------------------------------------
 * Generated by Animista on 2019-11-14 15:37:58
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@-webkit-keyframes slide-in-elliptic-top-fwd-rvs{0%{-webkit-transform:translateY(-600px) rotateX(-30deg) scale(0);transform:translateY(-600px) rotateX(-30deg) scale(0);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;opacity:0}100%{-webkit-transform:translateY(0) rotateX(0) scale(1);transform:translateY(0) rotateX(0) scale(1);-webkit-transform-origin:50% 1400px;transform-origin:50% 1400px;opacity:1}}@keyframes slide-in-elliptic-top-fwd-rvs{0%{-webkit-transform:translateY(-600px) rotateX(-30deg) scale(0);transform:translateY(-600px) rotateX(-30deg) scale(0);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;opacity:0}100%{-webkit-transform:translateY(0) rotateX(0) scale(1);transform:translateY(0) rotateX(0) scale(1);-webkit-transform-origin:50% 1400px;transform-origin:50% 1400px;opacity:1}}


.kv-txt p{
margin-top: 20px;
font-weight: 600;
font-size: 6vw;
line-height: 1.4;
color: #292929;
text-shadow: 0 0 5px rgba(255,255,255, 1), 0 0 5px rgba(255,255,255, 1), 0 0 5px rgba(255,255,255, 1), 0 0 5px rgba(255,255,255, 1);
}
.kv-txt span{
font-family: "Yusei Magic", sans-serif;
font-size: 1.3em;
font-weight: 400;
}
.kv-txt .race{
color: #08810D;
}
.kv-txt .horse{
background: url("../../../image/lp/abandoned_dm/26266.png") no-repeat center 99%;
background-size: 65% auto;
color: #9C0C0C;
animation: animatedBackground 5s linear;
}
@keyframes animatedBackground {
0% {
background-position: center -5%;
}
15% {
background-position: center -5%;
}
30% {
background-position: center 30%;
}
45% {
background-position: center 30%;
}
60% {
background-position: center 63%;
}
75% {
background-position: center 63%;
}
100% {
background-position: center 99%;
}
}
@media only screen and (min-width: 768px) {
.kv-txt p{
font-size: 50px;
}
}
  .pop span{
font-size: 11px;
background: #383535;
display: inline-block;
padding: 5px 10px;
margin-bottom: 10px;
color: #fcfa34;
position: relative;
border: 1px solid #fcfa34;
}
.pop span:after, .pop span:before {
top: 100%;
left: 50%;
border: solid transparent;
content: "";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.pop span:after {
border-color: rgba(56, 53, 53, 0);
border-top-color: #383535;
border-width: 10px;
margin-left: -10px;
}
.pop span:before {
border-color: rgba(252, 250, 52, 0);
border-top-color: #fcfa34;
border-width: 11px;
margin-left: -11px;
}

/*-----------------------*/

.sph{margin-bottom:50px;}

@media only screen and (max-width: 768px) {

.sph{margin-bottom:-100px;}


.voice:before,
.howto:before{
	content: '';
	background: #fff;
	width: 100%;
	height: 90%;
	position: absolute;
	top: 95px;
	left: 0;
	transform: skewY(-10deg);
	-webkit-box-shadow: 0px 0px 8px 0px rgba(150,150,150, 0.75);
	-moz-box-shadow:    0px 0px 8px 0px rgba(150,150,150, 0.75);
	box-shadow:         0px 0px 8px 0px rgba(150,150,150, 0.75);
}
.voice>*,
.howto>*{
	position: relative;
}

.voice{
	position: relative;
	padding: 30px 0 60px;
	/*margin-bottom: 60px;*/
}

.howto{
	position: relative;
	padding: 130px 0 60px;
	/*margin-bottom: 60px;*/
}

.plus-form{
	position: relative;
	padding: 30px 0 30px;
	/*margin-bottom: 60px;*/
}

.conclude{
	position: relative;
	padding: 0px 0;
	/*margin-bottom: 60px;*/
}

.ttl-img{
	margin-bottom: 25px;
	padding: 0px 15px 0px;
}





}