@charset "Shift_JIS";
#wrap_enquete{
    width:750px;
    color:#666;
    padding-bottom: 30px;
}

.contents_enquete {
    margin: 0 auto;
    width: 700px;
}

.col_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex_j_between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex_layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.enquete_txt {
    flex: 0 1 80%;
    margin-right: 10px;
    align-self: flex-start;
    font-size: 16px;
    line-height: 1.5;
}

.enquete_img {
    max-width: 20%;
    margin-top: 5px;
}
.enquete_img img {
    max-width: 100%;
}

#wrap_enquete table {
  border-collapse: collapse;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#wrap_enquete table th,
#wrap_enquete table td {
  font-size: 16px;
  line-height: 200%;
  padding: 10px;
  color: #666;
  background-color: #fff;
  vertical-align: top;
}
#wrap_enquete table th {
  font-weight: bold;
  color: #f90;
  background-color: #fffde4;
  text-align: left;
  line-height: 140%;
  border: 1px solid #f90;
  box-sizing: border-box;
}

.enquete-radio .enquete-list-item input[type=radio] {
	display: none;		/* 標準スタイル */
}

.enquete-radio .enquete-list-item-label {
	position: relative;		/* ボックスの位置を指定する */
	padding: 0 0 0 30px;	/* ボックス内側の余白を指定する */
	display: inline-block;		/* ブロックレベル要素化する */
}
.enquete-radio .enquete-list-item-label:after,  .enquete-radio .enquete-list-item-label:before {
	position: absolute;	/* ボックスの位置を指定する */
	content: "";		/* ボックスのコンテンツ */ 
	display: block;		/* ブロックレベル要素化する */ 
	top: 50%;			/* 上部から配置の基準位置を決める */ 
}
.enquete-radio .enquete-list-item-label:after {
	left: 3px;			/* 左から配置の基準位置を決める */ 
	margin-top: -12px;	/* チェック枠の位置 */
	width: 15px;		/* ボックスの横幅を指定する */
	height: 15px;		/* ボックスの高さを指定する */
	border: 2px solid #ccc;	/* ボックスの境界線を実線で指定する */
	border-radius: 50%;		/* ボックスの角丸を指定する */
    
}
.enquete-radio .enquete-list-item-label:before {
	left: 8px;			/* 左から配置の基準位置を決める */ 
	margin-top: -7px;	/* チェックマークの位置 */
	width: 9px;		/* ボックスの横幅を指定する */
	height: 9px;		/* ボックスの高さを指定する */
	background: #f90;/* ボックスの背景色を指定する */
	border-radius: 50%;	/* ボックスの角丸を指定する */
	opacity: 0;			/* 要素を透過指定する */
}

input[type=radio]:checked + .enquete-list-item-label:before {
	opacity: 1;		/* 要素を表示する */
}

.enquete-checkbox .enquete-list-item input[type=checkbox] {
	display: none;		/* 標準スタイル */
}

.enquete-checkbox .enquete-list-item-label {
	position: relative;		/* ボックスの位置を指定する */
	padding: 0 0 0 30px;	/* ボックス内側の余白を指定する */
	display: inline-block;		/* ブロックレベル要素化する */
}
.enquete-checkbox .enquete-list-item-label:after,  .enquete-checkbox .enquete-list-item-label:before {
	position: absolute; /* ボックスの位置を指定する */
	content: ""; /* ボックスのコンテンツ */
	display: block; /* ブロックレベル要素化する */
	top: 50%; /* 上部から配置の基準位置を決める */ 
}
.enquete-checkbox .enquete-list-item-label:before {
	left: 3px; /* 左から配置の基準位置を決める */
	margin-top: -12px; /* チェック枠の位置 */
	width: 15px; /* ボックスの横幅を指定する */
	height: 15px; /* ボックスの高さを指定する */
	border: 2px solid #ccc; /* ボックスの境界線を実線で指定する */
	 /*border-radius: 6px; ボックスの角丸を指定する */
}
.enquete-checkbox .enquete-list-item-label:after {
	left: 10px; /* 左から配置の基準位置を決める */
	margin-top: -12px; /* チェックマークの位置 */
	width: 5px; /* ボックスの横幅を指定する */
	height: 10px; /* ボックスの高さを指定する */
	border-right: 4px solid #f90; /* 境界線（右）のスタイルを指定する */
	border-bottom: 4px solid #f90; /* 境界線（下）のスタイルを指定する */
	transform: rotate(45deg); /* 要素を回転させる */
	opacity: 0; /* 要素を透過指定する */
}

input[type=checkbox]:checked + .enquete-list-item-label:after {
	opacity: 1;		/* 要素を表示する */
}
.enquete-list-item-label:hover:before {
	border-color: #ccc;	/* ボックスの境界線を実線で指定する */
}

.enquete input[type=email],.enquete input[type=file],.enquete input[type=month],.enquete input[type=number],.enquete input[type=range],.enquete input[type=search],.enquete input[type=submit],.enquete input[type=tel],.enquete input[type=text],.enquete input[type=time],.enquete input[type=url],.enquete input[type=week],.enquete select,.enquete textarea {
 display:inline-block;
 width:100%;
 padding:.375rem .75rem;
 font-size:16px;
 line-height:150%;
 color:#666;
 background-color:#fff;
 background-clip:padding-box;
 border:1px solid #ccc;
 -webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
 transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
 transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;
 transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
 -moz-box-sizing: border-box;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
}

.enquete input:focus[type=email],.enquete input:focus[type=file],.enquete input:focus[type=month],.enquete input:focus[type=number],.enquete input:focus[type=range],.enquete input:focus[type=search],.enquete input:focus[type=submit],.enquete input:focus[type=tel],.enquete input:focus[type=text],.enquete input:focus[type=time],.enquete input:focus[type=url],.enquete input:focus[type=week],.enquete select:focus,.enquete textarea:focus {
 color:#666;
 background-color:#fff;
 border-color:#f90;
 outline:0;
 -webkit-box-shadow:0 0 0 .2rem rgba(254,153,3,.25);
 box-shadow:0 0 0 .2rem rgba(254,153,3,.25)
}

.text-center {
    text-align: center;
}
.m-t40{
    margin-top: 40px;
}
.m-t50{
    margin-top: 50px;
}

.btn-width input[type="submit"] {
    width: 40%;
}

input#btn-submit{
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    background-color: #ff7c42;
    color: #fff;
    border-style: none;
    border-radius: 10px;
}
input#btn-submit:hover{
  	filter: alpha(opacity=0.7);
    -moz-opacity:0.7;
    opacity:0.7;
    text-decoration: none;
}
input#btn-submit:not(:disabled):not(.disabled)[type="submit"] {
    cursor: pointer;
}

.lead-txt{
	line-height:150%; 
	color:#444;
	margin-bottom:20px;
	background: #fffce6;
	padding:15px;
	text-align:center;
}

.title-02 {
    color: #666;
    font-size: 24px;
    font-weight: bold;
    border-left: 8px solid
    #F90;
    display: block;
    padding: 8px 5px 4px 12px;
    margin-bottom: 10px;
}

.td2_title {
	font-size: 14px;
	color:#333;
	background: #f6ffe7;
	padding: 8px 15px;
	_font-weight: bold;
	text-align:left;
}


.td2_body {
	padding:0  30px;
	line-height: 15px;
	text-align:left;
}

.td2_body_pre {
	padding-top: 10px;
	padding-bottom: 20px;
	padding-left: 25px;
	line-height: 220%;
	font-size:13px;
	color:#333;
	vertical-align: middle;
	text-align:left;
}



.txt_c_red {
	text-decoration: none;
	color: #FF3300;
	text-align:left;
}


p#minitit01 {
	background: #E6FFFF;
	padding:3px 5px;
	height: 20px;
	width: 540px;
	vertical-align: middle;
	margin-top: 5px;
}

p#minitit02 {
	text-indent: 10px;
}

.txt-orange{color: #ff7c42;}
.send_enquete{font-size:28px; color: #ff7c42; margin-bottom: 20px;}
.btn-width{width: 100%; border: 2px solid #ff7c42; box-sizing: border-box; padding: 30px 20px; margin-top: 20px;}


.margin_bott { margin-left: 10px; }
.margin_t10 { margin-top: 10px; }













/* 12月15日追記フォーム確認画面スタイル
---------------------------------------------------- */
.form-table-waku{
	width:578px;
	border: 1px solid #ccc;
	padding:5px;
	margin-bottom:10px;
}

.form-table{
		font-size:13px;
		background: #fff;
		line-height:130%;
		color:#666;
		_color:#333;
}


.td2_title2 {
	color:#34363a;
	font-size: 14px;
	background: #d6dcf1;
	padding:10px;
	_font-weight: bold;
	margin-bottom:1px;
}


.td_appleft {
	background: #f6ffe7;
		font-size: 13px;
		color:#333;
		padding:10px;
}


.td_appright {
		font-size: 13px;
		color:#333;
		background: #f7f7f7;
		padding:10px;
}



