@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*　通常フォーム　*/
#normalForms {}
#normalForms table {
	width: 100%;
    border-top: 1px solid #8DC012;
    border-left: 1px solid #8DC012;
	border-spacing: 0;
}
#normalForms table th, #normalForms table td {
    border-bottom: 1px solid #8DC012;
    border-right: 1px solid #8DC012;
    padding: 8px;
}
#normalForms table th {
	width: 30%;
    background: #E8F2D0;
    text-align: left;
	font-weight: 400;
}
#normalForms table th span.Wpf_require{
    color: #cf2e2e;
    margin-left: 5px;
}
#normalForms table td{
}
#normalForms table td span.Wpf_sample{
	font-size: 0.85em;
	color: #666666;
}

#normalForms table input{
    padding: 4px;
}
#normalForms table input[type="text"], #normalForms table input[type="number"]{
	width: 125px;
}
#normalForms table select {
    padding: 4px;
	min-width: 175px;
}

#pageWrap .sendBtns{
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
	gap: 0 15px;
}
#pageWrap .sendBtns input {
    padding: 5px 10px;
    height: 40px;
    display: block;
	border-color: gray;
	border: 1px solid #000;
	box-sizing: border-box;
}

/*--------------------------------------------------*/
/*--------------------------------------------------*/

input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

/*--------------------------------------------------*/

/*注意書きリスト*/
.lists{
    width: 100%;
    margin: 22px auto 37px;
    font-size: 14px;
}
.lists ul{
    
}
.lists ul li:not(:last-child){
    margin-bottom: 25px;
}
.lists ul li{
    position: relative;
    padding-left: 20px;
}
.lists ul li::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-color: #1B6000;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;    
    position: absolute;
    top: 2px;
    left: 0;
}
.lists ul li span{
    color: #E81C24;
}

/*STEP*/
.steplists{
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 0 15px;
}
.steplists dl{
    width: calc( 100% / 3 - 34px );
    height: 50px;
    padding: 0 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #E6E6E6;
    font-size: 13px;
    color: #1B6000;
}
.steplists dl.now{
    background-color: #1B6000;
    color: #E6E6E6;
}

/*フォーム*/
.qanda.border{
    width: calc( 100% - 24px );
    margin: 23px auto 0;
    border-top: 1px solid #AEAEAE;
}

/*設問1件（ガワ）*/
.qanda .question{
    width: 100%;
    margin: 12px auto 0;
    padding-bottom: 25px;
}
.qanda .question:first-of-type{
}

/*ラベル*/
.qanda .question .label{
}
.qanda .question .label dl{
    height: 25px;
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.qanda .question .label dl dt{
    font-size: 13px;
    color: #fff;
    background-color: #EC2028;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;    
    width: 39px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qanda .question .label dl dt.gray{
    background-color: #AEAEAE;
}

.qanda .question .label dl dd{
    font-size: 15px;
}

/*フィールド*/
.qanda .question .field{
    margin: 10px auto 0;
}

/*記入例*/
.qanda .question .kinyurei{
    font-size: 13px;
    color: #575757;
    margin: 5px auto 0;
}

/*※請求内容*/
.qanda .question .field dl.flex{
    margin: 15px auto 0;
}
.qanda .question .field dl.flex:first-of-type{
    margin-bottom: 20px;
    border-bottom: 1px solid #AEAEAE;
    padding-bottom: 20px;
}
.qanda .question .field dl.flex dt{
    font-size: 14px;
    margin-bottom: 10px;
}
.qanda .question .field dl.flex dd{
}
.qanda .question .field dl.flex dd.green{
    color: #1B6000;
    font-size: 17px;
    font-weight: bold;
}

/*※郵便番号*/
.qanda .question .label dl.zipcode dd{
    display: flex;
    align-items: center;
}
.qanda .question .label dl.zipcode dd p:first-of-type{
    width: 77px;
}
.qanda .question .label dl.zipcode dd p:last-of-type{
    width: calc( 100% - 77px );
    font-size: 11px;
}
.qanda .question .field dl.flex.zipcode:first-of-type{
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.qanda .question .field dl.flex.zipcode dt{
    text-align: left;
}
.qanda .question .field dl.flex.zipcode dd{
    display: none;
}

/*プルダウン*/
.qanda .question .field .select{
    position: relative;
}
.qanda .question .field .select::before{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 16px;
    height: 12px;
    content: "";
    display: block;
    background-image: url(./image/icon_circle.png);
    background-position: center;
    background-size: 16px 12px;
    pointer-events: none;
}
.qanda .question .field .select select{
    width: 100%;
    height: 40px;
    border: 1px solid #000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 14px;
    padding: 0 14px;
}

/*input（text）*/
.qanda .question .field input[type=text]{
    width: 100%;
    height: 40px;
    background-color: #F9F9F9;
    border: 1px solid #949494;
    box-sizing: border-box;
    text-indent: 14px;
    font-size: 14px;
}

/*テキストエリア*/
.qanda .question .field textarea{
    width: 100%;
    height: 110px;
    background-color: #F9F9F9;
    border: 1px solid #949494;
    box-sizing: border-box;
    padding: 14px;
    font-size: 14px;
}

/*※個人情報*/
.qanda .question .field dl.checkbox{
    display: flex;
    align-items: center;
    width: calc( 100% - 40px ); 
    background-color: #F2F2F2;
    padding: 17px 20px;
}
.qanda .question .field dl.checkbox dd{
    display: flex;
    align-items: center;
    gap: 0 15px;
}
input[type=checkbox] {
    /*display: none;*/
}
#normalForms input[type=checkbox] {
    display: block;
	margin-top: 1px;
}
td#motivate{
	display: flex;
	flex-wrap: wrap;
	gap: 5px 3px;
}
td#motivate input[type=checkbox]{
    width: 20px;
    height: 20px;
}
td#motivate label{
	width: calc( 95% - 35px );
}
.sample_label {
    position: relative; /* ボックスの位置を指定する */
    padding: 0 0 0 45px; /* ボックス内側の余白を指定する */
}
.sample_label:after, .sample_label:before {
    position: absolute; /* ボックスの位置を指定する */
    content: ""; /* ボックスのコンテンツ */
    display: block; /* ブロックレベル要素化する */
    top: 50%; /* 上部から配置の基準位置を決める */
}
.sample_label:after {
    left: 4px; /* 左から配置の基準位置を決める */
    margin-top: -14px; /* チェック枠の位置 */
    width: 30px; /* ボックスの横幅を指定する */
    height: 30px; /* ボックスの高さを指定する */
    border: 1px solid #000; /* ボックスの境界線を実線で指定する */
    border-radius: 50%; /* ボックスの角丸を指定する */
    background-color: #fff;
}
.sample_label:before {
    left: 9px; /* 左から配置の基準位置を決める */
    margin-top: -9px; /* チェックマークの位置 */
    width: 22px; /* ボックスの横幅を指定する */
    height: 22px; /* ボックスの高さを指定する */
    background: #0071B7;/* ボックスの背景色を指定する */
    border-radius: 50%; /* ボックスの角丸を指定する */
    z-index: 2;
    opacity: 0; /* 要素を透過指定する */
}
input[type=checkbox]:checked + .sample_label:before {
    opacity: 1; /* 要素を表示する */
}
.sample_label:hover:after {
    border-color: #0171bd; /* ボックスの境界線を実線で指定する */
}

.qanda .question .field dl.checkbox dd a{
    position: relative;
    color: #0071B7;
    font-size: 15px;
    text-decoration: underline;
}
.qanda .question .field dl.checkbox dd a::after{
    content: '';
    display: block;
    background-image: url("image/icon_tab@2x.png");
    background-size: 21px;
    background-repeat: no-repeat;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -31px;
}

/*--------------------------------------------------*/

/*送信ボタン*/
.sendbtns{
    margin: 28px auto 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0 15px;
}

.sendbtns input[type=submit], .sendbtns input[type=button]{
    cursor: pointer;
    border: 0;
    width: 184px;
    height: 56px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;    
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: bold;
    position: relative;
}

.sendbtns .next, .sendbtns .back{
    margin: 5px auto;
    position: relative;
}
.sendbtns .next::after, .sendbtns .back::after{
    content: '';
    display: block;
    background-repeat: no-repeat;
    background-size: 8px  14px;
    width: 8px;
    height: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.sendbtns .next::after{
    background-image: url("image/icon_next.png");
    right: 15px;
}
.sendbtns .back::after{
    background-image: url("image/icon_back.png");
    left: 15px;
}

.sendbtns input[type=submit]{
    background-color: #2C5316;
}
.sendbtns input[type=button]{
    background-color: #AEAEAE;
}

/*--------------------------------------------------*/

/*セコム*/

.bn_secom{
    width: 68px;
    margin: 0 auto;
    text-align: center;
}

/*--------------------------------------------------*/

/*確認画面*/

.steplists.margin{
    margin: 35px auto 0;    
}

#form_wrap .infotxt{
    width: 100%;
    margin: 35px auto 0;    
    text-align: center;
    font-size: 14px;
}

#form-tbl{
    width: calc( 100% - 24px );
    margin: 30px auto 0;    
}

#form-tbl table{
    width: 100%;
    font-size: 14px;
}
#form-tbl table tr{
    display: block;
    border-bottom: 1px solid #949494;
    padding: 20px 0;
}
#form-tbl table tr th{
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}
#form-tbl table tr td{
    display: block;
    width: 100%;
}
span.msg{
	color: red;
}

/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/