IRサイト診断のお申し込みありがとうございます。お申し込みの際にご登録いただいた情報は株式会社インフォネット プライバシーポリシーに沿って管理いたします。
/* ===================================
基本設定
=================================== */
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,a
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;
}
h1 {
color: #0A1C3B;
font-weight: 400;
font-size: 300%;
text-align: center;
margin: 2em 0 1em;
}
li {
list-style: none;
}
a {
border-bottom: #0A1C3B solid 1px;
color: #0A1C3B;
text-decoration: none;
transition: all 0.25s ease-out;
}
a:hover {
color: #0A1C3B;
border-color: transparent;
text-decoration: none;
}
img {
max-width: 100%;
}
/* ===================================
共通
=================================== */
/* フォント */
body {
font-family: "Montserrat", "Noto Sans JP", "NotoSansCJKjp-Jxck", "Meiryo", "Verdana", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS Pゴシック", "sans-serif";
}
select,input,button,textarea {
font-family: "Montserrat", "Noto Sans JP", "NotoSansCJKjp-Jxck", "Meiryo", "Verdana", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS Pゴシック", "sans-serif";
font-size: 100%;
}
/* ===================================
画面全体のレイアウト
=================================== */
/* ヘッダー */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
margin: 0;
padding: 0;
z-index: 100;
box-shadow: 0 0 16px 0px rgba(0,0,0,0.1);
}
header .inner {
position: relative;
display: flex;
align-items: center;
width: 100%;
height: 110px;
padding: 0 40px;
background: #fff;
z-index: 100;
}
header .inner .logo {
width: 150px;
margin: 0;
padding: 0;
transition: width 0.25s ease-in-out;
}
.pagetitleWrap .inner {
margin: 0 auto;
max-width: 1200px;
padding: 0 20px;
}
footer {
background: #0A1C3B;
color: #999;
margin: 0;
padding-block: 10px;
text-align: center;
}
footer .copyright {
font-size: 0.75rem;
}
/* 画面全体の表示設定 */
body {
background: #fff; /* 背景色 */
font-size: 16px; /* フォントの初期サイズ */
color: #111; /* フォントの初期カラー */
}
/* フォームエリア全体の設定 */
div.container {
min-height: 100vh; /* コンテンツが足りなくてもフッターを画面の一番下に持ってこれるように最小高さを画面サイズに合わせる */
display: flex;
flex-direction: column;
}
#main {
padding: 110px 0; /* ヘッダー、フッター用上下余白 */
flex: 1; /* 完了画面などのコンテンツがない場合、コンテンツエリアを拡張するための指定 */
}
div.contentMiddle {
margin: 0 auto; /* 画面の中央に表示 */
max-width: 1200px; /* 画面の最大横幅 */
padding: 0 40px;
}
/* ===================================
設問エリアのレイアウト
=================================== */
/* 設問エリア全体の設定 */
div.wrapper {
max-width: 1200px; /* 画面の最大横幅 */
margin: 0 auto; /* 中央に表示 */
background: #fff;
}
/* 設問の表 */
table.items {
width: 100%;
background: #f3f3f3;
border-right: 3px solid #fff;
border-bottom: 3px solid #fff;
border-spacing: 0;
border-collapse: collapse;
}
/* 設問の行 */
tr.item { } /* 必要であれば行のデザインを設定することができます */
/*設問名のセルのデザイン */
td.label {
width: 20%; /* 実際の設問名の文字の長さに合わせて調整してください */
padding: 1.4em;
color: #fff;
font-size: 100%;
font-weight: bold;
vertical-align: middle; /* ラベルの配置 セルの上部に表示したい場合は top */
background: #0A1C3B;
border-top: 3px solid #fff;
border-left: 3px solid #fff;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
width: 48%; /* 入力コントロールの幅に合わせて調整してください */
padding: 1.4em;
border-top: 3px solid #fff;
border-left: 3px solid #fff;
/* 設問と設問の間の下線 */
background: #f3f3f3;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
font-size: 100%;
padding: 0.5em;
color: #333;
background: #f3f3f3;
border-top: 3px solid #fff;
border-left: 3px solid #fff;
}
table.items tbody > tr > td textarea{
width: 100% !important;
resize: vertical;
box-sizing: border-box;
}
table.items tbody > tr > td textarea[name$="_other"],
table.items tbody > tr > td textarea[name*="division_only"] {
min-height: inherit;
height: 30px;
}
/* 入力セルの「氏」「名」の文字のデザイン */
span.label_name {
padding-right: 5px;
font-size: 85%;
font-weight: bold;
color: DarkSlateGray;
}
/* 入力確認画面、完了画面の入力された文字のデザイン */
p.value {
font-size: 110%;
}
/* ボタンの表示エリアの設定 */
div.button_area {
width: 100%;
margin: 10px auto 10px auto; /* 中央に表示、上下に10pxの余白 */
padding: 10px 0 10px 0; /* ボタンとの上下の隙間のサイズ */
text-align: center; /* 中央にボタンを表示 */
}
.privacy_policy a:hover{
text-decoration: none;
}
/* 入力エラーメッセージのデザイン */
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: #0A1C3B; /* ボタンの色 */
padding: 1em 2em; /* ボタンの文字の 上 右 下 左 の隙間のサイズ */
margin: 0px 10px 0px 10px; /* 確認画面に表示される2つのボタンの左右の余白サイズ */
border: none; /* ボタンに枠線をつけたい場合は、ここを設定してください */
color: #fff; /* 文字の色 */
font-weight: bold;
}
input[type=button]:hover {
cursor: pointer;
}
input[type="button"][id="button_confirm_back" ]{
background-color: #999;
}
/* 入力中のフィールドの背景色 */
/* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */
input[type="text"]:focus {
background-color: #e5f0f9;
border: 1px solid #0A1C3B;
} /* テキストボックス */
select:focus {
background-color: #e5f0f9;
border: 1px solid #0A1C3B;
} /* プルダウン */
textarea:focus {
background-color: #e5f0f9;
border: 1px solid #0A1C3B;
} /* テキストエリア */
/* ===================================
必須項目のマークおよびメッセージなど
=================================== */
/* 必須項目のマーク */
span.required {
padding: 0 0.5em;
float: right;
margin-right: 4px;
font-size: 80%;
font-weight: bold;
color: #fff;
background: #c00;
}
span.required:after {
/* ここを編集することで表示されるマークを変更できます */
content: "必須";
}
/* 必須項目についての説明文 */
p.required_msg {
padding: 0 0 15px;font-size:80%;
font-weight: bold;
color: #c00;
}
p.required_msg:after {
/* ここを編集することで表示されるマークを変更できます */
content:"「※必須」となっている項目は必ず入力してください。";
}
/* メールアドレスの再入力メッセージ */
p.label_mail {
margin: 10px 0 1px 0;
font-size: 85%;
font-weight: bold;
}
p.label_mail:after {
/* ここを編集することで表示されるメッセージを変更できます */
content:"確認のため、もう一度メールアドレスを入力してください";
}
/* ===================================
タブレット表示用のレイアウト
=================================== */
@media only screen and (max-width: 768px) {
div.contentMiddle {
padding: 0 20px;
max-width: inherit;
}
header .inner {
height: 60px;
padding: 0 20px;
}
header .inner .logo {
width: 100px;
}
h1 {
font-size: 200%;
}
}
@media only screen and (max-width: 767px) {
/* 設問エリア全体の設定 */
div.wrapper {
width: 100%;
}
/* 設問の表 */
table.items {
width: 100%;
border: none;
}
/*設問名のセルのデザイン */
td.label {
display: block;
width: auto;
height: auto;
padding: 0.75em 1em;
border: none;
}
/* 必須項目のマーク */
span.required {
float: initial;
margin: 0 0 0 1em;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
display: block;
width: auto; /* 入力コントロールの幅に合わせて調整してください */
padding: 0.75em 1em;
border: none;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
display: block;
width: auto;
padding: 0 1.2em 1em;
font-size: 90%;
border: none;
}
/* 設問の入力例/テキストボックス */
input[type="text"]{
font-size: 120%;
width: 100%;
box-sizing: border-box;
}
/* 設問の入力例/テキストエリア */
textarea {
width: 95%;
height: auto;
min-height: 200px;
}
/* ボタンの表示エリアの設定 */
div.button_area {
width: 95%;
}
}
/* ===================================
スマートフォン表示用のレイアウト
=================================== */
/* スマートフォンとして認識する画面の横幅のサイズ */
@media screen and ( max-width:479px ) {
}
プライバシーポリシーに同意の上、送信してください。
同意して送信すると、Cookieにより当社のWebサイト上における閲覧履歴と個人情報を紐付けて把握、分析する場合があります。