@charset "UTF-8";
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,p { margin:0; padding:0;}
li { list-style:none;}
h1,h2,h3,h4,h5,h6 {font-size:100%; font-weight: normal;}
img, img a { border: none;vertical-align: bottom;}
a { outline: 0;}

*{margin:0;padding:0;}
/* ==========================================================
 html5 elements
========================================================== */
article, aside, figure, figcaption, footer, header, nav, section
{ display: block;}
/* ==========================================================
 reseting
========================================================== */
html {
  overflow-y: scroll;
  font-size: 14px;
}

body {
  line-height: 1.5;
  color: #000;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  min-width:1000px;
}

@media screen and (max-width: 768px) {
  body {
    word-break: break-all;
  }
}

* html body {
  font-size: 84%;
}

*:first-child + html body {
  font-size: 84%;
}




textarea
{ resize: none;}
button
{ border: none; overflow: visible; background: none; vertical-align: top;  font-size: 100%; color: inherit; cursor: pointer; -webkit-appearance: none;}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}
fieldset, img
{ border: 0;}
img
{ height: auto; vertical-align: top;}
address, caption, code, em, th,
{ font-style: normal; font-weight: normal;}
ol, ul
{ list-style: none;}
caption, th
{ text-align: left;}
h1, h2, h3, h4, h5, h6, strong, em
{ font-size: 100%; font-weight: normal;}
a, input
{ /* outline: none; */ -webkit-tap-highlight-color:rgba(0,0,0,0);}
sup, sub
{ font-size: 63%;}
sup
{ vertical-align: top;}
sub
{ vertical-align: baseline;}
*
{ box-sizing: border-box; -webkit-box-sizing: border-box;}

input[type="email"],
input[type="tel"]
input[type="text"] {
	vertical-align: text-bottom;
	border: 1px solid #cdd1d7;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	padding: 5px;
	border-radius: 3px;
	vertical-align: middle;
	min-width: 200px;
}

input, select {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 6px 20px 6px 6px;
	border-radius: 3px;
	border: 1px solid #cdd1d7;
	vertical-align: middle;
	min-width:100px;
	background-image:  url('../../image/front/icon_arrow_l.png') !important;
	background-repeat: no-repeat !important;
	background-position: right center !important;

}
select::-ms-expand {
	display: none;
}
input[type="radio"],
input[type="checkbox"] {
  /* 透明度0 */
  filter: alpha(opacity=0);
  -moz-opacity:0;
  opacity:0;
  /* ブラウザのデフォルトのスタイルを削除 */
  -webkit-appearance: none;
  appearance: none;
  /* レイアウトから無視 */
  position: absolute;
}
input[type="radio"]+label,
input[type="checkbox"]+label{
	position: relative;
	padding-left:22px;
	display: inline-block;
	text-indent:0;
	margin: 0 0 0 0;
	padding: 0 0 0 25px;
}
input[type="checkbox"]+label{
	margin: 0 0 5px 6px;
}

input[type="checkbox"]+label::before {
	content: "";
	display: block;
	width:15px;
	height:15px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	/*中央ぞろえにする*/
	background: #fff;
	border: 1px solid #969696;
	/*お好きなや太さで。*/
	border-radius: 3px;
	cursor: pointer;
	/*ポインターを表示する*/
}
input[type="checkbox"]:checked{
/*ここにチェックボックスがチェックされたときのcssを書く*/
}
input[type="checkbox"]:checked+label::before {
	/*チェックしたときの箱の色を変える*/
	background: #fff;
}
input[type="checkbox"]:checked+label::after {
	content: "";
	display: block;
	width: 10px;
	height: 6px;
	box-sizing: border-box;
	border-bottom: 2px solid #003399;
	border-left: 2px solid #003399;
	position: absolute;
	/*ここから下は位置を調整する*/
	top: 43%;
	left: 5px;
	/*箱を斜めに傾けてチェック表示にする*/
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg) translateY(-50%);
}


input[type="radio"]+label::before {
	content: "";
	display: block;
	width:15px;
	height:15px;
	position: absolute;
	top: 9px;
	left: 0;
	transform: translateY(-50%);
	/*中央ぞろえにする*/
	background: #fff;
	border: 1px solid #969696;
	/*お好きなや太さで。*/
	border-radius: 50%;
	cursor: pointer;
	/*ポインターを表示する*/
}
input[type="radio"]:checked{
/*ここにチェックボックスがチェックされたときのcssを書く*/
}
input[type="radio"]:checked+label::before {
	/*チェックしたときの箱の色を変える*/
	background: #fff;
}
input[type="radio"]:checked+label::after {
	content: "";
	display: block;
	width: 11px;
	height: 11px;
	box-sizing: border-box;
	background: #003399;
	border-radius: 50%;
	position: absolute;
	/*ここから下は位置を調整する*/
	top:4px;
	left:3px;
}
input:focus, textarea:focus, select:focus,.contents a:focus{
	outline:1px solid #87b6ff;
	box-shadow: 0px 0 6px #a6c8ff;
	border-radius: 3px;
}
input[type="checkbox"]:focus + label::before,
input[type="radio"]:focus + label::before{
/*	outline:1px solid #87b6ff; */
	box-shadow: 0 0 6px #a6c8ff;
	border:1px solid #6ca5ff;
	border-radius: 3px;
}
input[type="radio"]:focus + label::before{
	border-radius: 50%;
}
/* リンク
------------------------------------------ */
a:link {
    color: #039;
    text-decoration: underline;
    background: transparent;
}
a:hover,
a:active {
    color: #FF0033;
    text-decoration: underline;
    background: transparent;
}



.pc_d{display:block;}
.sp_d{display:none !important;}

.fs{font-size: 85% !important;}
.fn{font-size:100% !important;}
.fm{font-size:110% !important;}
.fl{font-size:120% !important;}
.fb{font-weight:bold;}
.fn{font-weight:normal ;}


.c_red{color:#e71638;}
.c_navy{color:#0a347f;}

.wp100{width:100%}
.wp85{width:85%}
.wp65{width:65%}
.wp45{width:45%}
.wp40{width:40px}
.w100{width:100px}
.wp140{width:140px}
.wp260{width:260px}
.w200{width:200px}
.w270{width:270px}
.wp319{width:319px}
.wp340{width:340px}


input[type="text"].w100{width:100px !important;min-width:auto;}

.mt5{margin-top:5px;}.mt10{margin-top:10px;}.mt15{margin-top:15px;}.mt20{margin-top:20px;}.mt30{margin-top:30px;}.mt40{margin-top:40px;}
.pt5{padding-top:5px;}.pt10{padding-top:10px;}.pt15{padding-top:15px;}.pt20{padding-top:20px;}.pt30{padding-top:30px;}.pt40{padding-top:40px;}
.mb5{margin-bottom:5px;}.mb10{margin-bottom:10px;}.mb15{margin-bottom:15px;}.mb20{margin-bottom:20px;}.mb30{margin-bottom:30px;}.mb40{margin-bottom:40px;}
.pb5{padding-bottom:5px;}.pb10{padding-bottom:10px;}.pb15{padding-bottom:15px;}.pb20{padding-bottom:20px;}.pb30{padding-bottom:30px;}.pb40{padding-bottom:40px;}
.mr5{margin-right:5px;}.mr10{margin-right:10px;}.mr15{margin-right:15px;}.mr20{margin-right:20px;}.mr30{margin-right:30px;}.mr40{margin-right:40px;}
.pr5{padding-right:5px;}.pr10{padding-right:10px;}.pr15{padding-right:15px;}.pr20{padding-right:20px;}.pr30{padding-right:30px;}.pr40{padding-right:40px;}
.ml5{margin-left:5px;}.ml10{margin-left:10px;}.ml15{margin-left:15px;}.ml20{margin-left:20px;}.ml30{margin-left:30px;}.ml40{margin-left:40px;}.ml60{margin-left:60px;}.ml130{margin-left:130px;}.ml140{margin-left:140px;}
.pl5{padding-left:5px;}.pl10{padding-left:10px;}.pl15{padding-left:15px;}.pl20{padding-left:20px;}.pl30{padding-left:30px;}.pl40{padding-left:40px;}
.m_auto{margin:aut;}

.tc{text-align:center;}
.tr{text-align:right;}
.tl{text-align:left;}

.cf:after {
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	content:".";
}
.ds_inb{display:inline-block;width:auto !important;min-width:auto !important;}
.ds_b{display:block;}

.input_error{display:block !important;}


.cursor_a{cursor:auto}
.cursor_d{cursor: default}
.r-txt{
	margin-left: 103px;
}

/* ヘッダ
------------------------------------------ */
#header {
	width: 1000px;
	margin: 0 auto;
	text-align:left;
	height:71px;
}

#header .floatR{
	float:right;
	margin-top:10px;
}
#header #dellLogoMessage{float:left;margin-top:15px;}


/* 進捗イメージ
------------------------------------------ */


.pos_adjust_out{
	padding:4px 17px 4px 4px;
	background:#eee;
	margin: 10px 0 0 0;
	display: inline-block;
}
.pos_adjust {
	font-size: 15px;
	text-align: center;
	padding: 0 0 0 0px;
}
td.pos_adjust{
	border:4px solid #eee;
}
.current {
	color: #FFFFFF;
	background-color: #05348b;
	width: 168px;
	padding: 5px;
	position: relative;
}

	.current:before {
		content: "";
		position: absolute;
		top: 0px;
		left: 168px;
		border: 16px solid transparent;
		border-left: 15px solid #05348b;
		z-index: 3;
	}
	.current:after {
		content: "";
		position: absolute;
		top: -0px;
		left: 172px;
		border: 16px solid transparent;
		border-left: 15px solid #eee;
		z-index: 2;
	}
.progress {
	color: #fff;
	background-color: #666666;
	width: 160px;
	padding: 1px;
	position: relative;
	border: 4px solid #666666;
}

.progress:before {
	content: "";
	position: absolute;
	top: -4px;
	left: 156px;
	border: 16px solid transparent;
	border-left:15px solid #666666;
}
.confirm .progress {
	color: #FFFFFF;
	background-color: #666666;
	width: 168px;
	padding: 5px;
	position: relative;
	border:none;
}
.confirm .progress:before {
	content: "";
	position: absolute;
	top: 0px;
	left: 168px;
	border: 16px solid transparent;
	border-left: 15px solid #666666;
	z-index: 3;
}

.confirm .progress:after {
	content: "";
	position: absolute;
	top: -0px;
	left: 172px;
	border: 16px solid transparent;
	border-left: 15px solid #eee;
	z-index: 2;
}

/* フッタ
------------------------------------------ */
#footer {
	border-top: 4px solid #404859;
	width: 100%;
	/* margin-top: 60px; */
	clear: both;
	font-size: 10.5pt;
}

#footer_txt {
	width: 1000px;
	margin: 0 auto;
	text-align: left;
	padding: 20px 0 60px 0;
}
#footer_txt p{
	margin-top:20px;
}
#footer_txt #copy {
	float: right;
	font-size: 8pt;
	color: #666;
	letter-spacing: 0.1em;
}


/* ==========================================================
 reseting
========================================================== */
#container h1 {
	width: auto;
	font-size: 20pt;
	padding: 20px 0 20px 0;
	background-repeat: no-repeat;
	text-align: center;
	white-space: nowrap;
	color: #000;
	font-weight: bold;
}
.topMessage {
	border: none;
	background-color: #05348B;
	color: #fff;
	border-radius: 0;
	margin: 0;
	height:55px;
	text-align: center;
	font-size: 140%;
	line-height: 55px;
	font-weight: bold;
}
.main_bg {
	background: #eeeeee;
	padding-top: 1px;
	padding-bottom: 60px;
}
#main{
	width: 1000px;
	text-align: left;
	letter-spacing: 1px;
	margin: 0 auto;
}
#main section h3{
	padding: 5px 0 15px 0;
	line-height: 100%;
	margin: 45px 5px 0 5px;
	color: #001f7a;
	clear: both;
	font-size: 125%;
	border-bottom: 3px solid #039;
	font-weight: bold;
	z-index: 5;
	position: relative;
}
#main section h4{font-weight: bold;}

#main section .section{
	margin: -1px auto 0px auto;
	padding: 0px;
	width: 990px;
	border: 1px solid #ccc;
	background: #fff;
	display:table;
	z-index:1;
	position: relative;
}
#main section .heading{
	padding: 26px 10px 26px 20px;
	display:table-cell;
	vertical-align: middle;
}
#main section .heading p{
	font-size:14px;
	line-height:180%;
	letter-spacing:0.05em;
}


#main section .sectionBody{
	padding: 18px 15px 18px 15px;
	display:table-cell;
	vertical-align: middle;
	width:260px;
	border-left: 1px dotted #bbb;
}
#main section .sectionBody.w680{
	width:680px;
}
#main section .sectionBody.w680 div{
	display:inline-block;
}
#main section .sectionBody.w680 span{
	display:inline-block;
	min-width:40px;
}
#main section .sectionBody.w680 span.w4em{
	display:inline-block;
	min-width:4.5em;
}
#main section .sectionBody.w680 div.db{
	display:block;
	margin-bottom:10px;
}


/*-- 20211124 --*/
#main section .ling {
	padding:0 20px;
}
#main section .ling .sectionBody.w680{
	display:block;
	border-left:none;
	border-top: 1px dotted #bbb;
	width: 100%;
	padding: 18px 0 18px 0;
}
#main section .ling .heading,
#main section .ling .required-out{
	display:inline;
}
#main section .ling .heading p{
	display:inline-block;
	padding:20px 0;
}
#main section .ling .sectionBody.w680 label{
	float:left;
	width: 290px;
	margin:0 10px;
	font-size:105%;
}
#main section .ling .sectionBody.w680 label label{
	width: 100%;
	font-weight: bold;
}

#main section .ling .photo_Type label div{
	width: 295px;
	padding: 20px 15px;
}
.photo_Type label div .photo_Typeimg{
	margin:auto;
	text-align: center;
}
.photo_Type label div .photo_Typeimg img{
	max-width: 100%;
	max-height: 100px;
	width: auto;
	height: auto;
	margin:15px 30px 10px 0px;
}
#main section .ling .red{color:#e71638;}
#main section .ling .stext{text-align:center;}

/*-- end:20211124 --*/



#main section .required-out{
	vertical-align: middle;
	display:table-cell;
	width: 60px;
	padding:0 10px;
}

.required {
	background-color: #e71638;
	color: #fff;
	font-weight: bold;
	border: 2px solid #e71638;
	font-size: 10pt;
	padding: 0px 10px;
	white-space: nowrap;
	display:inline-block;
}
.checkbox{
	border-radius: 3px;
	margin: 0;
	cursor: pointer;
	font-weight: normal;
/*	white-space: nowrap;*/
	text-align: left;
	/* padding: 6px 6px 6px 6px; */
	margin-bottom:10px;
	letter-spacing: -0.05em;
	min-height: 33px;
	line-height: 33px;
}
.checkbox label.c_red{
	margin: 0 -4px 0 -8px;
}

@media (max-width: 1020px) and (min-width: 768px) {
	.checkbox label{
		font-size:13px;
	}
	.checkbox label.c_red{
		margin: 0 -6px 0 -10px;
	}
}
.radio_2c{
	border-radius: 3px;
	margin: 0;
	cursor: pointer;
	font-weight: normal;
	word-wrap:break-word;
	text-align: left;
	padding: 6px 6px 6px 6px;
	min-width:48%;
	display:inline-block;
	background:#ffdddd;
}
.radio_checked{
	background:#e1f4e1;
}
.radio_unchecked{
	background:#f9fff4;
}
.select_required {
	background: #ffdddd;
}
.select_selected {
	background: #fff;
}
.select_invalid {
	background: #ffdddd;
}
.select_disabled {
	background: #d0d0d0;
}
#main section .sectionBody .checkbox:last-child{
	margin-bottom:0;
}
.btnarea{
	margin-top: 30px;
	text-align:center;
	position: relative;
}
.btnSubmit {
	border: none;
	background-color: #cc0000;
	color: #fff;
	border-radius: 7px;
	padding: 0px;
	margin: 0px;
	font-size: 24px;
	line-height: 45px;
	width: 300px;
	height: 62px;
	font-weight: bold;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.btnSubmit.back{
	background-color: #fff;
	color:#666;
	font-size: 18px;
	width: 160px;
	position: absolute;
	left: 0;
	top: 0;
}
.btnSubmit .input.submit{
	display:inline-block;
}

.btnSubmit_s{
	border: none;
	background-color: #0a347f;
	color: #fff;
	border-radius: 4px;
	padding:4px 10px;
	font-weight: bold;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.btnSubmit_sl{
	border: none;
	background-color: #0a347f;
	color: #fff;
	border-radius: 4px;
	padding:10px 80px;
	margin:auto;
	font-weight: bold;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	font-size:16px;
	text-align:center;
}
.btnSubmit_sl:hover,
.btnSubmit_s:hover,
.btnSubmit:hover {
	opacity: 0.7;
	cursor: pointer;
}
.btnSubmit_s:disabled{
	background:#dbdbdb;
	cursor: default
}
.btnSubmit_s:disabled:hover{
	opacity: 1;
}


#main section .list_label div{
	margin:10px 0;
	display:block !important;
}
.list_label label{
	margin-right:5px !important;
	margin-bottom: 5px !important;
	display: inline-block !important;
	width:123px;
	font-size: 13px;
	font-weight: normal;
	border-radius: 3px;
	background:#ffdddd;
	padding: 10px 0 10px 35px !important;
	vertical-align: top;
}
.list_label input[type="radio"]+label::before{
	top: 19px;
	left: 10px;
}
.list_label input[type="radio"]:checked+label::after{
	top: 14px;
	left: 13px;
}
.list_peps{
	padding-left: 20px;
}
.list_peps li{
	list-style-type: square;
}
.delivery_doc_list li{
	margin-left:15px;
	list-style-image: url('../../image/front/ico-link-pdf_01.png');
}

#customer_company_address_search_button,
#customer_address_search_button{
	background:#039;
	color:#fff;
	padding: 2px 6px;
	border-radius: 3px;
	vertical-align: middle;
}

.btn_up{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	appearance: none;

	background:#039;
	color:#fff;
	padding: 2px 6px;
	border-radius: 3px;
	vertical-align: middle;
}

.btn_delete{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	appearance: none;
	background:#cc0425;
	color:#fff;
	padding: 2px 6px;
	border-radius: 3px;
	vertical-align: middle;
}
.btn_up:disabled,
.btn_delete:disabled{
	background:#dbdbdb;
	cursor: default
}

#customer_company_address_search_button:hover,
#customer_address_search_button:hover,
.btn_up:hover,
.btn_delete:hover{
opacity: 0.7;
}
.btn_up:disabled,
.btn_delete:disabled{
opacity: 1;
}


input[type="checkbox"]:disabled + label + label + label{
	color:#ccc;
}
input[type="checkbox"]:disabled +label::before{
	border: 1px solid #ccc;
}

/* photo_flow
------------------------------------------ */
#main .section.photo_flow{
	background:#f1f5ff;
	padding:20px 0;
	margin-bottom:20px;
	text-align:center;
}

.photo_Type label div{
	border-radius: 3px;
	margin: 5px 2px;
	cursor: pointer;
	font-weight: normal;
	white-space: nowrap;
	text-align: left;
	padding:10px;
	background:#e3e3e3;
	width:200px;
	display:inline-block;
	min-height: 30px;
	vertical-align: top;
	padding-left:2em;
	text-indent:-1em;
}
.photo_Type.h60 div{
	height: 60px;
	vertical-align: middle;
}
.photo_Type.h60 input[type="radio"]+label::before{
	top:21px;
}
.photo_Type.h60 input[type="radio"]:checked+label::after{
	top:16px;
}
.photo_Type.h60 label[for="verify_pattern_sp1"] {
	padding-top:10px;
}
.photo_Type #photo_Type_wide{
	border-radius: 3px;
	padding:10px 400px;
	width:200px;
	min-height: 30px;
	padding-left:2em;
	text-indent:-1em;
}
.photo_main{
	border:1px solid #cccc;
	background:#f1f5ff;
	padding:20px;
	vertical-align: top;
	display: block !important;
}
.font_bold{
	font-weight: bold;
}
.QR_txt{display:inline-block;width:310px;}
.QR_area{
	border:1px solid #0a347f;
	display:inline-block;
	vertical-align: top;
	background: #fff;
	width:268px;
}
.photo_btnarea{
	border-top:1px solid #0a347f;
	background:#f1f5ff;
	padding:20px;
	vertical-align: top;
	text-align:center;
}

.verify_vaution_txt{
	border: solid;
	border-color: #e71638;
	margin-bottom: 15px;
	font-weight: bold;
	display: inline-block;
	padding-bottom: 15px;
	padding:10px;
}

/* photo_end
------------------------------------------ */
.photo_end .top_txt_out{
	margin:40px 5px 0px 5px;
	background: url("../../image/front/end_icon_sp.png") no-repeat 70px 35px;
	background-size: 30px auto;
	padding:20px 0 40px 120px;
	line-height:160%;
	color: #000;
	font-size: 125%;
	border-bottom: 3px solid #039;
	font-weight: bold;
}
.end_imgarea_out.mt10{
	margin-top:10px;
}
.end_imgarea_out{
	display:table;
	border-collapse: separate;  /* セルの間隔を空ける */
	border-spacing: 15px 0;  /* 左右 上下で記述 */
	text-align:center;
	margin:auto;
}
div.end_imgarea{
	background:#f1f5ff;
	padding:5px 20px 20px 20px;
	vertical-align: top;
	text-align:center;
	border: 1px solid #ccc;
	display:table-cell !important;
	width: 307px;
}
div.end_imgarea p{padding:0 0 5px;font-weight: bold;}
div.end_imgarea img{
	margin:auto;
	width:auto;
	max-height:300px;
	max-width:257px;
}

.confirm_message{
	margin-top:20px;
}

/* complete
------------------------------------------ */
.complete{
	margin:30px 0;
}
.complete .message{
	margin:15px auto 40px auto;
	font-size:15px;
	width:720px;
}
.complete h2{
	padding: 5px 0 15px 0;
	line-height: 100%;
	margin: 45px 0 10px 0;
	color: #001f7a;
	clear: both;
	font-size: 125%;
	border-bottom: 3px solid #039;
	font-weight: bold;
	z-index: 5;
	position: relative;
}

.complete .address{
	border: 1px solid #ccc;
	background: #fff;
	padding:30px 0 30px 40px;
	margin:20px auto 40px;
	width:720px;
}

.complete .case{
	margin:0 0 -10px 5px;
	font-weight: bold;
}
.complete .address .title{
	font-weight:bold;
	font-size:15px;
	color:#05348B;
	margin:0 0 15px 0;
}

.complete .address dt{
	float:left;
	font-weight:bold;
}
.complete .address dd{
	margin-left:70px;
	padding-bottom:10px;
}




.complete .tvtokyo-campaign{
	padding:40px 0;
	text-align: center;

}
.complete .tvtokyo-campaign img{text-align:center;margin:20px auto;}

.complete .tvtokyo-campaign p{
	text-align:left;
}
.complete .banner{
	text-align: center;

}
.complete .banner img{text-align:center;margin:20px auto;}

#footer_txt #copy {
	float: right;
	font-size: 8pt;
	color: #666;
	letter-spacing: 0.1em;
}


/* 使用可能文字画面
------------------------------------------ */
.CharacterList{width:100%;margin: auto;margin-bottom:10px;}
.CharacterList tr {
	border: solid 1px #09467D;
	border-collapse: collapse;
	border-spacing: 5px;
	font-size: 10pt;
	padding: 0.5em;
}

.CharacterList td {
	border: solid 1px #09467D;
	border-collapse: collapse;
	border-spacing: 5px;
	font-size: 10pt;
	padding: 0.5em;
}

.CharacterList td.bg{
	background:#edf1fd;
}

/* スマホ撮影中モーダル
------------------------------------------ */

#modal_photo .close{
	padding:10px;
	text-align:right;
}
#modal_photo .close img:hover{
	opacity: 0.6;
	cursor: pointer;
}
#modal_photo .modal_main{
	padding:0 30px 20px 30px
}
#modal_photo .modal_main h3{
	color: #001f7a;
	border-bottom: 3px solid #039;
	font-size: 125%;
	font-weight: bold;
	margin: 0 0 20px 0;
}
#modal_photo  p{
	padding:10px 0;
}
#modal_photo p img{
	vertical-align: middle;
	margin:0 3px;
}
/* 郵便番号モーダル
------------------------------------------ */
#main section .section.z3{
/*	z-index:3;*/
	z-index:6;
}
#main section .section.z_low{
	z-index:6;
}
#main section .section.z_high{
	z-index:7;
}

.customer_address_out{
	position:relative;
	z-index:2;
}
#main section .sectionBody.w680 .customer_address_out span{min-width:auto;}
#main section .sectionBody.w680 .customer_company_address_out span{min-width:auto;}
#customer_address_list{
	color:#fff;
	background:#000;
	padding:10px;
	display:none;
	top: -30px;
	left: 260px;
	border-radius: 8px;
	z-index: 9;
	position: absolute;
	opacity: 0.8;
}
#customer_address_list table{
	color:#fff;
}
#customer_address_list th{text-align:center;}
#customer_address_list td{
	padding:0;
	line-height: 120%;
	white-space: nowrap;
	font-size: 14px;
}
#customer_address_list td:hover{
	cursor: pointer;
	background: rgb(136, 136, 136);
}
.customer_company_address_out{
	position:relative;
	z-index:2;
}
#customer_company_address_list{
	color:#fff;
	background:#000;
	padding:10px;
	display:none;
	top: -30px;
	left: 260px;
	border-radius: 8px;
	z-index: 9;
	position: absolute;
	opacity: 0.8;
}
#customer_company_address_list table{
	color:#fff;
}
#customer_company_address_list th,
#customer_address_list th{text-align:center;font-weight: normal;padding-bottom: 4px;}

#customer_company_address_list td,
#customer_address_list td{
	padding:0;
	line-height: 120%;
	white-space: nowrap;
	font-size: 14px;
}
#customer_company_address_list td:hover,
#customer_address_list td:hover{
	cursor: pointer;
	background: rgb(136, 136, 136);
}
/* error
------------------------------------------ */

.header-bg{
	background:#fff;
}
.error-bg{
	background:#eeeeee;
}
#error-box{
	margin: 120px auto 100px auto;
	padding: 0px;
	width: 990px;
	border: 1px solid #ccc;
	background: #fff;
	display: table;
	z-index: 1;
	position: relative;
	padding: 40px 100px;
	text-align: center;
}

#error-box img{margin-bottom:40px;width: 60px;}
#error-box h3{
	font-weight: bold;
	color: #d90f36;
	font-size: 125%;
	margin-bottom:10px;
}
#error-box a{
	margin-top: 60px;
	display: inline-block;
}


.ui-button-icon-only{
    width: 2em;
   height: 1rem;
    box-sizing: border-box;
   text-indent: 100%;
   white-space: nowrap;
   overflow: hidden;
    white-space: nowrap;
}

.dialog-required{
	height: auto !important;
}