@charset "utf-8";
/* フォーム
---------------------------------------------------------- */
/* 項目 */
.form_style dl {
	width: 100%;
	margin: 15px auto 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between;
    align-items: center; 
}
.form_style dl:first-child {
	margin-top: 60px;
}
.form_style dl dt {
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    flex-basis: 26%;    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between;
    align-items: center;     
}
.form_style dl dd {
	text-align: left;
    font-size: 16px;
    flex-basis: 70%;
}
.form_style dl dd input[type="text"],
.form_style dl dd input[type="tel"],
.form_style dl dd input[type="email"],
.form_style dl dd input[type="number"],
.form_style dl dd select,
.form_style dl dd textarea {
	padding: 1%;
	border: #CCC 1px solid;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	background-color: #FFF;
    box-sizing: border-box;
}
.form_style dl dd select {
    width: 100%;
    }
/* 必須 */
.hissu {
    color: #FFF;
    padding: 4px 15px 5px 15px;
    font-size: 13px;
    line-height: 1.2;
    background-color: #eb3c00;
    -webkit-border-radius: 20;
	-moz-border-radius: 20;
	border-radius: 20px;
    margin-left: 10px;
}
/*
.block_hissu {
    margin-top: 30px;
    color: #702264;
    text-align: right;
    margin-bottom: 15px;
    font-size: 1.6rem;
}
*/
/* エラー */
/*
.form_style dl dd input.error[type="text"],
.form_style dl dd input.error[type="tel"],
.form_style dl dd input.error[type="email"],
.form_style dl dd input.error[type="number"],
.form_style dl dd textarea.error {
	border: #ff0000 1px solid;
}
.txt_error {
	color: #ff0000;
    font-size: 18px;
	line-height: 1.3;
}
.form_style dl dd .txt_error {
    margin-top: 5px;
}
*/
/* サイズ */
.form_style dl dd input.input_size01 {
	width: 50%;
    box-sizing: border-box;
}
.form_style dl dd input.input_size02 {
	width: 80%;
    box-sizing: border-box;
}
.form_style dl dd input.input_size03 {
	width: 100%;
    box-sizing: border-box;
}
.form_style dl dd textarea {
	width: 100%;
	line-height: 1.7em;
    box-sizing: border-box;
}
/* 送信ボタン */
.form_style .btn_form {
	display: inline-block;
	color: #FFF;
	font-family: "Noto Sans JP", sans-serif;
	margin: 50px auto 0 auto;
	cursor:pointer;
	background-color: #134566;
    -webkit-border-radius: 9999;
    -moz-border-radius: 9999;
    border-radius: 9999px;
    border: #FFF solid 1px;
    font-size: 16px;
	line-height: 1.2;
    font-weight: 600;
    text-align: center;
    padding: 30px 160px;
    text-decoration: none;
    background-image: url("../img/ico_right.svg");
    background-position: 90% 50%;
    background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
/* 確認ページのとき */
.form_style .btn_form.btn_conform {
    padding: 30px 18%;
    }
/* 修正ボタン */
.form_style .btn_prev {
    background-image: url("../img/ico_prev.svg");
    background-size: 18px 15px;
    background-position: 10% 50%;
    margin-right: 20px;
}
.form_style .btn_form:hover {
	background-color: #1a5475;
}
/* チェックボックス・ラジオボタン */
.checkbox-field label,
.radio-field label{
    line-height: 2;
}
.checkbox-field label input,
.radio-field label input{
    display: none;
}
.checkbox-field label input:checked + .checkbox-field-text:after,
.radio-field label input:checked + .radio-field-text:after{
    display: block;
}
.checkbox-field label,
.radio-field label{
    display: inline-block;
    margin-right: 20px;
}
.checkbox-field label .checkbox-field-text,
.radio-field label .radio-field-text{
    padding-left: 30px;
    position: relative;
    cursor: pointer;
}
.checkbox-field label .checkbox-field-text:before,
.radio-field label .radio-field-text:before{
    content: "";
    position: absolute;
    transition: 0.3s;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 20px;
    border: 1px solid #CCC;
    background-color: #fff;
}
.checkbox-field label .checkbox-field-text:after{
    content: "";
    position: absolute;
    transition: 0.3s;
    display: none;
    width: 20px;
    height: 10px;
    left:0;
    top:50%;
    margin-top:-8px;
    transform:scale(0.5) rotate(-45deg);
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
}
.radio-field label .radio-field-text:after{
    content: "";
    position: absolute;
    transition: 0.3s;
    display: none;
    background: #eb3c00;
    width: 32px;
    height: 32px;
    left: -5px;
    top:50%;
    margin-top:-16px;
    transform:scale(0.5);
}
.radio-field label .radio-field-text:before,
.radio-field label .radio-field-text:after{
    border-radius: 100px;
}
/* WordPress Radio */
input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7-list-item {
	margin: 0 !important;
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 1px solid #FFF;
  background-color: #FFF;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: #eb3c00;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
.wpcf7-spinner {
    display: none !important;
    opacity:0 !important;
    }
.wpcf7-not-valid-tip {
    color: #FF6347 !important;
}
/*
----------------------------------------------------------- */
@media screen and (max-width : 1280px){
/* お問い合わせフォーム
---------------------------------------------------------- */
/*
.form_style dl dt {
    flex-basis: 23%;
}
.form_style dl dd {
    flex-basis: 74%;
}
*/
}
/*
----------------------------------------------------------- */
@media screen and (max-width : 1024px){
/* お問い合わせフォーム
---------------------------------------------------------- */
/* サイズ */
.form_style dl dd input.input_size01 {
	width: 100%;
}
.form_style dl dd input.input_size02 {
	width: 100%;
}
}
/*
----------------------------------------------------------- */
@media screen and (max-width : 768px){
/* お問い合わせフォーム
---------------------------------------------------------- */
.form_style dl {
    display: block;
}
.form_style dl dd {
    margin-top: 5px;
}
}
/*
 smart
----------------------------------------------------------- */
@media screen and (max-width : 640px){
/* お問い合わせフォーム
---------------------------------------------------------- */
.form_style dl dd p {
}
.form_style dl:first-child {
	margin-top: 40px;
}
.form_style dl {
	margin-top: 25px;
}
.form_style dl dt {
	padding: 0px;
}
.form_style dl dd {
	padding: 0px;
	margin-top: 8px;
}
/* サイズ */
.form_style dl dd input.input_size01 {
	width: 100%;
}
.form_style dl dd input.input_size02 {
	width: 100%;
}
.form_style dl dd input.input_size03 {
	width: 100%;
}
.form_style dl dd textarea {
	width: 100%;
}
/* 修正ボタン */
.form_style .btn_prev {
    margin-right: 0px;
}
/* 確認ページのとき */
.form_style .btn_form.btn_conform {
    padding: 15px 70px;
    }
/* 送信ボタン */
.form_style .btn_form {
	display: inline-block;
	/*font-size: 1.8px;*/
	padding: 15px 70px;
	margin: 30px auto 0px auto;
    box-sizing: border-box;
    width: 90%;
}
}