@charset "UTF-8";

/*--------------------------------
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
--------------------------------*/
html{
    font-size: 62.5%;
}
body{
	background: white;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	line-height: 1.5;
	font-size: 1.4rem;
}
a{
	color: #00a0e9;
}
img{
	max-width: 100%;
}
h2,h3{
    line-height: 1.4;
}
.wrap{
	margin: 0 auto;
	max-width: 750px;
	overflow: hidden;
}
.text{
	margin: 0 16px 16px;
}
.primary-heading{
    margin-bottom: 16px;
    padding: 8px 16px;
    background: #ff3399;
    color: white;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
}
.secondary-heading,
.content-body h3,
.form-label{
    margin-bottom: 4px;
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ff3399;
}
.btn-area{
    margin: 16px 16px 28px;
}
.regist-btn{
	padding: 8px 25% 8px 8px;
	width: 100%;
	min-height: 72px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: url(../images/btn-bg.png) no-repeat center right, #cc00cc;
	background-size: 56%,100%;
	border-radius: 5px;
	box-shadow: 1px 3px 4px rgba(0,0,0,0.75), 0 0 8px #cc00cc inset, 0 0 8px #cc00cc inset;
	font-size: 2.2rem;
	color: white;
}
.regist-btn .top,
.regist-btn .btm{
    animation: flash 2.5s linear infinite alternate;
}
@keyframes flash{
    0%, 40%{ opacity: 1 }
    45%, 55%{ opacity: 0 }
    60%, 100%{ opacity: 1 }
}
.regist-btn .top{
    width: 100%;
}
.regist-btn .btm{
    margin-top: 4px;
}
.btn-area.fix{
    margin: 0 auto 16px;
    padding: 0 16px;
    max-width: 750px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 1s ease-out;
    z-index: 9999;
}
.mbr{
	display: none;
}

/*--------------------------------
header
--------------------------------*/
.logo{
    margin: auto;
    max-width: 750px;
    overflow: hidden;
	background-image: url("../images/logo.png");
    text-indent: -300%;
    background-position: center,right 8px bottom 24px;
    background-size: 93%,50%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.logo-1ban{
	background-image: url("../images/logo.png"),url(../images/1ban.png);
}
.logo-2ban{
	background-image: url("../images/logo.png"),url(../images/2ban.png);
}
.logo-9ban{
	background-image: url("../images/logo.png"),url(../images/9ban.png);
}
.navbar{
    padding: 8px 16px;
    background: url("../images/header-bg.jpg") no-repeat center;
    background-size: cover;
}
.navbar .logo{
    background: url("../images/navbar-logo.png") no-repeat;
    background-position: left,right;
    background-size: contain;
    position: inherit;
}
.navbar .logo-1ban{
	background-image: url("../images/navbar-logo.png"),url(../images/1ban.png);
}
.navbar .logo-2ban{
	background-image: url("../images/navbar-logo.png"),url(../images/2ban.png);
}
.navbar .logo-9ban{
	background-image: url("../images/navbar-logo.png"),url(../images/9ban.png);
}
.navbar-link{
    display: block;
}
#mother{
	position: absolute;
	right: 8px;
	bottom: 16px;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	filter: drop-shadow(0px 1px 1px #fccde0) drop-shadow(0px 0px 1px #fccde0) drop-shadow(1px 0px 1px #fccde0) drop-shadow(0px -1px 1px #fccde0) drop-shadow(-1px -1px 1px #fccde0) drop-shadow(-1px 0px 1px #fccde0);
}
#mother h1{
    width: 160px;
    height: 50px;
    background-size: contain;
    background-position: right center;
}
.navbar #mother{
	position: inherit;
}
.navbar #mother h1{
	margin: 0 0 0 auto;
	width: 170px;
	height: 42px;
	background-size: auto 75%;
	background-position: right 4px center;
}

/*--------------------------------
contents
--------------------------------*/
.hero{
    position: relative;
}
.hero .ul .li:nth-child(1){
    animation: fade_slide1 4s linear infinite alternate;
}
.hero .ul .li:nth-child(2){
    animation: fade_slide2 4s linear infinite alternate;
    position: absolute;
    top: 0;
    z-index: -1;
}
@keyframes fade_slide1{
    0%, 22.5%{ opacity: 1 }
    27.5%, 72.5%{ opacity: 0 }
    77.5%, 100%{ opacity: 1 }
}
@keyframes fade_slide2{
    0%, 22.5%{ opacity: 0 }
    27.5%, 72.5%{ opacity: 1 }
    77.5%, 100%{ opacity: 0 }
}
.hero .text img{
    position: relative;
    z-index: 2;
}
.about{
    padding-top: 16px;
    background: url("../images/about.png") no-repeat center right, url("../images/about-bg.jpg") no-repeat center bottom;
    background-size: contain,cover;
    overflow: hidden;
    text-shadow: 0px 2px 1px #ff0099, 0px 1px 1px #ff0099, 1px 1px 1px #ff0099, 1px 0px 1px #ff0099, 2px 0px 1px #ff0099, 1px -1px 1px #ff0099, 1px -2px 1px #ff0099, 0px -2px 1px #ff0099, -1px -2px 1px #ff0099, -2px -2px 1px #ff0099, -2px -1px 1px #ff0099, -2px 0px 1px #ff0099, -2px 1px 1px #ff0099, -1px 1px 1px #ff0099;
}
.about .primary-heading{
    margin: 0 16px 16px;
    padding: 0;
    background: none;
    text-align: left;
    color: #ffff00;
    line-height: 1.6;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    text-shadow: 0px 3px 1px #ff0099, 0px 2px 1px #ff0099, 1px 2px 1px #ff0099, 2px 2px 1px #ff0099, 2px 1px 1px #ff0099, 2px 0px 1px #ff0099, 3px 0px 1px #ff0099, 2px -1px 1px #ff0099, 2px -2px 1px #ff0099, 2px -3px 1px #ff0099, 1px -3px 1px #ff0099, 0px -3px 1px #ff0099, -1px -3px 1px #ff0099, -2px -3px 1px #ff0099, -3px -3px 1px #ff0099, -3px -2px 1px #ff0099, -3px -1px 1px #ff0099, -3px 0px 1px #ff0099, -3px 1px 1px #ff0099, -3px 2px 1px #ff0099, -2px 2px 1px #ff0099, -1px 2px 1px #ff0099;
}
.about .text{
    color: white;
}
.about .text:last-child{
	margin-bottom: 24px;
}
.about .primary-heading .st{
    position: relative;
    font-size: 3rem;
    color: #ffff00;
}
.about .primary-heading .st::after{
    width: 100%;
    height: 1px;
    background: #ffff00;
    content: "";
    box-shadow: 0 0 4px #ff3399, 0 0 4px #ff3399, 0 0 4px #ff3399, 0 0 4px #ff3399, 0 0 4px #ff3399, 0 0 4px #ff3399;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
}
.point{
    padding-top: 24px;
    background: url(../images/point-bg.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
}
.point .text{
    text-align: center;
    font-weight: bold;
    text-shadow: 0px 2px 1px white,0px 1px 1px white,1px 1px 1px white,1px 0px 1px white,2px 0px 1px white,1px -1px 1px white,1px -2px 1px white,0px -2px 1px white,-1px -2px 1px white,-2px -2px 1px white,-2px -1px 1px white,-2px 0px 1px white,-2px 1px 1px white,-1px 1px 1px white;
}
.point .text.big{
    font-size: 1.6rem;
    text-shadow: 0px 3px 1px white, 0px 2px 1px white, 1px 2px 1px white, 2px 2px 1px white, 2px 1px 1px white, 2px 0px 1px white, 3px 0px 1px white, 2px -1px 1px white, 2px -2px 1px white, 2px -3px 1px white, 1px -3px 1px white, 0px -3px 1px white, -1px -3px 1px white, -2px -3px 1px white, -3px -3px 1px white, -3px -2px 1px white, -3px -1px 1px white, -3px 0px 1px white, -3px 1px 1px white, -3px 2px 1px white, -2px 2px 1px white, -1px 2px 1px white;
}
.point .text.big .st{
    color: #ff0099;
}
.point .text.big.strong{
    margin: 0 16px 24px;
    font-size: 2rem;
    line-height: 1.4;
    color: #ffff33;
    text-shadow: 0px 3px 1px #ff0099, 0px 2px 1px #ff0099, 1px 2px 1px #ff0099, 2px 2px 1px #ff0099, 2px 1px 1px #ff0099, 2px 0px 1px #ff0099, 3px 0px 1px #ff0099, 2px -1px 1px #ff0099, 2px -2px 1px #ff0099, 2px -3px 1px #ff0099, 1px -3px 1px #ff0099, 0px -3px 1px #ff0099, -1px -3px 1px #ff0099, -2px -3px 1px #ff0099, -3px -3px 1px #ff0099, -3px -2px 1px #ff0099, -3px -1px 1px #ff0099, -3px 0px 1px #ff0099, -3px 1px 1px #ff0099, -3px 2px 1px #ff0099, -2px 2px 1px #ff0099, -1px 2px 1px #ff0099;
}
.review{
    background: #e7bee7;
    overflow: hidden;
}
.review .ul{
	margin: 24px 0 28px;
}
.review .li{
    margin: 0 16px 20px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    box-shadow: 1px 3px 4px rgba(0,0,0,0.75);
}
.review .li .left{
    width: 100px;
}
.review .li .right{
    padding: 8px 8px 8px 4px;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    flex-flow: column;
    justify-content: space-around;
}
.review .li .text,
.review .li .right .text{
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.4;
}
.review .li .right .text:first-child{
	margin-bottom: 4px;
}
.review .name,
.review .age{
    color: #ff3399;
    font-weight: bold;
}
.review .name{
    margin-right: 12px;
}
.content-body{
	padding: 0 16px;
}
.content-body p,
.general-parts .note{
	margin-bottom: 16px;
}
.disc li{
	margin: 0 0 8px;
	padding-left: 8px;
	border-left: 1px solid #ff3399;
}
.disc li:last-child{
	margin-bottom: 16px;
}
.general .ex{
    display: block;
    line-height: 1.6;
}
.general .ex:last-child{
    margin-bottom: 4%;
}
.general h4{
    font-weight: normal;
    color: #ff3399;
}
.general-parts{
    margin: 0 16px;
}

/*--------------------------------
form
--------------------------------*/
.form-wrapper{
	margin-bottom: 32px;
}
.form-box{
	margin-top: 16px;
	padding: 0 16px;
}
input[type=text],
input[type=tel],
input[type=password],
select,
textarea{
	padding: 14px 10px;
	width: 100%;
	background: #fff;
	box-sizing: border-box;
	vertical-align: bottom;
	border: 1px solid #ddd;
}
select{
	padding-right: 14%;
	background: url(../images/icon-select.png) no-repeat right 2% center #fff;
	background-size: 10%;
}
.regular-radio{
	display: none;
}
.form-item.normal-radio{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-item.normal-radio .radio-label{
	width: 50%;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
}
.radio-label::before{
	margin-right: 16px;
	width: 40px;
	height: 40px;
	display: inline-block;
	content: "";
	background: #ccc;
	border: 4px solid #ccc;
	border-radius: 50%;
	vertical-align: bottom;
}
.regular-radio:checked + .radio-label::before{
	background: #323232;
}
.regular-checkbox{
	padding: 12px;
	display: block;
	border: solid #ddd;
	border-width: 1px 1px 0 1px;
}
.regular-checkbox:last-child{
	border-width: 1px;
}
.form-msg{
	margin-top: 8px;
	font-size: 1.2rem;
}
.general-parts .form-msg{
	margin-top: 0;
	font-size: 1.4rem;
}
.alert-msg{
	margin: 8px 0 16px;
	padding: 0 16px;
	font-size: 1.2rem;
}
.form-desc{
    margin: 8px 0 16px;
    font-size: 1.2rem;
}
.error{
	padding: 5px 5px 5px 14px;
	background: #d00;
	color: #fff;
	border-radius: 2px;
}
.entry-btn .regist-btn span{
    position: relative;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
    color: #ffff33;
    text-shadow: 0px 3px 1px #ff33cc, 0px 2px 1px #ff33cc, 1px 2px 1px #ff33cc, 2px 2px 1px #ff33cc, 2px 1px 1px #ff33cc, 2px 0px 1px #ff33cc, 3px 0px 1px #ff33cc, 2px -1px 1px #ff33cc, 2px -2px 1px #ff33cc, 2px -3px 1px #ff33cc, 1px -3px 1px #ff33cc, 0px -3px 1px #ff33cc, -1px -3px 1px #ff33cc, -2px -3px 1px #ff33cc, -3px -3px 1px #ff33cc, -3px -2px 1px #ff33cc, -3px -1px 1px #ff33cc, -3px 0px 1px #ff33cc, -3px 1px 1px #ff33cc, -3px 2px 1px #ff33cc, -2px 2px 1px #ff33cc, -1px 2px 1px #ff33cc;
}
.entry-btn .regist-btn span::before,
.entry-btn .regist-btn span::after{
    margin: auto;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
}
.entry-btn .regist-btn span::before{
    width: 27px;
    height: 27px;
    background: #ffff33;
    border-radius: 100px;
    right: -34px;
}
.entry-btn .regist-btn span::after{
    height: 1px;
    border: solid 7px transparent;
    border-left: solid 12px #ff0099;
    right: -35px;
}

/*--------------------------------
campaign
--------------------------------*/
.campaign h4{border:0; font-size:1.4rem; color:#333; text-indent:0; padding:10px 0 10px 20px;}
.campaign h5{font-weight:normal; font-size:1.2rem;color:#333; padding:10px 0 10px 20px;}
.campaign p{padding:0 10px 0 20px;}
.cam_msg{font-size:1.1rem; 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:1.6rem; 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;
}
.lpprtitle{
	background-color: #de2e86!important;
	color: #fff;
}

/* karamail button */
#mailButton li{display:block;width: 100%;float:left;}
#mailButton li a{display:block; text-align:center; font-size:140%; padding:15px 0; text-decoration:none; color:#fff; font-weight:bold; border:1px solid #ccc;}
#mailButton li.male a{border-radius: 10px;-webkit-border-radius: 10px;-moz-border-radius: 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);}

.content-body .block{
    margin-bottom: 16px;
    overflow: hidden;
}

/*--------------------------------
footer
--------------------------------*/
.footer{
	background: #323232;
	text-align: center;
}
.nav-list{
	border-bottom: 1px solid #000;
}
.nav-link{
	padding: 12px 16px;
	display: block;
	color: #fff;
}
.copy{
	padding: 16px;
	display: block;
	color: #fff;
}
body #pr{
	margin:auto;
	max-width: 750px;
	right: 0;
	bottom: -60px;
}

/*--------------------------------
media query iphone se
--------------------------------*/
@media screen and (max-width:320px){
	.mbr{
		display: block;
	}
	.regist-btn .btm{
		margin-top: 0;
	}
}
/*--------------------------------
media query tablet
--------------------------------*/
@media screen and (min-width:768px){
	body{
		font-size: 2.8rem
	}
	.text{
		margin: 0 32px 32px;
	}
	.primary-heading{
		margin-bottom: 32px;
		padding: 16px 32px;
		font-size: 3.6rem;
	}
	.secondary-heading{
		font-size: 3.2rem;
	}
	.logo{
		background-position: center,right 20px bottom 64px;
		background-size: 93%,51%;
	}
	.about{
		padding-top: 48px;
	}
	.about .primary-heading{
		margin: 0 32px 32px;
		font-size: 3.6rem;
	}
	.about .primary-heading .st{
		font-size: 5.6rem;
	}
	.about .primary-heading .st::after{
		height: 2px;
		bottom: -4px;
	}
	.about .text:last-child{
		margin-bottom: 64px;
	}
	.point{
		padding-top: 64px;
	}
	.point .text.big{
		font-size: 3.4rem;
		text-shadow:0px 5px 1px white,0px 4px 1px white,1px 4px 1px white,2px 4px 1px white,3px 3px 1px white,4px 2px 1px white,4px 1px 1px white,4px 0px 1px white,5px 0px 1px white,4px -1px 1px white,4px -2px 1px white,4px -3px 1px white,3px -4px 1px white,2px -5px 1px white,1px -5px 1px white,0px -5px 1px white,-1px -5px 1px white,-2px -5px 1px white,-3px -5px 1px white,-4px -4px 1px white,-5px -3px 1px white,-5px -2px 1px white,-5px -1px 1px white,-5px 0px 1px white,-5px 1px 1px white,-5px 2px 1px white,-4px 3px 1px white,-3px 4px 1px white,-2px 4px 1px white,-1px 4px 1px white;
	}
	.point .text.big.strong{
		margin: 0 32px 64px;
		font-size: 4.3rem;
		text-shadow: 0px 6px 1px #ff0099,0px 5px 1px #ff0099,1px 5px 1px #ff0099,2px 5px 1px #ff0099,3px 4px 1px #ff0099,4px 4px 1px #ff0099,4px 3px 1px #ff0099,5px 3px 1px #ff0099,5px 2px 1px #ff0099,5px 1px 1px #ff0099,5px 0px 1px #ff0099,6px 0px 1px #ff0099,5px -1px 1px #ff0099,5px -2px 1px #ff0099,5px -3px 1px #ff0099,4px -4px 1px #ff0099,4px -5px 1px #ff0099,3px -5px 1px #ff0099,2px -6px 1px #ff0099,1px -6px 1px #ff0099,0px -6px 1px #ff0099,-1px -6px 1px #ff0099,-2px -6px 1px #ff0099,-3px -6px 1px #ff0099,-4px -6px 1px #ff0099,-4px -5px 1px #ff0099,-5px -5px 1px #ff0099,-5px -4px 1px #ff0099,-6px -4px 1px #ff0099,-6px -3px 1px #ff0099,-6px -2px 1px #ff0099,-6px -1px 1px #ff0099,-6px 0px 1px #ff0099,-6px 1px 1px #ff0099,-6px 2px 1px #ff0099,-6px 3px 1px #ff0099,-5px 3px 1px #ff0099,-5px 4px 1px #ff0099,-4px 4px 1px #ff0099,-4px 5px 1px #ff0099,-3px 5px 1px #ff0099,-2px 5px 1px #ff0099,-1px 5px 1px #ff0099;
	}
	.review .ul{
		margin: 64px 0 72px;
	}
	.review .li{
		margin: 0 32px 48px;
		border-radius: 10px;
		box-shadow: 2px 3px 8px rgba(0,0,0,0.75);
	}
	.review .li .left{
		width: 224px;
	}
	.review .li .text,
	.review .li .right .text{
		font-size: 2.8rem;
	}
	.review .li .left .text{
		margin-top: 16px;
	}
	.review .li .left .text .name{
		margin-right: 16px;
	}
	.review .li .right{
		padding: 32px 32px 32px 8px;
	}
	.review .li .right .text:first-child{
		margin-bottom: 16px;
	}
	.nav-link,
	.copy{
		font-size: 1.8rem;
	}
	.btn-area.fix{
		margin: 0 auto 32px;
		padding: 0 64px;
	}
	.btn-area{
		margin: 32px 64px 72px;
	}
	.regist-btn{
		padding: 16px 25% 16px 24px;
		min-height: 134px;
		box-shadow: 1px 3px 4px rgba(0,0,0,0.75), 0 0 16px #cc00cc inset, 0 0 16px #cc00cc inset;
	}
	.regist-btn .top{
		margin-bottom: 4px;
	}
	.entry-btn .regist-btn span::before{
		width: 48px;
		height: 48px;
		right: -58px;
	}
	.entry-btn .regist-btn span::after{
		border: solid 12px transparent;
		border-left: solid 20px #ff0099;
		right: -58px;
	}
	.content-body{
		padding: 0 32px;
	}
	.secondary-heading,
	.content-body h3,
	.form-label{
		font-size: 2.8rem;
		margin-bottom: 16px;
	}
	.content-body p,
	.general-parts .note{
		margin-bottom: 32px;
	}
	.disc li{
		margin: 0 0 16px;
		padding-left: 16px;
		border-left: 4px solid #ff3399;
	}
	.disc li:last-child{
		margin-bottom: 32px;
	}
	.form-wrapper{
		margin-bottom: 64px;
	}
	.form-box{
		margin-top: 32px;
		padding: 0 32px;
	}
	.form-label{
		margin-bottom: 8px;
		font-size: 2.8rem;
	}
	input[type=text],
	input[type=tel],
	input[type=password],
	select,
	textarea,
	.check-label{
		font-size: 2.4rem;
	}
	.form-item.normal-radio .radio-label{
		font-size: 2.4rem;
	}
	.form-msg{
		font-size: 1.8rem;
	}
	.alert-msg{
		padding: 0 32px;
		font-size: 1.8rem;
	}
	.form-desc{
		font-size: 1.8rem;
	}
	form .regist-btn{
		padding: 16px 40% 16px 24px;
		font-size: 4rem;
	}
	.entry-btn .regist-btn span{
		font-size: 4.3rem;
		text-shadow: 0px 6px 1px #ff33cc,0px 5px 1px #ff33cc,1px 5px 1px #ff33cc,2px 5px 1px #ff33cc,3px 4px 1px #ff33cc,4px 4px 1px #ff33cc,4px 3px 1px #ff33cc,5px 3px 1px #ff33cc,5px 2px 1px #ff33cc,5px 1px 1px #ff33cc,5px 0px 1px #ff33cc,6px 0px 1px #ff33cc,5px -1px 1px #ff33cc,5px -2px 1px #ff33cc,5px -3px 1px #ff33cc,4px -4px 1px #ff33cc,4px -5px 1px #ff33cc,3px -5px 1px #ff33cc,2px -6px 1px #ff33cc,1px -6px 1px #ff33cc,0px -6px 1px #ff33cc,-1px -6px 1px #ff33cc,-2px -6px 1px #ff33cc,-3px -6px 1px #ff33cc,-4px -6px 1px #ff33cc,-4px -5px 1px #ff33cc,-5px -5px 1px #ff33cc,-5px -4px 1px #ff33cc,-6px -4px 1px #ff33cc,-6px -3px 1px #ff33cc,-6px -2px 1px #ff33cc,-6px -1px 1px #ff33cc,-6px 0px 1px #ff33cc,-6px 1px 1px #ff33cc,-6px 2px 1px #ff33cc,-6px 3px 1px #ff33cc,-5px 3px 1px #ff33cc,-5px 4px 1px #ff33cc,-4px 4px 1px #ff33cc,-4px 5px 1px #ff33cc,-3px 5px 1px #ff33cc,-2px 5px 1px #ff33cc,-1px 5px 1px #ff33cc;
	}
	.general-parts{
		margin: 0 32px;
	}
	.general-parts .form-msg{
		font-size: 2.8rem;
	}
	.general-parts .note{
		margin-bottom: 32px;
	}
	#mother{
		right: 32px;
		bottom: 64px;
	}
	#mother h1{
		width: 300px;
		height: 90px;
	}
	.navbar #mother h1{
		width: 330px;
		height: 84px;
	}
	.content-body .block{
		margin-bottom: 32px;
	}
}