List Finderご紹介キャンペーン

  • ご入力
  • ご確認
  • 完了

会社名
氏名
メールアドレス
お問い合わせ内容
/* =================================== 基本設定 =================================== */ html{ overflow-y:scroll; } html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; font-weight: normal; font-style: normal; } li { list-style: none; } /* =================================== 共通 =================================== */ /* フォント */ body { font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;color:#032240; } select,input,button,textarea { font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif; line-height:1.8; font-size:80%;padding:5px;color:#032240; } /* =================================== 画面全体のレイアウト =================================== */ /* 画面全体の表示設定 */ body { background:#F3F3F3; /* 背景色 */ text-align:center; /* フォームエリアを中央に表示 */ } /* フォームエリア全体の設定 */ div.container { width:840px; /* 画面の横幅 */ background:white; /* 背景色 */ border-radius: 0px; /* 追記 */ border: 1px solid #e3e3e3; /* 追記:変更 */ /* border:Gainsboro 2px solid; border-top:none; */ /* 外枠のラインの色と太さ */ font-size:15px; /* フォントの初期サイズ */ color:#032240; /* フォントの初期カラー */ /* 追記:変更 */ margin:50px auto; /* 画面の中央に表示 */ /* 追記:変更 */ text-align:left; /* 左寄せ */ } /* =================================== ヘッダー =================================== */ .logo { background:#e9f3fd; height: 60px; } .logo img{ height: 40px; margin: 10px; } .step{ height: 50px; padding: 20px; } .step ul { display: table; } .title{ font-size: 24px; /*margin: 20px;*/ color:#032240; text-align: center; /*font-weight: bold;*/ padding-top: 30px; } /* =================================== フッター =================================== */ .footer { background:#e9f3fd; height: 20px; } .privacy_policy { font-size: 12px; margin: 10px auto; } /* =================================== 設問エリアのレイアウト =================================== */ /* 設問エリア全体の設定 */ div.wrapper { width:800px; /* 画面の横幅 */ margin:20px auto 0; /* 中央に表示 */ background:white; } /* 設問の表 */ table.items { border:none; } /* 設問の行 */ tr.item { border-bottom: solid 3px #666; } /* 必要であれば行のデザインを設定することができます */ /*設問名のセルのデザイン */ td.label { float:left; width:35%; /* 実際の設問名の文字の長さに合わせて調整してください */ /*background-color: #e9f3fd; 追記、というか削除*/ padding: 10px; /*color:#1a5c97;*/ font-size:16px; /*border-left:#1a5c97 4px solid;*/ /* background:none; */ } /* 設問の入力セルおよび表示セルのデザイン */ td.value { float:left; width:55%; /* 入力コントロールの幅に合わせて調整してください */ padding:4px 3px 2px 12px; border-bottom:none; /* 設問と設問の間の下線 */ background:white; font-size:16px; border-radius: 0px; /* 追記 */ line-height:1.8; } /* 設問の入力例/説明セルのデザイン */ td.comment { float:right; width:500px; font-size:11px; padding:2px 2px 12px 2px; color:#1a5c97; border-bottom:none; /*background:White; */ position: relative; left: 10px; } /* 入力セルの「氏」「名」の文字のデザイン */ span.label_name { padding-right:5px; font-size:70%; /* font-weight:bold; */ color:DarkSlateGray; } /* 入力確認画面、完了画面の入力された文字のデザイン */ p.value { font-size:100%; } /* ボタンの表示エリアの設定 */ div.button_area { width:850px; /*margin:10px auto 10px auto; */ /* 中央に表示、上下に10pxの余白 */ /* background:MintCream;*/ padding:0 0 50px 0; /* ボタンとの上下の隙間のサイズ */ text-align:center; /* 中央にボタンを表示 */ } /* 入力エラーメッセージのデザイン */ div.message { padding:5px 10px 5px 10px; /* メッセージテキストと背景色の隙間のサイズ */ margin:10px 13px 10px 13px; /* 上 右 下 左 の隙間のサイズ */ font-size:14px; font-weight:bold; color:Crimson; background:MistyRose; } /* 公開終了メッセージのデザイン */ div.finished-message { padding:5px 10px 5px 10px; /* メッセージテキストと背景色の隙間のサイズ */ margin:10px 13px 10px 13px; /* 上 右 下 左 の隙間のサイズ */ font-size:14px; font-weight:bold; color:Crimson; background:MistyRose; } /* =================================== 入力コントロールのデザイン =================================== */ /* 確認/送信/戻る/登録ボタン */ input[type=button] { font-size:16px; background:#226699; /* ボタンの色 */ padding:5px 100px 5px 100px; /* ボタンの文字の 上 右 下 左 の隙間のサイズ */ margin:0px 10px 0px 10px; /* 確認画面に表示される2つのボタンの左右の余白サイズ */ color:white; /* 文字の色 */ font-weight:bold; /* ボタンに枠線をつけたい場合は、ここを設定してください */ border-top:#226699 2px solid; border-left:#226699 2px solid; border-right:#226699 2px solid; border-bottom:#226699 2px solid; border-radius: 0px; } input[type=button]:hover { cursor: pointer; } /*フィールドの背景色 */ input[type="text"] { border: 1px solid #ccc;border-radius: 0.67em; background-color:#f4faff; } /* テキストボックス */ textarea { border: 1px solid #ccc;border-radius: 0.67em; background-color:#f4faff; } /* テキストエリア */ select,option { border: 1px solid #ccc;border-radius: 0.67em; background-color:#f4faff; }/*セレクトボックス*/ /* 入力中のフィールドの背景色 */ /* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */ input[type="text"]:focus { background-color:MintCream; } /* テキストボックス */ select:focus { background-color:MintCream; } /* プルダウン */ textarea:focus { background-color:MintCream; } /* テキストエリア */ select,option {height: 1.5rem; border: 1px solid #ccc; border-radius: 0.67em em ; background-color: #f4faff; box-sizing: content-box; } /* =================================== 必須項目のマークおよびメッセージなど =================================== */ /* 必須項目のマーク */ span.required { margin-left:5px; font-size:60%; /* font-weight:bold; */ color:OrangeRed; } span.required:after { /* ここを編集することで表示されるマークを変更できます */ content:"※必須"; } /* 必須項目についての説明文 */ p.required_msg { text-align:right; margin-right:4px; font-size:80%; font-weight:bold; color:OrangeRed; } p.required_msg:after { /* ここを編集することで表示されるマークを変更できます */ content:"「※必須」となっている項目は必ず入力してください。"; } /*レスポンシブ対応 */ @media screen and (max-width: 767px) { div.container , div.wrapper , div.button_area{ width: 100%; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } div.container { margin: 0; padding: 0 10px; } p.title { margin-top: 0 !important; padding-top: 30px !important; } .step ul { width: 100% !important; float: none !important; } .step li { width: 30% !important; display: inline-block !important; margin-right: 5px !important; } p.required_msg { text-align: center; } .item td { float: none; display: block; width: 100%; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } textarea , input[type="text"] { width: 100%; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } input#lf_form_submit_button { padding: 5px 50px; width: 80%; margin: 0 auto; } }
プライバシーポリシーに同意の上、送信してください。

同意して送信すると、Cookieにより当社のWebサイト上における閲覧履歴と個人情報を紐付けて把握、分析する場合があります。