/*--------------------------------
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[type=text],
input[type=tel],
input[type=password],
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: sans-serif;
	font-size: 14px;
	color: #fff;
}
a{
	color: #e61673;
}
.wrap{
	margin: 0 auto;
	max-width: 800px;
}
.primary-heading{
	padding: 10px;
	background: #e61673;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-align: center;
}
.secondary-heading{
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #e61673;
}
.general-parts{
	padding: 15px;
}
.note{
	margin-bottom: 10px;
	line-height: 1.8;
}
.strong-txt{
	color: #e61673;
}
.btn{
	margin: 10px 5px;
	padding: 0 5px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #999;
	font-weight: 600;
	color: #fff;
	text-align: center;
	line-height: 1.2;
	border-radius: 10px;
}
#ad_carousel .btn{
	height: auto;
}
.heading-btn{
	width: 65%;
	background: rgba(235,73,146,1);
	background: -moz-linear-gradient(top, rgba(235,73,146,1) 0%, rgba(242,133,182,1) 13%, rgba(234,67,142,1) 23%, rgba(229,19,113,1) 26%, rgba(192,2,91,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(235,73,146,1)), color-stop(13%, rgba(242,133,182,1)), color-stop(23%, rgba(234,67,142,1)), color-stop(26%, rgba(229,19,113,1)), color-stop(100%, rgba(192,2,91,1)));
	background: -webkit-linear-gradient(top, rgba(235,73,146,1) 0%, rgba(242,133,182,1) 13%, rgba(234,67,142,1) 23%, rgba(229,19,113,1) 26%, rgba(192,2,91,1) 100%);
	background: linear-gradient(to bottom, rgba(235,73,146,1) 0%, rgba(242,133,182,1) 13%, rgba(234,67,142,1) 23%, rgba(229,19,113,1) 26%, rgba(192,2,91,1) 100%);
	font-size: 18px;
	border: 3px solid rgba(192,2,91,1);
	text-shadow: 1px 2px 2px rgba(0,0,0,.5);
    height: 75px;
}
.regist-btn{
	width: 100%;
	background: rgba(87,193,188,1);
	background: -moz-linear-gradient(top, rgba(87,193,188,1) 0%, rgba(115,203,199,1) 13%, rgba(34,174,167,1) 23%, rgba(0,161,153,1) 26%, rgba(0,126,133,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(87,193,188,1)), color-stop(13%, rgba(115,203,199,1)), color-stop(23%, rgba(34,174,167,1)), color-stop(26%, rgba(0,161,153,1)), color-stop(100%, rgba(0,126,133,1)));
	background: -webkit-linear-gradient(top, rgba(87,193,188,1) 0%, rgba(115,203,199,1) 13%, rgba(34,174,167,1) 23%, rgba(0,161,153,1) 26%, rgba(0,126,133,1) 100%);
	background: linear-gradient(to bottom, rgba(87,193,188,1) 0%, rgba(115,203,199,1) 13%, rgba(34,174,167,1) 23%, rgba(0,161,153,1) 26%, rgba(0,126,133,1) 100%);
	font-size: 18px;
	border: 3px solid rgba(0,126,133,1);
	text-shadow: 1px 2px 2px rgba(0,0,0,.5);
    height: 75px;
}
.heading-btn + .regist-btn{
	width: 35%;
	font-size: 13px;
}
.btn-area{
	padding: 16px;
	text-align: center;
	background: #342014;
}
@media screen and (min-width: 1024px) {
	.btn-area{
		padding: 32px;
		text-align: center;
	}
}
.reg-btn{
	margin: 0 auto;
	display: block;
	transform-origin: center;
	transform: translate3d(0,0,0) scale(1);
	animation: bounce 2s ease 0s infinite;
}
@keyframes bounce{
	0%{transform: translate3d(0,0,0) scale(1);}
	50%{transform: translate3d(0,0,0) scale(1.05);}
	51%{transform: translate3d(-2px,0,0) scale(1.05);}
	52%{transform: translate3d(2px,0,0) scale(1.05);}
	53%{transform: translate3d(-2px,0,0) scale(1.05);}
	54%{transform: translate3d(2px,0,0) scale(1.05);}
	55%{transform: translate3d(-2px,0,0) scale(1.05);}
	56%{transform: translate3d(2px,0,0) scale(1.05);}
	57%{transform: translate3d(0,0,0) scale(1.05);}
	65%{transform: translate3d(0,0,0) scale(1.05);}
	100%{transform: translate3d(0,0,0) scale(1);}
}
.content-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fit-img{
	width: 100%;
	height: auto;
}

/*--------------------------------
header
--------------------------------*/
.hero{
	padding: 100% 0 0;
	position: relative;
	background: url(../images/img_hero.webp) no-repeat center top / 100% auto #f39800;
}
.hero .btn-area{
	background: none;
}
.index .hero{
	margin-top: 0;
}
.logo{
	width: 100%;
	height: 40px;
	display: block;
	position: absolute;
	left: 0;
	top: -40px;
	line-height: 40px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}
.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);
}
.logo-10ban{
	background-image: url(../images/logo-10ban.png);
}
.logo-11ban{
	background-image: url(../images/logo-11ban.png);
}
.navbar{
	margin-top: 40px;
	position: relative;
}


/*--------------------------------
contents
--------------------------------*/
.card-wrapper{
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.card{
	margin: 5px;
	width: calc(50% - 10px);
}
.flex-img{
	width: 100%;
	height: auto;
}
.content-body{
	padding: 10px;
}
.content-body h3{
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #e61673;
}
.content-body p{
	margin-bottom: 10px;
	line-height: 1.8;
}
.disc li{
	margin: 10px 0;
	padding-left: 5px;
	line-height: 1.5;
	border-left: 4px solid #ccc;
}
.mincho{
    padding: 20px 0;
}
.p-box{
    padding-bottom: 18px;
    line-height: 25px;
}
.article{
    padding: 15px 15px 5px;
}
/*--------------------------------
profile
--------------------------------*/
.prof-wrapper{
	padding: 10px 10px 0;
}
.prof-card{
	margin-bottom: 10px;
	padding: 10px;
	background: #fff;
	color: #000;
	border-radius: 10px;
}
.prof-meta{
	margin-bottom: 15px;
	padding-left: 124px;
	height: 114px;
	position: relative;
}
.thumb{
	width: 114px;
	height: 114px;
	position: absolute;
	top: 0;
	left: 0;
	background: #ccc;
	background-repeat: no-repeat;
	background-position: center;
}
.chara-1{
	background-image: url(../images/chara1.webp);
	background-size: cover;
}
.chara-2{
	background-image: url(../images/chara2.webp);
	background-size: cover;
}
.prof-meta-list{
	padding: 5px 0 0;
	display: flex;
	flex-wrap: wrap;
}
.prof-label{
	margin-bottom: 8px;
	flex-basis: 60px;
	color: #e61673;
}
.prof-val{
	margin-bottom: 8px;
	flex-basis: calc(100% - 60px);
}
.star-box{
	padding: 5px 5px 5px 50px;
	width: 157px;
	position: relative;
	display: inline-block;
	background: #e61673;
}
.star-label{
	position: absolute;
	top: 7px;
	left: 5px;
	color: #fff;
}
.star{
	height: 15px;
	content: "";
	display: block;
	background: url(../images/star.png) no-repeat left center;
	background-size: auto 100%;
}
.prof-card .note{
	font-size: 12px;
}
.review-desc{
	padding: 0 0 16px;
	font-^size: .8em;
	text-align: right;
}
/*--------------------------------
form
--------------------------------*/
.remaining{
    margin: 0 auto;
    padding: 4px;
    height: 32px;
    background: #80043b;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    transition: 0.2s;
}
.remaining .progress{
    width: 0%;
    height: 32px;
    display: block;
    background: #e61673;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.2s;
}
.remaining p{
	position: absolute;
	top: 10px;
	left: 4px;
	right: 4px;
	bottom: 4px;
}
.remaining span{
	color: white;
}
.remaining.fix{
	top: 0;
}
.remaining + .navbar{
	margin-top: 72px;
}
.notice-box{
    margin: 24px 16px;
    padding: 8px;
    background: #f29b76;
    text-align: center;
    color: white;
}
.form-wrapper{
    margin: 0 0 32px;
}
.entry-form{
	margin: 32px 0;
	padding: 0 16px;
}
.form-box{
	margin-bottom: 32px;
}
.form-label{
	display: block;
	margin-bottom: 8px;
}
input[type=text],
input[type=tel],
input[type=password],
select,
textarea{
	padding: 8px;
	width: 100%;
	height: 60px;
	background: #fff;
	position: relative;
	font-size: 16px;
}
textarea{
	margin-bottom: -1px;
	resize: vertical;
	height: auto;
}
select{
	padding: 8px 20px 8px 8px;
	height: 60px;
	background: url(../images/icon-select.webp) no-repeat right center / 20px, #fff;
	border: 1px solid #ddd;
	color: black;
}
select:focus{
	background: url(../images/icon-select.webp) no-repeat right center / 20px, #ffffe5;
}
.radio-box{
	display: flex;
}
.regular-radio{
	display: none;
}
.radio-label{
	width: 50%;
	line-height: 58px;
}
.radio-label-text{
	background: #fff;
	display: block;
	transition: .3s;
	text-align: center;
	border: 1px solid #ddd;
	box-sizing: border-box;
	color: black;
}
.radio-label:nth-of-type(1) .radio-label-text{
	border-radius: 4px 0 0 4px;
	border-right: 0;
}
.radio-label:nth-of-type(2) .radio-label-text{
	border-radius: 0 4px 4px 0;
}
.regular-radio:checked + .radio-label-text{
	background: #eb739f;
	color: #fff;
}
.regular-checkbox{
	margin-bottom: 5px;
	padding: 5px;
	display: block;
	background: #eee;
	font-size: 18px;
	border: 1px solid #eb739f;
}
.regular-checkbox input:checked + .check-label{
	color: #eb739f;
}
.form-msg,
.alert-msg{
	font-size: 14px;
}
.form-box .form-msg{
	margin: 8px 0 0 0;
	line-height: 1.3;
	text-align: center;
}
.error{
	margin: 8px 0 0;
	padding: 4px;
	background: #ff6d6d;
	font-size: 14px;
	color: #fff;
	text-align: center;
}
.form-item{
	position: relative;
}
.form-border{
	margin: 0 auto;
	width: 100%;
	height: 2px;
	background: #ddd;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	transform-origin: center;
}
input[type=text]:focus + .form-border::after,
input[type=tel]:focus + .form-border::after,
input[type=password]:focus + .form-border::after,
textarea:focus + .form-border::after{
	margin: 0 auto;
	width: 0%;
	height: 2px;
	content: "";
	background: #eb739f;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	transform-origin: center;
	animation: fade-border .3s ease .1s forwards;
}
@keyframes fade-border{
	0%{width: 0%;opacity: 0;}
	100%{width: 100%;opacity: 1;}
}
.entry-btn .btn-area{
    margin: 0 0 32px;
}
.entry-btn .regist-btn{
	margin: 0;
	filter: grayscale(1);
	pointer-events: none;
	cursor: inherit;
}
.entry-btn .regist-btn.active{
	margin: 0;
	filter: grayscale(0);
	pointer-events: auto;
	cursor: pointer;
}
.ymd-box{
	column-gap: 8px;
}
.ymd-box,
.area-box{
	display: flex;
	justify-content: space-between;
}
.ymd-box select{
	flex-shrink: 1;
}
.area-box select,
.area-box .sub-area{
	width: calc(50% - 4px);
}
.area-box .sub-area select{
	width: 100%;
	flex-shrink: 0;
}

/*--------------------------------
reg-modal
--------------------------------*/
.reg-open{
	cursor: pointer;
}
.modal-overlay{
	background: rgba(0,0,0,0.5);
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0;
	z-index: -1;
	transition: all .3s;
}
.modal-overlay.active{
	opacity: 1;
	z-index: 4;
}
.reg-modal{
	margin: auto;
	width: 90%;
	background: #fff;
	padding: 20px;
	text-align: center;
	position: fixed;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-40%);
	opacity: 0;
	border-radius: 10px;
	z-index: -1;
	transition: all .3s;
}
.reg-modal.active{
	opacity: 1;
	z-index: 5;
	transform: translateY(-50%);
}
.branch-text{
	color: #000;
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px;
}
.branch-btn{
	display: block;
	font-size: 18px;
	line-height: 50px;
	margin: 0 0 10px;
	transition: all .3s;
}
.ss-btn{
	color: #e61673;
	border: 2px solid #e61673;
}
.ms-btn{
	color: #c96510;
	border: 2px solid #c96510;
}

/*--------------------------------
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: 50px;
	right: 0; 
	z-index: 1;
}
#campaign_btn a,
#campaign_btn_entry a {
	width: 60px;
	height: 60px;
	display: block;
	background: url(../images/cam_btn.png) no-repeat 0 0;
	text-indent: 120%;
	overflow: hidden;
	white-space: nowrap;
	background-size: contain;
}

/*--------------------------------
footer
--------------------------------*/
.footer{
	background:  #222;
	text-align: center;
}
.nav-list{
	border-bottom: 1px solid #000;
}
.nav-link{
	height: 50px;
	display: block;
	font-size: 18px;
	color: #fff;
	line-height: 50px;
}
.copy{
	padding: 10px;
	display: block;
	line-height: 1.2;
	color: #aaa;
}
