@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
/***********************************
	全体
***********************************/
/*フォーム全体*/
#kodawari {
  position: relative;
  margin: 0 auto;
  width: 96%;
  max-width: 900px;
  margin: 10px auto 70px;
}
#kodawari h2 {
  font-size: 15px;
  font-weight: bold;
  display: block;
  margin: 30px 0 3px;
  text-align: left;
}
/*フリーワード*/
.freeword {
  width: 100%;
  outline: 0;
  height: 50px;
  padding: 0 10px;
  border-radius: 0px;
  border: 1px solid #888;
  color: #333;
}
/*横並び*/
.flex {
  display: flex;
}
.flexcenter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
/*価格*/
.flex p {
  padding: 0 5px;
}
.kodawariPrice {
  width: 100%;
  max-width: 200px;
  outline: 0;
  height: 50px;
  padding: 0 10px;
  border-radius: 0px;
  border: 1px solid #888;
  color: #333;
}
/***********************************
	セレクトボックス
***********************************/
.kodawariSelect {
  overflow: hidden;
  width: 100%;
  margin: 30px auto;
  text-align: center;
}
.kodawariSelect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  height: 50px;
}
.kodawariSelect select::-ms-expand {
  display: none;
}
.kodawariSelect.cp_sl01 {
  position: relative;
  border: 1px solid #888;
  border-radius: 2px;
  background: #ffffff;
}
.kodawariSelect.cp_sl01::before {
  position: absolute;
  top: 45%;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}
.kodawariSelect.cp_sl01 select {
  padding: 8px 38px 8px 8px;
  color: #333;
}
/***********************************
	チェックボックス
***********************************/
.kodawariCheckbox {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  font-size: 14px;
  width: calc(100% + 5px);
}
.kodawariCheckbox.size_search {
  background: #fff;
  padding: 0;
  border-radius: 0;
}
.kodawariCheckbox label {
  cursor: pointer;
  padding: .8em;
  margin-right: 5px;
  margin-bottom: 5px;
  border: none;
  background: #D4B2B6;
  border-radius: 5px;
  color: #fff;
  width: calc(20% - 5px);
  text-align: center;
}
@media screen and (max-width: 800px) {
  .kodawariCheckbox label {
    width: calc(33% - 5px);
  }
}
@media screen and (max-width: 640px) {
  .kodawariCheckbox label {
    width: calc(50% - 5px);
  }
}
.kodawariCheckbox input {
  display: none;
}
.kodawariCheckbox .check_box:checked + .label {
  background-color: #B66971;
}
/***********************************
	サイズ分割
***********************************/
.kodawariCheckbox.size_search label {
  width: calc(16.66% - 5px);
}
@media screen and (max-width: 800px) {
  .kodawariCheckbox.size_search label {
    width: calc(16.66% - 5px);
  }
}
@media screen and (max-width: 640px) {
  .kodawariCheckbox.size_search label {
    width: calc(33.33% - 5px);
  }
}
/***********************************
	ラジオボタン
***********************************/
.kodawariRadiobtn {
  line-height: 2em;
  color: #888
}
.radio-input {
  display: none;
}
.radio-input + label {
  padding-left: 30px;
  position: relative;
  margin-right: 20px;
}
.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  border-radius: 50%;
}
.radio-input:checked + label {
  color: #333;
}
.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  background: #E5CC68;
  border-radius: 50%;
}
/***********************************
	ワイヤー
***********************************/
.wirevalue {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  width: calc(100% + 10px);
}
.wirevalue img {
  width: 98%;
}
.wirevalue label {
  cursor: pointer;
  padding: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px #D4B2B6 solid;
  background: #fff;
  border-radius: 0%;
  color: #fff;
  width: 160px;
  height: 160px;
  text-align: center;
}
.wirevalue input {
  display: none;
}
.wirevalue .check_box:checked + .label {
  border-radius: 0%;
  border: 5px #888 solid;
  transition: 0.3s;
}
/***********************************
	カラバリ
***********************************/
.colorvalue {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  width: calc(100% + 10px);
}
.colorvalue img {
  width: 100%;
}
.colorvalue label {
  cursor: pointer;
  padding: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  border: none;
  background: #fff;
  border-radius: 50%;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
}
.colorvalue input {
  display: none;
}
.colorvalue .check_box:checked + .label {
  border-radius: 50%;
  border: 5px #888 solid;
  transition: 0.3s;
}
/***********************************
	エンターボタン
***********************************/
#kodawari button {
  background: #856A55;
  border: none;
  color: #fff;
  padding: .8em;
  width: 200px;
  max-width: 40%;
  margin: 20px 10px 0;
}
#kodawari button.reset {
  background: #E5E5E5;
}