基本設定
=================================== */
html{
	overflow-y:scroll;
	font-size: 62.5%;
}
*{
	box-sizing: border-box;
}
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: YakuHanJP_Noto, 'Noto Sans JP', sans-serif; }
/* ===================================
画面全体のレイアウト
=================================== */
/* 画面全体の表示設定 */
body {
  background:#F9FBF5;  /* 背景色 */
  text-align:center;  /* フォームエリアを中央に表示 */
}
/* フォームエリア全体の設定 */
div.container {
  width:1000px;  /* 画面の横幅 */
  background:white;  /* 背景色 */
  font-size:16px;  /* フォントの初期サイズ */
  color:#333;  /* フォントの初期カラー */
  margin:0 auto;  /* 画面の中央に表示 */
  text-align:left;  /* 左寄せ */
}
/* ===================================
ヘッダー
=================================== */
.header{
	
}
/*.header > *{
	display: inline-block;
	height:100%;
}*/
.logo{
	display:block;
padding: 20px 0 20px 30px;
width:315px;
}
.logo img {
width:100%;
height:auto;
}
.header dl{
	padding: 20px;
	text-align: center;
	color: #00a7e2;
	font-size: 1.3rem;
}
.header .tel{
  font-size: 2.7rem;
  font-weight: bolder;
  letter-spacing: 1px;
  line-height: 1.3;
}
.header .tel::before{
  content:"";
  background: url('https://txdesign-lab.com/lf_files/icon_Phone.png') no-repeat center top;
  background-size: contain;
  display: inline-block;
  height: 3rem;
  width: 3rem;
  margin-right: 10px;
  vertical-align: middle;
}
.header .time{
  font-size: 1.2rem;
  color: #888;
}
/* bred */
.brd{
	width: 100%;
	background-color: #0071bc;
}
.brd span{
	position: relative;
	display: inline-block;
	height: 30px;
}
.brd span:first-child::after{
	content: "";
	display: block;
	position: absolute;
	right: -30px;
	top: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 30px 0 0;
	border-color: #00a7e2 transparent transparent transparent;
}
.brd a{
	font-size: 1.2rem;
	line-height: 30px;
	color: #d8e0e3;
	padding: 0 6px 0 20px;
	background-color: #00a7e2;
}
.brd a:hover{
	text-decoration: underline;
}
.arrow{
position: relative;
display: inline-block;
padding: 0 0 0 16px;
color: #000;
vertical-align: middle;
text-decoration: none;
font-size: 15px;
}
.arrow::before,
.arrow::after{
position: absolute;
top: -1px;
bottom: 0;
left: 0;
margin: auto;
content: "";
vertical-align: middle;
}
.arrow::before{
left: 6px;
width: 8px;
height: 2px;
background: #d8e0e3;
}
.arrow::after{
left: 6px;
width: 4px;
height: 4px;
border-top: 2px solid #d8e0e3;
border-left: 2px solid #d8e0e3;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
/* ===================================
タイトル
=================================== */
.title_area{
	height: 200px;
	width: 100%;
  background: url('https://txdesign-lab.com/form_image/bg_title_form.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}
.title_area h1{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	margin: auto;
	font-weight: bold;
	font-size: 1.8rem;
	color: #fff;
	height: 30px;
	display: block;
}
/* ===================================
設問エリアのレイアウト
=================================== */
.wrap2{
	padding: 0 30px;
}
.lead{
	text-align:center;
	margin:20px auto;
}
/* 設問エリア全体の設定 */
div.wrapper {
  width:900px;  /* 画面の横幅 */
  margin:0 auto;  /* 中央に表示 */
  background:white;
}
.required_msg{
	margin-bottom: 10px !important;
}
/* 設問の表 */
table.items {
  border:none;
	border-collapse:collapse;
}
/* 設問の行 */
tr.item {} /* 必要であれば行のデザインを設定することができます */
/*設問名のセルのデザイン */
textarea[name="data00"]{ width:500px; }
textarea[name="free1_other"]{ width:307px; height:8em; }
td.label {
  width:240px;  /* 実際の設問名の文字の長さに合わせて調整してください */
  padding:4px 15px;
  color:#224;
  font-size:13px;
  font-weight:bold;
  vertical-align:middle;  /* ラベルの配置 セルの上部に表示したい場合は top */
  background:#e3e3e3;
  border-bottom:#fff thin solid;
}
/* 設問の入力セルおよび表示セルのデザイン */
td.value {
  float:left;
  width:700px;  /* 入力コントロールの幅に合わせて調整してください */
  padding: 10px 15px 0px;
  border-bottom:none;  /* 設問と設問の間の下線 */
  background:White;
}
table tr:first-of-type td.value{
  border-top:#e3e3e3 thin solid;
}
/* 設問の入力例/説明セルのデザイン */
td.comment {
  float:left;
  width:700px;  /* td.valueと同じ幅にしてください */
  font-size:10px;
  padding:0 15px 10px 18px;
  border-bottom:#e3e3e3 thin solid;
  background:White;
}
#item_11 .comment {
  font-size:12px;
margin:10px 0 0;
}
#item_13 .comment ul {
  font-size:12px;
}
#item_13 .comment li {
  list-style: disc;
margin:10px 0 0 20px;
}
/* 入力セルの「氏」「名」の文字のデザイン */
span.label_name {
  padding-right:5px;
  font-size:85%;
  font-weight:bold;
  color:DarkSlateGray;
}
/* 入力確認画面、完了画面の入力された文字のデザイン */
p.value {
  font-size:110%;
}
/* ボタンの表示エリアの設定 */
div.button_area {
  margin:40px 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]{
	background-color: #00561F;
	color: #fff;
	border: 0 none;
	padding: 10px 25px;
	font-size: 1.3rem;
	font-weight: bold;
}
input[type=button]:hover {
	cursor: pointer;
	opacity: 0.8;
}
input[type="text"], textarea, select{
	padding: 2px 4px;
	line-height: 1.5;
	margin: 6px 2px;
}
/* 入力中のフィールドの背景色 */
/* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */
input[type="text"]:focus {  background-color:#fafafa; }  /* テキストボックス */
select:focus {  background-color:#fafafa; }  /* プルダウン */
textarea:focus {  background-color:#fafafa; }  /* テキストエリア */
/* ===================================
必須項目のマークおよびメッセージなど
=================================== */
/* 必須項目のマーク */
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 3px 0;
  font-size:10px;
  color:Green;
}
p.label_mail:after {
  /* ここを編集することで表示されるメッセージを変更できます */
  content:"確認のため、もう一度メールアドレスを入力してください";
}
/* ===================================
スマートフォン表示用のレイアウト
=================================== */
/* スマートフォンとして認識する画面の横幅のサイズ */
@media screen and ( max-width:479px ) {
  /* フォームエリア全体の設定 */
  div.container {
    width: 100%;
  }
/* header*/
.header {
	
}
.logo{
	display:block;
padding: 20px 0 15px 20px;
width:250px;
}
.header dl{
	padding: 8px 8px 8px 0;
	font-size: 1.2rem;
}
.header .tel{
	font-size: 1.8rem;
}
.header .tel::before {
	height: 2rem;
	width: 2rem;
	margin-right: 6px;
}
.header .time {
    font-size: 1rem;
}
 /* title */
.title_area{
	
}
.title_area h1{
	font-size: 1.2rem;
}
.wrap2{
	padding: 0 4%;
}
  /* 設問エリア全体の設定 */
  div.wrapper {
    width: 90%;
margin: 0 auto;
  }
  .label_name{	/* 氏名 */
		width: 8%;
		display: inline-block;
		text-align: center;
	}
  .label_name + input{
  	width: 92% !important;
  }
  /* 設問の表 */
  table.items {
    width: 100%;
  }
  /*設問名のセルのデザイン */
  td.label {
    float: left;
    width: 100%;
  }
  td.value{
  	padding: 0;
  }
  /* 必須項目のマーク */
  span.required {
    float:initial;
  }
  /* 設問の入力セルおよび表示セルのデザイン */
  td.value {
    float: left;
    width: 100%;  /* 入力コントロールの幅に合わせて調整してください */
    padding-bottom: 0px;
  }
textarea[name="free1_other"]{ width:100%; height:6em; }
  /* 設問の入力例/説明セルのデザイン */
  td.comment {
    float: left;
    width: 100%;
    padding: 0px 2px 10px 2px;
  }
  /* 設問の入力例/テキストボックス */
  input[type="text"], textarea, select{
  	margin: 8px 0 4px;
  }
  input[type="text"]{
    font-size: 120%;
    width: 100%;
  }
  /* 設問の入力例/テキストエリア */
  textarea {
    width: 100% !important;
    height: 100px;
  }
  /* ボタンの表示エリアの設定 */
  div.button_area {
    width: 100%;
  }
  /* プライバシーポリシー */
  #privacy_policy{
  	margin: 40px auto !important;
  	font-size:1rem;
 width: 90%;
  }
  /* footer */
  .footer{
	font-size:1rem;
  }
}
.privacy-text-master {
display:none;
}
.comp_text {
width:90%;
margin:0 auto;
}
.comp_text p {
margin:0 0 15px;
}
#privacy_policy{
display: none;
 }
/* ===================================
footer 
=================================== */
.footer{
	background-color: #009844;
	color: #FFF;
	font-size: 13px;
	text-align: center;
	line-height: 1.5;
	padding: 10px 0;
	margin-top:40px;
}
                
                                    
                                                    プライバシーポリシーに同意の上、送信してください。                            
同意して送信すると、Cookieにより当社のWebサイト上における閲覧履歴と個人情報を紐付けて把握、分析する場合があります。