@charset "utf-8";
@import url(cmn.css);
@import url(base.css);
@import url(lineanime.css);
body.entry_form #lv {
	height: 45vh;
}
body.entry_form #lv h1{
	line-height: 1.4;
	font-size: 5.0rem;
	margin-top: 30px;
	text-align: center;
	z-index: 2;
}
body.entry_form #lv h1::before{
	display: none;
}
body.entry_form #lv p{
	font-size: 2rem;
	text-align: center;
	position: relative;
	z-index: 2;
}
body.entry_form #lv_outer .lineanime{
	margin-top: -80px;
	z-index: 1;
	height: calc(100% + 130px);
}


@media screen and (max-width: 768px){
	body.entry_form #lv h1{
		font-size: 3.5rem;
	}
}
@media screen and (max-width: 480px){
	body.entry_form #lv {
		height: 30vh;
		min-height: 260px;
	}
	body.entry_form #lv h1{
		font-size: 2.5rem;
		margin-top: 0;
	}
}

/*------------------共通---------------------------*/
#form{
	background: #f0f0f0;
	padding-top: 0;
	overflow: visible;
}
#form .wrapper{
	background: #fff;
	border-radius: 20px;
	box-shadow: 20px 20px 50px rgba(0,0,0,.08);
	width: 90%;
	max-width: 900px;
	padding: 60px;
	margin-top: -40px;
	position: relative;
	z-index: 1;
}
#form.thanks .wrapper,
#form.check .wrapper{
	margin-top: -180px;
}
#form dl i{
	font-size: 70%;
	color: #fff;
	background: #fe7c8a;
	font-weight: 500;
	border-radius: 99px;
	padding: 4px 8px;
	margin-right: 10px;
	vertical-align: middle;
}
#form dl p.small{
	font-size: 80%;
	color: var(--i_main_color);
	margin-top: 5px;
	line-height: 1.5;
}

#form dl{
	letter-spacing: 0.25rem;
	padding: 15px 20px;
	background: #fafafa;
}
#form dl + dl{
	margin-top: 5px;
}
#form dd{
	margin-top: 5px;
}
#form input#zip{
	width: 110px;
}
#form input#zip + p.small{
	margin-bottom: 10px;
}
#form p.formbtn{
	text-align:center;
	margin: 30px auto 0;
}
#form .privacy{
	margin-top: 20px;
}
#form .privacy a{
	text-decoration: underline;
}
#form .privacy + .btn:not(.active) input {
	pointer-events: none;
	background: #BBB;
}

@media screen and (max-width: 900px){
	#form.thanks .wrapper,
	#form.check .wrapper{
		margin-top: -270px;
	}
}
@media screen and (max-width: 600px){
	#form .wrapper{
		padding: 30px 20px;
	}
}

@media screen and (max-width: 480px){
	#form .wrapper{
		width: calc(100 - 40px);
	}
	#form.thanks .wrapper,
	#form.check .wrapper{
		margin-top: -140px;
	}
}
/*----------------中途-----------------------------*/
#form h2{
	text-align: left;
	font-size: calc(var(--font-size-base)*1.25);
	font-weight: 500;
	letter-spacing: 0.25rem;
	color: var(--i_main_color);
	border-left: 3px solid var(--i_main_color);
	background: none!important;
	padding: 0;
	padding-left: 15px;
	margin-bottom: 30px;
	margin-top: 60px;
}

#form p.etc{
	cursor: pointer;
	margin-top: 30px;
	position: relative;
}
#form p.etc + div{
	display: none;
}
#form p.etc::before,
#form p.etc::after {
  position: absolute;
  display: block;
  content: "";
  background: var(--i_txt_color);
  pointer-events: none;
  transition: 0.4s ease-in-out;
}
#form p.etc::before{
	width: 12px;
	height: 1px;
	top: 50%;
	right: 5px;
}
#form p.etc::after{
	width: 1px;
	height: 12px;
	top: 10px;
	right: 9.5px;
}
#form p.etc.active::after {
  opacity: 0;
  transform: rotate(-225deg);
}

#form dd.flex{
	justify-content: flex-start;
}


@media screen and (max-width: 480px){
	#form h2{
		font-size: 1.7rem;
	}
}
/*---------------確認画面------------------------------*/
#form.check h1+p{
	margin-bottom: 30px;
}
#form.check table{
	margin-bottom: 30px;
}
#form.check table th,
#form.check table td{
	padding: 10px;
}
#form.check table th{
	text-align: right;
}
#form.check form input[type="submit"]{
	margin-bottom: 10px;
}
@media screen and (max-width: 480px){
	#form.check table th,
	#form.check table td{
		padding: 0 15px;;
	}
	#form.check table tr{
		display: flex;
		flex-direction: column;
		margin-bottom: 10px;
	}
	#form.check table th{
		text-align: left;
	}

}
/*----------------------------form--------------------------------*/

form input,
form textarea{
	display: block;
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	padding: 15px;
	color: var(--i_txt_color);
	transition: 0.3s ease-in-out;
	border-radius: 5px;
	border: 1px solid #C8C8C8;
	font-size: var(--font-size-base);
}
form input:focus,
form textarea:focus{
	border: 1px solid var(--i_sub_color);
}
form input[type=radio],
form input[type=checkbox]{
	display: none;
	margin: 0;
}

form input[type=radio]+label,
form input[type=checkbox]+label{
    position: relative;
    display: inline-block;
    cursor: pointer;
	padding-left: 25px;
}

form input[type=radio]+label:before{
    border: 1px solid #fff;
    border-radius: 30px;
}


form input[type=radio]+label:before,
form input[type=checkbox]+label:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: #fff;
	border: 1px solid #C8C8C8;
}

form input[type=radio]:checked+label:after,
form input[type=checkbox]:checked+label:after{
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: var(--i_sub_color);
    border-radius: 8px;
}

form input[type=checkbox]+label:before,
form input[type=checkbox]:checked+label:after{
	border-radius: 0;
}

form input[type=radio]:checked+label:after,
form input[type=checkbox]:checked+label:after{
    content: "";
    position: absolute;
    top: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}
form input[type="submit"],
form input[type="button"] {
    display: inline-block;
    width: 300px;
    background: var(--i_main_color);
    color: #fff;
    padding: 20px;
    border: none;
    cursor: pointer;
	font-size: 1em;
	letter-spacing: 0.2rem;
	font-family: var(--font-family);
	border-radius: 99px;
	text-align: center;
}
form input[type="button"].prev{
	background: #707070;
}
form input[type="submit"]:hover,
form input[type="button"]:hover {
	background: var(--i_sub_color);
}

form select{
	font-size: 1em;
	font-family: var(--font-family);
	background: #fff;
	border: 1px solid #C8C8C8;
	color: var(--i_txt_color);
	padding: 15px;
	padding-right: 15px;
	padding-right: 30px;
	cursor: pointer;
	margin: 0 5px;
	border-radius: 5px;
}
form .select{
	position: relative;
}
form .select:before{
	position: absolute;
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	top: calc(50% - 5px);
	right: 7px;
	border-bottom: solid 2px #f0f0f0;
	border-right: solid 2px #f0f0f0;
	transform: rotate(45deg);
}
form option{
    font-size: 1em;
	color: var(--i_txt_color);
}

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

}
