/*--------------------------------
reset
--------------------------------*/
html,body,div,p,img,iframe,a,span,blockquote,q,address,cite,
pre,code,em,small,strong,b,i,
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer,time,
h1,h2,h3,h4,h5,h6,
ul,ol,li,dl,dt,dd,
table,tbody,thead,tfoot,th,tr,td,
form,fieldset,legend,label,select,input,textarea,button{
	margin: 0;
	padding: 0;
	border: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: baseline;
}
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer{
	display: block;
}
ul{
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 500;
}
body{
	line-height: 1;
}
a{
	text-decoration: none;
}
img{
	vertical-align: middle;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
select,option,input,textarea,button{
	font: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border-radius: 0;
}
blockquote::before,blockquote::after,q::before,q::after{
	content: '';
	content: none;
}
[type=submit],[type=button],[type=reset],[type=file],button{
	cursor: pointer;
}
:focus{
	outline: none;
}

/*--------------------------------
global element
--------------------------------*/
html{
	width: 100%;
	height: 100%;
}
body{
	width: 100%;
	height: 100%;
	background: #000;
	font-size: 16px;
	font-family: sans-serif;
	color: #333;
	-webkit-text-size-adjust: 100%;
}
a{
	transition: .5s;
}
.clear{
	margin:　0;
	padding:　0;
	height:　0;
	clear:　both;
}
.wrap{
	width: 100%;
	height: 100%;
	position: relative;
}
/*--------------------------------
header
--------------------------------*/
.logo{
	margin: 0 auto;
	width: 300px;
	height: 100px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left :0;
	right: 0;
	bottom: 0;
	z-index: 999;
	overflow: hidden;
}
.logo::after{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 150px 0 150px;
	border-color: #333 transparent transparent transparent;
	content: "";
	position: absolute;
	top: 0;
	left :0;
	right: 0;
	bottom: 0;
	z-index: -1;
	display: block;
}
.logo h1{
	padding: 120% 0 0 0;
	background-position: center top;
	background-repeat: no-repeat;
}
.logo-3ban{
	background-image: url(../images/logo-3ban.png);
}
.logo-4ban{
	background-image: url(../images/logo-4ban.png);
}
.logo-5ban{
	background-image: url(../images/logo-5ban.png);
}
.logo-6ban{
	background-image: url(../images/logo-6ban.png);
}
.logo-7ban{
	background-image: url(../images/logo-7ban.png);
}
.logo-8ban{
	background-image: url(../images/logo-8ban.png);
}
/*--------------------------------
Contents
--------------------------------*/
.entry-frame{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left :0;
}
.entry-frame iframe{
	width: 100%;
	height: 99.8%;
	border: 0;
}
.content{
	width: 100%;
	min-width: 1000px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left :0;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.fade-in{
	animation:fade-in .5s ease 0s forwards;
	z-index: 1;
}
@keyframes fade-in{
0% {opacity: 0;display:block;}
100%{opacity: 1;}
}
.fade-out{
	animation:fade-out .5s ease 0s forwards;
	z-index: -1
}
@keyframes fade-out{
0% {opacity: 1;}
100%{opacity: 0;display:none;}
}
.page1{
	background-image: url(../images/bg_01.jpg);
}
.bg_sex1{
	background-image: url(../images/bg_02_m.jpg);
}
.bg_sex2{
	background-image: url(../images/bg_02_f.jpg);
}
.page3,.page7,.success{
	background-image: url(../images/bg_03.jpg);
}
.page4{
	background-image: url(../images/bg_04.jpg);
}
.page5{
	background-image: url(../images/bg_05.jpg);
}
.page6{
	background-image: url(../images/bg_06.jpg);
}
.row-box{
	width: 100%;
	min-width: 1000px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left :0;
	display: flex;
	align-items: center;
}
.row-item{
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
}
.row-item:nth-of-type(1){
	left: 0;
}
.row-item:nth-of-type(2){
	right: 0;
}
.row-head{
	margin: auto;
	width: 200px;
	height: 200px;
	background: #333;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 3;
	border-radius: 50%;
}
.row-head h1{
	padding: 10px 20px;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #fff;
}
.row-head .back-btn{
	background-color: #222;
}
.black-out::after{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.8);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	display: block;
	z-index: 2;
	animation:fade-in .5s ease 0s forwards;
}


.column-box{
	margin: 0 auto;
	padding: 50px 0 0 0;
	width: 1000px;
}
.column-item{
	width: 490px;
	flex-grow: 0;
	flex-shrink: 0;
}
.column-item-l{
	width: 1000px;
	flex-grow: 0;
	flex-shrink: 0;
}
.column-item p,.column-item-l p{
	padding: 0 0 20px 160px;
}
.column-head{
	padding: 0 0 20px 0;
	position: relative;
}
.column-head h1{
	padding: 20px;
	font-size: 20px;
	line-height: 20px;
	text-align: center;
	background: rgba(255,255,255,.9);
	box-shadow: 2px 2px 2px rgba(0,0,0,.4);
}
.column-head .back-btn{
	position: absolute;
	top: 10px;
	left: 10px;
}
.column-box .inner{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.disappear{
	animation:disappear .5s ease 0s forwards;
}
@keyframes disappear{
0% {opacity: 1;}
100%{opacity: 0.2;}
}
.conf-text{
	margin: 0 0 20px 0;
	padding: 10px;
	background: rgba(255,255,255,.9);
	box-shadow: 2px 2px 2px rgba(0,0,0,.4);
	position: relative;
}

.conf-text h3{
	padding: 0 10px;
	line-height: 30px;
	border-bottom: 1px dotted #999;
	font-size: 18px;
	text-align: center;
}
.conf-text p{
	padding: 10px;
	line-height: 28px;
}
.conf-text p a{
	color: #369;
}
.conf-text p a:hover{
	opacity: .6;
	text-decoration: underline;
}
.conf-text p span{
	position: relative;
	border-bottom: 3px solid #900;
}
.conf-text .important{
	margin: 10px 0 0 0;
	padding: 20px;
	background: #fff;
	box-shadow: 1px 1px 1px rgba(0,0,0,.1);
}
.conf-text .conf-address-pc{
	padding: 10px;
	line-height: 24px;
	display: block;
	background: #fff;
	text-align: center;
	font-size: 21px;
	font-family: arial,sans-serif;
	font-weight: bold;
	color: #666;
	box-shadow: 1px 1px 1px rgba(0,0,0,.1);
}
.terms{
	padding: 10px 0 0 0;
}
.terms a{
	line-height: 40px;
	border-radius: 20px;
	display: block;
	background: #ccc;
	color: #444;
	text-align: center;
}
.terms a:hover{
	opacity: .6;
	text-decoration: none;
}
.form-part{
	padding: 20px;
	position: absolute;
	right: 0;
	bottom: 20px;
	left: 0;
	background: rgba(255,255,255,.75);
	box-shadow: 2px 2px 2px rgba(0,0,0,.4);
}
.step{
	margin: 0 0 20px 0;
	height: 10px;
	overflow: hidden;
	position: relative;
}
.step span{
	padding: 120% 0 0 0;
	display: block;
	background-image: url(../images/bg_step.png);;
	background-size: 100% 30px;
}
.step1{
	background-position: 0 0;
}
.step2{
	background-position: 0 -10px;
}
.step3{
	background-position: 0 -20px;
}
/*--------------------------------
Form
--------------------------------*/
input[type="text"]{
	padding: 10px;
	width: 100%;
	height: 44px;
	background: #fff;
	font-size: 18px;
	position: relative;
	text-align: center;
}
input[type="text"].prof-title{
	text-align: left;
}
textarea{
	padding: 10px;
	width: 100%;
	height: 88px;
	background: #fff;
	font-size: 18px;
	position: relative;
	display: block;
}
select{
	padding: 0 10px;
	width: 100%;
	height: 44px;
	line-height: 44px;
	background: url(../images/icon_select.png) no-repeat right #fff;
	background-size: 30px 60px;
	font-size: 18px;
	position: relative;
}
select:-moz-focusring {
	color: transparent;
	text-shadow: 0px 0px 0px #000;
}
option{
	appearance: none;
	font-size: 18px;
	background: #fff;
}
.radio-box{
	margin: auto;
	width: 200px;
	height: 200px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	posiiton: relative;
	align-items: center;
	
}
.radio-box .radio-label{
	width: 200px;
	height: 200px;
	position: relative;
	cursor: pointer;
	box-shadow: 2px 2px 2px rgba(0,0,0,.2);
}
.radio-box .radio-value{
	width: 200px;
	height: 200px;
	line-height: 200px;
	font-size: 28px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	transition: .3s;
} 
.radio-box input[type="radio"]{
	width: 200px;
	height: 200px;
	transition: .3s;
	box-shadow: 0 0 0 rgba(0,0,0,0);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	background-position: right -10px bottom -10px;
}
.radio-box input[type="radio"]:checked{
	width: 200px;
	height: 200px;
	box-shadow: 2px 2px 2px rgba(0,0,0,.2);
	background: url(../images/icon_entry.png) no-repeat right -10px bottom -10px;
	background-size: 80px;
}
.radio-box input[type="radio"]:checked + span,
.radio-box input[type="radio"]:hover + span{
	color: #fff;
}
.radio-box .sex1 + span,.radio-box .sex2 + span{
	background-image: url(../images/icon_sex.png);
	background-repeat: no-repeat;
}
.radio-box .sm1 + span,.radio-box .sm2 + span{
	background-image: url(../images/icon_sm.png);
	background-repeat: no-repeat;
}
.radio-box .sex1 + span{
	background-position: 0 0;
}
.radio-box .sex2 + span{
	background-position: -200px 0;
}
.radio-box .sm1 + span{
	background-position: 0 0;
}
.radio-box .sm2 + span{
	background-position: -200px 0;
}
.radio-box .sex1:checked + span,
.radio-box .sex1:hover + span{
	background-position: 0 -200px;
}
.radio-box .sex2:checked + span,
.radio-box .sex2:hover + span{
	background-position: -200px -200px;
}
.radio-box .sm1:checked + span,
.radio-box .sm1:hover + span{
	background-position: 0 -200px;
}
.radio-box .sm2:checked + span,
.radio-box .sm2:hover + span{
	background-position: -200px -200px;
}
.column-item .column-radio{
	padding: 0;
	width: 1000px;
	display: flex;
	flex-wrap :wrap;
	posiiton: relative;
	align-items: center;
	justify-content: space-between;
}
.column-radio .radio-label{
	margin: 0 0 20px 0;
	width: 320px;
	height: 80px;
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
	flex-grow: 0;
}
.column-radio .radio-value{
	width: 320px;
	height: 80px;
	line-height: 80px;
	font-size: 21px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	transition: .3s;
} 
.column-radio input[type="radio"]{
	width: 320px;
	height: 80px;
	transition: .3s;
	box-shadow: 2px 2px 2px rgba(0,0,0,.2);
	background-position: right;
	background-size: 80px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	transition: .5s;
}
.column-radio input[type="radio"]:checked{
	width: 320px;
	height: 80px;
	box-shadow: 0 0 0 rgba(0,0,0,0);
	background: url(../images/icon_entry.png) no-repeat right;
	background-size: 80px;
}
.column-radio input[type="radio"]:checked + span,
.column-radio input[type="radio"]:checked:hover + span{
	background-color: #c66;
	color: #fff;
}
.column-radio input[type="radio"]:hover + span{
	background-color: #c66;
	color: #fff;
}





.content fieldset{
	position: relative;
}
fieldset p label.error{
	padding: 0;
	width: 100%;
	line-height: 20px;
	text-align: center;
	background: #666;
	color: #fff;
	text-align: center;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	animation:slide_down 0.5s ease 2s forwards;
}
fieldset p label.error::after{
	margin: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 10px 5px;
	border-color: transparent transparent #666 transparent;
	position: absolute;
	top :-10px;
	left:  65px;
	content: "";
	display: block;
}
@keyframes slide_down{
0% {opacity: 0;transform: translate3d(0,-10px,0);}
100%{opacity: 1;transform: translate3d(0,0,0);}
}
.form-label{
	width: 160px;
	line-height: 44px;
	text-align: center;
	position: absolute;
	top: 0;
	bottom: 20px;
	left: 0;
	background: #C66;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn-row{
	margin: 0 auto;
	padding: 0;
	width: 100%;
	line-height: 60px;
	text-align: center;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}
.next-btn,
.skip-btn,
.conf-btn,
.entry-btn{
	width: 100%;
	height: 80px;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 2px 2px 2px rgba(0,0,0,.4);
	transform: translate3d(0,0,0);
	background-color: #933;
}
.next-btn,
.skip-btn,
.conf-btn{
	background-image: url(../images/icon_btn.png);
	background-repeat: no-repeat;
	background-size: 80px;
	background-position: right;
}
.entry-btn{
	background-image: url(../images/icon_entry.png);
	background-repeat: no-repeat;
	background-size: 80px;
	background-position: right;
}
.next-btn:hover,
.skip-btn:hover,
.conf-btn:hover{
	background-image: url(../images/icon_btn.png);
	box-shadow: 0 0 0 rgba(0,0,0,0);
	transform: translate3d(0,2px,0);
	transition: .2s;
	background-position: right;
}
.entry-btn:hover{
	background-image: url(../images/icon_entry.png);
	box-shadow: 0 0 0 rgba(0,0,0,0);
	transform: translate3d(0,2px,0);
	transition: .2s;
	background-position: right;
}
.start-btn{
	animation:start 0.5s ease .2s forwards;
	opacity: 0;
}
@keyframes start{
0% {opacity: 0;transform: translate3d(0,-10px,0);}
100%{opacity: 1;transform: translate3d(0,0,0);}
}
.require:disabled{
	background: url(../images/icon_disabled.png) no-repeat left #222;
	background-size: 80px;
	color: #666;
	box-shadow: 0 0 0 rgba(0,0,0,0);
	background-position: right;
}
.require:disabled:hover{
	opacity: 1;
	transform: translate3d(0,0,0);
}
.back-btn{
	padding: 0 0 0 10px;
	width: 90px;
	height: 40px;
	line-height: 40px;
	display: block;
	color: #fff;
	cursor: pointer;
	flex-shrink: 0;
	background: url(../images/icon_backbtn.png) no-repeat 0 0 #666;
	background-size: 40px;
	text-align: center;
	border-radius: 20px;
}
.back-btn:hover{
	opacity: .6;
}
.ymd-select{
	display: flex;
}
.ymd-select select{
	flex-grow: 1;
	flex-shrink: 1;
}
.ymd-select select:nth-of-type(2){
	margin: 0 1px;
}
.prof-select select:nth-of-type(2){
	margin: 1px 0;
}
.sample-title,
.sample-text{
	padding: 0 0 20px 160px;
}
.sample-title a,
.sample-text a{
	line-height: 30px;
	background: #369;
	color: #fff;
	display: block;
	text-align: center;
	cursor: pointer;
	position: relative;
}
.sample-title a:hover,
.sample-text a:hover{
	opacity: .6;
}
.sample-text a::before{
	margin: 0 auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 10px 10px;
	border-color: transparent transparent #369 transparent;
	content: "";
	display: block;
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
}
.sample-text a::after{
	margin: 0 auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #369 transparent transparent transparent;
	content: "";
	display: block;
	position: absolute;
	bottom: -12px;
	left: 0;
	right: 0;
	z-index:999;
}
/*--------------------------------
Footer
--------------------------------*/
.copy{
	margin: 0 auto;
	padding: 0 20px;
	line-height: 40px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 999;
	overflow: hidden;
	text-align: center;
}
.copy small{
	color: #ccc;
	font-size: 12px;
}
/*--------------------------------
PopUp
--------------------------------*/
#popup{padding:10px;background:#f0f0f0; color:#666;}
#popup article{padding:0;background:#fff;}
#popup article header{padding:0;}
#popup article header h1{padding:0 10px;height:50px;line-height:50px;background:#c66;color:#fff;font-size:16px;}
#popup article h3{padding:10px;color:#c66;line-height:30px;}
#popup article p{padding:10px;line-height:18px;color:#666;} 

/* campaign */
.campaign h4 {border:0; font-size:14px; color:#333; text-indent:0; padding:10px 0 10px 20px;}
.campaign h5 {font-weight:normal; font-size:12px;color:#333; padding:10px 0 10px 20px;}
.campaign p{padding:0 10px 0 20px;}
.cam_msg {font-size:11px; color:#aaa; padding:0;}
.campaign strong {font-weight:bold; color:#f00;}
.camMenu { margin-bottom:10px;padding-left:20px;}
.camMenu dt { font-weight:bold; font-size:16px; margin:5px 0;}
.camMenu dt:before{content:"▼"; color:#714769;}
.camMenu dd {margin-bottom:10px;}
.camMenu table {border-collapse:collapse; width:270px; color:#000;}
.camMenu table th{text-align:center; background:#ccc; width:90px; border:1px solid #aaa;}
.camMenu table td{text-align:right; width:90px; background:#fff; border:1px solid #aaa; padding-right:10px; box-sizing:border-box;}
.camMenu table tr td:last-child{background:#ff0;}

#campaign_btn,
#campaign_btn_entry {
	position: absolute;
	top: 10px;
	right: 10px; 
	z-index: 10;
}
#campaign_btn a,
#campaign_btn_entry a {
	width: 100px;
	height: 100px;
	display: block;
	background: url(../images/cam_btn.png) no-repeat 0 0;
	text-indent: 120%;
	overflow: hidden;
	white-space: nowrap;
	background-size: contain;
}