@charset "UTF-8";

/* ================================================ */

html,
body {
	height: 100%;
}
#wrapper {
	position: relative;
	min-height: 100%;
}

/* ヘッダーの起動ボタン非表示 */
#head-area #launch-button {
	display: none !important;
}

#alert {
	margin: 0 auto;
	width: 90%;
	max-width: 960px;
	min-width: 560px;
}
#alert .message {
	margin: 16px;
	padding: 24px;
	background-color: #ffc;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 0 6px rgba(0,0,0,.8);
}
#alert .message:before {
	content: "\e605";
	display: block;
	float: left;
	font-family: 'bindcloud';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 3.6em;
	color: #d66;
}
#alert .message p {
	margin-left: 4.6em;
}
#alert .message a {
	text-decoration: underline;
}


/* ================================================ */

#dashboard {
	margin: 0 auto;
	width: 960px;
}
#dashboard .section {
	overflow: auto;
	margin: 16px;
	padding: 24px;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 0 6px rgba(0,0,0,.8);
	background-color: #fff;
	-webkit-font-smoothing: subpixel-antialiased;
}
#dashboard .section h2 {
	margin: -24px -24px 24px;
	padding: 8px 24px;
	background: #111;
	background: -webkit-linear-gradient(#222 0%,#111 100%);
	background: linear-gradient(#222 0%,#111 100%);
	border-bottom: 1px solid #000;
	text-shadow: 1px 1px rgba(0,0,0,.6);
	color: #fff;
}
#dashboard .section h2:before {
	content: "\e613";
	font-family: 'bindcloud';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	padding-right: 6px;
	font-size: 1.333em;
	vertical-align: -.15em;
	color: #e0e0e0;
}
#dashboard #campaign h2 {
	background: #007864;
	background: -webkit-linear-gradient(#007864 0%,#006B57 100%);
	background: linear-gradient(#007864 0%,#006B57 100%);
	border-bottom: 1px solid #005E4A;
	text-shadow: 1px 1px rgba(0,0,0,.2);
}
#dashboard #campaign h2:before {
	content: "\e60c";
}
#dashboard #course h2:before {
	content: "\e603";
}
#dashboard #infoDS h2:before {
	content: "\e604";
}
#dashboard #infoServer h2:before {
	content: "\e605";
}
#dashboard #mailmag h2:before {
	content: "\e607";
}
.section .btnBox {
	text-align: right;
}
.section .note {
	margin-top: 2em;
	font-size: .917em;
	color: #666;
}

noscript p {
	margin: 16px;
	padding: 24px;
	border-radius: 4px;
	box-shadow: 0 0 6px rgba(0,0,0,.8);
	background-color: #fff;
	font-size: 1.167em;
	font-weight: bold;
	color: #c00;
	text-align: center;
}

/* ================================================ */

a[class^=button],
input[class^=button],
button {
	position: relative;
	display: inline-block;
	margin: 4px 4px 4px 0;
	padding: 3px 10px;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 1px rgba(0,0,0,.5);
	line-height: 16px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	text-shadow: 0 -1px rgba(0,0,0,.2);
	text-align: center;
	vertical-align: bottom;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color .4s ease-out, padding .2s linear;

	/* IE8 */
	border-right: 1px solid #005E4A;
	border-bottom: 1px solid #005E4A;
	background: #2DAA96;

	/* modern */
	border: 1px solid rgba(255,255,255,.3);
	background: -webkit-linear-gradient(rgba(45,170,150,0) 0%,rgba(20,145,125,1) 100%);
	background: linear-gradient(rgba(45,170,150,0) 0%,rgba(20,145,125,1) 100%);
	background-color: rgba(45,170,150,1);
}
a[class^=button]:hover, a[class^=button]:focus, a[class^=button]:active,
input[class^=button]:hover, input[class^=button]:focus, input[class^=button]:active,
button:hover, button:focus, button:active {
	top: 1px;
	box-shadow: none;
	text-decoration: none;
	text-shadow: none;

	/* IE8 */
	border: 1px solid #005E4A;
	border-right: none;
	border-bottom: none;
	background: #14917D;

	/* modern */
	border: 1px solid rgba(255,255,255,.3);
	background: rgba(0,119,99,1);
}
a[class^=button]:before,
input[class^=button]:before,
button:before {
	/* icon */
	content: "\e611";
	font-family: 'bindcloud';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	padding-right: 4px;
	font-size: .8em;
}
a[class^=button].disabled,
input[class^=button][disabled],
button[disabled] {
	border: none !important;
	background: #bbb !important;
	box-shadow: none !important;
	text-shadow: none !important;
	color: #f0f0f0;
	cursor: default;
	top: 0 !important;
}
a.buttonM,
input.buttonM,
button.buttonM {
	padding: 7px 16px;
}
a.buttonM:before,
input.buttonM:before,
button.buttonM:before {
	font-size: 1.2em;
	vertical-align: -.1em;
}
a.buttonL,
input.buttonL,
button.buttonL {
	padding: 12px 24px;
}
a.buttonL:before,
input.buttonL:before,
button.buttonL:before {
	font-size: 1.2em;
	vertical-align: -.1em;
}
a.buttonLL,
input.buttonLL,
button.buttonLL {
	padding: 24px;
	width: 9em;
	font-size: 1.167em;
}
a.buttonLL:before,
input.buttonLL:before,
button.buttonLL:before {
	display: block;
	margin-bottom: 8px;
	font-size: 3em;
}

/* cloud起動 */
a.btnLaunch:before {
	content: "\e600";
}

/* 青：WebLiFE設定 */
a.btnSetting {
	/* IE8 */
	border-right: 1px solid #004b7b;
	border-bottom: 1px solid #004b7b;
	background: #3597c7;

	/* modern */
	border: 1px solid rgba(255,255,255,.3);
	background: -webkit-linear-gradient(rgba(53,151,199,0) 0%,rgba(28,126,174,1) 100%);
	background: linear-gradient(rgba(53,151,199,0) 0%,rgba(28,126,174,1) 100%);
	background-color: rgba(53,151,199,1);
}
a.btnSetting:hover,
a.btnSetting:focus,
a.btnSetting:active {
	/* IE8 */
	border: 1px solid #004b7b;
	border-right: none;
	border-bottom: none;
	background: #1c7eAe;

	/* modern */
	border: 1px solid rgba(255,255,255,.3);
	background: rgba(2,100,148,1);
}
a.btnSetting:before {
	content: "\e601";
}

/* 赤：アップグレード・再契約 */
a.btnResign,
a.btnUpgrade {
	/* IE8 */
	border-right: 1px solid #810000;
	border-bottom: 1px solid #810000;
	background: #cd4533;

	/* modern */
	border: 1px solid rgba(255,255,255,.3);
	background: -webkit-linear-gradient(rgba(205,69,51,0) 0%,rgba(180,44,26,1) 100%);
	background: linear-gradient(rgba(205,69,51,0) 0%,rgba(180,44,26,1) 100%);
	background-color: rgba(205,69,51,1);
}
a.btnResign:hover, a.btnResign:focus, a.btnResign:active,
a.btnUpgrade:hover, a.btnUpgrade:focus, a.btnUpgrade:active {
	/* IE8 */
	border: 1px solid #810000;
	border-right: none;
	border-bottom: none;
	background: #b42c1a;

	/* modern */
	border: 1px solid rgba(255,255,255,.3);
	background: rgba(154,18,0,1);
}
a.btnUpgrade {
	margin-top: 4px;
}

/* 橙：新規契約 */
a.btnAdd {
	/* IE8
	border-right: 1px solid #B34400;
	border-bottom: 1px solid #B34400;
	background: #FF9000; */

	/* modern
	border: 1px solid rgba(255,255,255,.3);
	background: -webkit-linear-gradient(rgba(255,144,0,0) 0%,rgba(230,119,0,1) 100%);
	background: linear-gradient(rgba(255,144,0,0) 0%,rgba(230,119,0,1) 100%);
	background-color: rgba(255,144,0,1); */
}
a.btnAdd:hover, a.btnAdd:focus, a.btnAdd:active {
	/* IE8
	border: 1px solid #B34400;
	border-right: none;
	background: #E67700;
	border-bottom: none; */

	/* modern
	border: 1px solid rgba(255,255,255,.3);
	background: rgba(182,100,0,1); */
}

a.btnCampaign:before,
a.btnUpgrade:before {
	content: "\e602";
}
a.btnResign:before {
	content: "\e609";
}
a.btnAdd:before {
	content: "\e60e";
}
a.buttonS.btnUpgrade:before ,
a.buttonS.btnResign:before,
/*a.buttonS.btnAdd:before*/ {
	font-size: 1.2em;
	vertical-align: -.2em;
}


/* ================================================ */
/* キャンペーン */

.campaignInfo {
	border-collapse: collapse;
	width: 100%;
}
.campaignInfo .outline {
	padding: 0 16px;
	vertical-align: top;
}
.campaignInfo .outline h3 {
	font-weight: bold;
}
.campaignInfo .outline a {
	text-decoration: underline;
}
.campaignInfo .link {
	vertical-align: bottom;
}
.campaignInfo span.tag {
	display: inline-block;
	margin-top: 3px;
	margin-right: 1em;
	padding: 1px 1em 0;
	border-radius: 1px;
	background: #222;
	line-height: 15px;
	font-size: 11px;
	color: #fff;
	white-space: nowrap;
	text-align: center;
}
.campaignInfo .btnUpgrade {
	padding-left: 2.6em;
	text-align: left;
}
.campaignInfo .btnUpgrade:before {
	display: block;
	position: absolute;
	top: 50%;
	left: .8em;
	margin-top: -.5em;
	vertical-align: bottom;
}


/* ================================================ */
/* 利用コース */

#course {
	padding: 0 0 24px;
}
#course h2 {
	margin: 0;
}

.courseList {
	table-layout: auto;
	border-collapse: collapse;
	width: 100%;
}
.courseList tr {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.courseList tr:nth-child(even) {
	background-color: #f0f0f0;
}
.courseList .status,
.courseList .controls {
	padding: 16px 0 16px 16px;
}

/* コース情報 */
.courseList .status {
	vertical-align: top;
}
.courseList h3 {
	margin-bottom: 8px;
	border-bottom: 1px solid #999;
	font-size: 1.333em;
	font-weight: bold;
}
.courseList h3:before,
.courseList h3:after {
	content: "";
	display: table;
}
.courseList h3:after {
	clear: both;
}
.courseList [class^=tag-] {
	float: right;
	display: block;
	margin: 4px 2px;
	padding: 1px .5em 0;
	border-radius: 1px;
	background-color: #666;
	line-height: 15px;
	font-size: 11px;
	font-weight: normal;
	color: #fff;
}
.courseList .tag-wls {
	background-color: #34578a;
}
.courseList .tag-canceled {}
.courseList .status li {
	vertical-align: middle;
}
.courseList .status li:before {
	content: "";
	display: inline-block;
	margin-right: .4em;
	width: 5px;
	height: 2px;
	border-top: 2px solid #999;
	vertical-align: middle;
}
.courseList .status .liTit {
	display: inline-block;
	width: 10em;
	color: #777;
}

/* 各ボタン */
.courseList .controls {
	padding-left: 0;
	vertical-align: middle;
	text-align: right;
	white-space: nowrap;
}
.courseList .controls a {
}
.courseList .controls a:hover,
.courseList .controls a:focus {
	text-shadow: 0 0 2px rgba(255,255,255,.3);
}
.courseList .controls a:active {
	text-shadow: 0 1px rgba(0,0,0,.3);
}

/* 解約済 */
.courseList tr.disabled {
	color: #777;
}
.courseList tr.disabled h3 {
	border-bottom-color: #bbb;
	color: #888;
}

#course .btnBox {
	padding-top: 16px;
}

/* グループ参加コース表示 */
.courseTitle {
	display: inline-block;
	padding: 2px 8px 0;
	border-radius: 2px 2px 0 0;
	background-color: #444;
	color: #fff;
}
.courseTitle:nth-of-type(n+2) {
	margin-top: 24px;
}
.courseTitle + .courseList tr:first-child {
	border-top-color: #444;
}
.courseList .ownerCaption {
	display: inline-block;
	margin-bottom: 4px;
	padding: 2px .5em 0;
	border-radius: 1px;
	border: 1px solid #b42c1a;
	color: #b42c1a;
	font-size: inherit;
	line-height: 1.4;
}

/* ================================================ */

input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
	box-sizing: border-box;
	margin: 4px auto;
	padding: .5em;
	width: 100%;
	background-color: #f0f0f0;
	border: 1px solid #aaa;
	box-shadow: 0 0 2px rgba(0,0,0,.2) inset;
	font-size: 14px;
	text-align: left;
	transition: background-color .3s linear, height .3s linear;
}
input[type=text][disabled],
input[type=email][disabled],
input[type=url][disabled],
input[type=password][disabled],
textarea[disabled] {
	background: #dddddd;
	border-color: #dddddd;
	box-shadow: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:not([readonly]):focus {
	background-color: #cbfff6;
	box-shadow: none;
}
textarea {
	height: 12em;
}
textarea[readonly] {
	background-color: #fff;
	font-size: inherit;
}
textarea[readonly]:focus {
}

/* ================================================ */
/* お知らせ */

.infoList th,
.infoList td {
	vertical-align: top;
	padding: 0 .5em;
}
.infoList tr :first-child {
	padding-left: 0;
}
.infoList tr :last-child {
	padding-right: 0;
}
.infoList a {
	display: inline-block;
	color: inherit;
}
.infoList span[class^=tag-] {
	display: block;
	margin-top: 3px;
	padding-top: 1px;
	width: 6.5em;
	border-radius: 1px;
	background: #2DAA96;
	line-height: 15px;
	font-size: 11px;
	color: #fff;
	white-space: nowrap;
	text-align: center;
}
.infoList span.tag-new {
	background-color: #40a140;
}
.infoList span.tag-campaign {
	background-color: #e7a628;
}
.infoList span.tag-release {
	background-color: #3597c7;
}
.infoList td.date {
	color: #777;
}

/* ================================================ */
/* メルマガ設定 */

#mailmag form > p {
	display: inline-block;
	margin-right: 2em;
}
#mailmag form > p:last-child {
	margin-right: 0;
}
.mailmagList {
	width: 100%;
}
.mailmagList th,
.mailmagList td {
	padding: 1em 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.mailmagList td {
	text-align: right;
}
.dsmailStatus {
	display: inline-block;
	margin-left: .5em;
	width: 8em;
	text-align: left;
}

/*
 * Main stylesheet for Switchery.
 * http://abpetkov.github.io/switchery/
 */
.switchery {
	position: relative;
	display: inline-block;
	box-sizing: content-box;
	width: 40px;
	height: 16px;
	border: 1px solid rgba(0,0,0,.2) !important;
	border-radius: 16px;
	background-color: #fff;
	box-shadow: 0 0 1px rgba(0,0,0,.4) inset !important;
	cursor: pointer;
	vertical-align: middle;
}
.switchery > small {
	position: absolute;
	top: 0;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	background: #fff;
	box-shadow: 0 0 3px rgba(0,0,0,.4);
}

/* ================================================ */
/* ログイン */

.loginBox {
	padding: 80px 16px 0;
}
.loginBox .section {
	overflow: auto;
	margin: 0 auto;
	padding: 40px;
	max-width: 540px;
	border-radius: 4px;
	box-sizing: border-box;
	box-shadow: 0 0 6px rgba(0,0,0,.8);
	background-color: #fff;
	-webkit-font-smoothing: subpixel-antialiased;
}
.loginBox .section h1 {
	overflow: hidden;
	text-indent: -4000px;
	margin: 0 auto 30px;
	width: 242px;
	height: 62px;
}
.loginBox .section p {
	position: relative;
	margin: 20px auto;
}
.loginBox .section p:last-child {
	margin-bottom: 0;
}
.loginBox .section label {
	display: block;
}
.loginBox .section .btnBox {
	text-align: center;
}
.loginBox .section .errorMsg {
	color: #c00;
}

.btnLogin {
	margin: 0;
	box-sizing: border-box;
	width: 100%;
	font-size: 14px;
}
.btnLogin:before {
	content: "\e615";
	font-size: 14px;
}

a.lnkBack:before {
	/* icon */
	content: "\e614";
	font-family: 'bindcloud';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	padding-right: 2px;
	font-size: .8em;
}

#entryLogin.loginBox {
	padding-top: 100px;
}
#wls {
	position: absolute;
	left: 16px;
	top: 12px;
}
#wls a[class^=button]:before {
	content: "\e610";
}

.confirmTable {
	width: 100%;
}
.confirmTable th,
.confirmTable td {
	padding: 8px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	text-align: left;
}
.confirmTable th {
	background-color: #f0f0f0;
}

/* ================================================ */
/* 新規登録 */

#entryRegist .section {
	overflow: visible;
}
#entryRegist .inputBox {
	clear: both;
	position: relative;
	margin: 0 auto;
	padding-top: 16px;
}
#entryRegist .inputBox p {
	margin: 0;
}
#entryRegist .btnBox {
	padding-top: 4px;
}
#entryRegist #entryName1 {
	display: block;
	float: left;
	width: 49%;
}
#entryRegist #entryName2 {
	display: block;
	float: right;
	width: 49%;
}
#entryRegist #siteCode {
	width: 60%;
}
#entryRegist .hints {
	position: absolute;
	top: 0;
	right: -206px;
	margin-top: 2px;
	display: none;
	padding: 1em;
	width: 200px;
	box-sizing: border-box;
	border-radius: 4px;
	background-color: #222;
	background-color: rgba(0,0,0,.8);
	color: #fff;
}
#entryRegist .hints:after {
	content: "";
	position: absolute;
	top: 5px;
	left: -4px;
	display: block;
	width: 0;
	height: 0;
	border-right: 4px solid #222;
	border-right-color: rgba(0,0,0,.8);
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
#entryRegist input.error {
	background-color: #fdd;
}
#entryRegist .errorMsg {
	clear: both;
}

/* グループ登録 */
#entryRegist .inputBox .invitedEmail {
	box-sizing: border-box;
	margin: 4px auto;
	padding: .5em;
	width: 100%;
	border: 1px solid #ccc;
	font-size: 14px;
	line-height: normal;
}

.course_status{
	background: #D22A19;
	box-shadow: #000;
	color: rgb(245, 245, 245);
	font-size: 10px;
	display: inline-block;
	margin: 4px 4px 4px 10px;
	padding: 3px 10px;
	border-radius: 6px;
	line-height: 16px;
	font-weight: bold;
	text-align: center;
	vertical-align: bottom;
}
