【期間限定再配信】診療報酬改定前の“今”見直したい!IOSデータ診断と形成のチェックポイント お申込みフォーム
/* ===================================
基本設定
=================================== */
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;
}
/* ===================================
画面全体のレイアウト
=================================== */
/* 画面全体の表示設定 */
body {
background: WhiteSmoke;
text-align: center;
}
/* フォームエリア全体の設定 */
div.container {
width: 960px;
background: white;
border: Gainsboro 2px solid;
border-top: none;
font-size: 14px;
color: #333;
margin: 0 auto;
text-align: left;
}
/* ===================================
設問エリアのレイアウト
=================================== */
/* 設問エリア全体の設定 */
div.wrapper {
width: 940px;
margin: 0 auto;
background: white;
}
/* 設問の表 */
table.items {
border: Gainsboro 1px solid;
}
/* 設問の行 */
tr.item {
}
/* 設問名のセルのデザイン */
td.label {
width: 200px;
height: auto !important;
padding: 4px 0 4px 5px;
color: #224;
font-size: 13px;
font-weight: bold;
line-height: 1.5;
vertical-align: middle;
white-space: normal !important;
overflow: visible !important;
background: GhostWhite;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
width: 400px;
padding: 3px 3px 0 3px;
border-bottom: GhostWhite 1px solid;
background: White;
}
/* 設問の入力例・説明セルのデザイン */
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;
}
/* 質問文・項目名を全行表示 */
.lf-form-label,
.lf_form_item_title,
label {
height: auto !important;
max-height: none !important;
overflow: visible !important;
line-height: 1.5 !important;
white-space: normal !important;
word-break: break-word;
}
/* 入力確認画面、完了画面の入力された文字のデザイン */
p.value {
font-size: 80%;
}
/* ボタンの表示エリアの設定 */
div.button_area {
width: 940px;
margin: 10px auto;
background: GhostWhite;
padding: 10px 0;
text-align: center;
}
/* 入力エラーメッセージのデザイン */
div.message {
padding: 5px 10px;
margin: 10px 13px;
font-size: 14px;
font-weight: bold;
color: OrangeRed;
background: LightYellow;
}
/* 公開終了メッセージのデザイン */
div.finished-message {
padding: 5px 10px;
margin: 10px 13px;
font-size: 14px;
font-weight: bold;
color: Crimson;
background: MistyRose;
}
/* ===================================
入力コントロールのデザイン
=================================== */
/* 確認/送信/戻る/登録ボタン */
input[type="button"] {
font-size: 18px;
background: SteelBlue;
padding: 5px 10px 2px;
margin: 0 10px;
border: none;
color: white;
font-weight: bold;
}
input[type="button"]:hover {
cursor: pointer;
}
/* 入力中のフィールドの背景色 */
input[type="text"]:focus {
background-color: LightYellow;
}
select:focus {
background-color: LightYellow;
}
textarea:focus {
background-color: LightYellow;
}
/* ===================================
必須項目のマークおよびメッセージなど
=================================== */
/* 必須項目のマーク */
span.required {
float: right;
margin-right: 4px;
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: "「※必須」となっている項目は必ず入力してください。";
}
/* メールアドレスの再入力メッセージ */
p.label_mail {
margin: 5px 0 1px;
font-size: 85%;
font-weight: bold;
color: DarkSlateGray;
}
p.label_mail:after {
content: "確認のため、もう一度メールアドレスを入力してください";
}
/* ===================================
スマートフォン表示用のレイアウト
=================================== */
@media screen and (max-width: 479px) {
/* フォームエリア全体 */
div.container {
width: 100%;
border-left: none;
border-right: none;
box-sizing: border-box;
}
/* 設問エリア全体 */
div.wrapper {
width: 100%;
}
/* 設問の表 */
table.items {
display: block;
width: 100%;
box-sizing: border-box;
}
table.items tbody,
table.items tr {
display: block;
width: 100%;
}
/* 設問名 */
td.label {
display: block;
float: none;
width: 100%;
height: auto !important;
min-height: 25px;
padding: 10px 8px 6px;
line-height: 1.5;
white-space: normal !important;
overflow: visible !important;
word-break: break-word;
box-sizing: border-box;
}
/* 必須項目のマーク */
span.required {
float: none;
display: inline-block;
margin-left: 5px;
margin-right: 0;
}
/* 入力欄 */
td.value {
display: block;
float: none;
width: 100%;
height: auto;
padding: 6px 8px;
box-sizing: border-box;
}
/* 説明文 */
td.comment {
display: block;
float: none;
width: 100%;
height: auto;
padding: 2px 8px 10px;
line-height: 1.5;
white-space: normal;
overflow: visible;
word-break: break-word;
box-sizing: border-box;
}
/* 入力フォーム */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
width: 100% !important;
max-width: 100%;
font-size: 16px;
box-sizing: border-box;
}
textarea {
min-height: 100px;
}
/* ボタン表示エリア */
div.button_area {
width: 95%;
box-sizing: border-box;
}
input[type="button"] {
max-width: 90%;
margin: 5px;
}
}
プライバシーポリシーに同意の上、送信してください。
同意して送信すると、Cookieにより当社のWebサイト上における閲覧履歴と個人情報を紐付けて把握、分析する場合があります。
セミナーお申込み後に、動画視聴用URLがご登録のメールアドレスに届きます。(メールが届くまでに数分かかる場合があります)
もしメールが届かない場合はセミナー事務局・今泉(090-1327-4624)迄お問合わせ下さい。