/* CSS Document */

/* チェックボックススタイル -----------------------------------*/
input[type="checkbox"] { display: none; }


/*基本のチェックボックス*/
.chk_atara{}
.chk_atara input[type="checkbox"] + label{
  position: relative;
  padding-right: 15px;
}
.chk_atara li:last-child input[type="checkbox"] + label{
  padding-right: 0;
}

.chk_atara input[type="checkbox"] + label::before{
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  border: #5594B3 1.5px solid;
  border-radius: 3px;
  color: #707070;
   -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #FFFFFF;
}
.chk_atara input[type="checkbox"]:checked + label::before{
  background-color: #5594B3 !important;
}

.chk_atara input[type="checkbox"] + label::after{
  content: '';
  display: inline-block;
  width: 9px;
  height: 15px;
  border: #ECEEE7 2px solid;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: -15px;
  left: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.chk_atara input[type="checkbox"]:checked + label::after{
  border-color: #FFFFFF ;
}
.chk_atara label > span{
  padding-left: 10px;
  position: relative;
  top: -8px;
  color: #707070;
}

.chk_atara input[type="checkbox"]:active + label::before{
   background-color:rgba(85,148,179,.3);
}
@media screen and (min-width: 768px) {
  .chk_atara input[type="checkbox"]:hover + label::before{
     background-color:rgba(85,148,179,.3);
  }
}

/*カラーチップ*/
.chk_color{}

.chk_color input[type="checkbox"] + label{
  position: relative;
  height: 40px;
  width: 40px;
  display: block;
  border:rgba(165,168,161,0) 1px solid;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.chk_color input[type="checkbox"]:hover + label{
  border-color: rgba(165,168,161,1);
}
.chk_color input[type="checkbox"]:checked + label{
  border:rgba(165,168,161,1.00) 1px solid;
}
.chk_color input[type="checkbox"] + label:before{
  content: '';
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.chk_color input[type="checkbox"] + label::after{
  content: '';
  display: block;
  width: 1px;
  height: 1px;
  border:rgba(254,253,253,0) 2px solid;
  border-width: 0 2px 2px 0;
  /*-webkit-transition: all .12s, border-color .02s;
  transition: all .12s, border-color .02s;*/
   -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  bottom: 0;
  margin: auto;
}

.chk_color input[type="checkbox"]:checked + label::after{
  content: '';
  display: block;
  width: 8px;
  height: 14px;
  border-radius: 0;
  opacity: 1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-color: rgba(254,253,253,1);

}


/*都道府県のチェック*/
.chk_area_list input[type="checkbox"] + label{
  display: flex;
  width: 100px;
  height: 38px;
  background-color: #FFFFFF;
  font-size: 1.4rem;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}
.chk_area_list input[type="checkbox"]:checked + label{
  background-color: #5594B3;
  color: #FFFFFF;
}

.chk_area_list input[type="checkbox"]:active + label{
  background-color: #5594B3;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
.chk_area_list input[type="checkbox"]:hover + label{
  background-color: #5594B3;
  color: #FFFFFF;
}
}

/* チェックボックススタイル END -------------------------------*/




/* form関連 -------------------------------*/
.form{
	max-width: 600px;
	margin: 0 auto;
	padding-bottom: 100px;
}
.form h1{
	font-size: 2rem;
	text-align: center;
	padding-bottom: 40px;
}
.form .memo{
	text-align: center;
	font-size: 12px;
}
.form .memo span{
	color: #FF0000;
}
.form dl{}
.form dt{
	font-size: 1.2rem;
	padding-bottom: 5px;
}
.form dt span{
	color: #FF0000;
}
.form dd{
	padding-bottom: 20px;
}
.form small{
	display: block;
}
.form .doui_link{
	font-size: 1.4rem;
	display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    text-decoration: underline;
}
input:focus,
textarea:focus,
select:focus{
	outline: none;
	background-color: #F2F2F2;
}

input{
	width: 100%;
	height: 40px;
	border-radius: 5px;	
	font-size: 1.6rem;
	padding: 0;
	border: 0;
	border: #4387B2 1px solid !important;
	text-indent: 10px;
}
input[type='checkbox']{
	width: auto;
}
input[type='file']{
	border: none;
	text-indent: 0;
	font-size: 1.4rem;
}
input[type='radio']{
	width: auto;
	height: auto;
	margin: 10px;
}
input[type='file']{
	border: none !important;
}
textarea{
	width: 96%;
	border: #4387B2 1px solid;
	border-radius: 5px;
	font-size: 1.6rem;
	padding: 2%;
}

input::placeholder,
textarea::placeholder{
  opacity: .3;
}
.half{
	width: 48% !important;
}
.ml10{
	float: right;
	margin: 0;
}

.button{
	text-align: center;
	padding-top: 50px;
}
.button button{
	max-width: 345px;
	width: 100%;
	height: 40px;
	background: #4387B2;
	display: inline-block;
	color: #fff;
	border: none;
	font-size: 16px;
	border-radius: 5px;
}
.button button:hover{
	opacity: 0.7;
}

.control {
  display: block;
  position: relative;
  padding-left: 4%;
  margin-bottom: 15px;
  cursor: pointer;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #E3E3E3;
	border-radius: 5px;	
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}
.control input:checked ~ .control__indicator {
  background: #4387B2;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #4387B2;
}
.control input:disabled ~ .control__indicator {
  background: #E3E3E3;
  opacity: 0.6;
  pointer-events: none;
}
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox{
	padding-left: 8%;
	font-size: 12px;
}
.control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}

.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}
.select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 0 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #e6e6e6;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
	height: 40px;
	border-radius: 5px;	
	font-size: 16px;
}
.select select::-ms-expand {
  display: none;
}
.select select:hover,
.select select:focus {
  color: #000;
  background: #ccc;
}
.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}
.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #000;
}
.select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}


@media screen and (min-width: 768px) {
	.control--checkbox{
		width: 29.33%;
		padding-left: 4%;
		font-size: 1.4rem;
	}
}
/* form End ---------------------------*/
