Renobodyウォーキングイベントサービス 様
企業リスト
個人リスト
来訪通知
アクセス分析
メール配信
アプローチ管理
フォーム管理
セミナー管理
設定
CSS編集
フォーム基本情報
フォーム名:お問い合わせ~Renobody30日チャレンジ~
画面タイトル:お問い合わせ~Renobody30日チャレンジ~
個人マスタ連携:新規:追加する, 既存:上書きしない
スタイルシート設定
初期は「標準スタイルシート1」の内容で登録されています
/* ===================================
基本設定
=================================== */
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; }
* {
box-sizing: border-box;
}
/* ===================================
共通
=================================== */
/* フォント */
body {
font-family: "Noto Sans JP", sans-serif;
}
select,input,button,textarea {
font-family: "Noto Sans JP", sans-serif;
}
/* ===================================
画面全体のレイアウト
=================================== */
/* 画面全体の表示設定 */
/* フォームエリア全体の設定 */
div.container {
width:1100px; /* 画面の横幅 */
background:white; /* 背景色 */
font-size:14px; /* フォントの初期サイズ */
color:#333; /* フォントの初期カラー */
margin:0 auto; /* 画面の中央に表示 */
text-align:left; /* 左寄せ */
}
/* ===================================
設問エリアのレイアウト
=================================== */
/* 設問エリア全体の設定 */
div.wrapper {
width:1100px; /* 画面の横幅 */
margin:0 auto; /* 中央に表示 */
background:white;
}
/* 設問の表 */
table.items {
border:Gainsboro 1px solid;
}
/* 設問の行 */
tr.item { } /* 必要であれば行のデザインを設定することができます */
/*設問名のセルのデザイン */
td.label {
width:150px; /* 実際の設問名の文字の長さに合わせて調整してください */
padding:4px 0 4px 5px;
color:#224;
font-size:13px;
font-weight:bold;
vertical-align:middle; /* ラベルの配置 セルの上部に表示したい場合は top */
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;
}
/* 入力確認画面、完了画面の入力された文字のデザイン */
p.value {
font-size:110%;
}
/* ボタンの表示エリアの設定 */
div.button_area {
width:940px;
margin:10px auto 10px auto; /* 中央に表示、上下に10pxの余白 */
background:GhostWhite;
padding:10px 0 10px 0; /* ボタンとの上下の隙間のサイズ */
text-align:center; /* 中央にボタンを表示 */
}
/* 入力エラーメッセージのデザイン */
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] {
font-size:18px;
background:SteelBlue; /* ボタンの色 */
padding:5px 10px 2px 10px; /* ボタンの文字の 上 右 下 左 の隙間のサイズ */
margin:0px 10px 0px 10px; /* 確認画面に表示される2つのボタンの左右の余白サイズ */
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 {
font-size:14px;
font-weight:bold;
color:#e82a57;
padding-bottom: 8px;
}
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:"確認のため、もう一度メールアドレスを入力してください";
}
div.container {
font-size: 16px;
max-width: 1100px;
width: 100%;
}
div.wrapper {
width: 100%;
}
table.items {
margin: 0 auto;
width: 100%;
padding: 50px 4% 0;
line-height: 150%;
background: #eaf8ff;
border: none;
border-radius: 10px 10px 0 0;
border-collapse: initial;
}
table.items tr .label {
padding: 0 0 84px;
width: 25%;
background: #eaf8ff;
font-size: 16px;
vertical-align: top;
}
table.items tr .label span.required {
float: none;
font-size: 14px;
color: #e82a57;
margin-left: 15px;
}
table.items tr td.value {
padding: 0;
background: #eaf8ff;
display: block;
width: 100%;
border: none;
}
#frm_formconfirm table.items tr td.value {
padding: 15px;
}
table.items tr td.comment {
font-size: 14px;
background: #eaf8ff;
display: block;
width: 100%;
color: #666;
font-weight: bold;
border: none;
padding-bottom: 40px;
}
table.items tr td.comment:empty {
padding: 0;
}
table.items tr td input[type=text], table.items tr td input[type=tel], table.items tr td input[type=email] {
font-size: 100%;
width: 100%;
padding: 12px 10px;
border: 1px solid #ccc;
margin: 5px 0;
border-radius: 7px;
background: #fff;
}
table.items tr td input[type=radio] {
vertical-align: middle;
margin-right: 10px;
}
table.items tr td textarea {
font-size: 100%;
width: 100%;
padding: 10px;
border: 1px solid #cccccc;
height: 100px;
margin: 5px 0;
border-radius: 7px;
background: #fff;
}
table.items tr td input[type=checkbox] {
height: 20px;
width: 20px;
vertical-align: middle;
margin-right: 10px;
}
table.items tr td span.label_name {
padding: 0 0 0 10px;
font-size: 16px;
font-weight: bold;
color: #666;
}
table.items tr td p.label_mail {
margin: 0;
padding-left: 10px;
font-size: 14px;
font-weight: bold;
color: #666;
}
.privacy_policy {
margin: 0;
background: #eaf8ff;
font-size: 16px;
font-weight: bold;
line-height: 1.8;
padding-top: 38px;
}
#policy_url, #policy_url:visited {
font-weight: bold;
color: #20a9ea;
text-decoration: underline;
}
.privacy_policy .privacy-text-master {
width: 100%;
border: none;
font-weight: bold;
}
.privacy_policy .privacy-text-master br {
display: none;
}
.privacy_policy .privacy-text-master div {
font-weight: bold;
padding-bottom: 52px;
}
div.button_area {
width: 100%;
background: #eaf8ff;
border-radius: 0 0 10px 10px;
padding: 0 0 50px;
text-align: center;
margin: 0;
}
input[type="button"] {
background: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2016%2016%22%20style%3D%22enable-background%3Anew%200%200%2016%2016%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%20.st1%7Bfill%3A%2320A9EA%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Ccircle%20class%3D%22st0%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%228%22%2F%3E%20%3Cpolygon%20class%3D%22st1%22%20points%3D%225.8330078%2C13.0407715%205.1259766%2C12.3337402%209.4599609%2C8.0002441%205.1259766%2C3.6662598%205.8330078%2C2.9592285%2010.8740234%2C8.0002441%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E) no-repeat #20a9ea 95% center;
background-size: 18px auto;
text-align: left;
color: #fff;
font-weight: bold;
font-size: 20px;
border: none;
padding: 20px 24px;
width: 100%;
max-width: 320px;
margin: 0 auto;
display: block;
cursor: pointer;
position: relative;
border-radius: 10px;
}
input#button_confirm_back[type="button"] {
background: #ccc;
text-align: center;
color: #fff;
font-size: 100%;
border: none;
padding: 14px 30px;
width: 100%;
max-width: 300px;
margin: 0 auto 30px;
display: block;
cursor: pointer;
font-weight: normal;
}
@media screen and (max-width: 750px) {
.contentW {
max-width: 100%;
}
p.required_msg {
font-size: 3.58vw;
font-weight: normal;
padding: 0 4% 4%;
}
table.items {
padding: 8.5% 10% 0;
border-radius: 0;
}
table.items tr .label {
display: block;
font-weight: normal;
font-size: 4.1vw;
width: 100%;
border: none;
padding: 0 0 1.4%;
}
table.items tr .label span.required {
font-size: 3.58vw;
font-weight: normal;
margin-left: 2vw;
}
table.items tr td input[type=text], table.items tr td input[type=tel], table.items tr td input[type=email] {
font-size: 100%;
padding: 3.6%;
margin: 0;
}
table.items tr td input[type=checkbox] {
height: 5.12vw;
width: 5.12vw;
margin-right: 2vw;
}
table.items tr td.value {
font-size: 4.1vw;
}
table.items tr td.comment {
font-size: 3.33vw;
font-weight: normal;
padding: 1% 0 9%;
}
table.items tr td.comment:empty {
padding: 0 0 9%;
}
table.items tr td span.label_name {
padding: 2% 0 1%;
font-size: 4.1vw;
font-weight: normal;
display: block;
}
table.items tr td p.label_mail {
font-weight: normal;
font-size: 3.33vw;
line-height: 1.7;
margin: 4% 0;
}
.privacy_policy {
margin: 0;
background: #eaf8ff;
font-size: 16px;
font-weight: bold;
line-height: 1.8;
padding-top: 38px;
}
.privacy_policy {
padding: 0 8%;
font-weight: normal;
font-size: 4.1vw;
line-height: 1.85;
}
#policy_url, #policy_url:visited {
font-weight: normal;
}
.privacy_policy .privacy-text-master {
font-weight: normal;
}
.privacy_policy .privacy-text-master div {
font-weight: normal;
padding-bottom: 13%;
}
div.button_area {
padding: 0 0 19%;
}
input[type="button"] {
background-size: 4.61vw auto;
font-size: 4.61vw;
padding: 5% 5vw;
width: 84%;
max-width: none;
}
}
Copyright Innovation & Co. All rights reserved.
プライバシーポリシーに同意の上、送信してください。
同意して送信すると、Cookieにより当社のWebサイト上における閲覧履歴と個人情報を紐付けて把握、分析する場合があります。