/**********************************************/
/* シャノン様のフォームCSS */
/**********************************************/
@media (max-width: 767px) {
.smpForm {
  width: 100%!important;
  padding: 0!important;
}
}
/* @media screen and (max-width: 992px) {
   .smpForm .ss_input {
        width: 100% !important;
    }
} */
.smpForm .ss_contents {
	margin: 0 auto 40px !important;
}
.smpForm .ss_contents fieldset {
	border: none !important;
	display: flex;
	@media (max-width: 992px) {
		display: block;
	}
}
/* フォームの枠全体 */
.smpForm .ss_field,
.smpForm .ss_enquete_field {
  width: 100%;
  border: 1.5px solid #eaebee;
  overflow: hidden;
  word-break: break-all;
  word-wrap: break-word;
  min-width: 0;
  padding: 0;
  margin: 0;
}

/* フォームの枠の左側 */
.smpForm .ss_form_title,
.smpForm .ss_enquete_title {
  line-height: 1.2;
  font-weight: bold;
  /*padding: 15px 15px 14px;*/
  padding: 20px 15px 20px;
  border-top: solid 1px #eaebee;
  border-left: solid 1px #eaebee;
  border-right: solid 1px #eaebee;
  width: 23%;
  overflow: hidden;
  color: #595960;
  font-style: normal;
  font-size: 100%;
  text-align: left;
  word-break: break-all;
  word-wrap: break-word;
  vertical-align: top;
  background-color: #f8f8f8;
  padding-top: 15px;
  box-sizing: border-box;
}

/* フォームの枠の右側 */
.smpForm .ss_grid {
  /*padding: 15px 18px 14px;*/
  padding: 20px 18px 20px;
  text-align: left;
  vertical-align: top;
  color: #595960;
  background-color: #ffffff;
  border-top: solid 1px #eaebee;
  border-right: solid 1px #eaebee;
  overflow: hidden;
  word-break: break-all;
  word-wrap: break-word;
  width: 77%;
  box-sizing: border-box;
  justify-content: flex-start;
}

@media (max-width: 992px) {
  .smpForm .ss_form_title,
  .smpForm .ss_enquete_title {
    width: 100%;
    display: block;
    margin: 0 auto;
    border: none;
    border-radius: 3px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .smpForm .ss_grid {
    display: list-item;
    width: 100%;
    border-top: none !important;
    border-left: solid 1px #eaebee;
  }
.smpForm #ss_name .ss_grid,
.smpForm #ss_name_ka .ss_grid {
	display: flex;
}
.smpForm #ss_zip .ss_grid {
	display: flex;

}
}
/* 必須 */
.smpForm .ss_user_notnull{
	position: relative !important;
	font-size: 5px !important;
	color: #fff !important;
}
.smpForm .ss_user_notnull::after {
	content: "必須";
	font-size: 11px;
	color: #fff;
	background-color: #dc3545;
	padding: 1px 5px 2px;
	border-radius: 3px;
	font-weight: normal;
	line-height: 1;
  white-space: nowrap;
}
/* インプット(input) */
.smpForm .ss_input {
	display: flex;
	align-items: center;
	width: 100%;
}
.smpForm .ss_field input[type=text],
.smpForm .ss_field input[type=tel],
.smpForm .ss_field input[type=email],
.smpForm .ss_field select,
.smpForm .ss_enquete_field textarea {
	min-width: 0; /* Safari でのはみ出し防止 */
	border-radius: .25rem !important;
	display: block;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc!important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.smpForm .ss_field input[type=text]:focus,
.smpForm .ss_field input[type=tel]:focus,
.smpForm .ss_field input[type=email]:focus,
.smpForm .ss_field select:focus,
.smpForm .ss_enquete_field textarea:focus {
  border:1px solid #55ccff !important;
}
/* .ss_container input[type=text],
.ss_container input[type=email],
.ss_container select,
.ss_enquete_form textarea { */
.smpForm .ss_field input[type=text],
.smpForm .ss_field input[type=email],
.smpForm .ss_field select,
.smpForm .ss_enquete_field textarea {
	width: 100%;
}
.smpForm .ss_enquete_field textarea {
	height: auto;
}

/* iPhone Safariの自動入力用アイコン（点）を非表示にする */
.smpForm .ss_container input::-webkit-contacts-auto-fill-button,
.smpForm .ss_container input::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
}

/* セレクトボックス
(余計な装飾をリセットし、▼矢印を表示) */
.smpForm .ss_container .ss_input select {
    -webkit-appearance: none; /* iPhoneの「点」とデフォルト矢印を非表示にする */
    -moz-appearance: none;
    appearance: none;

    /* 下向きの三角形（▼）*/
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M0 3l5 5 5-5z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center; /* 右端から12pxの位置に配置 */
    background-size: 10px; /* 矢印の大きさ */
    padding-right: 32px !important; /* 矢印と文字が重ならないように余白を作る */
}

/* IEなどの古いブラウザで標準の矢印を消すための設定 */
.smpForm .ss_container select::-ms-expand {
    display: none;
}


/* お名前 */
.smpForm #ss_name .ss_input,
.smpForm #ss_name_ka  .ss_input {
	width: auto;
}
.smpForm #ss_name .ss_input:first-child,
.smpForm #ss_name_ka  .ss_input:first-child {
  margin-right: 10px;
}
.smpForm #ss_name .ss_input .ss_leftComment,
.smpForm #ss_name_ka  .ss_input .ss_leftComment {
	white-space: nowrap;
}
.smpForm #ss_name .ss_input .ss_rightComment,
.smpForm #ss_name_ka  .ss_input .ss_rightComment {
	white-space: nowrap;
}
/* 会社名*/
.smpForm #ss_company_name .ss_input {
	display: block!important;
}
/* 郵便番号 */
.smpForm #ss_zip .ss_input,
.smpForm #ss_zip .ss_input input {
	width: auto!important;
}
/* 郵便番号、電話番号のコメント*/
.smpForm #ss_zip .ss_input .ss_rightComment,
.smpForm #ss_tel .ss_input .ss_rightComment {
	white-space: nowrap;
}
/* 電話番号 */
@media (max-width: 767px) {
.smpForm #ss_tel .ss_input {
  display: block!important;
}
}
/* FAX */
@media (max-width: 767px) {
.smpForm #ss_fax .ss_input {
  display: block!important;
}
}
/* メールアドレス */
.smpForm #ss_email .ss_input {
  display: block!important;
}
/* メールアドレス(確認) */
.smpForm #ss_email_conf .ss_input {
  display: block!important;
}
/* 都道府県*/
.smpForm #ss_prefecture_master_id .ss_bottomComment {
  margin-left: 10px;
}
/* お問い合わせ内容 */
.smpForm .ss_enquete_form {
  border-bottom: solid 1px #eaebee;
  margin-bottom: 30px;
}
.smpForm .ss_enquete_form .ss_input {
	display: block;
}
/* チェックボックス */
.smpForm .ss_input input[type="checkbox"] {
    transform: scale(1.3);
    margin: 20px 8px 20px 0px;
    cursor: pointer;
}
.smpForm .ss_input label:hover {
    opacity: 0.7;
}
.smpForm .ss_input input[type="checkbox"]:nth-of-type(n+2) {
/* 2番目以降（3, 4, 5...すべて）に適用 */
  margin-left: 20px;
}
/* ラジオボタン */
.smpForm .ss_input input[type="radio"] {
    transform: scale(1.3);
    margin: 20px 8px 20px 0px;
    cursor: pointer;
}
.smpForm .ss_input label:hover {
    opacity: 0.7;
}
.smpForm .ss_input input[type="radio"]:nth-of-type(n+2) {
  margin-left: 30px;
}
/* チェックボックス（tableバージョン）*/
.smpForm .ss_field .ss_input table td,
.smpForm .ss_enquete_field .ss_input table td {
  padding-right: 20px;
}
@media (max-width: 767px) {
  /* テーブル、行、セルをすべてブロック要素に変える */
  .smpForm .ss_input table,
  .smpForm .ss_input thead,
  .smpForm .ss_input tbody,
  .smpForm .ss_input tr,
  .smpForm .ss_input th,
  .smpForm .ss_input td {
    display: block !important;
    width: 100% !important; /* 幅をいっぱいにする */
    box-sizing: border-box !important; /* 余白を含めて100%にする */
  }
  .smpForm .ss_input td {
    margin-bottom: 10px;
  }
  .smpForm .ss_input td input[type="checkbox"] {
    margin: 0px 8px 10px 0px;
  }
}
/* ボタン */
.smpForm .ss_btnArea {
  margin-top: 30px;
}
/******* 完了画面のメッセージ ********/
.smpForm .ss_complete_message {
  font-size: 20px;
  line-height: 1.3;
}
/******* ▼▼▼案件固有の設定▼▼▼ ********/
/* ボタンの色 */
.smpForm .ss_btnArea input {
	background-color: #eb5e18 !important;
	border: 2px solid #eb5e18 !important;
  width: 50%!important;
  border-radius: 10px;
  padding: 20px 0!important;
  font-size: 18px!important;
  cursor: pointer;
}
@media (max-width: 767px) {
  .smpForm .ss_btnArea input {
    width: 100%!important;
  }
}


/* 個人情報保護方針 */
.ss_privacy {
    border-bottom:1px solid #eaebee;
}
.ss_privacy_field .ss_grid {
    line-height: 1.6;
    display: block!important;
}
.ss_privacy_field .ss_grid a {
    color: #e94709!important;
}