お問い合わせ内容を下記にご記入ください。

氏名
氏名(カナ)
会社名
部署名
電話番号
メールアドレス

このページを何で知りましたか 日本情報通信からのメール
Google検索
Yahoo検索
その他
ITに関するお立場 導入を検討する立場
導入を決定する立場
顧客に提案する立場
その他
当社への具体的な相談内容について明記ください
/* =================================== 基本設定 =================================== */ 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: Verdana, Roboto, 'Droid Sans', Meiryo, 'MS Pゴシック', 'Hiragino Kaku Gothic ProN', sans-serif; } select,input,button,textarea { font-family: Verdana, Roboto, 'Droid Sans', Meiryo, 'MS Pゴシック', 'Hiragino Kaku Gothic ProN', sans-serif; font-size:100%; } /* =================================== 画面全体のレイアウト =================================== */ /* 画面全体の表示設定 */ body { background:#fff; /* 背景色 */ text-align:left; /* フォームエリアを中央に表示 */ } /* フォームエリア全体の設定 */ div.container { width:800px; /* 画面の横幅 */ background:white; /* 背景色 */ font-size:16px; /* フォントの初期サイズ */ color:#333; /* フォントの初期カラー */ margin:0 auto; /* 画面の中央に表示 */ text-align:left; /* 左寄せ */ } center img{ width:140px !important; height:60px; } /* =================================== 設問エリアのレイアウト =================================== */ /* 設問エリア全体の設定 */ div.wrapper { width:800px; /* 画面の横幅 */ margin:0 auto; /* 中央に表示 */ background:white; } /* 設問の表 */ table.items { margin-top:32px; border-collapse:collapse; } /* 設問の行 */ tr.item { border-top:#e4e4e4 1px solid; } td.item{ padding:15px 10px; } /*設問名のセルのデザイン */ td.label { width:500px; /* 実際の設問名の文字の長さに合わせて調整してください */ font-size:16px; background:none; vertical-align:top; padding-top:15px; } /* 設問の入力セルおよび表示セルのデザイン */ td.value { float:left; width:500px; /* 入力コントロールの幅に合わせて調整してください */ padding:15px 3px 15px 12px; border-bottom:none; /* 設問と設問の間の下線 */ background:White; } /* 設問の入力例/説明セルのデザイン */ td.comment { float:right; width:100px; font-size:13px; padding:10px 2px 2px 2px; color:Green; border-bottom:none; background:White; } /* 入力セルの「氏」「名」の文字のデザイン */ span.label_name { padding-right:5px; font-size:85%; padding-left:5px; } /* 入力確認画面、完了画面の入力された文字のデザイン */ p.value { font-size:110%; } /* ボタンの表示エリアの設定 */ div.button_area { width:95%;; margin:10px auto 10px auto; /* 中央に表示、上下に10pxの余白 */ padding:10px 0 10px 0; /* ボタンとの上下の隙間のサイズ */ text-align:center; /* 中央にボタンを表示 */ } /* 入力エラーメッセージのデザイン */ div.message { width:70%; padding:5px 10px 5px 10px; /* メッセージテキストと背景色の隙間のサイズ */ margin:10px auto 10px ; /* 上 右 下 左 の隙間のサイズ */ font-size:14px; font-weight:bold; color:red; border:red 1px solid; } /* 公開終了メッセージのデザイン */ div.finished-message { padding:5px 10px 5px 10px; /* メッセージテキストと背景色の隙間のサイズ */ margin:10px 13px 10px 13px; /* 上 右 下 左 の隙間のサイズ */ font-size:14px; font-weight:bold; color:#000; } /* =================================== 入力コントロールのデザイン =================================== */ /* 確認/送信/戻る/登録ボタン */ input[type=button] { font-size:18px; padding:10px 25px; /* ボタンの文字の 上 右 下 左 の隙間のサイズ */ margin:0px 10px 0px 10px; /* 確認画面に表示される2つのボタンの左右の余白サイズ */ color:white; /* 文字の色 */ font-weight:bold; /* ボタンに枠線をつけたい場合は、ここを設定してください */ background: #ffa84c; background: -moz-linear-gradient(top, #ffa84c 0%, #ff7b0d 100%); background: -webkit-linear-gradient(top, #ffa84c 0%,#ff7b0d 100%); background: linear-gradient(to bottom, #ffa84c 0%,#ff7b0d 100%); border-radius:5px; border:none; } input[type=button]:hover { cursor: pointer; } /* 入力中のフィールドの背景色 */ /* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */ input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus, select:focus, textarea:focus, input[type="radio"]:focus, input[type="checkbox"]:focus{ background-color:#ffedd3; outline: 2px #fb852f solid;} /* =================================== 必須項目のマークおよびメッセージなど =================================== */ /* 必須項目のマーク */ span.required { margin-left:10px; font-size:80%; font-weight:bold; background-color:OrangeRed; color:White; } 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:""; } /* お問い合わせタイトル */ p.q_title { margin:3px 3px 3px 0; font-size:30px; text-align: center; color: #0097c1; } p.q_title + img{ display:block; width:550px !important; margin:0 auto 1px; } /* メールアドレスの再入力メッセージ */ p.label_mail { margin:5px 0 3px 0; font-size:10px; } p.label_mail:after { /* ここを編集することで表示されるメッセージを変更できます */ content:"確認のため、もう一度メールアドレスを入力してください"; } /*プライバそーポリシー*/ #privacy_policy{ width:90%; margin:auto; line-height:1.5em; text-align:left; } #privacy_policy a{ color:#5282bc; font-weight:bold; } /* =================================== スマートフォン表示用のレイアウト =================================== */ /* スマートフォンとして認識する画面の横幅のサイズ */ @media screen and ( max-width:500px ) { /* フォームエリア全体の設定 */ div.container { width: 100%; } p.q_title { font-size:18px; } p.q_title + img{ display:block; width:100% !important; margin:0 auto; } div.message { width:90%; } /* 設問エリア全体の設定 */ div.wrapper { width: 90%; } /*設問名のセルのデザイン */ td.label { float: left; width: 90%; padding-bottom:5px; } /* 設問の入力セルおよび表示セルのデザイン */ td.value { width: 90%; /* 入力コントロールの幅に合わせて調整してください */ padding-bottom:0px; } /* 設問の入力例/説明セルのデザイン */ td.comment { width: 90%; padding: 0px 2px 10px 2px; } /* 設問の入力例/テキストボックス */ input[type="text"],input[type="tel"],input[type="email"]{ font-size: 120%; width: 90% !important; border:#333 1px solid; margin-bottom:5px; } input[type="checkbox"] input[type="radio"],{ border:#333 1px solid; } /* 設問の入力例/テキストエリア */ textarea { width: 90%; height: 100px; border:#333 1px solid; } /* ボタンの表示エリアの設定 */ div.button_area { width: 90%; } }
プライバシーポリシーに同意の上、送信してください。

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