@charset "utf-8";
/* お問い合わせ */

@import url("/css/formCommon.css");



.formWrap{
 width: 840px;
 margin: 100px auto 145px;
}
.catchText{
 font-size: 1.4rem;
 line-height: 2.7rem;
 margin-bottom: 45px;
 text-align: center;
}
.catchText a{
 color: #003f7e;
 border-bottom: 1px solid #003f7e;
 transition: border-color 0.1s;
}
.catchText a:hover{ border-color: rgba(255,255,255,0);}




/*--------------
 エラーメッセージ 
---------------*/
.errorWrap{
 margin: 60px 0 50px;
 color: #ea4040;
}
.errorWrap > p{
 font-size: 1.8rem;
 font-weight: 500;
 margin-bottom: 40px;
 text-align: center;
}
.errorWrap ul{
 border: 5px solid #ea4040;
 padding: 40px;
 font-size: 1.4rem;
 line-height: 2.7rem;
}



/*------------------
 テーブル部分レイアウト 
-------------------*/
.contactTable{
 border-collapse: collapse;
 width: 100%;
 margin: 20px 0;
}
.catchText + .contactTable{ margin-top: 75px;}/*戻るリンクがないパターン*/
.contactTable tr:not(:last-of-type){ border-bottom: 1px solid #fff;}
.contactTable th,
.contactTable td{
 vertical-align: top;
 text-align: left;
}
.contactTable th{
 padding: 25px 0 25px 24px;
 background-color: #003f7e;
 width: 250px;
 font-size: 1.6rem;
 font-weight: 500;
 color: #fff;
}
.requiredIcon{
 display: inline-block;
 width: 46px;
 height: 20px;
 line-height: 20px;
 background-color: #ea4040;
 color: #fff;
 text-align: center;
 font-size: 1.2rem;
 font-weight: 500;
 vertical-align: middle;
 margin-top: -2px;
 margin-left: 13px;
}
.contactTable td{
 background-color: #f9f9f9;
 padding: 22px;
 font-size: 1.4rem;
}
.contactTable td p{ line-height: 2.7rem;}
.contactTable td.numberTd{ vertical-align: middle;}


/* テキストボックス */
.contactTable .textBox{
 height: 28px;
 width: 100%;
}

/* テキストエリア */
.contactTable .textBox.textarea{
 height: auto;
 min-height: 180px;
 padding: 10px;
 line-height: 2rem;
 resize: vertical;/*縦方向のみリサイズ許可*/
}

/* 幅調整 */
.contactTable .w1{ width: 210px;}
.contactTable .w2{ width: 80px;}
.contactTable .w3{ width: 160px;}
.contactTable .w4{ width: 320px;}
.contactTable .w5{ width: 110px;}



/*--------------
 住所 
---------------*/
.contactTable .addressTd .w1{ margin: 4px 0 10px;}
.contactTable .addressTd .textBox:not(.w1){ margin: 4px 0 7px;}

/* セレクトボックス */
.selectBox{ background-color: #fff;}
.selectBox::after{
 top: 7px;
 right: 15px;
}
.selectBox select{
 height: 28px;
 padding-right: 40px;
}

/* 半角アイコン */
.N-label{
 margin-left: 13px;
 vertical-align: middle;
 margin-top: -2px;
}

/* ハイフン不要 */
.contactTable .small{
 font-size: 1rem;
 margin-left: 9px;
 vertical-align: middle;
 display: inline-block;
 margin-top: -2px;
}



/*---------------
 業種 
----------------*/
.contactTable .businessTd h2{ margin-bottom: 12px;}
.contactTable .businessTd div.margin{ margin: 8px 0 22px;}

/*ラジオボタン*/
.radioWrap{
 display: inline-flex;
 align-items: center;
 height: 26px;
 margin-right: 16px;
 cursor: pointer;
}
.businessTd .radioWrap{ height: 32px;}
input[type="radio"]{ display: none;}
.radio{
 display: inline-block;
 width: 18px;
 height: 18px;
 border: 1px solid #e0e0e0;
 background-color: #fff;
 position: relative;
 margin-right: 9px;
 border-radius: 50%;
 transition: border-color 0.15s;
}
.radio::after{
 content: '';
 display: inline-block;
 position: absolute;
 opacity: 0;
 transition: opacity 0.15s;
 width: 8px;
 height: 8px;
 background-color: #003f7e;
 top: calc(50% - 4px);
 left: calc(50% - 4px);
 border-radius: 50%;
}
input[type="radio"]:checked + .radio{ border-color: #003f7e;}
input[type="radio"]:checked + .radio::after{ opacity: 1;}
.sonota{
 display: flex;
 align-items: center;
}
.sonota .radioWrap{ margin-right: 11px;}



/*---------------
カタログ
----------------*/
.contactTable .catalogTd h2{ margin-bottom: 12px;}
.contactTable .catalogTd div.margin{ margin: 22px 0 0;}

.contactTable .catalogTd div.catalog_type {
  display: flex;
  flex-wrap: wrap;
}

.contactTable .catalogTd .sonota .checkWrap {
    margin-right: 11px;
}

.contactTable .catalogTd div.catalog_type label,
.contactTable .catalogTd .sonota label{
  height: 32px;
  margin: 0 16px 0 0;}

.contactConf .contactTable td.catalogTd ul {} 
.contactConf .contactTable td.catalogTd ul li {
  margin-left: 2em;
  list-style: disc;
  text-indent: -3px;
}



/*--------------
 お問い合わせ製品 
---------------*/
.contactTable .productCode{
 display: inline-block;
 width: 85px;
}



/*--------------
 送信ボタン 
---------------*/
.linkBtn{ margin-top: 30px;}
.contactTable + .linkBtn{ margin-top: 60px;}/*戻るリンクがないパターン*/
label.linkBtn input{ display: none;}




/*--------------
 確認画面 
----------------*/
.contactConf .contactTable td{ line-height: 2.7rem;}



/*--------------
 完了画面 
----------------*/
.contactEnd .catchText{ margin-bottom: 90px;}



