/*
  form共通CSS
  ver1.0
  作成日：2010/11/30
  更新日：
  更新内容：
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

label,
input,
button,
select,
textarea {
  font-size: 1em;
  font-weight: normal;
  line-height: 20px;
  outline: none;
}
input,
button,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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"],
.uneditable-input {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 3px;
  line-height: 20px;
  color: #555555;
  vertical-align: middle;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

textarea {
  height: auto;
}

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"],
.uneditable-input {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
     -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
       -o-transition: border linear 0.2s, box-shadow linear 0.2s;
          transition: border linear 0.2s, box-shadow linear 0.2s;
}
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,
.uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

input[type="radio"],
input[type="checkbox"] {
  margin: 3px 0 0;
  margin-top: 1px \9;
  *margin-top: 0;
  line-height: normal;
}

select {
  width: 220px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
input[type="submit"] {
    -webkit-appearance: none;
}
input[type="button"] {
    -webkit-appearance: none;
}
input[type="search"] {
    -webkit-appearance: none;
}

select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.uneditable-input,
.uneditable-textarea {
  color: #999999;
  cursor: not-allowed;
  background-color: #fcfcfc;
  border-color: #cccccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
     -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
}

.uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}

.uneditable-textarea {
  width: auto;
  height: auto;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999999;
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
  background-color: transparent;
}
input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}

input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
     -moz-box-shadow: 0 0 6px #f8b9b7;
          box-shadow: 0 0 6px #f8b9b7;
}


/* form行共通(ボタン除く) */
.form_row {
    position:relative;
    text-align: left;
}

/* input共通 */

.form_row input {
    position:relative;
    margin: 2px 0 2px 14px;
    text-align: left;

}
.form_row input.size_def {
    width:auto;
}
.form_row input.size_1 {
    width:60px;
}
.form_row input.size_2 {
    width:90px;
}
.form_row input.small {
    width:40%;
}
.form_row input.middle {
    width:60%;
}
.form_row input.big {
    width:90%;
}
.form_row input.h-mini {
    height: 30px;
    line-height: 30px;
    padding:5px 0;
}

/* ログイ項目用 */
/* 項目名 + 入力ボックス */
.login_form{
    width:100%;
    pading:5px 1%;
}
.login_form .add_text_input {
    width:100%;
    margin:2px 0;
}
.login_form .add_text_input >div{
    float:left;
    height:30px;
    line-height:30px;
    overflow: hidden;
    margin-left:1%;
    width:25%;
}
.login_form .add_text_input >input{
    width:70%;
    margin:0 ;
    float:left;
}
.login_form .add_text_input input.middle{
    width:46%;
    margin:0 ;
    float:left;
}
.login_form .add_text_input .button_row{
    width:20%;
    margin:0 ;
    float:right;
}


/* セレクトボックス共通 */
.form_row select {
    height: 28px;
    padding: 4px 6px;
    margin: 3px 0 5px 14px;
    text-overflow: ellipsis;
}

/* ラジオボックス共通 */
 .form_row .radio div{
    position:relative;
    float:left;
    height:30px;
}
.form_row .radio input{
    position:relative;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.form_row .radio_label{
    height: 30px;
    line-height: 30px;
    text-align: center;
}
/* チェックボックス共通 */
.form_row  .check_box{
    height: 28px;
    text-align: left;
    margin: 3px 3px 6px 14px;
}
.form_row  .check_lavel{
    text-align: center;
}
.form_row  .check_box_list{
    width:100%;
    height: 26px;
    text-align: left;
    margin: 2px auto;
}
.form_row  .check_box_list input{
    display:inline-block;
    width:16px;
    height: 16px;
    float:left;
    padding:0;
    margin:5px 5px;
}
.form_row .check_box_list label{
    display:inline-block;
    width:85%;
    height: 16px;
    line-height: 16px;
    padding:5px 0;
}
.form_row  .check_lavel{
    text-align: center;
}

/* テキストエリア */
.form_row textarea {
    padding: 5px;
    margin: 2px 0 2px 14px;
    min-height:80px;
    text-align: left;
    color: black;
}
.form_row textarea.middle {
    width:60%;
}


/* 部品共通 */
/* 1行2部品詰め */
.row1_col2 li {
    float: left;
    width:40%;
}
/* -----------------------------------------------------------------------------
    ボタン
-------------------------------------------------------------------------------- */
/* ボタン共通 */
.button_row {
    position:relative;
    top:0;
    width:100%;
    text-align: center;
    margin:0 auto;
    padding: 0;
}
.button_row input{
    position:relative;
    height: 60px;
    font-size: 15px;
    text-align: center;
    text-overflow: ellipsis;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(10,10,10, 0.4);
    background: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#fff));
    background-color: #f5f5f5;
}

/* ボタン特大(高さも増量) */
.button_row .h-big{
    width: 95%;
    max-width:300px;
    height: 96px;
    margin: 3px 0;
    font-size: 1.87em;
    line-height: 24px;
    margin:auto;
}
/* ボタン高さ低 */
.button_row .h-small{
    height: 30px;
    margin: 3px auto;
    line-height: 30px;
}
.button_row .h-mini{
    height: 28px;
    line-height: 26px;
}


/* ボタン大 */
.button_row .big{
    width: 95%;
    max-width:300px;
    margin:0 auto;
}

/* ボタン中 */
.button_row .middle{
    width: 40%;
}
/* ボタン中 */
.button_row .middle2{
    width: 46%;
}
/* ボタン中 左アイコンあり*/
.button_row .middle_left_icon{
    position:relative;
    width:100%;
    text-align: left;
}
.button_row .middle_left_icon img{
    position:relative;
    width:60px;
    margin:2px auto 0 auto;
}
.button_row .middle_left_icon .middle{
    position:absolute;
    top:-1px;
    width: 70%;
    max-width:230px;
}
/* ボタン小 */
.button_row .small{
    width: 25%;
}

/* 通常ボタン */
.button_row .normal {
    border: 1px solid rgba(198,198,198, 0.4);
    -webkit-box-shadow: 0 1px 0 rgba(198,207,210, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    box-shadow: 0 1px 0 rgba(198,207,210, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    background-color:#cccccc;
    background: -webkit-gradient(linear, left top, left bottom, from(#fefefe), color-stop(0.5, #d0d0d0),color-stop(0.51, #cccccc), to(#cacaca) );
    background: -moz-linear-gradient(top, #fefefe, #cacaca);
}
/* ログインボタン */
.button_row .login {
    border: 1px solid rgba(125,160,69, 0.4);
    -webkit-box-shadow: 0 1px 0 rgba(155,190,89, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    box-shadow: 0 1px 0 rgba(155,190,89, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    background-color:#ffcc4a;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff8e0), color-stop(0.5, #ffd055), color-stop(0.51, #ffcc4a),to(#FFDE59) );
    background: -moz-linear-gradient(top, #fff8e0, #FFDE59);
}
/* 課金ボタン */
.button_row .regist {
    color: #fff;
    border: 1px solid rgba(165,0,33, 0.4);
    -webkit-box-shadow: 0 1px 0 rgba(165,0,33, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    box-shadow: 0 1px 0 rgba(165,0,33, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    background-color: #CE1020;
    background: -webkit-gradient(linear, left top, left bottom, from(#DE1D24), color-stop(0.5, #CE1020), color-stop(0.51, #C5091E),to(#640E0E) );
    background: -moz-linear-gradient(top, #DE1D24, #640E0E);
}
/* 青系ボタン */
.button_row .blueBtn {
    color: #fff;
    border: 1px solid rgba(220,220,230, 0.4);
    -webkit-box-shadow: 0 1px 0 rgba(165,0,33, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    box-shadow: 0 1px 0 rgba(165,0,33, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    background-color:#546078;
    background: -webkit-gradient(linear, left top, left bottom, from(#a1a7b5), color-stop(0.53, #4d5973),color-stop(0.61, #546078), to(#5b687c) );
    background: -moz-linear-gradient(top, #a1a7b5, #5b687c);
}
.button_row .regist_red {
    border: 1px solid rgba(125,160,69, 0.4);
    -webkit-box-shadow: 0 1px 0 rgba(155,190,89, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    box-shadow: 0 1px 0 rgba(155,190,89, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    border: 1px solid #CC0000;
    background-color: #FF4444;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff3636), color-stop(0.5, #e22e2e),to(#9d1b1b) );
    background: -moz-linear-gradient(top, #ff3636, #9d1b1b);
    background: gradient(linear,left top,left bottom,from(#ff3636),to(#9d1b1b));
}
.button_row .regist_orange {
    border: 1px solid rgba(247,150,70, 0.4);
    -webkit-box-shadow: 0 1px 0 rgba(155,190,89, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    box-shadow: 0 1px 0 rgba(155,190,89, 0.35),inset 0 1px 1px rgba(0,0,0, 0.25);
    background-color: #ffc024;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffc024), color-stop(0.76, #e3a11c), color-stop(0.93, #a67511),to(#a67511) );
    background: -moz-linear-gradient(top, #ffc024, #e3a11c, #a67511);
    background: gradient(linear,left top,left bottom,from(#ffc024), color-stop(0.76, #e3a11c), color-stop(0.93, #a67511),to(#a67511));
}


/* 並びボタン
   ul属性1つのliタグにボタン1つ
*/

.button_add li{
    displsy:inline-block;
}
.button_add li{
    text-align: center;
    float:left;
    padding 5px 10px 5px 5px;
}
.button_add input{
    display:block;
    height: 40px;
    line-height: 1.1em;
    padding:10px 4px;
    text-align: center;
    text-overflow: ellipsis;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid rgba(10,10,10, 0.4);
    background-color:#cccccc;
    background: -webkit-gradient(linear, left top, left bottom, from(#fefefe), color-stop(0.5, #d0d0d0),color-stop(0.51, #cccccc), to(#cacaca) );
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255, 0.35), inset 0 1px 1px rgba(0,0,0, 0.25);
    box-shadow: 0 1px 0 rgba(255,255,255, 0.35), inset 0 1px 1px rgba(0,0,0, 0.25);
}

/* -----------------------------------------------------------------------------
    インプットボックス
-------------------------------------------------------------------------------- */
/* 通常（大） */
.form_row .input_normal1 {
    width:85%;
}
/* 通常（中） */
.form_row .input_normal2 {
    width:40%;
}
/* 通常（小） */
.form_row .input_normal3 {
    width:25%;
}
/* 左空き（大）ポイント画面で使用 */
.form_row .input_left1 {
    width:85%;
    margin:0 0 0 0;
}
/* 警告用 */
.form_row .alert {
    border: 2px solid rgba(255,0,0, 0.4);
    /*background: -webkit-gradient(linear,left top,left bottom,from(#fae0ea),to(#fff0ff));*/
}
/* パスワード用 */
.form_row .password {
    width:80%;
}
/* 郵便番号用 */
.form_row .address {
    width:36px;
    padding-right:3px;
}
.form_row .address_mae {
    width:36px;
    margin-right:5px;
}
.form_row .address_ato  {
    width:48px;
    margin-left:5px;
}
// 画像つきインプット
.form_row .icon_row_input{
    position:relative;
}
.form_row .icon_row_input img{
    position:relative;
    top:6px;
    width: 24px;
    height: 24px;  left:7px;
    margin:3px 1px 0 3px;
}
.form_row .icon_row_input .input_normal1 {
    width:70%;
}
.form_row .icon_row_input .input_normal2 {
    width:35%;
}

/* -----------------------------------------------------------------------------
    セレクトボックス
-------------------------------------------------------------------------------- */
select.big {
    width:95%;
}
select.big_add_icon {
    width:60%;
}
select .middle {
    width:40%;
}
/* セレクトボックス年月日用 */
.select_box_ymd {
    width:100px;
    height:25px;
    line-height:25px;
    text-align: left;
}

.select_box_ymd:after {
    clear:both;
}

/* -----------------------------------------------------------------------------
    ラジオボックス
-------------------------------------------------------------------------------- */
/* 見放題登録選択用 */
.subs_radio_list {
    display:inline-block;
}
.subs_radio_list li {
    height :60px;
}
.subs_radio_list input {
    height :20px;
    margin-top:11px;
    float:left;
}
.subs_radio_list label {
    position:relative;
    display:block;
    float:left;
}
.subs_radio_list label div{
    position:relative;
    margin-left:14px;
    top:-15px;
}