/*--------------------------------
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 li{
    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:not([type=checkbox]):not([type=radio]),textarea,button{
    font: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
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;
}


/*--------------------------------
common
--------------------------------*/
body{
    background: #000;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    color: #fff;
}
.txt-none{
    text-indent: 120%;
    overflow: hidden;
    white-space: nowrap;
}
.none{
    display: none;
}
.wrapper{
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    background: url(../images/main-bg.jpg) no-repeat center 0;
    background-size: contain
}
a{
    color: #edd264;
}
/*--------------------------------
header
--------------------------------*/
.header{
	height: 0;
    width: 100%;
    padding: 60% 0 0;
    margin: 0 auto;
    position: relative;
}
.title{
    width: 40%;
    height: 0;
    padding: 20% 0 0;
    position: absolute;
    top: 20%;
    left: 2%;
    background: url(../images/title-logo.png) no-repeat 0 0;
    background-size: contain;
}
.header::before{
    content: "";
    width: 50%;
    height: 0;
    padding: 10% 0 0;
    position: absolute;
    top: 5%;
    left: 2%;
}
.logo-3ban::before{
    background: url(../images/logo-3ban.png) no-repeat 0 0;
    background-size: contain;
}
.logo-4ban::before{
    background: url(../images/logo-4ban.png) no-repeat 0 0;
    background-size: contain;
}
.logo-5ban::before{
    background: url(../images/logo-5ban.png) no-repeat 0 0;
    background-size: contain;
}
.logo-6ban::before{
    background: url(../images/logo-6ban.png) no-repeat 0 0;
    background-size: contain;
}
.logo-7ban::before{
    background: url(../images/logo-7ban.png) no-repeat 0 0;
    background-size: contain;
}
.logo-8ban::before{
    background: url(../images/logo-8ban.png) no-repeat 0 0;
    background-size: contain;
}
.logo-10ban::before{
    background: url(../images/logo-10ban.png) no-repeat 0 0;
    background-size: contain;
}

/*--------------------------------
contents
--------------------------------*/
.about{
    margin: 15px;
    padding: 15px;
    position: relative;
}
.about::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/about-bg.jpg) no-repeat 0 0;
    background-size: cover;
    opacity: 0.7;
}
.about .p{
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}
.h01{
    width: 100%;
    padding: 10px;
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    background: linear-gradient(to right,rgba(0,0,0,0) 0%,#592477 50%,rgba(0,0,0,0) 100%);
}

.main-box{
    width: 100%;
    margin: 0 0 20px;
    background: rgba(255,255,255,0.1);
}
.h02{
    height: 40px;
    padding: 0 0 0 35px;
    line-height: 40px;
    color: #51216d;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    background: linear-gradient(to bottom,#edd264 3%,#d9b112 4%,#edd264 100%);
}
.h02::before{
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border: 20px solid transparent;
    border-left: 26px solid #51216d;
}
.play-select{
    padding: 15px 0 ;
}
.play-list{
    margin: 0 8px 15px;
    position: relative;
    background: #000;
    overflow: hidden;
}
.play-list img{
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.2;
    transition: all .5s;
}
.play-name{
    width: 100%;
    padding: 10px 0 ;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    font-size: 18px;
    background: rgba(32,0,51,0.8);
    opacity: 0;
    transition: all .5s;
}
.slick-active.play-list img{
    opacity: 1;
}
.slick-active .play-name{
    opacity: 1;
}

.slick-arrow{
    position: absolute;
    top: 30%;
    width: 26px;
    height: 41px;
    background: url(../images/play-select-arrow.png) no-repeat 0 0;
    background-size: contain;
    text-indent: 120%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 2;
}
.slick-prev{
    left: 5%;
    transform: rotate(180deg);
}
.slick-next{
    right: 5%;
}
.slick-dots{
    display: flex;
    justify-content: center;
}
.slick-dots button{
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 5px;
    background: #aaa;
    text-indent: 120%;
    overflow: hidden;
    white-space: nowrap;
    opacity: .5;
}
.slick-dots .slick-active button{
    opacity: 1;
}


.regbtn{
    width: 300px;
    height: 80px;
    margin: 20px auto ;
    display: block;
    background: url(../images/regbtn-bg.png) no-repeat 0 0,linear-gradient(to bottom,#edd264 3%,#d9b112 4%,#edd264 100%);
    background-size: contain;
}

/*--------------------------------
form
--------------------------------*/
.attention{
    margin: 15px;
    font-size: 16px;
}
.form{
    padding: 15px;
}
.fieldset{
    margin: 0 0 15px;
}
.label{
    height: 30px;
    line-height: 30px;
    display: block;
    background: #592477;
    font-size: 14px;
    text-align: center;
}
.form-item{
}
.form-item input[type="text"],
.form-item input[type="password"],
.form-item select{
    width: 100%;
    height: 45px;
    padding: 10px;
    font-size: 14px;
    background: #cbcbcb;
}
.form-item select{
    height: 45px;
    background: url(../images/select-arrow.png) no-repeat right 10px center,#cbcbcb;
    background-size: auto 20%;
}
.form input[type="radio"] {
    width: 30px;
    height: 30px;
    margin: 0; 
    border: 5px solid #cbcbcb;
    border-radius: 15px;
    background: #cbcbcb;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form input[type="radio"]:checked{
    background: #592477;
}
.form-radio{
    margin: 10px 0 0;
    display: flex;
    justify-content: space-between;
}
.sex-text{
    align-self: center;
    font-size: 14px;
}
.alert,
.msg{
    padding: 15px;
    margin: 10px 0 15px;
    line-height: 1.5;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
}
.form-item textarea{
    width: 100%;
    height: 200px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    background: #cbcbcb;
}
.entry-btn{
    width: 100%;
    height: 0;
    padding: 16% 0 0;
    margin: 15px auto 0;
    display: block;
    background: url(../images/entrybtn-bg.png) no-repeat 0 0,linear-gradient(to bottom,#edd264 3%,#d9b112 4%,#edd264 100%);
    background-size: contain;
}

.inner{
    padding: 15px;
}
.inner h3{
    font-size: 18px;
    color: #b999cc;
}
.inner p{
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.5;
}
.juyo{
    padding: 15px;
    background: rgba(255,100,100,0.1);
}
.error{
	margin: 0 0 10px;
	color: #f66;
}

.play-check{
	padding: 15px 0 0;
	display: flex;
	flex-wrap: wrap;
}
.play-check label{
	margin: 0 0 15px;
	flex: 0 1 50%;
}
/*--------------------------------
footer
--------------------------------*/
.copy{
    margin: 20px;
    text-align: center;
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
}

/* mother */
#mother{
    width: 50%;
    height: auto;
    position: absolute;
    top: 5%;
    left: 2%;
}
#mother h1{
    height: 0;
    padding: 10% 0 0;
    background-position: center left;
    background-size: contain;
    text-indent: 120%;
    overflow: hidden;
    white-space: nowrap;    
}
/* karamail button */
#mailButton li{display:block; width:50%; float:left;}
#mailButton li a{display:block; text-align:center; font-size:180%; padding:15px 0; text-decoration:none; color:#fff; font-weight:bold; border:1px solid #ccc;}
#mailButton li.male a{border-radius:10px 0 0 10px; -webkit-border-radius:10px 0 0 10px; -moz-border-radius:10px 0 0 10px; border-color:#006cff; text-shadow:0 -1px 1px #006cff;
background: -webkit-gradient(linear, left top, left bottom, from(#5d93ff), color-stop(0.49, #117cff), color-stop(0.5, #026dc7), to(#004c8d) );
background: -moz-linear-gradient(top, #5d93ff, #117cff 49%, #026dc7 50%, #004c8d);}
#mailButton li.female a{border-radius:0 10px 10px 0; -webkit-border-radius:0 10px 10px 0; -moz-border-radius:0 10px 10px 0; border-color:#fd1a5a; text-shadow:0 -1px 1px #fd1a5a;
background: -webkit-gradient(linear, left top, left bottom, from(#ff8ca7), color-stop(0.49, #ff577f), color-stop(0.5, #ff3363), to(#ff0c45) );
background: -moz-linear-gradient(top, #ff8ca7, #ff577f 49%, #ff3363 50%, #ff0c45);}
#mailButton li.male a:hover,#mailButton li.male a:active{border-color:#006cff; text-shadow:0 -1px 1px #107cff;
background: -webkit-gradient(linear, left top, left bottom, from(#6da3ff), color-stop(0.49, #218cff), color-stop(0.5, #127dd7), to(#105c9d) );
background: -moz-linear-gradient(top, #6da3ff, #218cff 49%, #127dd7 50%, #105c9d);}
#mailButton li.female a:hover,#mailButton li.female a:active{border-color:#fd1a5a; text-shadow:0 -1px 1px #ff2a6a;
background: -webkit-gradient(linear, left top, left bottom, from(#ff9cb7), color-stop(0.49, #ff678f), color-stop(0.5, #ff4373), to(#ff1c55) );
background: -moz-linear-gradient(top, #ff9cb7, #ff678f 49%, #ff4373 50%, #ff1c55);}


body .lpprtitle{
    background: rgba(89,36,119,0.8);
}
body .lpprbox{
    background: rgba(89,36,119,0.4);
}

/* campaign */
.campaign h4 {border:0; font-size:14px; color:#fff; text-indent:0; padding:10px 0 10px 20px;}
.campaign h5 {font-weight:normal; font-size:12px;color:#fff; 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; 
}
#campaign_btn a,
#campaign_btn_entry a {
	width: 70px;
	height: 70px;
	display: block;
	background: url(../images/cam_btn.png) no-repeat 0 0;
	text-indent: 120%;
	overflow: hidden;
	white-space: nowrap;
	background-size: contain;
}

.footer{
    background: #323232;
    text-align: center;
    overflow: hidden;
}
.nav-list{
    border-bottom: 1px solid #000;
}
.nav-link{
    padding: 10px;
    display: block;
    line-height: 1.2;
    color: #fff;
}
.copy{
    display: block;
    line-height: 1.4;
}

.content-body{
    padding: 15px;
}
.content-body h3 {
    margin-bottom: 5px;
    color: #edd263;
}
.content-body p {
    margin-bottom: 15px;
}