@charset "utf-8";

/* # =================================================================
   #
   # Form まわり
   #
   # ================================================================= */



input[type="text"],.entry_form form input[type="password"] ,input[type="email"]{
	/*width:50%;*/
	background-color:#FFF;
	border:1px solid #CCC;
	padding:1.25rem;
	border-radius:3px;
}

input[type="text"]:focus ,.entry_form form input[type="password"]:focus ,.entry_form form input[type="email"]:focus {
	background-color:#FFC;
}

input[type="text"]:disabled,.entry_form form input[type="password"]:disabled ,input[type="email"]:disabled ,textarea:disabled {
	background-color:#DDD;
	color:#666;
}

input[type="submit"] {
	min-width:30.0rem;
	text-align:center;
	background-color:#000;
	border:none;
	color:#FFF;
	text-decoration:none;
	display:block;
	padding:1.5rem;
	border:1px solid #000;
	-webkit-transition: all .3s;
	transition: all .3s;
}



input[type="submit"]:active {
	border:1px solid #000;
	background-color:#FFF;
	color:#000;
	cursor:pointer;
}

input[type="submit"]:hover {
	border:1px solid #000;
	background-color:#FFF;
	color:#000;
	cursor:pointer;
	-webkit-transition: all .3s;
	transition: all .3s;
}

input[type="radio"] {
}

input[type="radio"] {
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin: -5px 2px 0 0;
  content: "";
  background-color: #fff;
  border: 1px solid #666;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 2px 5px rgba(0,0,0,0.2), 0 2px 1px #fff;
     -moz-box-shadow: inset 0 2px 5px rgba(0,0,0,0.2), 0 2px 1px #fff;
          box-shadow: inset 0 2px 5px rgba(0,0,0,0.2), 0 2px 1px #fff;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}
input[type="radio"]:hover {
    border-color: #555;
  -webkit-box-shadow: inset 0 2px 5px rgba(0,0,0,0.35), 0 2px 1px #fff;
     -moz-box-shadow: inset 0 2px 5px rgba(0,0,0,0.35), 0 2px 1px #fff;
          box-shadow: inset 0 2px 5px rgba(0,0,0,0.35), 0 2px 1px #fff;
}
input[type="radio"]:checked:after {
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #42a4eb;
  -webkit-box-shadow: inset 0 2px 2px rgba(0,0,0,0.25), inset 0 1px 0 rgba(0,0,0,0.3), 0 1px 1px #fff;
     -moz-box-shadow: inset 0 2px 2px rgba(0,0,0,0.25), inset 0 1px 0 rgba(0,0,0,0.3), 0 1px 1px #fff;
          box-shadow: inset 0 2px 2px rgba(0,0,0,0.25), inset 0 1px 0 rgba(0,0,0,0.3), 0 1px 1px #fff;
}




/*
input[type="checkbox"] {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}*/

input[type="checkbox"] {
    border: 1px solid #aaaaaa;
    vertical-align: -8px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    width: 22px;
    height: 22px;
    /*Other Browser*/
    background: #e2e2e2;
    /*For Old WebKit*/
    background: -webkit-gradient(
        linear, left top, left bottom,
        color-stop(0.00, #ffffff),
        color-stop(1.00, #e2e2e2)
    );
    /*For Modern Browser*/
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #e2e2e2 100%
    );
}

input[type="checkbox"]:checked {
    /*Other Browser*/
    background: #99cc00;
    /*For Old WebKit*/
    background: -webkit-gradient(
        linear, left top, left bottom,
        color-stop(0.00, #99cc00),
        color-stop(1.00, #87b400)
    );
    /*For Modern Browser*/
    background: linear-gradient(
        to bottom,
        #09C 0%,
        #09F 100%
    );
    border: 1px solid #336600;
}

input[type="checkbox"]:checked:before {
    position: absolute;
    left: 0px;
    top: 13px;
    display: block;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    content: "";
    width: 10px;
    height: 4px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: right center;
}

input[type="checkbox"]:checked:after {
    display: block;
    position: absolute;
    left: 8px;
    top: 13px;
    content: "";
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    width: 16px;
    height: 4px;
    background: #ffffff;
    -webkit-transform: rotate(-53deg);
    -webkit-transform-origin: left center;
}

.btn input[type="submit"] {
	display:inline-block;
}


.btn input[type="submit"].gray {
	background-color:#999;
}

select {
	width:50%;
	background-color:#FFF;
	border:1px solid #CCC;
	padding:1.25rem;
	border-radius:3px;
}



textarea {
	width:100%;
	min-height:12.0rem;
	background-color:#FFF;
	border:1px solid #CCC;
	padding:1.25rem;
	border-radius:3px;
}




/* # =================================================================
   #
   # フォームまわり
   #
   # ================================================================= */

label { 
	cursor: pointer;
}

/*エラーメッセージ*/
.error {
	background-color:#FEE;
	border:3px solid #F00;
	padding:0.5rem 1.0rem;
	margin:0.75rem 0;
	color:#F00;
	font-weight:bold;
}

.error p {
	padding:0.5rem;
}

.error p i {
	color:#F00;
}


/*確認メッセージ*/
.caution {
	background-color:#FFC;
	border:3px solid #FC0;
	padding:0.5rem;
	margin:0.75rem 0;
	color:#F90;
	font-weight:bold;
}

.caution p {
	padding:0.5rem;
}

.caution p i {
	color:#F90;
}

/*作業案内（成功）メッセージ*/
.succeed {
	background-color:#EEFEC2;
	border:3px solid #096;
	padding:0.5rem;
	margin:0.75rem 0;
	color:#096;
	font-weight:bold;
}

.succeed p {
	padding:0.5rem;
}

.succeed p i {
	color:#096;
}












/*********************************************************************************************************/
/* 
   #
   # スマートフォンサイズ
   #
*/
/*********************************************************************************************************/


@media screen and (max-width : 767px) {




/* # =================================================================
   #
   # Form まわり
   #
   # ================================================================= */

input[type="text"], input[type="password"],input[type="email"]{
	width:100%;
	background-color:#FFF;
	border:1px solid #CCC;
	padding:1.25rem;
	border-radius:3px;
}

input[type="text"]:focus , input[type="password"]:focus ,input[type="email"]:focus {
	background-color:#FFC;
}





input[type="submit"] {
	width:100%;
	min-width:16.0rem;
	text-align:center;
	background-color:#000;
	color:#FFF;
	text-decoration:none;
	display:block;
	padding:1.6rem;
	margin:auto auto;
	-webkit-transition: all .3s;
	transition: all .3s;
}



input[type="submit"]:active {
	border:1px solid #000;
	background-color:#FFF;
	color:#000;
	cursor:pointer;
}

input[type="submit"]:hover {
	cursor:pointer;
}

select {
	width:100%;
}



.btn input[type="submit"] {
	display:inline-block;
	margin:0 0 1.0rem 0;
}

}













