/*    フォーム
*/
.form_title{
	color:#1a1a1a;
	font-size:1.7rem;
	padding:4px;
	margin:4px;
}


input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*追加スタイル*/
* {
  box-sizing: border-box;
  transition: 0.2s;
}



form {
/*  margin: 0 auto;*/
/*  margin: 0px 12px 0px 12px;*/
/*  width: 100%;*/
/*  max-width: 640px;*/
  padding: 20px 20px 20px 20px;*/
/*  border: 1px solid #fdf5e6;*/	/*#fff5ee;	/*#f8f8ff;	/*#ccc;*/
/*  border-radius: 6px;*/
}

input,
button,
select,
textarea {
  font-size: 1.6rem;
}

input,textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
}

input {
  margin: 10px;
  padding: 10px;
}

.radio label {
  position: relative;
  padding-left: 3.25rem;
  margin-right: 1rem;
}

.radio label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #eee;
}

.radio input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #A66970;
  border-radius: 50%;
}

select {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  background: #eee;
  min-width:168px;
  font-size: 16px;
  
}

textarea {
  margin: 10px 0 0;
  padding: 5px 0px 5px 0px;
  width: 100%;
  height: 8rem;
}



.button {
  text-align: center;
 }

.button input {
  background: #A66970;
  padding: 8px 18px;
  color: #fff;
  border: none;
  font-size: 1.6rem;
}

.button input:hover {
  opacity: 0.7;
  cursor: pointer;
}

.Search02{
	display: inline-block; /* inline-brock でpaddingを有効にする */
}

.myselect {
	width:40%;
	padding: 8px ;
	margin: 0px;
	font-size:1.6rem;
	margin: 6px;
}

.mytext {
	width:60%;
	margin: 0px;
}

.mybutton {
  margin: 10px;
}

/* ================================================================= */
@media only screen and (max-width: 540px) {
input,
button,
select,
textarea {
  font-size: 1.6rem;
}
	.myselect {
		width:100%;
		margin: 6px;
	}

	.mytext {
		width:100%;
		margin: 6px;
	}

	.mybutton {
	  margin: 8px;
	}

	.button input {
	  font-size: 1.6rem;
	}
}

*{
       box-sizing: border-box;
     }

#flexbox{
      display:flex;
      margin: 0 auto;
/*      text-align:center;*/
      background:#ddd;
       width: 96%;
      flex-wrap: wrap;
      height:auto;
      padding:8px;
      margin: 12px;
}

.box-item{
      background:orange;
      text-align: center;
      padding:15px 20px;
      border:1px solid #ddd;
}
/* チェックボックス03 */
input[type=checkbox] {
    display: none;
}
.checkbox03 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox03::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox03::after {
    border-right: 6px solid #0033FF;	/*#fedd1e;*/
    border-bottom: 3px solid #0033FF;	/*#fedd1e;*/
    content: '';
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -16px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 9px;
}
input[type=checkbox]:checked + .checkbox03::before {
    border-color: #666;
}
input[type=checkbox]:checked + .checkbox03::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}



/* ラジオボタン03 */
input[type=radio] {
    display: none;
}
.radio03 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.radio03::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.radio03::after {
    background: #0033FF;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 9px;
    margin-top: -4px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: scale3d(.3,.3,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 10px;
}
input[type=radio]:checked + .radio03::before {
    border-color: #666;
}
input[type=radio]:checked + .radio03::after {
    opacity: 1;
    transform: scale3d(1,1,1);
}

