@charset "utf-8";
/* CSS Document */

input[type="text"] {
	width: 100%;
    padding: 10px;
    min-height: 40px;
	font-size: 1.6rem;
	border-radius: 3px;
    border: 0;
    box-sizing: border-box;
    background-color: #e5f5f3;
}
select{
	padding: 3px 20px 3px 10px;
	margin: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 40px;
	border: 1px solid #CCC;
	box-sizing: border-box;
	border-radius: 5px;
	color: #333333;
	border-radius: 5px;
	background: url("../../img/icon/ic_arrow_b.svg") center right 5px / auto 12px no-repeat #FFF;
}
@media (min-width: 960px) {
  select {
    min-width: 230px;
  }
}
@media (max-width: 959px) {
  select {
    width: 100%;
  }
  .type_auto select{
    width: auto;
    min-width: inherit;
  }
}

select:focus {
  outline: 1px solid #d6d6d6;
}

/*/// ラジオボタン ///
//////////////////////////////////////////////// */
.radioS label {
  min-width: 52px;
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  line-height: 1;
  cursor: pointer;
}
.radioS label + label{
	margin-left: 20px;
}
.radioS [type='radio']{
  width : 28px;
  height: 28px;
  appearance: none;
  position: relative;
  border: 1px solid #CCC;
  border-radius: 9999px;
  cursor: pointer;
}
.radioS [type='radio']::before {
  content: "";
  position: absolute;
  inset: 0;
  width : 20px;
  height: 20px;
  margin: auto;
  border-radius: 9999px;
  background-color: #DDD;
}
.radioS [type='radio']:checked:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 9999px;
  background: -webkit-linear-gradient(left, #00957f, #00b15a);
  background: -o-linear-gradient(left, #00957f, #00b15a);
  background: linear-gradient(to right, #00957f, #00b15a);
}


/*/// テキストエリア ///
//////////////////////////////////////////////// */
textarea{
  width: 100%;
  padding: 5px;
  background-color: #FFF;
  border: 1px solid #CCC;
  box-sizing: border-box;
  border-radius: 5px;
}
@media (min-width: 960px) {
  textarea{
    max-width: 880px;
    min-width: 880px;
    min-height: 250px;
  }
}
@media (max-width: 959px) {
  textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 300px;
  }
}

/*/// mustS（必須） ///
//////////////////////////////////////////////// */
.mustS{
	margin-right: 5px;
	padding: 0 3px;
	font-weight: normal;
	font-size: 0.8rem;
	color: #a51428;
	line-height: 14px;
	vertical-align: middle;
	border-radius: 2px;
	letter-spacing: 1px;
	display: inline-block;
	background-color:#fad2d7;
}

/*/// anyS（任意） ///
//////////////////////////////////////////////// */
.anyS{
	margin-right: 5px;
	padding: 0 3px;
	font-weight: normal;
	font-size: 0.8rem;
	color: #555;
	line-height: 14px;
	vertical-align: middle;
	border-radius: 2px;
	letter-spacing: 1px;
	display: inline-block;
	background-color:#DDD;
}

