通サポがオススメする動画コンテンツと制作メソッドのご紹介
/* CSSオーバーライド */
.theme-fo-base .wrapper .contents section {
padding: 0;
}
.theme-fo-base .wrapper.none .contents .inner {
box-sizing: border-box;
margin: 0 auto;
padding: 0em;
width: 100%;
}
/* ===================================
基本設定
=================================== */
html{ overflow-y:scroll; }
li {
list-style: none;
text-align:left; /* 左寄せ */
}
/* ===================================
共通
=================================== */
/* フォント */
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: 1em;
}
/* ===================================
画面全体のレイアウト
=================================== */
/* 画面全体の表示設定 */
body {
/* background:WhiteSmoke; 背景色 */
text-align:center; /* フォームエリアを中央に表示 */
}
/* フォームエリア全体の設定 */
div.container {
width: 100%; /* 画面の横幅 */
background:white; /* 背景色 */
font-size:14px; /* フォントの初期サイズ */
color:#333; /* フォントの初期カラー */
padding: 10% 2% 2% 2%;
margin:0 auto; /* 画面の中央に表示 */
text-align:left; /* 左寄せ */
}
/* ===================================
設問エリアのレイアウト
=================================== */
/* 設問エリア全体の設定 */
div.wrapper {
width:940px; /* 画面の横幅 */
margin:0 auto; /* 中央に表示 */
background:white;
}
/* 設問の表 */
table.items {
ali
width: 70%;
}
/* 設問の行 */
tr.item {
}
/* 必要であれば行のデザインを設定することができます */
/*設問名のセルのデザイン */
td.label {
width: 40%;
padding: 1% 1%;
font-size: 1em;
vertical-align: top;
text-align: left;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
width: 60%;
padding: 4em
border-bottom: GhostWhite 1px solid;
background: White;
vertical-align: middle;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
display:none;
}
/* 入力セルの「氏」「名」の文字のデザイン */
span.label_name {
padding-right:5px;
font-size:85%;
font-weight:bold;
color:DarkSlateGray;
}
/* 入力確認画面、完了画面の入力された文字のデザイン */
p.value {
font-size:110%;
}
/* ボタンの表示エリアの設定 */
div.button_area {
width: 70%;
margin: 3em auto; /* 中央に表示、上下の余白 */
/* background: #cf2e2e; */
padding:10px 0 10px 0; /* ボタンとの上下の隙間のサイズ */
text-align:center; /* 中央にボタンを表示 */
border-radius: 1em;
}
/* 入力エラーメッセージのデザイン */
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: 1.5em;
background: #cf2e2e; /* ボタンの色 */
padding: 0.5em 2em 0.5em 2em;
margin: 0em 0em 1em 0em;
border:none; /* ボタンに枠線をつけたい場合は、ここを設定してください */
color:white; /* 文字の色 */
font-weight:bold;
}
input[type=button]:hover { cursor: pointer; }
/* 入力中のフィールドの背景色 */
/* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
color: #666;
border: 1px solid #ccc;
border-radius: 3px;
padding: 3px;
font-size: 1.5em;
width: 100%;
}
/* ===================================
必須項目のマークおよびメッセージなど
=================================== */
/* 必須項目のマーク */
span.required {
/* float: left; */
margin-right: 10px;
font-size: 100%;
/* font-weight: bold; */
color: OrangeRed;
}
span.required:after {
/* ここを編集することで表示されるマークを変更できます */
content:"[必須]";
}
/* 必須項目についての説明文 */
p.required_msg {
text-align: center;
margin: 6 px;
padding: 2em;
font-size:100%;
font-weight:bold;
color:OrangeRed;
}
p.required_msg:after {
/* ここを編集することで表示されるマークを変更できます */
content:"[必須]は必ず入力してください。";
text-align:left;
}
/* メールアドレスの再入力メッセージ */
p.label_mail {
margin:5px 0 1px 0;
font-size:85%;
font-weight:bold;
color:DarkSlateGray;
}
p.label_mail:after {
/* ここを編集することで表示されるメッセージを変更できます */
content:"確認のため、もう一度メールアドレスを入力してください";
}
/* ===================================
スマートフォン表示用のレイアウト
=================================== */
/* スマートフォンとして認識する画面の横幅のサイズ */
@media screen and ( max-width:479px ) {
/* フォームエリア全体の設定 */
div.container {
width: 100%;
padding: 10% 2% 10% 2%;
text-align:left; /* 左寄せ */
}
/* 設問エリア全体の設定 */
div.wrapper {
width: 1090%;
}
/* 設問の表 */
table.items {
width: inherit;
position: absolute;
}
/*設問名のセルのデザイン */
td.label {
float: left;
width: 100%;
font-size: 1.3em;
text-align: left;
height: 120%;
padding: 3% 10%;
}
/* 必須項目のマーク */
span.required {
float:initial;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
float: left;
width: 90%;
padding-left: 10%;
line-height: 2;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
float: left;
width: 0%;
padding: 0px 2px 10px 2px;
}
/* 設問の入力例/テキストボックス */
input[type="text"] {
font-size: 100%;
line-height: 2;
width: 100% ;
}
/* 設問の入力例/テキストエリア */
textarea {
width: 80%;
height: 100px;
}
/* ボタンの表示エリアの設定 */
div.button_area {
width: 100%;
margin: 40em 0em 0em 0em;
background: #fff;
}
.privacy_policy {
padding: 50em 1em 1em;
text-align: left;
}
}
プライバシーポリシーに同意の上、送信してください。
同意して送信すると、Cookieにより当社のWebサイト上における閲覧履歴と個人情報を紐付けて把握、分析する場合があります。