@charset "UTF-8";

/*-----------------------------------------------------
	common
-----------------------------------------------------*/
.kome {
	font-size: 11px;
	color: #f79256;
	font-weight: bold;
	margin: 0 3px;
}
.txt-l {
	font-size: 16px !important;
	line-height: 1.4 !important;
}
.txt-s {
	font-size: 12px !important;
	line-height: 1.4 !important;
}

/*-----------------------------------------------------
	button
-----------------------------------------------------*/
a.button,
.button,
input.button {
	display: inline-block;
	position: relative;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	color: #fff;
	text-decoration: none;
	box-sizing: border-box;
	border: 0;
	outline: none;
	background: #f79256;
	overflow: hidden;
	z-index: 2;
	-webkit-appearance: none;
	transition-duration:.2s;
}
a.button:hover,
.button:hover,
input.button:hover {
    color: #fff;
}
a.button:before,
.button:before,
input.button:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(51, 51, 51, 0);
	left: 0;
	top: 0;
	transition-duration:.3s;
	z-index: -1;
}
a.button:hover:before,
.button:hover:before,
input.button:hover:before {
	background: rgba(51, 51, 51, 1);
}
/*a.button:before,
.button:before,
input.button:before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	background: #333;
	border-radius: 80%;
	left: 50%;
	transition-duration:.3s;
	z-index: -1;
}
a.button:hover:before,
.button:hover:before,
input.button:hover:before {
	left: -50%;
	width: 200%;
	border-radius: 0;
}*/
/*--------------------btn-xl--------------------*/
a.btn-xl,
input.btn-xl {
	height:110px;
	line-height:110px;
	padding:0 150px;
	font-size:26px;
	font-weight: normal;
}
/*a.btn-xl:before,
input.btn-xl:before {
	top: 55px;
}
a.btn-xl:hover:before,
input.btn-xl:hover:before {
	top: -55px;
	height: 220px;
}*/
/*--------------------btn-l--------------------*/
a.btn-l,
.btn-l,
input.btn-l {
	height:56px;
	line-height:56px;
	padding:0 65px;
	font-size:16px;
}
/*a.btn-l:before,
input.btn-l:before {
	top: 28px;
}
a.btn-l:hover:before,
input.btn-l:hover:before {
	top: -28px;
	height: 118px;
}*/
/*--------------------btn-m--------------------*/
a.btn-m,
.btn-m,
input.btn-m {
	height:40px;
	line-height:40px;
	padding:0 10px;
	font-size:13px;
}
/*a.btn-m:before,
.btn-m:before,
input.btn-m:before {
	top: 20px;
}
a.btn-m:hover:before,
.btn-m:hover:before,
input.btn-m:hover:before {
	top: -20px;
	height: 80px;
}*/
/*--------------------btn-s--------------------*/
a.btn-s,
.btn-s,
input.btn-s {
	height:30px;
	line-height:30px;
	padding:0 10px;
	font-size:12px;
}
/*a.btn-s:before,
.btn-s:before,
input.btn-s:before {
	top: 15px;
}
a.btn-s:hover:before,
.btn-s:hover:before,
input.btn-s:hover:before {
	top: -15px;
	height: 60px;
}*/

/*--------------------btn-login--------------------*/
.btn-login {
	height: 65px;
	line-height: 65px;
	padding: 0 20px;
	font-size: 12px;
	width: 100%;
	border: none;
	font-weight: bold;
	color: #fff !important;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;

}
/*.btn-login:before {
	top: 32px;
	background: #333;
	transition-duration: .4s;
}
.btn-login:hover:before {
	top: -32px;
	height: 130px;
}*/
.login-on .btn-login {
	padding: 18px 40px 0 20px;
	line-height: normal;
	text-align: left;
}
.login-on .btn-login:after {
	position:absolute;
	display:block;
	content: "";
	top: 50%;
	right: 15px;
	margin-top: -10px;
	width:15px;
	height: 15px;
	background:url(../images/icon_down_close.svg) 0 0 no-repeat;

}

#nav #login.open .btn-login:after {
	-webkit-animation: icon_close 0.3s steps(8,end) 1;/*実際のコマ数-1, end*/
	-webkit-animation-fill-mode:forwards;
	-moz-animation: icon_close 0.3s steps(8,end) 1;/*実際のコマ数-1, end*/
	-moz-animation-fill-mode: forwards;
}

@-webkit-keyframes icon_close {
	0%		 { background-position-y: 0px; }
	100%	 { background-position-y: -128px; }
}
@-moz-keyframes icon_close {
	0%		 { background-position-y: 0px; }
	100%	 { background-position-y: -128px; }
}

#nav #login.close .btn-login:after {
	-webkit-animation: icon_open 0.3s steps(8,end) 1;
	-webkit-animation-fill-mode:forwards;
	-moz-animation: icon_open 0.3s steps(8,end) 1;
	-moz-animation-fill-mode: forwards;
}

@-webkit-keyframes icon_open {
	0%		 { background-position-y: -128px; }
	100%	 { background-position-y: 0px; }
}
@-moz-keyframes icon_open {
	0%		 { background-position-y: -128px; }
	100%	 { background-position-y: 0px; }
}

#nav #login.default .btn-login:after {
	-webkit-animation: none;
	-moz-animation: none;
}

#nav #login.open .btn-login:before {
	top: -32px !important;
	left: -50% !important;
	width: 200% !important;
	height: 130px !important;
	background: rgba(51, 51, 51, 1) !important;
}


/*--------------------btn-news--------------------*/
a.btn-news {
	height: 40px;
	line-height: 40px;
	padding: 0;
	width: 100%;
	border: none;
	color: #333;
	background: none;
	font-weight: normal;
}
/*a.btn-news:before {
	top: 20px;
}
a.btn-news:hover:before {
	top: -20px;
	height: 80px;
}*/

/*--------------------btn-usermenu--------------------*/
a.btn-usermenu {
	height: 50px;
	line-height: 50px;
	padding: 0 30px;
	width: 100%;
	border: none;
	color: #ccc;
	background: none;
	font-weight: normal;
	display: block;
}
a.btn-usermenu:before {
	display: none;
}
a.btn-usermenu:hover {
	background: #404040;
}
/*--------------------btn-form--------------------*/
a.btn-form,
input.btn-form {
	height:80px;
	line-height:80px;
	padding:0 10px;
	width: 100%;
	font-size:20px;
	font-weight: normal;
}
/*a.btn-form:before,
input.form-xl:before {
	top: 40px;
}
a.btn-form:hover:before,
input.form-xl:hover:before {
	top: -40px;
	height: 160px;
}*/
.form-btn-back .btn-form {
	background: #999;
}
/*--------------------btn-form--------------------*/
.btn-inline {
	width: 50px;
}

/*--------------------btn-option--------------------*/
.btn-line-org,
a.btn-line-org,
input.btn-line-org {
	border: 1px solid #f79256;
	background: none;
	color: #f79256;
	box-sizing: content-box;
}
.btn-line-bk,
a.btn-line-bk,
input.btn-line-bk {
	border: 1px solid #333;
	background: none;
	color: #333;
	box-sizing: content-box;
}
.btn-line-org:hover:before,
a.btn-line-org:hover:before,
input.btn-line-org:hover:before {
	background: rgba(247, 146, 86, 1);
}
/*.btn-line-org:before,
a.btn-line-org:before,
input.btn-line-org:before {
	background: #f79256;
}*/
.btn-wide-l,
a.btn-wide-l,
input.btn-wide-l {
	padding:0 150px;
}

.btn-w100 {
	padding: 0;
	width: 100%;
}

.btn-gray,
a.btn-gray,
input.btn-gray {
	background: #999;
}

/*-----------------------------------------------------
	container
-----------------------------------------------------*/
#container {
	position: relative;
	padding-top: 65px;
	min-width: 1024px;
	background: #fff;
	z-index: 1;
}
#container.top {
	background: #333;
}

/*-----------------------------------------------------
	header
-----------------------------------------------------*/
#header {
	position:fixed;
	left:0;
	top:0;
	z-index:99;
	height: 65px;
	width: 100%;
	background: #fff;
	/*overflow: hidden;*/
	border-bottom: 1px solid #e3e3e3;
	transition-duration:.2s;
}
.top #header,
.cont-regist #header{
	border-bottom: none;
}
#header .wrap {
	min-width: 1024px;
}
#header h1 {
	height: 46px;
	width: 150px;
	margin-top: 10px;
	padding-left: 45px;
	float: left;
}
#header h1 a {
	display:block;
	width:inherit;
	height:inherit;
	background:url(../images/logo_routerfm_stop.png) left top no-repeat;
	overflow:hidden;
	text-indent:-9999px;
	-webkit-animation: logo_anime 10s steps(75,end) 0s infinite ;
	-moz-animation: logo_anime 10s steps(75,end) 0s infinite ;
	-ms-animation: logo_anime 10s steps(75,end) 0s infinite ;
}
@-webkit-keyframes logo_anime {
	0%		 { background-position: 0px 0px; }
	20%		 { background-position-y: -3450px; }
	100%	 { background-position-y: -3450px; }
}
@-moz-keyframes logo_anime {
	0%		 { background-position: 0px 0px; }
	100%	 { background-position-y: -3450px; }
}
@-ms-keyframes logo_anime {
	0%		 { background-position: 0px 0px; }
	100%	 { background-position-y: -3450px; }
}
#header h1 a.stop {
	-webkit-animation: none ;
	-moz-animation: none ;
	-ms-animation: none ;
}

#header .navBtn {
	display:none;
}

/*--------------------nav--------------------*/
#nav {
	height:65px;
	font-size: 12px;
	font-weight: bold;
	float: right;
}
#nav #login {
	float: right;
	position: relative;
	cursor: pointer;
	width: 240px;
}

#nav #login .user-label {
	display: block;
	font-size: 10px;
	line-height: 12px;
	color: #FFDDC9;
}

#nav #login .user-name {
	display: block;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#nav #gmenu {
	float:right;
	margin-right: 30px;
	font-size: 0;
}
#nav #gmenu > li {
	display: inline-block;
	font-size: 12px;
}
#nav #gmenu > li a {
	display: inline-block;
	text-decoration: none;
	padding: 0 16px;
	height: 65px;
	line-height: 65px;
	text-align:center;
	color: #666666;
	position: relative;
	overflow: hidden;
	transition-duration:.2s;
}
#nav #gmenu > li a:hover {
	color: #f79256 !important;
}
#nav #gmenu > li a:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #9dd435;
	transition-duration:.2s;
}
#nav #gmenu > li a:hover::before {
	left: 0;
	width: 100%;
	background-color: #f79256;
}

/*#nav #gmenu > li a:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: -100%;
	width: 100%;
	height: 1px;
	background-color: #9dd435;
	transition-duration:.2s;
}
#nav #gmenu > li a:hover::before {
	left: 0;
	background-color: #f79256;
}*/

#header.mini #nav #gmenu > li a:before {
	display: none;
}

/*#nav #gmenu > li.gmenu-on a:before {
	left: 0 !important;
	width: 100% !important;
	background-color: #333 !important;
}*/

/*--------------------usermenu--------------------*/
#nav #login .usermenu {
	position: absolute;
	display: block;
	top:65px;
	right:0px;
	width:240px;
	box-sizing: border-box;
	background: #333;
	height: 0;
	overflow: hidden;
	transition-duration:.2s;
}
#nav #login.open .usermenu {
	height: 460px;
	border-top: 1px solid #4d4d4d;
	z-index: 999;
}
#nav #login .usermenu li {
	display: block;
}
#nav #login .usermenu li:first-child {
	margin-top:30px;
}
#nav #login .usermenu li:last-child {
	margin-bottom:30px;
}


/*--------------------mini--------------------*/
#header.mini {
	/*position:fixed;*/
	/*overflow: hidden;*/
	height: 36px;
	line-height: 36px;
	background: #fff;
	border-bottom: 1px solid #e3e3e3;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
#header.mini .btn-login {
	height: 36px;
	line-height: 36px;
	transition-duration:.2s;
}
/*#header.mini .btn-login:before {
	top: 18px;
	background: #333;
}
#header.mini .btn-login:hover:before {
	top: -18px;
	height: 72px;
}*/
#header.mini #nav #gmenu > li a {
	height: 36px;
	line-height: 36px;
	color: #999;
}
#header.mini h1 {
	height: 36px;
	width: 150px;
	margin-top: 0;
	padding-left: 45px;
	transition-duration:.2s;
}
#header.mini h1 a {
	background:url(../images/id_router_min.svg) left center no-repeat;
	-webkit-animation: none ;
	-moz-animation: none ;
	-ms-animation: none ;
}
#header.mini #nav #login .usermenu {
	top:36px;
}

#header.mini .login-on .btn-login:after {
	margin-top: -8px;

}

#header.mini .login-on .user-label {
	display: none !important;
}
#header.mini .login-on .user-name {
	line-height: 36px !important;
	padding-top: 0 !important;
}
#header.mini .login-on .btn-login {
	padding-top: 0 !important;
}


/*-----------------------------------------------------
	wrapper
-----------------------------------------------------*/
.cont-regist #wrapper {
	background: #888888 url(../images/bg_hero.jpg) center no-repeat;
}


/*-----------------------------------------------------
	hero area
-----------------------------------------------------*/
#hero-area {
	height: 600px;
	width: 100%;
	background: #111 url(../images/bg_hero01.jpg) center no-repeat;
	display: table;
	color: #ffffff;
}
#hero-area .wrap {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
#hero-area .wrap .inner {
	width: 680px;
	margin: 0 auto;
	position: relative;
}
#hero-area h2 {
	font-size: 30px;
	line-height: 45px;
	font-weight: normal;
	letter-spacing: 2px;
	text-shadow: 0 0 15px rgba(0,0,0,0.6);
}
#hero-area .hero-copy {
	font-size: 16px;
	line-height: 28px;
	margin-top: 10px;
	text-shadow: 0 0 15px rgba(0,0,0,0.6);
}


#hero-area .btn-signin {
    display: inline-block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    background: #f79256;
    overflow: hidden;
    font-weight: bold;
    font-size:16px;
    line-height:16px;
    padding:20px 30px;
    transition-duration:.2s;
}

#hero-area .btn-signin:hover {
    color: #fff;
    background: rgba(51, 51, 51, 1);
}

#hero-area .btn-signin span {
    color: #000;
    margin-right: 20px;
}
#hero-area .btn-signin:hover span {
    color: #fff;
}


/*-----------------------------------------------------
	counter
-----------------------------------------------------*/
#counter {
	height: 65px;
	line-height: 65px;
	text-align: center;
	font-size: 14px;
	background: #333333;
	color: #fff;
}
#counter .count-label,
#counter .count-song {
	display: inline-block;
	white-space: nowrap;
}
#counter .count-label {
	margin-right: 70px;
}
#counter .count-num{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 40px;
	letter-spacing: 2px;
	padding: 0 3px 0 5px;
	vertical-align: middle;
}


/*-----------------------------------------------------
	news
-----------------------------------------------------*/
#news-top {
	height: 40px;
	line-height: 40px;
	font-size: 12px;
	text-align: center;
	background: #fff;
}
#news-top .news-label {
	width: 180px;
	float: left;
}
#news-top .news-cont {
	width: calc(100% - 360px);
	float: left;

	box-sizing: border-box;
	border-left: 1px solid #dcdcdc;
	border-right: 1px solid #dcdcdc;
}
#news-top .news-link {
	width: 180px;
	float: right;
}
#news-top .news-cont span {
	margin-right: 20px;
}
#news-top .news-cont a {
	color: #333;
}

/*-----------------------------------------------------
invite
-----------------------------------------------------*/
.invite {
    height: 65px;
    line-height: 65px;
    text-align: center;
    font-size: 14px;
    background: #616161;
    color: #fff !important;
    font-weight: bold;
    display: block;
    text-decoration: none !important;
}

.invite span {
    color: #f79256;
}

/*-----------------------------------------------------
	section
-----------------------------------------------------*/
.section {
	position: relative;
	min-height: 600px;
	border-top: 1px solid #e3e3e3;
}
.section:first-child {
	border-top: none;
}
.section.stripe:nth-child(odd) {
	background-color:#f0f0f0;
}
.section.stripe:nth-child(even) {
	background-color:#ffffff;
}
.section.gray {
	background-color:#efefef;
}
.section.white {
	background-color:#fff;
}
.section .wrap {
	width: 940px;
	padding: 130px 0;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}
.section.sect-low .wrap {
	padding: 90px 0;
}
.section .wrap-narrow {
	/*width: 760px;*/
}

.section .col2-menu {
	width: 300px;
	float: left;
}
.section .col2-main {
	width: calc(100% - 300px);
	float: left;
}

.section h1 {
	font-size: 30px;
	line-height: 45px;
	margin-bottom: 20px;
	text-align: center;
}
.section h2 {
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 45px;
	text-align: center;
}
.section.sect-low h1 {
	margin-bottom: 30px;
}
.section .col2-menu h1 {
	text-align: left;
}
.section h3 {
	font-size: 30px;
	line-height: 45px;
	margin-bottom: 20px;
	text-align: center;
}
.section p.lead {
	font-size: 14px;
	line-height: 24px;
	color: #5c5c5c;
	margin-bottom: 70px;
	text-align: center;
}
.section h4 {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 10px;
}
.section p.sub {
	font-size: 12px;
	line-height: 18px;
	color: #666666;
}
.col3 {
	text-align: center;
}
.col3 .col {
	float: left;
	width: 26%;
	margin-right: 11%;
}
.col3 .col:last-child {
	margin-right: 0;
}
.col4 {
	text-align: center;
}
.col4 .col {
	float: left;
	width: 20.5%;
	margin-right: 6%;
}
.col4 .col:last-child {
	margin-right: 0;
}
/*-----------------------------------------------------
	link-register
-----------------------------------------------------*/
#link-register {
	padding: 180px 0;
	background: #888888 url(../images/bg_hero.jpg) center top no-repeat;
}

/*-----------------------------------------------------
	footer
-----------------------------------------------------*/
#footer {
	background: #333;
	color: #999;
	font-size: 12px;
	line-height: 18px;
}
#footer .wrap {
	text-align: center;
	padding: 30px 0;
}
#footer ul.license {
	display: inline-block;
	margin-right: 30px;
	font-size: 10px;
}
#footer ul.license li {
	display: inline-block;
	margin-right: 20px;
}
#footer ul.license li:last-child {
	margin-right: 0;
}

#footer ul.license li.jasrac {
	background: url(../images/jasrac.png) left center no-repeat;
	padding-left: 36px;
	background-size: auto 30px;
	line-height: 30px;
}

#footer ul.license li.jrc {
	background: url(../images/jrc_license_mark.gif) left center no-repeat;
	padding-left: 36px;
	background-size: auto 30px;
	line-height: 30px;
}

#footer ul.license li.nextone {
    background: url(../images/nextone_license_mark.png) left center no-repeat;
    padding-left: 36px;
    background-size: auto 30px;
    line-height: 30px;
}

#footer ul.ft-link {
	/*display: inline-block;*/
	margin-bottom: 30px;
}
#footer ul.ft-link li {
	display: inline-block;
	margin-right: 15px;
}
#footer ul.ft-link li:last-child {
	margin-right: 0;
}
#footer a {
	color: #999;
}
#footer .copyright {
	/*margin-top: 6px;*/
	display: inline-block;
}
#footer .bnr {
	margin-bottom: 30px;
	text-align: center;
}

/*-----------------------------------------------------
	pagetop
-----------------------------------------------------*/
#pageTop {
	position:fixed;
	right:20px;
	bottom:24px;
	display:block;
	line-height: 50px;
	height: 50px;
	width:50px;
	text-align:center;
	text-decoration:none;
	color:#999999;
	background:rgba(200,200,200,0.1);
	border:1px solid rgba(200,200,200,0.2);
	border-radius: 50%;
	transition-duration: .3s;
}
#pageTop:hover {
	color:#F29600;
}
#pageTop.hide {
	bottom:-60px;
}
#pageTop i {
	font-size:16px;
	display:inline-block;
	text-align: center;
}

/*-----------------------------------------------------
	price
-----------------------------------------------------*/

/*--------------------basic--------------------*/
.price-basic {
	text-align: left;
}

.price-basic .col {
	line-height: 52px;
	border: 1px solid #333;
	font-size: 14px;
	background: #efefef;
    display: flex;
}

.price-basic .col .label {
	box-sizing: border-box;
	width: 350px;
	padding-left: 10px;
}
.price-basic .col .cont {
	box-sizing: border-box;
	text-align: center;
	background: #fff;
    border-left: 1px solid #333;
    flex: 1;
}

/*--------------------plan--------------------*/
.price-plan {
	text-align: left;
	margin-top: 40px;
	margin-bottom: 10px;
	box-sizing: border-box;
}
.price-plan div {
	box-sizing: border-box;
}

.price-plan .label {
	box-sizing: border-box;
	width:350px;
	float: left;
	border: 1px solid #333;
	margin-right: -1px;
}
			.label-setup,
			.label-rate {
				border-top: 1px solid rgba(0,0,0,0.2);
			}
			.label-plan {
				height: 240px;
				background: #efefef;
				padding: 20px;
				font-size: 16px;
			}
			.label-setup {
				height: 174px;
			}
			.label-rate {
				height: 58px;
				line-height: 58px;
				padding-left: 20px;
			}
			.label-setup-album {
				width: 180px;
				float: left;
				font-size: 16px;
				line-height: 18px;
				padding: 20px 0 0 20px;
			}
			.label-setup-sub {
				width: calc(100% - 180px);
				float: left;
			}
			.label-base {
				height: 57px;
				line-height: 57px;
				padding-left: 10px;
			}
			.label-add,
			.label-jan {
				height: 58px;
				line-height: 58px;
				padding-left: 10px;
				border-top: 1px solid rgba(0,0,0,0.2);
			}


.price-plan .cont {
	box-sizing: border-box;
	width: calc(100% - 350px);
	float: left;
	text-align: center;
	position: relative;
}
			.price-plan .cont-plan {
				width: 33%;
				float: left;
				/*border: 1px solid #333;*/
				margin-right: -1px;
				position: relative;
			}
			.price-plan .cont-plan .inner {
				border: 1px solid #333;
				position: relative;
				transition-duration: .2s;
			}
			.price-plan .cont-plan:last-child {
				margin-right: 0;
			}
			.price-plan .cont-all {
				width: calc(34% + 3px);
			}
			.price-plan .cont-focus .inner {
				background: #f79256;
				top: -10px;
			}
            .price-plan .cont-campaign .inner {
                background: #e64a4a;
                color: #fff;
            }
			.price-plan .cont-focus .inner:after {
				content: "";
				position: absolute;
				display: block;
				width: 70px;
				height: 70px;
				top: 0;
				left: 0;
				background: url(../images/badge_recommend.svg) center no-repeat;
				background-size: 100%;
			}
            .price-plan .cont-campaign .inner:after {
                background: url(../images/badge_campaign.svg) center no-repeat;
            }
            .price-plan .cont-campaign-20off .inner:after {
                content: "";
                position: absolute;
                display: block;
                width: 70px;
                height: 70px;
                top: 0;
                left: 0;
                background: url(../images/ribbon_campaign_20off.svg) center no-repeat !important;
                background-size: 100%;
            }
			.cont-title {
				height: 60px;
				display: table;
				width: 100%;
				padding: 0 30px;
			}
			.cont-img {
				height: 180px;
				transition-duration: .2s;
			}
			.cont-img img {
				height: 150px;
				width: auto;
				padding-top: 30px;
			}
			.cont-title span.title {
				display: table-cell;
				vertical-align: middle;
			}
			.price-plan .cont-add,
			.price-plan .cont-jan {
				/*display: none;*/
				text-indent: -9999px;
			}
			.price-plan .cont-base,
			.price-plan .cont-add,
			.price-plan .cont-jan,
			.price-plan .cont-rate {
				height: 58px;
				line-height: 58px;
				border-top: 1px solid rgba(0,0,0,0.2);
			}
			.price-plan .cont-mobile {
				display: none;
			}
			.price-plan .cont-rate {
				transition-duration: .2s;
			}
			.price-plan .cont-focus .inner .cont-img {
				height: 190px;
			}
			.price-plan .cont-focus .inner .cont-rate {
				height: 68px;
				padding-bottom: 10px;
			}

            .price-plan .cont-base .price-default {
                text-decoration: line-through;
                font-size: 12px;
            }
            .price-plan .cont-base .price-campaign {
                font-weight: bold;
                margin-left: 5px;
                font-size: 16px;
                color: #f91a1a;
            }
            .price-plan-form .cont-base .price-campaign {
                color: #f91a1a;
                text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
            }

.price-plan .common {
	box-sizing: border-box;
	clear: both;
}
			.price-plan .common-add {
				position: absolute;
				width: calc(100% - 2px);
				height: 58px;
				line-height: 58px;
				background: #fff;
				border-bottom: 1px solid rgba(0,0,0,0.2);
				top: 300px;
				left: 1px;
			}
			.price-plan .common-jan {
				position: absolute;
				width: calc(100% - 2px);
				height: 58px;
				line-height: 58px;
				background: #fff;
				border-bottom: 1px solid rgba(0,0,0,0.2);
				top: 358px;
				left: 1px;
			}
.price-plan .label-mobile {
	display: none;
}








/*--------------------plan2--------------------*/
.price-plan2 {
    margin-top: 40px;
    margin-bottom: 10px;
    box-sizing: border-box;
    display: flex;
    border: 1px solid #333;
}
.price-plan2 div {
    box-sizing: border-box;
}

.price-plan2 .label {
    text-align: left;
    width:350px;
    border-right: 1px solid #333;
    background: #efefef;
}

.price-plan2 .cont-wrap {
    text-align: center;
    flex: 1;
    display: flex;
    font-weight: bold;
}

.price-plan2 .cont {
    flex: 1;
    position: relative;
}

.price-plan2 .box {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 20px 10px;
    font-size: 14px;
    line-height: 18px;
	height: 60px;
}
.price-plan2 :not(.label) .box{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.price-plan2 .cont-wrap .box-plan {
    padding-top: 0;
}



.price-plan2 .box-plan {
    min-height: 270px;
    display: flex;
    flex-direction: column;
}

.price-plan2 .box:last-child {
    border-bottom: none;
}

.price-plan2 .box-plan h2 {
    text-align: left;
    color: #f79256;
    margin-bottom: 10px;
}

.price-plan2 .box-plan p {
    font-size: 12px;
    line-height: 18px;
}

.price-plan2 .cont-single .box-plan,
.price-plan2 .cont-single .box-base,
.price-plan2 .cont-ep .box-plan,
.price-plan2 .cont-ep .box-base {
    border-right: 1px solid #333;
}

.price-plan2 .sp-only {
    display: none;
}

.price-plan2 .title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    flex: 1;
}

.price-plan2 .cont-single .title {
    background-image: url(../images/plan-single.svg);
}

.price-plan2 .cont-ep .title {
    background-image: url(../images/plan-ep.svg);
}

.price-plan2 .cont-album .title {
    background-image: url(../images/plan-album.svg);
}

.price-plan2.price-plan-form2 .cont-wrap .box-plan {
    padding-top: 50px;
}

.price-plan2.price-plan-form2 .box-plan {
    min-height: 320px;
}

.price-plan2.price-plan-form2 .cont:hover .box-plan,
.price-plan2.price-plan-form2 .cont:hover .box-base {
    background: #f1f1f1;
}

.price-plan2.price-plan-form2 .cont:hover .box-base {
    border-bottom: 1px solid #333;
}

input[type="radio"]:checked + .cont-radio + .box-plan,
input[type="radio"]:checked + .cont-radio + .box-plan + .box-base {
    background: #f79256 !important;
}
input[type="radio"]:checked + .cont-radio + .box-plan + .box-base .txt-red{
	color: #cc1717;
}

.price-plan2 .cont-single input[type="radio"]:checked + .cont-radio + .box-plan .title {
    background-image: url(../images/plan-single-white.svg);
}

.price-plan2 .cont-ep input[type="radio"]:checked + .cont-radio + .box-plan .title {
    background-image: url(../images/plan-ep-white.svg);
}

.price-plan2 .cont-album input[type="radio"]:checked + .cont-radio + .box-plan .title {
    background-image: url(../images/plan-album-white.svg);
}


/*--------------------plan-form--------------------*/
.price-plan-form {
	min-height: 540px;
}
.price-plan-form .inner {
	padding-top:42px;
	background: #fff;
	top: 0;
}
input[type="radio"] + .cont-radio {
	display: block;
	position: absolute;
	margin-left: 0;
	line-height: auto;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

input[type="radio"] + .cont-radio:before {
	top: 30px;
	left: 50%;
	margin-left: -11px;
	margin-top: -11px;
	border: 1px solid #333;
	z-index: 2;
}
input[type="radio"] + .cont-radio:after {
	top: 30px;
	left: 50%;
	z-index: 3;
}
input[type="radio"]:checked + .cont-radio:after {
	left: 50%;
	margin-left: -6px;
	margin-top: -6px;

}

.price-plan-form .label-plan {
	height: calc(240px + 42px);
}
.price-plan-form .common-add {
	top: calc(300px + 42px);
}
.price-plan-form .common-jan {
	top: calc(358px + 42px);
}
.price-plan-form .label-plan h2 {
	font-size: 24px;
	line-height: 28px;
	color: #f79256;
	margin-bottom: 10px;
	text-align: left;
}
.price-plan-form .label-plan p {
	font-size: 12px;
	line-height: 18px;
	color: #5c5c5c;
}
.price-plan-form .cont-all .inner:after {
	content: "";
	position: absolute;
	display: block;
	width: 70px;
	height: 70px;
	top: 0;
	left: 0;
	background: url(../images/badge_recommend.svg) center no-repeat;
	background-size: 100%;
}
/*.price-plan-form .cont-itunes .inner:after {
    content: "";
    position: absolute;
    display: block;
    width: 70px;
    height: 70px;
    top: 0;
    left: 0;
    background: url(../images/badge_campaign.svg) center no-repeat;
    background-size: 100%;
}*/

/*input[type="radio"] + .cont-radio + .inner {
	background: #ffffff;
}*/
input[type="radio"]:checked + .cont-radio + .inner {
	background: #f79256 !important;
	top: -10px !important;
}
input[type="radio"] + .cont-radio:hover + .inner {
	background: #f1f1f1;
}
/*input[type="radio"]:checked + .cont-radio:hover + .inner {
	background: #f79256;
}*/
input[type="radio"]:checked + .cont-radio + .inner .cont-img {
	height: 190px !important;
}
input[type="radio"]:checked + .cont-radio + .inner .cont-rate {
	height: 68px !important;
	padding-bottom: 10px !important;
}

/*-----------------------------------------------------
	detail
-----------------------------------------------------*/

.detail {
	border-top: 2px solid #333;
}
.detail-sect {
	padding: 45px 0;
	border-bottom: 2px solid #333;
	overflow: hidden;
}
.detail-sect .detail-header {
	width: 330px;
	box-sizing: border-box;
	padding-right: 120px;
	float: left;
}
.detail-sect .detail-header h2 {
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 30px;
	text-align: left;
}
.detail-sect .detail-header .note {
	font-size: 12px;
	line-height: 18px;
	color: #666;
	margin-top: 60px;
}
.detail-sect .detail-header .detail-edit-btn {
	margin-top: 30px;
	position: relative;
}
.detail-sect .detail-info {
	width: calc(100% - 330px);
	float: left;
}
.detail-sect .detail-item:first-child {
	padding-top: 0;
	border-bottom: 1px solid #dcdcdc;
}
.detail-sect .detail-item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.detail-sect .detail-item.item-break {
	border-bottom: 2px solid #111;
}
.detail-sect .detail-item.item-coupon {
	background: #ececec;
	padding: 20px;
	margin-top: 20px;
}
.detail-sect .detail-item.item-indent {
	margin-left: -28px;
	border-top: 2px solid #111;
	margin-top: -1px;
}
.detail-sect .detail-item.item-indent:first-child {
	border-top: none;
	margin-top: 0;
}
.detail-sect .detail-item.item-indent > .box-form {
	margin-top: 0;
}
.detail-sect .detail-title {
	color: #999;
	margin-bottom: 10px;
	font-weight: bold;
}
.detail-sect ul.detail-list li:after {
	content: "";
	display: block;
	clear: both;
}
.detail-sect ul.detail-list li {
	zoom: 1;
}
.detail-sect div.detail-list:after {
	content: "";
	display: block;
	clear: both;
}
.detail-sect div.detail-list {
	zoom: 1;
}
.detail-sect .detail-label {
	width: 180px;
	float: left;
	color: #999;
	line-height: 20px;
	box-sizing: border-box;
	padding-right: 30px;
}
.detail-sect .label-must:after {
	content: "＊";
	display: inline;
	padding-left: 3px;
	color: #f79256;
	font-weight: bold;
	line-height: 20px;

}
.detail-sect .detail-label > div {
	margin-bottom: 20px;
	color: #666;
}
.detail-check .detail-sect .detail-label > div {
	margin-bottom: 0;
}
.detail-sect .detail-label .note {
	font-size: 11px;
	line-height: 16px;
	margin-top: 10px;
}
.detail-sect .detail-desc {
	width: calc(100% - 180px);
	float: left;
}
.detail-sect .detail-desc .inner {
	margin-bottom: 20px;
}
.detail-sect .detail-desc .inner:last-child {
	margin-bottom: 0;
}
.detail-sect .detail-img img {
	width: 120px;
}
.detail-sect .detail-no-img {
	box-sizing: border-box;
	width: 120px;
	height: 120px;
	text-align: center;
	line-height: 118px;
	border: 2px dotted #ccc;
	font-size: 12px;
	color: #ccc;
}
.detail-sect .detail-no-img-l {
	width: 240px;
	height: 240px;
	line-height: 238px;
	font-size: 16px;
}
.detail-sect .detail-desc-item {
	display: inline-block;
	margin-right: 20px;
}
.detail-sect .detail-desc-item:last-child {
	margin-right: 0;
}

.detail-amount {

}
.detail-amount .detail-sect {
	border-bottom: none;
}
.detail-sect.no-border {
	border-bottom: none;
}

/*
.detail-amount {
	margin-bottom: 90px;
	border: 2px solid #111;
	padding: 0 30px;
	border-radius: 18px;
}
.detail-amount .detail-sect {
	border-bottom: none;
}
*/

.detail-sect .detail-header.detail-header-simu {
	width: 360px;
	box-sizing: border-box;
	padding-right: 100px;
	float: left;
}
.detail-sect .detail-info.detail-info-simu {
	width: calc(100% - 360px);
	float: left;
}


.detail-link .detail-sect .detail-header{
	margin-bottom: 25px;
}
.detail-sect .detail-item {
	padding: 20px 0;
	border-bottom: 1px solid #dcdcdc;
}
.detail-link .detail-sect .detail-item {
	padding-bottom: 45px;
	margin-bottom: 45px;
}
.detail-link .detail-sect .form-btn {
    margin-top: 45px;
}
.detail-link .detail-list li:not(:last-child) .detail-desc input {
    border-bottom: 0;
}

/*--------------------detail-form--------------------*/
.detail-form .detail-header {
	width: 280px;
	padding-right: 60px;
}
.detail-form .detail-info {
	width: calc(100% - 280px);
}
.detail-form .detail-header h2,
.detail-form h2.h2-v2 {
	font-size: 24px;
	line-height: 28px;
	color: #f79256;
	margin-bottom: 10px;
}
.detail-form .detail-header p {
	font-size: 12px;
	line-height: 18px;
}
.detail-form .detail-item {
	padding: 30px 0;
}
.detail-form .detail-label {
	width: 220px;
	padding-right: 45px;
}
.detail-form .detail-desc {
	width: calc(100% - 220px);
	float: left;
}
.msg-error {
	color: #e66060;
	font-weight: bold;
	margin-top: 10px;
}
.msg-error:before {
	font-family:'fontello';
	content: '\E805';
	display: inline;
	padding-right: 5px;
	color: #111;
}

.detail-card {
	font-size: 0;
}
.detail-card .box-form {
	display: inline-block;
	margin-top: 0 !important;
	vertical-align: top;
	margin-right: 12px;
	margin-bottom: 12px;
}
.detail-card .box-form:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	background-image: url(../images/icon_card.png);
	background-repeat: no-repeat;
	background-size: 80px auto;
	box-sizing: border-box;
	border: 1px solid #dcdcdc;
	/*border-radius: 4px;*/
	overflow: hidden;
}
.box-form.card-visa:after {
	background-position: 0 0;
}
.box-form.card-master:after {
	background-position: 0 -80px;
}
.box-form.card-dc:after {
	background-position: 0 -160px;
}
.box-form.card-nicos:after {
	background-position: 0 -240px;
}
.box-form.card-ufj:after {
	background-position: 0 -320px;
}
.box-form.card-jcb:after {
	background-position: 0 -400px;
}
.box-form.card-amex:after {
	background-position: 0 -480px;
}

.detail-card input[type="radio"] + label {
	font-size: 11px;
	line-height: 14px;
	display: block;
	width: 70px;
	padding-top: 88px;
	margin-left: 0;
	padding-left: 28px;
	position: relative;
	z-index: 1;
}
.detail-card input[type="radio"] + label span {
	display: inline-block;
	height: 28px;
}

.detail-card input[type="radio"] + label:before {
	bottom: 10px;
	left: 0;
	top: auto;
	margin-top: 0;
}
.detail-card input[type="radio"] + label:after {
	bottom: 20px;
	left: 10px;
	top: auto;
	margin-top: 0;
}
.detail-card input[type="radio"]:checked + label:after {
	bottom: 15px;
	left: 5px;
}

/*--------------------detail-about--------------------*/
.detail-about {
	margin-top: 70px;
}
.detail-about .detail-header {
	width: 240px;
	padding-right: 0;
}
.detail-about .detail-info {
	width: calc(100% - 240px);
}
.detail-about.detail-1col {
	width: calc(100% - 240px);
	margin-left: auto;
	margin-right: auto;
}
.detail-about.detail-1col .detail-info {
	width: 100% !important;
	float: none !important;
}

/*--------------------chart--------------------*/
.price-chart {
	margin-top: 60px;
}
.price-bar {
	height: 90px;
    width: 100%;
	border-radius: 45px;
	overflow: hidden;
	text-align: center;
	color: #fff;
	font-weight: bold;
	margin-bottom: 5px;
    display: flex;
}
.price-bar .price-col {
	height: inherit;
	font-size: 12px;
	line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.price-bar .price-label {
	background: #f79256;
	margin-right: 1px;
	font-size: 16px;
    flex: 1;
}
.price-bar .price-router {
	width: 10%;
	background: #8e8e8e;
	margin-right: 1px;
}
.price-bar .price-copyright {
	width: 10%;
	background: #c1c1c1;
	margin-right: 1px;
}
.price-bar .price-due {
	width: 19%;
	background: #c1c1c1;
}

.price-chart .length {
	text-align: center;
	box-sizing: border-box;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	line-height: 30px;
	position: relative;
	z-index: 1;
}
.price-chart .length:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background: #ccc;
	top: calc(50% - 1px);
	left: 0;
	z-index: -1;
}
.price-chart .length span {
	display: inline-block;
	background: #fff;
	padding: 0 10px;
}
.price-chart .length-cfm {
	width: 71%;
	font-size: 12px;

}
.price-chart .length-all {
	width: 100%;
	font-size: 16px;

}

/*--------------------detail-box--------------------*/
.detail-box {
	border: 1px solid #e0e0e0;
	background: #fff;
	box-sizing: border-box;
	/*width: 640px;
	margin: 0 auto;*/
	border-radius: 18px;
	padding: 60px 90px;
}
.detail-box .detail-sect {
	padding: 0;
	border-bottom: none;
	/*width: 640px;
	margin: 0 auto;*/
	text-align: center;
}
.detail-box .box-form {
	margin-bottom: 0;
}
.detail-box h2 {
	font-size: 24px;
	line-height: 28px;
	color: #f79256;
	margin-bottom: 10px;
}

/*-----------------------------------------------------
	faq
-----------------------------------------------------*/
ul.faq {
	text-align: left;
	width: 100%;
	margin: 0 auto;
}
ul.faq li {
	border: 1px solid #333333;
	position: relative;
	overflow: hidden;
	background: #fff;
	margin-bottom: -1px;
	transition-duration:.3s;
}
ul.faq li:first-child {
	margin-top: 0 !important;
}
ul.faq .faq-q {
	font-size: 16px;
	padding: 0 45px;
	font-weight: bold;
	display: table;
	box-sizing: border-box;
	width: 100%;
	height: 90px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	z-index: 2;
	transition-duration:.3s;
}
ul.faq .faq-q .inner {
	width: 100%;
	padding-left: 75px;
	height: inherit;
	display: table-cell;
	vertical-align: middle;
	background: url(../images/faq_q.svg) 0 center no-repeat;
}

/*-----------------fx-bar-common-----------------*/
ul.faq .faq-q::before,
ul.faq .faq-q::after,
ul.faq .faq-q .inner::before,
ul.faq .faq-q .inner::after {
	content: "";
	display: block;
	position: absolute;
	width: 30px;
	height: 25%;
	background-color: #9dd435;
	left: -30px;
	z-index: -1;
	transition-duration:.1s;
}
ul.faq .faq-q:hover::before,
ul.faq .faq-q:hover::after,
ul.faq .faq-q:hover .inner::before,
ul.faq .faq-q:hover .inner::after {
	background-color: #f79256;
}

/*-----------------fx-bar-common-----------------*/
ul.faq .faq-q::before,
ul.faq .faq-q::after,
ul.faq .faq-q .inner::before,
ul.faq .faq-q .inner::after {
	content: "";
	display: block;
	position: absolute;
	width: 8px;
	height: 25%;
	background-color: #9dd435;
	left: -8px;
	z-index: -1;
	transition-duration:.2s;
}
ul.faq .faq-q:hover::before,
ul.faq .faq-q:hover::after,
ul.faq .faq-q:hover .inner::before,
ul.faq .faq-q:hover .inner::after {
	left: 0;
	background-color: #f79256;
}

/*--------------------fx-bar1--------------------*/
ul.faq .faq-q::before {
	top: 0;
}
/*--------------------fx-bar2--------------------*/
ul.faq .faq-q::after {
	top: 25%;
	transition-delay: .1s;
}
/*--------------------fx-bar3--------------------*/
ul.faq .faq-q .inner::before {
	top: 50%;
	transition-delay: .18s;
}
/*--------------------fx-bar4--------------------*/
ul.faq .faq-q .inner::after {
	top: 75%;
	transition-delay: .26s;
}

ul.faq .faq-a {
	display: block;
	position: relative;
	overflow: hidden;
	height: 0;
	font-size: 0;
	font-size: 14px;
	line-height: 22px;
	background: url(../images/faq_a.svg) 45px 30px no-repeat;
	padding: 0 45px 0 115px;
	color: #666;
	transition-duration:.3s;
}
ul.faq .faq-on .faq-a {
	height: auto;
	padding: 30px 45px 30px 115px;
	box-sizing: border-box;
	min-height: 110px;
}
ul.faq li.faq-on {
	margin: 20px 0;
}
ul.faq li.faq-on .faq-q::before,
ul.faq li.faq-on .faq-q::after,
ul.faq li.faq-on .faq-q .inner::before,
ul.faq li.faq-on .faq-q .inner::after {
	left: -8px;
}

ul.faq li.faq-on .faq-a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 45px;
	width: calc(100% - 90px);
	height: 1px;
	background: rgba(0,0,0,0.3);
}

/*-----------------------------------------------------
	form page
-----------------------------------------------------*/
.form-login {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #dcdcdc;
}
.form-login .inner {
	margin-left: 28px;
	margin-top: 10px;
}
.note-password {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 11px;
}
.note-password a {
	line-height: 22px;
}
.form-btn {
	text-align: center;
	margin-top: 60px;
}
.form-btn-back {
	width: calc(40% - 30px);
	float: left;
}
.form-btn-next {
	width: calc(60% - 30px);
	float: right;
}
.form-btn-l {
	width: calc(50% - 30px);
	float: left;
}
.form-btn-r {
	width: calc(50% - 30px);
	float: right;
}
.form-btn-center {
	width: 50%;
	margin: 0 auto;
}

.form-btn-next {
	text-align: right !important;
}

/*-----------------------------------------------------
	menu-local
-----------------------------------------------------*/
ul.menu-local {
	margin-right: 45px;
}
ul.menu-local li {
    position: relative;
}
ul.menu-local li a {
	display: block;
	padding: 10px 0 10px;
	margin-bottom: 5px;
	color: #333;
	text-decoration: none;
	position: relative;
	z-index: 2;
	overflow: hidden;
	transition-duration:.3s;
}
ul.menu-local li.menu-on a {
	font-weight: bold;
    color: #fff;
}

ul.menu-local li.menu-on:before {
    position: absolute;
    display: block;
    content: "";
    width: calc(100% + 10px);
    height: 100%;
    background: #f79256;
    left: -10px;
    top: 0;
}

ul.menu-local li a:hover {
	/*padding-left: 10px;*/
}
ul.menu-local li a:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: -100%;
	background-color: #9dd435;
	width: calc(100% - 10px);
	z-index: -1;
	height: 2px;
	transition-duration:.3s;
}
ul.menu-local li a:hover:after {
	left: 0;
	background-color: #f79256;
}
ul.menu-local li.menu-on a:after {
	display: none;
}

/*-----------------------------------------------------
	menu-tab
-----------------------------------------------------*/
ul.menu-tab {
	margin-top: 70px;
	border-top: 2px solid #333;
	box-sizing: border-box;
	text-align: center;
	font-size: 0;
}
ul.menu-tab li {
	display: inline-block;
}
ul.menu-tab li a {
	display: block;
	box-sizing: border-box;
	text-align: center;
	line-height: 60px;
	height: 60px;
	padding: 0 20px;
	min-width: 120px;
	font-size: 12px;
	color: #f79256;
	font-weight: bold;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition-duration:.3s;
}
ul.menu-tab li a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	background-color: #9dd435;
	width: 0;
	height: 2px;
	transition-duration:.3s;
}
ul.menu-tab li a:hover::after {
	left: 0;
	width: 100%;
	background-color: #f79256;
}

/*ul.menu-tab li a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: -100%;
	background-color: #9dd435;
	width: 100%;
	height: 2px;
	transition-duration:.3s;
}
ul.menu-tab li a:hover::after {
	left: 0;
	background-color: #f79256;
}*/

ul.menu-tab li.menu-tab-on a {
	color: #111 !important;
}
ul.menu-tab li.menu-tab-on a::after {
	left: 0 !important;
	width: 100% !important;
	background-color: #333 !important;
}

/*-----------------------------------------------------
	misc
-----------------------------------------------------*/
ul.store-icon {
	text-align: center;
	font-size: 0;
	padding: 0 60px;
}
ul.store-icon li {
	display: inline-block;
	width: 100px;
	margin: 10px;
}
ul.store-icon li img {
	width: 100%;
	height: auto;
}

.signin {
	border: 1px solid #e0e0e0;
	background: #fff;
	box-sizing: border-box;
	width: 640px;
	margin: 0 auto;
	border-radius: 18px;
	padding: 60px 90px;
}
.regist {
	background:rgba(255, 255, 255, 0.9);
	box-sizing: border-box;
	width: 640px;
	margin: 0 auto;
	border-radius: 18px;
	padding: 60px 60px;
}
.regist .lead {
	font-weight: bold;
	text-align: left !important;
}
.regist-note {
	margin-top: 45px;
	padding-top: 45px;
	border-top: 1px solid #dcdcdc;
	text-align: left;
}



/*-----------------------------------------------------
	animation
-----------------------------------------------------*/
.anime-top {
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
}
.anime-top01 {
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;

}
.anime-top02 {
	animation-delay: .5s;
	-webkit-animation-delay: .5s;
	-moz-animation-delay: .5s;
}


/*-----------------------------------------------------
	history
-----------------------------------------------------*/
.history {
	margin-top: 70px;
	border-bottom: 2px solid #333;
}
.history-album {
	border-top: 2px solid #333;
	padding: 45px 0;
}
.history-album .history-jacket {
	width: 240px;
	float: left;
}
.history-album .history-jacket img {
	width: 100%;
	height: auto;
}

.history-album .history-list {
	width: calc(100% - 330px);
	float: right;
}
.history-album .history-list li {
	display: flex;
	border-bottom: 1px solid #dcdcdc;
	font-size: 14px;
	line-height: 22px;
	padding: 16px 0;
}
.history-album .history-list li:first-child {
	padding-top: 0;
}
.history-album .history-list li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.history-album .history-label {
	display: inline-block;
	width:160px;
	color: #999;
	vertical-align: top;
}
.history-album .history-desc {
	display: inline-block;
	flex: 1;
}

/*-----------------------------------------------------
	report
-----------------------------------------------------*/
.report {
	margin-top: 70px;
	border-bottom: 1px solid #dcdcdc;
}
.report-row {
	border-top: 1px solid #dcdcdc;
	font-size: 14px;
	line-height: 1.4;
	transition-duration: .2s;
	zoom: 1;
}
.report-row:after {
	content: "";
	display: block;
	clear: both;
}
.report-row:hover {
	background: #f9f9f9;
}
.report-date {
	width: 200px;
	box-sizing: border-box;
	padding: 20px 10px;
	line-height: 32px;
	float: left;
}
.report-title {
	width: calc(100% - 380px);
	box-sizing: border-box;
	padding: 20px 10px;
	line-height: 32px;
	float: left;
}
.report-btn {
	width: 180px;
	box-sizing: border-box;
	padding: 20px 10px;
	font-size: 0;
	text-align: right;
	float: right;
}

/*-----------------------------------------------------
	magazine
-----------------------------------------------------*/
.magazine {
	margin-top: 70px;
	border-bottom: 1px solid #dcdcdc;
}
.magazine-row {
	border-top: 1px solid #dcdcdc;
	font-size: 14px;
	line-height: 1.4;
	transition-duration: .2s;
	zoom: 1;
}
.magazine-row:after {
	content: "";
	display: block;
	clear: both;
}
.magazine-row:hover {
	background: #f9f9f9;
}
.magazine-date {
	width: 200px;
	box-sizing: border-box;
	padding: 20px 10px;
	line-height: 32px;
	float: left;
}
a.magazine-title {
	width: calc(100% - 200px);
	box-sizing: border-box;
	display: block;
	padding: 20px 10px;
	line-height: 32px;
	float: left;
}

.magazine-detail {
	background: #fff;
	border: 1px solid #dcdcdc;
	border-radius: 18px;
}
.magazine-head {
	border-bottom: 1px solid #dcdcdc;
	padding: 45px;
	font-size: 16px;
	text-align: center;
}
.magazine-head-date {
	color: #666;
	font-size: 11px;
}
.magazine-cont {
	padding: 60px 45px;
}
.magazine-cont .inner {
	width: 660px;
	margin: 0 auto;
}

.news-btn {
	text-align: center;
	margin-top: 60px;
	position: relative;
	height: 80px;
}
.news-btn-l {
	width: 35%;
	position: absolute;
	top: 0;
	left: 0;
}
.news-btn-c {
	width: calc(100% - 70% - 60px);
	position: absolute;
	top: 0;
	left: calc(35% + 30px);
}
.news-btn-r {
	width: 35%;
	position: absolute;
	top: 0;
	right: 0;
}


/*-----------------------------------------------------
	step
-----------------------------------------------------*/
ul.step {
	margin-top: -50px;
	margin-bottom: 70px;
	/*border: 1px solid #f79256;*/
	box-sizing: border-box;
	overflow: hidden;
}
ul.step li {
	float: left;
	width: 16.66%;
	box-sizing: border-box;
	border: 1px solid #f79256;
	border-right: none;
	padding: 60px 10px 16px 15px;
	font-size: 12px;
	line-height: 18px;
	position: relative;
	color: #999;
}
ul.step li:last-child {
	width: 16.7%;
	/*border-right: none;*/
	border-right: 1px solid #f79256;
}


ul.step li::after {
	display: block;
	content: "";
	position: absolute;
	width: 50px;
	height: 34px;
	overflow: hidden;
	top: 18px;
	left: 15px;
	background-image: url(../images/step_no.svg);
	background-repeat: no-repeat;
	background-size: 100px auto;
}
ul.step li:nth-child(1)::after {
	background-position: 0 0px;
}
ul.step li:nth-child(2)::after {
	background-position: 0 -34px;
}
ul.step li:nth-child(3)::after {
	background-position: 0 -68px;
}
ul.step li:nth-child(4)::after {
	background-position: 0 -102px;
}
ul.step li:nth-child(5)::after {
	background-position: 0 -136px;
}
ul.step li:nth-child(6)::after {
	background-position: 0 -170px;
}
ul.step li:nth-child(7)::after {
	background-position: 0 -204px;
}
ul.step li.step-on {
	background: #f79256;
	color: #111;
}
ul.step li:nth-child(1).step-on::after {
	background-position: -50px 0px;
}
ul.step li:nth-child(2).step-on::after {
	background-position: -50px -34px;
}
ul.step li:nth-child(3).step-on::after {
	background-position: -50px -68px;
}
ul.step li:nth-child(4).step-on::after {
	background-position: -50px -102px;
}
ul.step li:nth-child(5).step-on::after {
	background-position: -50px -136px;
}
ul.step li:nth-child(6).step-on::after {
	background-position: -50px -170px;
}
ul.step li:nth-child(7).step-on::after {
	background-position: -50px -204px;
}
ul.step-regist li {
 	width: 14.3%;
}
ul.step-regist li:last-child {
	width: 14.2%;
	/*border-right: none;*/
}
ul.step-player li {
 	width: 33.3%;
}
ul.step-player li:last-child {
	width: 33.4%;
	/*border-right: none;*/
}

/*-----------------------------------------------------
	excel
-----------------------------------------------------*/
.excel {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 360px;
	padding: 20px;
	box-sizing: border-box;
	background: #f79256;
	color: #fff;
	font-weight: bold;
	overflow: hidden;
	display: none;
}
.excel .btn-close {
	position: absolute;
	display: block;
	top: 20px;
	right: 20px;
	width: 15px;
	height: 15px;
	background:url(../images/icon_down_close.svg) 0 bottom no-repeat;
	cursor: pointer;
}
.excel a {
	color: #111;
}
.excel input {
	border-color: #f79256 !important;
}


.detail-edit-btn.open .excel {
	display: block;
	z-index: 2;
}
.detail-edit-btn.open {
	animation-duration: 0.2s;
	-webkit-animation-duration: 0.2s;
	-moz-animation-duration: 0.2s;
}
.excel-error {
	background: #e66060;
	padding: 20px;
	margin-top: 10px;
}
.excel-error .list-nml {
	margin-top: 20px;
}

/*-----------------------------------------------------
	news
-----------------------------------------------------*/
ul.news {
	text-align: left;
	width: 100%;
	margin: 0 auto;
	border-top: 2px solid #333;
	border-bottom: 2px solid #333;
}
ul.news li {
	border-bottom: 1px solid #dcdcdc;
	padding: 45px 0;
	clear: both;
	zoom: 1;
}
ul.news li:after {
	content: "";
	display: block;
	clear: both;
}
ul.news li:last-child {
	border-bottom: none;
}
ul.news li .news-date {
	width: 150px;
	float: left;
	line-height: 28px;
}
ul.news li .news-cont {
	width: calc(100% - 150px);
	float: left;
}
ul.news li h2 {
	font-size: 16px;
	line-height: 28px;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: left;
}
ul.news li p {
	margin-bottom: 10px;
	color: #666;
}
ul.news li p:last-child {
	margin-bottom: 0;
}

/*-----------------------------------------------------
	reading
-----------------------------------------------------*/
.reading {
	width: 75%;
	margin: 0 auto;
}
.reading p {
	margin: 15px 0;
}
.reading p:first-child {
	margin-top: 0;
}

/*-----------------------------------------------------
	album thumnail
-----------------------------------------------------*/
.album-thum-box {
	position: relative;
	margin-bottom: 30px;
	zoom: 1;
}
.album-thum-box:after {
	content: "";
	display: block;
	clear: both;
}
.album-thum-box:last-child {
	margin-bottom: 0;
}
.album-thum {
	width: calc(33% - 17px);
	display: block;
	box-sizing: border-box;
	margin-right: 30px;
	float: left;
	position: relative;
	color: #333;
}
a.album-thum {
	color: #333;
	text-decoration: none;
}
.album-thum:last-child {
	margin-right: 0;
}
a.album-thum .jacket:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(0,0,0,0);
	left: 0;
	top: 0;
	transition-duration: .3s;
}
a.album-thum:hover .jacket:after {
	background: rgba(0,0,0,0.4);
}
.album-thum-title {
	padding-right: 80px;
	border-top: 2px solid #333;
	padding-top: 45px;
}
.album-thum-title h2 {
	text-align: left;
	color: #f79256;
	margin-bottom: 10px;
}
.album-thum .jacket img {
	width: 100%;
}
.album-thum .text {
	background: #f0f0f0;
	border: 1px solid #ececec;
	border-top: none;
	padding: 30px;
}
.album-thum .title {
	font-size: 14px;
	font-weight: bold;
}

.btnbox {
	font-size: 0;
}
.btn {
	font-size: 10px;
	width: 50px;
	height: 50px;
	display: inline-block;
	margin-right: 20px;
	cursor: pointer;
}
.btn-on {
	box-shadow: 0 0 0 5px #ccc;
}
.btn-black {
	background: #333;
}
.btn-orange {
	background: #ed8e55;
}
.btn-gray {
	background: #d9d9d9;
}

.player_preview {
	padding: 30px;
	background: #f5f5f5;
	position: relative;
}

.ref-store-link {
	zoom : 1;
	position: relative;
	margin-top: 10px;
}
.ref-store-link:after {
	content: "";
	display: block;
	clear: both;
}
.ref-store-link-l {
	width: calc(50% - 15px);
	float: left;
}
.ref-store-link-r {
	width: calc(50% - 15px);
	float: right;
}

.song-play {
	font-size: 0;
}
.song-play-btn {
	font-size: 24px;
	line-height: 45px;
	height: 45px;
	width: 45px;
	display: inline-block;
	box-sizing: border-box;
	border: 1px solid #dcdcdc;
	background: #f9f9f9;
	text-align: center;
	overflow: hidden;
	vertical-align: top;
}
.song-play-time {
	display: inline-block;
	line-height: 45px;
	margin-left: 10px;
	font-size: 12px;
	vertical-align: top;
}
.song-play-note {
	display: inline-block;
	line-height: 45px;
	margin-left: 10px;
	font-size: 11px;
	vertical-align: top;
}

.add-album-table {
	background: #f5f5f5;
	border: 1px solid #ededed;
	margin-top: 30px;
}
.add-album-th {
	background: #e8e8e8;
	padding: 10px 0;
	zoom: 1;
}
.add-album-tr {
	display: flex;
	border-top: 1px solid #dcdcdc;
	padding: 10px 0;
	zoom: 1;
}
.add-album-th:after,
.add-album-tr:after {
	content: "";
	display: block;
	clear: both;
}
.add-album-table .td-album {
	float: left;
	box-sizing: border-box;
	padding: 10px 15px;
	border-right: 1px solid #dcdcdc;
}
.add-album-table .td-album.file {
	padding: 0 15px;
}
.add-album-table .td-album:last-child {
	border-right: none;
}
.add-album-table .td-album-no {
	width: 60px;
}
.add-album-table .td-album-song {
	width: calc(100% - 60px - 300px - 180px);
}
.add-album-table .td-album-artist {
	width: 300px;
}
.add-album-table .td-album-edit {
	width: 180px;
}
.add-album-table .td-album-edit a {
	margin-right: 10px;
}
.add-album-table .td-album-non {
	text-align: center;
	padding: 20px;
}

.add-album-table .td-album-song2 {
	width: calc(100% - 60px - 200px - 400px);
}
.add-album-table .td-album-artist2 {
	width: 200px;
}
.add-album-table .td-album-file {
	width: 400px;
}


.sns {
	font-size: 0;
	line-height: 1;
	display: block;
	vertical-align: top;
	margin-top: 20px;
}
.sns .snsbtn {
	display: inline-block;
	line-height: 1;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	font-size: 14px;
	margin: 0 10px;
}

.badge_free {
	position: absolute;
	display: block;
	top: -110px;
	right: -140px;
	width: 172px;
	height: 172px;
	/*background:url(../images/badge_free-01.svg) center no-repeat;*/
	background:url(../images/badge_free_annual_fee-01.svg) center no-repeat;
	background-size: 100% auto;
	/*cursor: pointer;*/
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
}

.badge_campaign_itunes {
    position: absolute;
    display: block;
    top: -110px;
    right: -140px;
    width: 200px;
    height: 200px;
    background:url(../images/badge_campaign_itunes.svg) center no-repeat;
    background-size: 100% auto;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
}

.badge_campaign_20off {
    position: absolute;
    display: block;
    top: -110px;
    right: -140px;
    width: 200px;
    height: 200px;
    background:url(../images/badge_campaign_20off.svg) center no-repeat;
    background-size: 100% auto;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
}

.badge_sonoca {
    position: absolute;
    display: block;
    top: -110px;
    right: -140px;
    width: 200px;
    height: 200px;
    background:url(../images/badge_sonoca.svg) center no-repeat;
    background-size: 100% auto;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
}

.badge_campaign_single {
    background:url(../images/badge_campaign_single.svg) center no-repeat;
}



/*--------------------simulator--------------------*/
.simulator-wrap {
	margin-top: 30px;
	text-align: center;
}
.simulator {
	box-sizing: border-box;
	background: #ededed;
	margin-top: 30px;
	overflow: hidden;
	text-align: left;
	height: 0;
	padding: 0 61px;
	transition-duration:.3s;
}
.simulator-on .simulator {
	height: auto;
	padding: 30px 60px;
	border: 1px solid #dcdcdc;
}
.simulator-cal {
	position: relative;
	zoom: 1;
}
.simulator-cal:after {
	content: "";
	display: block;
	clear: both;
}
.simulator-plan {
	float: left;
	width: calc(100% - 300px - 30px - 30px);
	margin-right: 30px;
}
.simulator-num {
	float: left;
	width: 150px;
	margin-right: 30px;
}
.simulator-jan {
	float: left;
	width: 150px;
}

.simulator-result {
	margin-top: 30px;
	text-align: right;
	font-size: 28px;
}
.simulator-result > div {
	display: inline-block;
	border-bottom: 2px solid #111;
}


.btn-simulator {

}
.btn-simulator:after {
	position:absolute;
	display:block;
	content: "";
	top: 50%;
	right: 20px;
	margin-top: -8px;
	width:15px;
	height: 15px;
	background:url(../images/icon_down_close.svg) 0 0 no-repeat;

}
.simulator-on .btn-simulator:after {
	-webkit-animation: icon_close 0.3s steps(8,end) 1;/*実際のコマ数-1, end*/
	-webkit-animation-fill-mode:forwards;
	-moz-animation: icon_close 0.3s steps(8,end) 1;/*実際のコマ数-1, end*/
	-moz-animation-fill-mode: forwards;
}
.simulator-off .btn-simulator:after {
	-webkit-animation: icon_open 0.3s steps(8,end) 1;
	-webkit-animation-fill-mode:forwards;
	-moz-animation: icon_open 0.3s steps(8,end) 1;
	-moz-animation-fill-mode: forwards;
}
.simulator-default .btn-simulator:after {
	-webkit-animation: none;
	-moz-animation: none;
}

/*--------------------path--------------------*/
.path {
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
}

/*--------------------20th--------------------*/
.cfm-20th {
	margin-top: 45px;
	text-align: center;
}
.cfm-20th img {
	width: 100px;
}

.sonoca {
	padding: 50px 350px 50px 5%;
	background: url(../images/sonoca_bg.png) no-repeat bottom right;
}

.sect-sonoca {
	margin-top: 50px;
	padding: 50px 350px 50px 5%;
	border: #333 solid 1px;
	background: #fff url(../images/sonoca_bg.png) no-repeat bottom right;
}

/*--------------------配信サービスの選択--------------------*/
.select-store {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 25px ;
}

.select-store-item {
    background: #fff;
    border: 1px solid #dcdcdc;
    width: calc((100% - 45px)/ 4);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
    position: relative;
    padding: 25px 25px ;
    cursor: pointer ;
}

.select-store-item:hover {
    border: 1px solid #000 ;
}

.select-store-item.toggle-on {
    border: 5px solid #f79256 ;
    padding: 21px 21px ;
}

.select-store-item img {
    width: 100% ;
    height: auto ;
}

.select-store-item-dummy {
    padding: 0 ;
    border: 0 ;
    background: none ;
    height: 0 ;
}

.select-store-item-dummy:hover {
    border: none ;
}


/*--------------------リスト7段階--------------------*/
ul.step li {
    width: calc(100% / 7) ;
}
ul.step li:last-child {
    width: calc(100% / 7) ;
}



/*--------------------配信アルバム 配信先一覧--------------------*/
.detail-sect .detail-header-store {
    float: none ;
    width: auto ;
    padding-right: 0 ;
}

.detail-sect .detail-header-store h2 {
    text-align: center ;
}

.album-store-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 25px ;
}

.album-store-item {
    background: #fff;
    border: 1px solid #dcdcdc;
    width: calc((100% - 45px)/ 4);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
    position: relative;
    padding: 25px 25px ;
}

.album-store-item img {
    width: 100% ;
    height: auto ;
}

.album-store-item-dummy {
    padding: 0 ;
    border: 0 ;
    background: none ;
    height: 0 ;
}

.album-store-add .form-btn {
    margin-bottom: 60px ;
}




/* album-link */
.album-link .detail-sect .detail-header{
	float: none;
	width: auto;
}
.album-link .detail-sect .detail-info{
	float: none;
	width: auto;
}



/* service */
.service_list li{
	margin-top: 100px;
}
.service_list li > p{
	text-align: center;
	padding: 0 100px;
}
.service_list h2{
	margin-bottom: 30px;
}
.service_table{
	margin-top: 30px;
}
.service_img{
	width: 50%;
}


/*-----------------------------------------------------
	analytics
-----------------------------------------------------*/
.analytics_select_wrap{
	text-align: center;
}
.analytics_select{
	display: inline-block;
	border: 1px solid #f79256;
	background: #f0f0f0;
	padding: 20px;
	margin: 0 auto;
}
.analytics_select .select_term_wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.analytics_select .select_label{
	font-size: 14px;
	line-height: 1.4;
	font-weight: bold;
}
.analytics_select .box-form{
	margin: 0;
}
.analytics_select .box-form #period{
	max-width: 130px;
}
.select_term_box,
.select_term_box_detail{
	display: flex;
	position: relative;
}
.select_term_box_detail .box-form.box-form-half{
	width: auto;
	margin: 0;
	margin-right: 40px;
}
.select_term_box_detail .box-form.box-form-half:last-child{
	margin-right: 0;
}
.select_term_box_detail::before{
	content: "～";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.analytics_chart{
	max-width: 800px;
	margin: 0 auto;
}
.analytics_chart_box{
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid #e3e3e3;
}
.analytics_chart_box:first-child{
	margin-top: 100px;
	padding-top: 0;
	border-top: 0;
}

.analytics_chart h2{
	margin-bottom: 40px;
}
.analytics_chart h3{
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 15px;
	margin-top: 60px;
	font-weight: bold;
}
.analytics_chart h2 + h3{
	margin-top: 0;
}

.analytics_chart table{
	width: 100%;
	margin: 0 auto;
	border: 1px solid #333;
	table-layout: fixed;
	border-collapse: separate;
	line-height: 1.4;
}
.analytics_chart table tr td{
	padding: 10px;
	border-right: 1px solid #333;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	overflow-wrap : break-word;
	text-align: right;
}
.analytics_chart table tr td:first-child{
	width: 60%;
	text-align: left;
}
.analytics_chart table tr td:last-child{
	border-right: 0;
}
.analytics_chart table tr:last-child td{
	border-bottom: 0;
}
.analytics_chart table .heading td{
	text-align: center !important;
	border-bottom: 1px solid #333;
	background: #efefef;
}



.icon-feat img {
	width: 108px;
}











