@charset "UTF-8";
section.page.form p.t1 {
  padding: 20px 0;
  font-size: 18px;
}
section.page.form dl dt.required {
  position: relative;
}
section.page.form dl dt.required::after {
  padding: 4px 8px 4px 8px;
  font-size: 1.2rem;
  content: "必須";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 8px;
  background: #e9eff1;
  line-height: 1;
  color: #fff;
}
section.page.form dl dt > div {
  font-size: 13px;
}
section.page.form dl dd div.come {
  display: inline-block;
}
section.page.form dl dd label {
  display: inline-block;
  font-size: 1.6rem;
  margin-right: 20px;
  cursor: pointer;
  padding: 8px 0;
}

section.page.form {
  /* 触った後だけエラーを赤く */
}
section.page.form .is-touched:invalid {
  border-color: #e60033;
  background: #fff5f7;
}
section.page.form {
  /* 正常入力（任意） */
}
section.page.form .is-touched:valid {
  border-color: #4caf50;
}
section.page.form {
  /* privacy checkbox */
}
section.page.form .privacy.is-invalid {
  color: #e60033;
}
section.page.form {
  /* 触った後だけエラーを赤く */
}
section.page.form .is-touched:invalid {
  border-color: #e60033;
  background: #fff5f7;
}
section.page.form {
  /* 正常入力（任意） */
}
section.page.form .is-touched:valid {
  border-color: #4caf50;
}
section.page.form {
  /* privacy checkbox */
}
section.page.form .privacy.is-invalid {
  color: #e60033;
}

section.page.form ul.radio_group li {
  display: inline-block;
  padding-right: 20px;
}
section.page.form ul.button_set {
  padding-top: 20px;
}
section.page.form ul.button_set.n1 {
  margin: 0 auto;
  width: 430px;
}
@media screen and (max-width: 599px) {
  section.page.form ul.button_set.n1 {
    width: 100%;
  }
}
section.page.form ul.button_set.n2 {
  margin: 0 auto;
  width: 660px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  section.page.form ul.button_set.n2 {
    width: 100%;
    grid-template-columns: 150px 1fr;
  }
}
section.page.form button,
section.page.form a.returnbtn {
  height: 90px;
  width: 100%;
  background-color: #0a75b7;
  font-size: 26px;
  line-height: 90px;
  text-align: center;
  font-weight: bold;
  border-radius: 45px;
  color: #fff;
  position: relative;
  cursor: pointer;
}
section.page.form button.disabled,
section.page.form a.returnbtn.disabled {
  cursor: not-allowed;
  background-color: #aaa;
}
section.page.form button span,
section.page.form a.returnbtn span {
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  section.page.form button,
  section.page.form a.returnbtn {
    font-size: 18px;
    border-radius: 33px;
    height: 66px;
    line-height: 66px;
  }
}
section.page.form button.red,
section.page.form a.returnbtn.red {
  background-color: #c10d23;
}
section.page.form button:after,
section.page.form a.returnbtn:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  /* ★ 真ん中に配置 */
  top: 50%;
  right: 30px;
  /* ★ 中心基準で回転 */
  transform: translate(-55%, -50%) rotate(45deg);
}
@media screen and (max-width: 599px) {
  section.page.form button:after,
  section.page.form a.returnbtn:after {
    right: 10px;
  }
}
section.page.form a.returnbtn {
  background-color: #7c8648;
  height: 60px;
  width: 100%;
  font-size: 18px;
  line-height: 60px;
}
section.page.form a.returnbtn:after {
  display: none;
}

/*
p.required_error_message,
p.mail_error_message {
	display: inline-block;
	padding: 8px;
	line-height: 1.2em;
	font-size: 16px;

	border: #ED3134 solid 1px;
	color: #ED3134;
	background: #F5B7B8;
	margin: 0 10px 20px 10px;
	display: none;

	&.error {
		display: inline-block;
	}
}
*/
input[type=checkbox] {
  margin-right: 6px;
  width: 20px;
  height: 20px;
}

textarea,
input[type=text],
input[type=email],
input[type=tel] {
  border: 1px solid #e2e2e8;
  border-radius: 4px;
  height: 40px;
  width: 100%;
  font-size: 16px;
  line-height: 1.8em;
  padding: 0 8px;
  background: #ffffff;
  border-radius: 6px;
}
textarea.focus,
input[type=text].focus,
input[type=email].focus,
input[type=tel].focus {
  background: #EFFAFB;
}
textarea.error,
input[type=text].error,
input[type=email].error,
input[type=tel].error {
  background: #E4BEBE;
  border: #EE5557 1px solid;
}
textarea.zip,
input[type=text].zip,
input[type=email].zip,
input[type=tel].zip {
  width: 200px;
  margin: 0px 10px 0px 0px;
}
textarea.nen,
input[type=text].nen,
input[type=email].nen,
input[type=tel].nen {
  width: 120px;
  margin: 0px 10px 0px 10px;
}
textarea.require_stop,
input[type=text].require_stop,
input[type=email].require_stop,
input[type=tel].require_stop {
  position: relative;
}

input[type=tel] {
  width: 250px;
}

textarea {
  height: 100px;
}

div.submit {
  padding-top: 20px;
}

section.page.contact.set40 p.c4 {
  text-align: center;
  font-size: 18px;
}
section.page.contact.set40 p.c5 {
  text-align: center;
  font-size: 24px;
}

/*


<section class="page contact set40">  
  <div class="wrap">  
     <div class="d01">    
      <p class="c4">下記の内容のとおり受付ました。<br>また、お客様宛に送信受領の確認メールを送信しました。</p>
        <p class="c5">[受付番号][_mh_mail_soshin contact system_mail_01_message system_mail_01_message_title system_mail_01_message_title_user system_mail_01_address system_mail_01_address_private]  </p>

          <p class="c4">後ほど担当者よりご連絡申し上げますので、<br class="sp">今しばらくお待ち下さい。<br>
（※当社休日の場合は<br class="sp">翌営業日以降のお返事となります。）</p>

    </div>
  </div>
</section> 
*/
section.page.contact.set42 {
  padding-bottom: 120px;
}
section.page.contact.set42 dl {
  display: grid;
  grid-template-columns: 228px 1fr;
}
@media screen and (max-width: 599px) {
  section.page.contact.set42 dl {
    grid-template-columns: 1fr;
  }
}
section.page.contact.set42 dl dt {
  border-top: 1px solid #bbb;
  padding: 16px 16px 16px 20px;
  background: #f3f6f9;
  text-align: left;
}
section.page.contact.set42 dl dt:last-of-type {
  border-bottom: 1px solid #bbb;
}
section.page.contact.set42 dl dt span {
  font-size: 12px;
  color: red;
  float: right;
}
@media screen and (max-width: 599px) {
  section.page.contact.set42 dl dt {
    padding: 8px;
    border-top: 1px solid #bbb;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
    border-bottom: none;
  }
}
section.page.contact.set42 dl dd {
  border-top: 1px solid #bbb;
  padding: 16px;
  text-align: left;
}
section.page.contact.set42 dl dd:last-of-type {
  border-bottom: 1px solid #bbb;
}
@media screen and (max-width: 599px) {
  section.page.contact.set42 dl dd {
    padding: 8px;
    border-top: 1px solid #bbb;
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
    border-bottom: none;
  }
}
section.page.contact.set42 dl dd:last-of-type {
  border-bottom: 1px solid #bbb;
}

div.privacypolicy {
  padding-top: 30px;
}
div.privacypolicy h3 {
  text-align: left;
}
div.privacypolicy .scroll {
  overflow-y: scroll;
  height: 227px;
  border: 1px solid #ccc;
}
div.privacypolicy .scroll .data {
  padding: 30px;
}
div.privacypolicy .scroll .data h4 {
  text-align: left;
  font-weight: bold;
}
div.privacypolicy label {
  font-size: 16px;
  font-weight: bold;
}

section.company_contact p.error,
section.company_contact p.error_message {
  padding-top: 6px;
  color: #f15a24;
  font-size: 1.4rem;
  line-height: 1.4;
  display: none;
  text-align: center;
}
section.company_contact p.error.on,
section.company_contact p.error_message.on {
  display: block;
}
section.company_contact p.error_message {
  padding-top: 0px;
  padding-bottom: 8px;
}
section.company_contact {
  /*

  	div.set_privacy {
  		margin-top: 50px;
  		background: #fff;
  		border-radius: 20px;
  		padding: 60px 150px 60px 150px;

  		dl {

  			dt {
  				margin-top: 60px;

  				&:nth-of-type(1) {
  					margin-top: 0px;
  				}

  				font-size: 1.8rem;
  				border-bottom: c1.$border;
  				text-align: left;
  				padding-bottom: 10px;
  				font-weight: bold;

  			}

  			dd {
  				padding-top: 20px;

  				p {
  					font-size: 1.4rem;
  				}

  				ul {
  					padding-left: 20px;

  					li {
  						text-align: left;
  						font-size: 1.4rem;
  						margin-top: 20px;
  					}

  				}

  				text-align: left;

  				img {
  					height: 14px;
  					width: auto;
  				}
  			}
  		}


  	}

  	div.set_privacy_form {
  		margin-top: 50px;
  		background: #fff;

  		h3 {
  			padding: 6px 0 6px 0 !important;
  			background: c1.$color_default;
  			font-size: 1.6rem;
  			color: #fff;

  		}

  		label {
  			display: block;
  			background: c1.$color_point_04;
  			color: #fff;
  			font-size: 1.8rem;
  			width: 100%;
  			text-align: center;
  			padding: 10px 0 10px 0;

  			&.on {
  				background: #28aace;
  			}
  		}

  		div.privacy_bd {
  			padding: 30px 50px 30px 30px;
  			margin-bottom: 40px;

  			div.sc {
  				border: c1.$border;
  				height: 160px;
  				overflow-x: scroll;
  				margin-bottom: 40px;

  				dl {
  					padding: 20px 40px 20px 40px;

  					dt {
  						margin-top: 40px;

  						&:nth-of-type(1) {
  							margin-top: 0px;
  						}

  						font-size: 1.8rem;
  						border-bottom: c1.$border;
  						text-align: left;
  						padding-bottom: 10px;
  						font-weight: bold;

  					}

  					dd {
  						padding-top: 20px;

  						p {
  							font-size: 1.4rem;
  						}

  						ul {
  							padding-left: 20px;

  							li {
  								text-align: left;
  								font-size: 1.4rem;
  								margin-top: 20px;
  							}

  						}

  						text-align: left;

  						img {
  							height: 14px;
  							width: auto;
  						}
  					}
  				}



  			}


  		}


  	}

  */
  /*
  	div.set_tb {

  		dl {

  			display: flex;
  			justify-content: space-between;
  			flex-wrap: wrap;

  			//	border-right: c1.$border;
  			border-bottom: c1.$border;

  			dt,
  			dd {
  				border-top: c1.$border;
  				border-left: c1.$border;
  				text-align: justify;
  				font-size: 1.6rem;
  			}

  			dt {
  				width: 200px;
  				;
  				padding: 8px 8px 8px 16px;
  				background: c1.$color_background_01_t;

  				font-weight: bold;

  			}

  			dd {
  				background: #fff;
  				width: calc(100% - 200px);
  				padding: 8px 8px 8px 26px;
  			}
  		}



  	}


  	div.set_contact_head {
  		padding-bottom: 60px;

  		p {
  			text-align: center;

  			&.c1 {

  				font-weight: bold;
  			}

  			&.c2 {
  				padding-top: 30px;
  				line-height: 1.3;
  				font-size: 6.2rem;
  				font-family: 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', YuMincho, serif;
  			}

  			&.c4 {
  				padding-top: 40px;
  				font-size: 1.8rem;

  			}

  			&.c5 {
  				padding-top: 40px;
  				font-size: 2.2rem;
  				//padding-bottom: 40px;

  			}

  		}

  	}

  */
}

/*


section.page.contact.set40 {
	//	padding-bottom: 94px;




	padding-top: 100px;

	//	padding-bottom: 60px;
	div.d01 {
		padding-bottom: 60px;

		p {

			text-align: center;

			&.c1 {
				font-size: 24px;
			}

			&.c5 {
				font-size: 24px;
			}
		}


	}




}



*/
section.page.contact.set41 div.d01 {
  padding-bottom: 30px;
}
section.page.contact.set41 div.d01 p {
  text-align: center;
}
section.page.contact.set41 div.d01 p:nth-of-type(1) {
  font-size: 20px;
  padding-bottom: 10px;
}
section.page.contact.set41 div.d01 p:nth-of-type(2) {
  color: #0071bd;
  font-size: 30px;
  line-height: 1.2;
}
section.page.contact.set41 div.d01 p:nth-of-type(3) {
  font-size: 14px;
}
section.page.contact.set41 div.d01 p:nth-of-type(4) {
  margin-top: 16px;
  border-top: 1px solid #bbb;
  padding-top: 10px;
  font-size: 16px;
}

section.page.contact.set41 {
  padding-top: 60px;
}
section.page.contact.set41 div.d01 {
  padding-bottom: 60px;
}
section.page.contact.set41 div.d01 p {
  text-align: center;
}
section.page.contact.set41 div.d01 p:nth-of-type(1) {
  font-size: 30px;
  padding-bottom: 10px;
}
section.page.contact.set41 div.d01 p:nth-of-type(2) {
  color: #0071bd;
  font-size: 42px;
  line-height: 1.2;
}
section.page.contact.set41 div.d01 p:nth-of-type(3) {
  font-size: 16px;
}
section.page.contact.set41 div.d01 p:nth-of-type(4) {
  margin-top: 16px;
  border-top: 1px solid #bbb;
  padding-top: 10px;
  font-size: 20px;
}/*# sourceMappingURL=add_form.css.map */