WebAR 資料請求
/* ===================================
基本設定
=================================== */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Noto+Sans:400,700&display=swap");
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
margin: auto;
padding: 0;
border: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
html {
-ms-text-size-adjust:100%;
-webkit-text-size-adjust:100%;
font-family:sans-serif;
font-size: 62.5%;
}
body {
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
width:100%;
overflow-x:hidden;
background:#fff;
color:#282828;
font-family:"Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
line-height:1.4;
}
/* ===================================
共通
=================================== */
/* ===================================
画面全体のレイアウト
=================================== */
/* 画面全体の表示設定 */
/* フォームエリア全体の設定 */
div.container {
width: 100%;
margin-left: auto;
margin-right: auto;
margin-bottom: 100px;
}
.can_wp.mttl {
width: 100%;
}
/* ===================================
設問エリアのレイアウト
=================================== */
/* 設問エリア全体の設定 */
div.wrapper {
width: 80%;
margin: 20px auto 0;
}
/* 設問の表 */
table.items {
margin-inline: auto;
}
/* 設問の行 */
tr.item {
width:100%;
box-sizing: border-box;
display: flex;
align-items: baseline;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
border-bottom:1px solid #ccc;
padding:40px 0;
text-align:left;
} /* 必要であれば行のデザインを設定することができます */
/*設問名のセルのデザイン */
td.label {
width: 32%;
font-size: 18px;
font-weight: bold;
position: relative;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
font-size: 18px;
width: 68%;
padding-left: 5em;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
display: none;
}
/* 入力セルの「氏」「名」の文字のデザイン */
span.label_name {
margin: 1em 0.5em 0em 0;
font: inherit;
vertical-align: baseline;
}
/* 入力確認画面、完了画面の入力された文字のデザイン */
p.value {
font-size:110%;
}
/* ボタンの表示エリアの設定 */
div.button_area {
color: #fff;
border: none;
outline: none;
cursor: pointer;
width: 369px;
margin: 65px auto 0;
display: block;
height: 82px;
}
/* 入力エラーメッセージのデザイン */
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;
}
.can_ttl {
font-size: 45px;
}
#privacy_policy {
display: none;
}
.privacy_policy {
font-size: 1em;
text-align: center;
font-weight: bold;
margin-top: 50px;
margin-bottom: 0;
}
.privacy_policy a {
color:red;
text-decoration:underline;
text-decoration-color:#FF0000;
}
.privacy_policy a:visited {
color:red;
}
/* ===================================
入力コントロールのデザイン
=================================== */
/* 確認/送信/戻る/登録ボタン */
.form_page input[type="text"] {
width: 25em;
margin: 2px 7em 0em 0em;
padding: 0.5em;
}
.form_page input[type=radio] {
font-size:18px;
margin-right: 15px;
display: inline-block !important;
}
/* ラジオボタン */
.form_page input[type=checkbox] {
font-size:18px;
margin-right: 15px;
display: inline-block;
flex-wrap: nowrap;
}
input[type=button] {
background-image: url(../images/common/wyy.png);
background-repeat: no-repeat;
background-position: 96% center;
background-size: 12px auto;
background-color: #ea5513;
border-radius: 8px;
-moz-box-shadow: inset 0 -5px #ae3a08;
-webkit-box-shadow: inset 0 -5px #ae3a08;
-o-box-shadow: inset 0 -5px #ae3a08;
box-shadow: inset 0 -5px #ae3a08;
transition: .2s;
font-size: 23px;
color: #fff;
border: none;
outline: none;
cursor: pointer;
width: 365px;
margin: 65px auto;
display: block;
height: 82px;
padding-bottom: 0.3em;
}
select:focus { background-color:LightYellow; } /* プルダウン */
textarea:focus { background-color:LightYellow; } /* テキストエリア */
.can_wp_c_in { /* ボタンの重なり*/
margin-bottom: 8em;
}
/* ===================================
必須項目のマークおよびメッセージなど
=================================== */
/* 必須項目のマーク */
span.required {
float:right;
margin-right:4px;
font-size:60%;
font-weight:bold;
color:OrangeRed;
}
span.required:after {
/* ここを編集することで表示されるマークを変更できます */
color: #fff;
background-color: #e02947;
margin-left: 0.5em;
padding: 0 5px;
font-size: 14px;
font-weight: bold;
border-radius: 5px;
content:"必須";
}
/* 必須項目についての説明文 */
p.required_msg {
color: #fff;
background-color: #e02947;
padding: 0 5px;
font-size: 14px;
font-weight: bold;
border-radius: 5px;
position: absolute;
right: 0;
top: 2px;
}
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:"確認のため、もう一度メールアドレスを入力してください";
}
/* ===================================
スマートフォン表示用のレイアウト
=================================== */
/* スマートフォンとして認識する画面の横幅のサイズ */
@media screen and (max-width: 768px) {
/* フォームエリア全体の設定 */
div.container {
width: 100%;
}
/* 設問エリア全体の設定 */
div.wrapper {
width: 100%;
}
/* 設問の表 */
table.items {
width: 90%;
}
tr.item {
padding : 2em 0em;
}
/*設問名のセルのデザイン */
td.label {
float: left;
width: 100%;
height: 3em;
padding: 1em 0;
}
/* 必須項目のマーク */
span.required {
float:initial;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
float: left;
width: 100%;
padding: 0px;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
display: none;
}
/* 設問の入力例/テキストボックス */
input[type="text"] {
width: 100%;
margin: 0.1em 0.1em 0.1em 0.1em;
padding: 0.1em;
font-size: 18px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
/* 設問の入力例/テキストエリア */
textarea {
width: 95% !important;
height: 100px;
}
/* ボタンの表示エリアの設定 */
div.button_area {
width: 95%;
}
input[type=button] {
width: 10em;
height: 3em;
}
.cap_wp {
width: 100%;
margin-bottom: 8em;
}
.can_ttl {
font-size: 25px;
}
}
プライバシーポリシーに同意の上、送信してください。
同意して送信すると、Cookieにより当社のWebサイト上における閲覧履歴と個人情報を紐付けて把握、分析する場合があります。