@charset "utf-8";

/* ==========================================================================
     Default
   ========================================================================== */

/* --------------------------------------------------------------------------
     Memo
   -------------------------------------------------------------------------- */

/*

【カラー】

テキスト         :#333
グレーテキスト   :#999

リンク           :#3157a5
リンク(hover)    :#5080d6

罫線             :#ccc
グレー背景       :#f5f5f5
サイドメニュー   :#f9f9f9

FC2 Red          :#ef5763
                  ※ 新規登録ボタンやナビ系のアクセントカラーのみに使用します。

新規登録系       :#ff681d
                  ※ 新規登録ボタンの色。今後赤に統一されるかも・・・？

メインカラー     :#45962f
                  ※ ちょっとした強調などによく使う

*/

/*

【クラス名名規則】

BEMの概念を基本に、もう少し簡略化して命名。

*/


/* --------------------------------------------------------------------------
     Text
   -------------------------------------------------------------------------- */

/* Default */

body {
	color: #333;
	font-family: "Lucida Grande", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 1.4;
}



/* link */

a,
a:link,
a:visited{
	color: #3157a5;
	text-decoration: none;
}

a:hover,
a:active {
	color: #5080d6;
	text-decoration: underline;
}



/* icon */

.icon {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	position: relative;
	top: 4px;
	width: 18px;
	height: 18px;
	background: url("../img/textad_icon.png") 0 0 no-repeat transparent;
}

.icon-info      {background-position: 0 0;}
.icon-menu      {background-position: -20px 0;}
.icon-cursor    {background-position: -40px 0;}

.icon-arrow-r    {background-position: 0 -20px; width: 10px;}
.icon-arrow-l    {background-position: -10px -20px; width: 10px;}
.icon-arrow-d    {background-position: -20px -20px;}
.icon-arrow-u    {background-position: -38px -20px;}




/* --------------------------------------------------------------------------
     Form
   -------------------------------------------------------------------------- */

/* default */

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
	padding: 5px 8px;
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}

select[disabled],
textarea[disabled],
input[disabled] {
	color: #999;
	background: #f0f0f0;
}



/* focus */

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
    outline: 0;
	border: 1px solid #7ba0db;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(123,160,219,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(123,160,219,0.5);
	-o-box-shadow: 0px 0px 5px 0px rgba(123,160,219,0.5);
	-ms-box-shadow: 0px 0px 5px 0px rgba(123,160,219,0.5);
	box-shadow: 0px 0px 5px 0px rgba(123,160,219,0.5);
}





/* --------------------------------------------------------------------------
     Button
   -------------------------------------------------------------------------- */

/* btn */

a.btn {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	color: #333;
}
a.btn:hover,
a.btn:active {
	text-decoration: none;
}


.btn {
	padding: 10px 15px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #ccc;
	background: #efefef;

	color: #333;
	text-align: center;
}



/* btn-default */

a.btn-default,
a.btn-login {
	color: #333;
}
.btn-default,
.btn-login {
	color: #333;
	border: 1px solid #ccc;
	background: #efefef;
	background: -moz-linear-gradient(top,  #ffffff 0%, #ececec 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ececec));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#ececec 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#ececec 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#ececec 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#ececec 100%);
}
.btn-default:hover,
.btn-default:active,
.btn-login:hover,
.btn-login:active {
	background: #e9e9e9;
	background: -moz-linear-gradient(top,  #ececec 0%, #dadada 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ececec), color-stop(100%,#dadada));
	background: -webkit-linear-gradient(top,  #ececec 0%,#dadada 100%);
	background: -o-linear-gradient(top,  #ececec 0%,#dadada 100%);
	background: -ms-linear-gradient(top,  #ececec 0%,#dadada 100%);
	background: linear-gradient(to bottom,  #ececec 0%,#dadada 100%);
}



/* btn-primary */

a.btn-primary {
	color: #fff;
}
.btn-primary {
	color: #fff;
	border: 1px solid #3f7f2d;
	background: #45962f;
	background: -moz-linear-gradient(top,  #489e31 0%, #41912c 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#489e31), color-stop(100%,#41912c));
	background: -webkit-linear-gradient(top,  #489e31 0%,#41912c 100%);
	background: -o-linear-gradient(top,  #489e31 0%,#41912c 100%);
	background: -ms-linear-gradient(top,  #489e31 0%,#41912c 100%);
	background: linear-gradient(to bottom,  #489e31 0%,#41912c 100%);
}
.btn-primary:hover,
.btn-primary:active {
	background: #398525;
	background: -moz-linear-gradient(top,  #33871c 0%, #287314 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#33871c), color-stop(100%,#287314));
	background: -webkit-linear-gradient(top,  #33871c 0%,#287314 100%);
	background: -o-linear-gradient(top,  #33871c 0%,#287314 100%);
	background: -ms-linear-gradient(top,  #33871c 0%,#287314 100%);
	background: linear-gradient(to bottom,  #33871c 0%,#287314 100%);
}



/* btn-danger */

a.btn-danger,
a.btn-signupfc2 {
	color: #fff;
}
.btn-danger,
.btn-signupfc2 {
	color: #fff;
	border: 1px solid #d63e49;
	background: #ef5763;
	background: -moz-linear-gradient(top,  #ef5763 0%, #e34954 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ef5763), color-stop(100%,#e34954));
	background: -webkit-linear-gradient(top,  #ef5763 0%,#e34954 100%);
	background: -o-linear-gradient(top,  #ef5763 0%,#e34954 100%);
	background: -ms-linear-gradient(top,  #ef5763 0%,#e34954 100%);
	background: linear-gradient(to bottom,  #ef5763 0%,#e34954 100%);
}
.btn-danger:hover,
.btn-danger:active,
.btn-signupfc2:hover,
.btn-signupfc2:active {
	background: #dd4551;
	background: -moz-linear-gradient(top,  #d9424c 0%, #c9343e 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d9424c), color-stop(100%,#c9343e));
	background: -webkit-linear-gradient(top,  #d9424c 0%,#c9343e 100%);
	background: -o-linear-gradient(top,  #d9424c 0%,#c9343e 100%);
	background: -ms-linear-gradient(top,  #d9424c 0%,#c9343e 100%);
	background: linear-gradient(to bottom,  #d9424c 0%,#c9343e 100%);
}



/* btn-signup */

a.btn-signup {
	color: #fff;
}
.btn-signup {
	color: #fff;
	border: 1px solid #ef7320;
	background: #ff681d;
	background: -moz-linear-gradient(top,  #ff8b3d 0%, #ff771c 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff8b3d), color-stop(100%,#ff771c));
	background: -webkit-linear-gradient(top,  #ff8b3d 0%,#ff771c 100%);
	background: -o-linear-gradient(top,  #ff8b3d 0%,#ff771c 100%);
	background: -ms-linear-gradient(top,  #ff8b3d 0%,#ff771c 100%);
	background: linear-gradient(to bottom,  #ff8b3d 0%,#ff771c 100%);
}
.btn-signup:hover,
.btn-signup:active {
	background: #ef7320;
	background: -moz-linear-gradient(top,  #ec701d 0%, #db5c05 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ec701d), color-stop(100%,#db5c05));
	background: -webkit-linear-gradient(top,  #ec701d 0%,#db5c05 100%);
	background: -o-linear-gradient(top,  #ec701d 0%,#db5c05 100%);
	background: -ms-linear-gradient(top,  #ec701d 0%,#db5c05 100%);
	background: linear-gradient(to bottom,  #ec701d 0%,#db5c05 100%);
}





/* --------------------------------------------------------------------------
     Helper
   -------------------------------------------------------------------------- */

/* clear */

.clear:before,
.clear:after {
    content:"";
    display:table;
}
.clear:after {
    clear:both;
}
.clear {
    zoom:1;
}


/* text */

.text-center {
	text-align: center;	
}

.text-right {
	text-align: right;	
}





/* ==========================================================================
     Header Footer Layout
   ========================================================================== */

/* --------------------------------------------------------------------------
     Header
   -------------------------------------------------------------------------- */

.header{
	border-bottom: 2px solid #ef5763;
}
.header_inner {
	position: relative;
	width: 960px;
	height: 70px;
	margin: 0 auto;
	background-color: #fff;
}

.header_logo {
	margin: 15px 0 0 0;
	float: left;
}


.header_admin {
	position: absolute;
	top: 15px;
	right: 9px;
}

.header_admin a {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 10px 5px;
	color: #666;
}
.header_admin a:hover,
.header_admin a:active {
	color: #666;
}





/* --------------------------------------------------------------------------
     Layout
   -------------------------------------------------------------------------- */

/* Wrap */

.wrap {
	width: 960px;
	margin: 0 auto;
	padding: 20px 0 50px;
}
.wrap:before,
.wrap:after {
    content:"";
    display:table;
}
.wrap:after {
    clear:both;
}
.wrap {
    zoom:1;
}



/* 2col */

.wrap-2col .contents {
	width: 740px;
	float: right;
}

.wrap-2col .side {
	width: 200px;
	float: left;
}



/* 1col */

.wrap-1col .contents {
	width: 100%;
}






/* ==========================================================================
     Wrap
   ========================================================================== */

/* --------------------------------------------------------------------------
     Text
   -------------------------------------------------------------------------- */

/* Hx */

.wrap h1,
.wrap h2 {
	font-size: 24px;
	margin: 15px 0;
}

.wrap h3 {
	font-size: 16px;	
	margin: 10px 0;
}

.wrap h4 {
	font-size: normal;	
	margin: 10px 0;
}

.wrap h1:first-child,
.wrap h2:first-child,
.wrap h3:first-child,
.wrap h4:first-child {
	margin-top: 0;
}


.wrap h2 i {
	top: 0px;
}


/* link */

.wrap .link-arrow-r {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 8px;
	color: #333;
	text-decoration: none;
}

.wrap .link-arrow-r .icon {
	margin-left: 3px;
}



/* p */

.wrap p{
	margin: 10px 0;
}



/* list */

.wrap .list {
	margin: 10px 0;
}

.wrap .list li {
	margin-bottom: 3px;
}

.wrap .list-disc li {
	list-style: disc;
	margin-left: 1.4em;
}

.wrap .list-num li {
	list-style: decimal;
	margin-left: 1.6em;
}



/* dl,dt,dd */

.wrap .dlist {
	margin: 10px 0;
}

.wrap .dlist dd {
	margin-bottom: 3px;
}



/* alert */

.wrap .alert{
	margin: 20px 0;
	padding: 15px;
	background: #f5f5f5;
	border: 1px solid #ccc;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}

.wrap .alert h2,
.wrap .alert h3,
.wrap .alert h4 {
	font-weight: bold;
}

.wrap .alert-primary{
	background: #c1ddb8;
	border: 1px solid #45962f;
	color: #3f7f2d;
}
.wrap .alert-primary{
	background: #c1ddb8;
	border: 1px solid #45962f;
	color: #3f7f2d;
}

.wrap .alert-primary select,
.wrap .alert-primary textarea,
.wrap .alert-primary input[type="text"],
.wrap .alert-primary input[type="password"],
.wrap .alert-primary input[type="datetime"],
.wrap .alert-primary input[type="datetime-local"],
.wrap .alert-primary input[type="date"],
.wrap .alert-primary input[type="month"],
.wrap .alert-primary input[type="time"],
.wrap .alert-primary input[type="week"],
.wrap .alert-primary input[type="number"],
.wrap .alert-primary input[type="email"],
.wrap .alert-primary input[type="url"],
.wrap .alert-primary input[type="search"],
.wrap .alert-primary input[type="tel"],
.wrap .alert-primary input[type="color"] {
	border: 1px solid #45962f;
}


/* --------------------------------------------------------------------------
     Table
   -------------------------------------------------------------------------- */

/* table */

.wrap .table {
	box-sizing: border-box;
	width: 100%;
	margin: 10px 0;
}

.wrap .table caption {
	padding: 10px 12px;
}

.wrap .table th,
.wrap .table td {
	padding: 10px 12px;
}



/* table-horizontal */

.wrap .table-horizontal th {
	border-bottom: 2px solid #ccc;
}

.wrap .table-horizontal td {
	border-bottom: 1px solid #ccc;
}



/* table-vertical */

.wrap .table-vertical th,
.wrap .table-vertical td {
	border: 1px solid #ccc;
}

.wrap .table-vertical th {
	width: 156px;
	background: #eee;
}





/* --------------------------------------------------------------------------
     Form
   -------------------------------------------------------------------------- */

/* form */

.wrap .form {
	margin: 15px 0;
}

.wrap .form_group {
	margin-bottom: 10px;
}

.wrap .form_group > label {
	display: block;
	margin: 0 0 3px;
}

.wrap .form_group input[type="file"] {
	padding: 5px 0px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}

.wrap .form_group .checkbox,
.wrap .form_group .radio {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	padding: 5px 3px;
}

.wrap .form_group .checkbox input,
.wrap .form_group .radio input {
	margin-right: 3px;
}

.wrap .form_group .checkbox label,
.wrap .form_group .radio label {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-right: 10px;
}

.wrap .form_group textarea {
	box-sizing: border-box;
	width: 100%;
}

.wrap .form_group .form_helptext {
	color: #999;
}



/* form error */

.wrap .error label {
	color: #d63e49;
}

.wrap .error select,
.wrap .error textarea,
.wrap .error input[type="text"],
.wrap .error input[type="password"],
.wrap .error input[type="datetime"],
.wrap .error input[type="datetime-local"],
.wrap .error input[type="date"],
.wrap .error input[type="month"],
.wrap .error input[type="time"],
.wrap .error input[type="week"],
.wrap .error input[type="number"],
.wrap .error input[type="email"],
.wrap .error input[type="url"],
.wrap .error input[type="search"],
.wrap .error input[type="tel"],
.wrap .error input[type="color"] {
	border: 1px solid #d63e49;
	background: #fff0f2;
}

.wrap .error select:focus,
.wrap .error textarea:focus,
.wrap .error input[type="text"]:focus,
.wrap .error input[type="password"]:focus,
.wrap .error input[type="datetime"]:focus,
.wrap .error input[type="datetime-local"]:focus,
.wrap .error input[type="date"]:focus,
.wrap .error input[type="month"]:focus,
.wrap .error input[type="time"]:focus,
.wrap .error input[type="week"]:focus,
.wrap .error input[type="number"]:focus,
.wrap .error input[type="email"]:focus,
.wrap .error input[type="url"]:focus,
.wrap .error input[type="search"]:focus,
.wrap .error input[type="tel"]:focus,
.wrap .error input[type="color"]:focus {
	-webkit-box-shadow: 0px 0px 5px 0px rgba(214,62,73,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(214,62,73,0.5);
	-o-box-shadow: 0px 0px 5px 0px rgba(214,62,73,0.5);
	-ms-box-shadow: 0px 0px 5px 0px rgba(214,62,73,0.5);
	box-shadow: 0px 0px 5px 0px rgba(214,62,73,0.5);
}

.wrap .error input[type="file"],
.wrap .error .checkbox,
.wrap .error .radio {
	padding: 5px;
	background: #fff0f2;
}



/* text_message */

.wrap .green_text,
.wrap .yellow_text,
.wrap .red_text {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-left: 10px;
}

.wrap .green_text i,
.wrap .yellow_text i,
.wrap .red_text i {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	position: relative;
	top: 4px;
	width: 20px;
	height: 20px;
	margin-right: 5px;
	background: url("../img/textad_check.png") 0 0 no-repeat transparent;
}

.wrap .green_text i {
	background-position: 0 0;
}
.wrap .yellow_text i {
	background-position: -20px 0;
}
.wrap .red_text i {
	background-position: -40px 0;
}

.wrap .green_text {
	color: #3f7f2d;
}
.wrap .yellow_text {
	color: #ed9914;
}
.wrap .red_text {
	color: #d63e49;
}





/* ==========================================================================
     Side
   ========================================================================== */

/* side */

.side .side_inner {
	margin-bottom: 25px;
}



/* h3 */

.side h3 {
	padding-bottom: 8px;
	margin-bottom: 0px;
	border-bottom: 2px solid #ccc;
}

.side h3 .icon {
	top: 3px;
	margin-right: 8px;
}



/* side_nav */

.side .side_nav li {
	border-bottom: 1px solid #ccc;
}

.side .side_nav li a {
	display: block;
	padding: 10px;
	text-decoration: none;
}
.side .side_nav li a:hover,
.side .side_nav li a:active {
	background: #f9f9f9;
}

.side .side_nav li.active a {
	color: #999;
	cursor: default;
}
.side .side_nav li.active a:hover,
.side .side_nav li.active a:active {
	background: transparent;
}



/* side_info */

.side .rss_fc2info li {
	padding: 10px;
	border-bottom: 1px solid #ccc;
}

.side .rss_fc2info .rss_fc2info_day {
	margin-top: 0;
	margin-bottom: 3px;
	font-size: 12px;
	color: #999;
}

.side .side_more {
	margin: 0;
	text-align: right;
}


/* side_login */

.side .side_login {
	margin-bottom: 25px;
}

.side .side_login .btn {
	display: block;
	margin-bottom: 10px;
}



/* side_chargeclick */

.side .side_chargeclick dt {
	padding: 10px 10px 3px 10px;
}

.side .side_chargeclick dd {
	padding: 0 10px 10px 10px;
	border-bottom: 1px solid #ccc;
	text-align: right;
	font-weight: bold;
}
.side .side_chargeclick dd:last-child {
	border-bottom: 0px solid #ccc;
}

.side .side_chargeclick_form {
	margin: 0;
	padding: 10px;
	background: #f5f5f5;
	border: 1px solid #ccc;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}

.side .side_chargeclick_form .form_group {
	margin: 0;
}

.side .side_chargeclick_form select {
	display: block;
	width: 178px;
	margin-bottom: 5px;
	padding: 3px;
}

.side .side_chargeclick_form .btn {
	width: 178px;
	padding: 5px;
}


/* side_company */

.side .side_company {
	margin-bottom: 25px;
	padding: 8px;
	background: #c1ddb8;
	border: 1px solid #45962f;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
}

.side .side_company h4 {
	font-weight: bold;
	color: #3f7f2d;
}

.side .side_company p {
	margin: 0;
	padding: 3px;
}





/* ==========================================================================
     Contents
   ========================================================================== */

/* contents */

.contents .contents_inner {
	margin-bottom: 20px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ccc;
}
.contents .contents_inner:last-child {
	border-bottom: 0px solid #ccc;
	margin-bottom: 0px;
}



/* contents_nav */

.contents .contents_nav {
	margin-bottom: 20px;
}

.contents .contents_nav_list {
	display: table;
	table-layout: fixed;
	box-sizing: border-box;
	width: 100%;
	border-bottom: 1px solid #ccc;
}

.contents .contents_nav_list li {
	display: table-cell;
	*display: inline;
	*zoom: 1;
    padding: 10px;
    text-align: center;
}

.contents .contents_nav_list li a {
	display: block;
	color: #333;
	text-decoration: none;
}

.contents .contents_nav_list li a:active,
.contents .contents_nav_list li a:hover {
	display: block;
	color: #666;
	text-decoration: none;
}

.contents .contents_nav_list li.active {
    border-bottom: 3px solid #ef5763;
    color: #ef5763;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: -3px;
    position: relative;
}
.contents .contents_nav_list li.active:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    height: 0;
    width: 0;
    margin-left: -7px;
    border: 7px solid transparent;
    border-color: #ef5763 rgba(239, 87, 99, 0) rgba(239, 87, 99, 0);
}
.contents .contents_nav_list li.active a {
    color: #ef5763;
}






/* --------------------------------------------------------------------------
     JavaScript
   -------------------------------------------------------------------------- */

/* js_toggle */

.js_toggle {
	cursor: pointer;
}


/* --------------------------------------------------------------------------
     warning
   -------------------------------------------------------------------------- */
.warning_message{
	color: #d63e49;
	width: 580px;
}

.img_preview p {
	margin-bottom: 0px;
	color: red;
}

.label_img {
	margin: 0px !important;
}