@charset "utf-8";

/* -----------------------------------------------------
 botton.css
----------------------------------------------------- */

textarea,
select,
input{
	font-size: 14px;
	outline: none;
	padding: 6px 4px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
input{
	padding: 6px 4px;
}
div.sc-col input{
	padding: 1px;
}

input.focus,
textarea.focus{
	background:#ccfaff;
}
input.short{
	width: 60px;
}
input.mini{
	width: 120px;
}
input.mid{
	width: 50%;
}
input.long{
	width: 90%;
}
input.mini2-t,
select.mini2-t{
	width:44px;
}
input.mini-t,
select.mini-t{
	width:100px;
}
input.short-t,
select.short-t{
	max-width:180px;
}
input.mid-t,
select.mid-t{
	width: 70%;
	max-width: 380px;
}
input.long-t,
select.long-t{
	width: 80%;
	max-width:500px;
}
textarea{
	height: 150px;
	width: 80%;
}
textarea.come{
	width: 100%;
	height: 150px;
}
textarea.h60{
	height: 60px;
}
textarea.con-for{
	width: 100%;
	height: 300px;
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.6;
}
#formBtn{
	color:#FFF;
	font-size:16px;
	padding:10px 20px;
	background:#107664;
	border:none;
	cursor:pointer;
	font-weight: bold;
	text-align: center;
	outline: none;
}
#submitBtn{
	color:#FFF;
	font-size:16px;
	padding:10px 20px;
	background:#070e4a;
	border:none;
	cursor:pointer;
	font-weight: bold;
	text-align: center;
	outline: none;
	text-decoration: none;
}
#submitBtn:hover{
	background: #a2894f;
}
#linkBtn{
	margin:0 auto 30px;
	color:#FFF;
	font-size:18px;
	padding:12px 50px;
	background:#070e4a;
	border:none;
	cursor:pointer;
	font-weight: bold;
	text-align: center;
	outline: none;
	text-decoration: none;
}
#linkBtn:hover{
	background: #a2894f;
}
#linkBtn i{
	font-size: 14px;
	font-weight: normal;
}
button,
submit{
	-webkit-appearance: none;
}

.btn-send{
	padding: 10px 20px;
	display: inline-block;
	text-align: center;
	font-weight: bold;
	background: #3eb8ec;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
}
.btn-back{
	padding: 10px 20px;
	display: inline-block;
	text-align: center;
	font-weight: bold;
	background: #a5dc14;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
}
/*-- チェックボックス関連 --*/
/*-- ------------------------------------------------- --*/
input[type="checkbox"] {
    border: 1px solid #aaaaaa;
	cursor: pointer;
    vertical-align: -8px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 3px;
    -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,
        #99cc00 0%,
        #87b400 100%
    );
    border: 1px solid #336600;
	outline: none;
}

input[type="checkbox"]:checked:before {
    position: absolute;
    left: 1px;
    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: 9px;
    top: 13px;
    content: "";
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    width: 15px;
    height: 4px;
    background: #ffffff;
    -webkit-transform: rotate(-53deg);
    -webkit-transform-origin: left center;
}
/*-- ラジオボックス関連 --*/
/*-- ------------------------------------------------- --*/
input[type="radio"] {
    border: 1px solid #aaaaaa;
	cursor: pointer;
    vertical-align: -6px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 3px;
    -webkit-border-radius:20px;
    border-radius: 20px;
    -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="radio"]:checked {
    /*Other Browser*/
    background: #99cc00;
	outline: none;
    /*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,
        #99cc00 0%,
        #87b400 100%
    );
    border: 1px solid #336600;
}

input[type="radio"]:checked:before {
    position: absolute;
    left: 1px;
    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="radio"]:checked:after {
    display: block;
    position: absolute;
    left: 9px;
    top: 13px;
    content: "";
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    width: 14px;
    height: 4px;
    background: #ffffff;
    -webkit-transform: rotate(-53deg);
    -webkit-transform-origin: left center;
}
/*-- トグル式　チェック --*/
/*-- ------------------------------------------------- --*/
#set-col input{
  display:none;  
}
#set-col .block{
  width:100px;
  position:relative;
  clear:both;
  margin:0;
}

#set-col label{
  width:80px;
  height:36px;
  box-sizing:border-box;
  border:1px solid #ccc;
  float:left;
  border-radius:100px;
  position:relative;
  cursor:pointer;
  transition:.3s ease;
}
#set-col input[type=checkbox]:checked + label{
  background:#3eb8ec;
}
#set-col input[type=checkbox]:checked + label:before{
  left:46px;
}
#set-col label:before{
  transition:.3s ease;
  content:'';
  width:30px;
  height:30px;
  position:absolute;
  background:white;
  left:2px;
  top:2px;
  box-sizing:border-box;
  border:2px solid #ccc;
  color:black;
  border-radius:100px;
}



@media only screen and (max-width: 768px){
	
input{
	width: 80%;
}
input.mini{
	width: 120px;
}
textarea,
select,
input{
	font-size: 16px;
}
	
}