こちらのフォームに入力いただくことで資料をダウンロードできます。

氏名
会社名
部署名
メールアドレス
電話番号
ご連絡内容 出稿検討  情報収集  その他 
/* =================================== 基本設定 =================================== */ 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, textarea, input[type=txt] { -webkit-appearance: none; -moz-appearance: none; appearance: none; border-radius: 0; } select, input, button, textarea { background-color: #fff; border: 1px solid #ddd; padding: 10px; width: 100%; vertical-align: middle; font-size: 16px; box-sizing: border-box; } textarea { min-width: 300px; } input[type=radio], input[type=checkbox] { width: auto; } input[type=radio] { position: relative; margin: 0 0.5rem; cursor: pointer; border-radius: 50%; width: 1rem; height: 1rem; } input[type=radio]:before { position: absolute; z-index: 1; top: 0.1rem; left: 0.275rem; width: 0.9rem; height: 0.9rem; content: ''; -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75); transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75); -webkit-transform: scale(0, 0); transform: scale(0, 0); border-radius: 50%; background: #da3c41; } input[type=radio]:checked:before { -webkit-transform: scale(1, 1); transform: scale(1, 1); } input[type=radio]:after { position: absolute; top: -0.25rem; left: -0.1rem; width: 1.5rem; height: 1.5rem; content: ''; border: 1px solid #ccc; border-radius: 50%; background: #ffffff; } #item_0 input { width: 30%; } /* =================================== 画面全体のレイアウト =================================== */ /* 画面全体の表示設定 */ body { background: #fff; /* 背景色 */ text-align: center; /* フォームエリアを中央に表示 */ } /* フォームエリア全体の設定 */ div.container { width: 100% !important; /* 画面の横幅 */ background: white; /* 背景色 */ border: none; /* 外枠のラインの色と太さ */ font-size: 15px; /* フォントの初期サイズ */ color: #333; /* フォントの初期カラー */ margin: 0 auto; /* 画面の中央に表示 */ text-align: left; /* 左寄せ */ max-width: 1150px !important; padding-top: 20px; height: 100vh; } b { font-weight: bold; } /* =================================== 設問エリアのレイアウト =================================== */ /* 設問エリア全体の設定 */ div.wrapper { width: 100% !important; /* 画面の横幅 */ margin: 0 auto; /* 中央に表示 */ background: white; max-width: 1150px !important; } /* 設問の表 */ table.items { border: Gainsboro 1px solid; } /* 設問の行 */ tr.item {} /* 必要であれば行のデザインを設定することができます */ /*設問名のセルのデザイン */ td.label { width: 150px; /* 実際の設問名の文字の長さに合わせて調整してください */ padding: 16px 10px; font-weight: bold; vertical-align: middle; /* ラベルの配置 セルの上部に表示したい場合は top */ background: #eee; } /* 設問の入力セルおよび表示セルのデザイン */ td.value { width: auto; /* 入力コントロールの幅に合わせて調整してください */ padding: 3px 10px; border-bottom: none; /* 設問と設問の間の下線 */ background: White; display: flex; align-items: center; min-height: 48px; } /* 設問の入力例/説明セルのデザイン */ td.comment { font-size: 12px; padding-left: 10px; color: DarkSlateGray; border-bottom: GhostWhite 1px solid; background: White; } /* 入力セルの「氏」「名」の文字のデザイン */ span.label_name { padding-right: 5px; font-size: 85%; font-weight: bold; color: DarkSlateGray; margin: 10px; } /* 入力確認画面、完了画面の入力された文字のデザイン */ p.value { font-size: 110%; } /* ボタンの表示エリアの設定 */ div.button_area { padding: 0 0 30px; /* ボタンとの上下の隙間のサイズ */ text-align: center; /* 中央にボタンを表示 */ } div.button_area input { width: auto; } /* 入力エラーメッセージのデザイン */ div.message { padding: 5px 10px 5px 10px; /* メッセージテキストと背景色の隙間のサイズ */ margin: 10px 13px 10px 13px; /* 上 右 下 左 の隙間のサイズ */ font-size: 14px; font-weight: bold; color: OrangeRed; background: LightYellow; } /* 公開終了メッセージのデザイン */ 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] { -webkit-appearance: none; border-radius: 0; } /* 確認/送信/戻る/登録ボタン */ input[type=button] { border: none; position: relative; display: block; border-radius: 3px; background: #c50018; box-shadow: 0 5px 0 0 #9d0000; color: #FFF; font-size: 18px; font-weight: bold; line-height: 50px; -webkit-transition: none; transition: none; text-decoration: none; margin: 10px auto; height: 50px; padding: 0 60px; max-width: 100%; } input[type=button]:hover { cursor: pointer; background-color: #c01b13; } /* 入力中のフィールドの背景色 */ /* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */ input[type="text"]:focus { background-color: LightYellow; } /* テキストボックス */ select:focus { background-color: LightYellow; } /* プルダウン */ textarea:focus { background-color: LightYellow; } /* テキストエリア */ /* =================================== 必須項目のマークおよびメッセージなど =================================== */ /* 必須項目のマーク */ span.required { float: right; margin-top: 2px; font-size: 60%; font-weight: bold; color: Crimson; } span.required:after { /* ここを編集することで表示されるマークを変更できます */ content: "※必須"; } /* 必須項目についての説明文 */ p.required_msg { color: Crimson; font-size: 12px; font-weight: bold; padding: 10px 10px 0; text-align: right; } p.required_msg:after { /* ここを編集することで表示されるマークを変更できます */ content: "「※必須」となっている項目は必ず入力してください。"; } /* メールアドレスの再入力メッセージ */ p.label_mail { margin: 5px 0 1px 0; font-size: 85%; font-weight: bold; color: DarkSlateGray; } p.label_mail:after { /* ここを編集することで表示されるメッセージを変更できます */ content: "確認のため、もう一度メールアドレスを入力してください"; } .ttl { background: #fff; color: #333; font-size: 30px; font-weight: bolder; padding: 20px 0; text-align: center; } table.items { border: medium none; width: 100%; } #privacy_policy { font-size: 12px; } .copy { background: #999; color: #fff; font-size: 12px; padding: 10px 0; text-align: center; } /* =================================== スマートフォン表示用のレイアウト =================================== */ /* スマートフォンとして認識する画面の横幅のサイズ */ @media screen and (max-width:767px) { /* フォームエリア全体の設定 */ div.container { width: 90%; padding-top: 20px; } /* 設問エリア全体の設定 */ div.wrapper { width: 100%; } /* 設問の表 */ table.items { width: 100%; } /*設問名のセルのデザイン */ td.label { float: left; width: 90%; padding: 10px 5%; } /* 必須項目のマーク */ span.required { float: initial; } /* 設問の入力セルおよび表示セルのデザイン */ td.value { float: left; width: 96%; /* 入力コントロールの幅に合わせて調整してください */ padding: 8px 2%; display: block; } /* 設問の入力例/説明セルのデザイン */ td.comment { float: left; width: 95%; padding: 0px 2px 10px 2px; } /* 設問の入力例/テキストボックス */ input[type="text"], #item_0 input { width: 100% !important; padding: 10px 2%; -webkit-appearance: none; -moz-appearance: none; appearance: none; border-radius: 0; } /* 設問の入力例/テキストエリア */ textarea { width: 100% !important; height: 70px; margin-top: 10px; } /* ボタンの表示エリアの設定 */ div.button_area { width: 95%; } #privacy_policy { font-size: 11px; } .ttl { font-size: 18px; padding: 20px 0 15px; } p.required_msg { text-align: left; } } @import url("https://media.iid.co.jp/wp-content/themes/iidmedianavi/base/form.css");
プライバシーポリシーに同意の上、送信してください。

Please agree to the privacy policy and send this message.

同意して送信すると、当社が個別に設定を行う場合を除き、当社はお客様のWebブラウザのクッキーにより当社のWebサイト上におけるお客様の行動履歴と個人情報を紐付けて把握、分析します。
After you send this message, we use your cookies to connect information you provide on this web site and your personal information, and analyze them.