@charset "utf-8";
/* form */
/* ========================== */

.ly-col-form{
  background: #fff;
}
.ly-col-form .ly-inner{
  max-width: 750px;
  margin: auto;
  padding-top: 50px;
}

.form-wrap{
  padding: 50px 0;
}
.form-wrap label{
}

.form-wrap input[type=text],
.form-wrap input[type=email],
.form-wrap input[type=tel],
.form-wrap textarea {
  background : #F7F7F8;
  border-radius : 6px;
  padding: 5px 20px;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 16px;
}

/** Radio **/
.form-wrap .wpcf7-radio label,
.form-wrap .wpcf7-checkbox label{
  padding-left: 2px;
}

.form-wrap .wpcf7-radio .wpcf7-list-item{
  display: block;
}
.form-wrap .wpcf7-radio .wpcf7-list-item-label,
.form-wrap .wpcf7-checkbox .wpcf7-list-item-label{
  position: relative;
  padding-left: 24px;
}

.form-wrap .wpcf7-radio .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  border: #cbcbcb solid 1px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.form-wrap .wpcf7-radio .wpcf7-list-item-label::after {
  content: '';
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #196397; /* 選択されたときの色 */
  border-radius: 50%;
  left: 8px;
  top: 50%;
  transform: translate(0, -50%) scale(0); /* 初期状態では非表示 */
}

.form-wrap input[type="radio"]:checked + .wpcf7-list-item-label::after {
  transform: translate(-50%, -50%) scale(1);
}


/** Checkbox **/

.form-wrap .wpcf7-checkbox .wpcf7-list-item{
  display: block;
}

.form-wrap .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  border: #cbcbcb solid 1px;
  border-radius: 2px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.form-wrap .wpcf7-checkbox .wpcf7-list-item-label::after {
  content: '';
  position: absolute;
  display: block;
  width: 18px;
  height: 10px;
  border-width: 3px;
  border-color: transparent transparent #196397 #196397;
  border-style: solid;
  left: 8px;
  top: 8px;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0); /* 初期状態では非表示 */
}

.form-wrap input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1); /* チェックされたときに表示 */
}


.form-wrap input[type="submit"]{
  display: block;
  position: relative;
  text-align: center;
  background:#ef5925;
  width: 100%;
  height: 70px;
  box-sizing: border-box;
  line-height: 66px;
  padding: 0 30px;
  border-radius: 35px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #ef5925;
  color: #fff;
}


@media (max-width:743px) {

}


/** 25 form privacy **/
.form-privacy__content{
	max-width:480px;
	width:100%;
	margin:auto auto 60px;
	display:flex;
	flex-wrap:wrap;
	border:1px solid #ccc;
	padding:15px;
	justify-content:space-between;
	align-items:center;
}
.form-privacy__content p{
	margin:auto;
}
.form-privacy__textarea{
	width:calc(100% - 100px);
}
.form-privacy__image{
	width:90px;
}
.form-privacy__image img{
	width:100%;
}