@charset "UTF-8";


/* 共通 */
/*------------------------------------------------------------------------------*/
.pc {
	display: block;
}
.sp {
	display: none;
}

.kome {
	color: #f00;
}
.strong {
	font-weight: bold;
}

select:focus,
input[type="text"]:focus {
	background-color: #fff8da;
	
}

.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}





/* 共通ボタン 20240228 add */
.common__btn__type01 {
	display: grid;
	grid-template-columns: 1fr 70px;
	width: 100%;
	min-height: 4.5em;
	font-size: 1.2em;
	color: #fff;
	text-decoration: none;
	background-color: #ccc;
	background: linear-gradient(180deg, rgba(90,153,207,1) 0%, rgba(72,124,166,1) 100%);
	border-radius: .3em;
	overflow: hidden;
	padding: 10px 0;
}
.common__btn__type01:hover {
	opacity: .8;
}
.common__btn__type01 .text,
.common__btn__type01 .icon {
	display: flex;
	justify-content: center;
	align-items: center;
}
.common__btn__type01 .text {
	font-weight: 600;
	text-align: center;
	padding: 0 1em;
}
.common__btn__type01 .icon {
	border-left: 1px solid #3672a5;
	padding: 0 22px;
}
.common__btn__type01 .icon img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 690px) {
.common__btn__type01 {
	grid-template-columns: 1fr 45px;
	font-size: 1.2em;
	padding: 10px 0;
}
.common__btn__type01:hover {
	opacity: 1;
}
.common__btn__type01 .text {
	padding: .6em 1em;
}
.common__btn__type01 .icon {
	padding: 0 12px;
}
}





/* flowArea */
/*------------------------------------------------------------------------------*/
#flowArea {
	margin: 0 0 25px 0;
}
#flowArea h2 {
	font-size: 2em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background-color: #f60;
	border-bottom: solid 3px #c60;
	margin: 0 0 20px 0;
	padding: 0.3em 0;
}
.h2_ex {
	background-color: #C09933!important;
	border-bottom: solid 3px #BF8900!important;
}
#flowArea ol {
	display: table;
	width: 100%;
	margin: 0 0 1em 0;
}
#flowArea ol li {
	display: table-cell;
	width: 22%;
	font-size: 1.3em;
	text-align: center;
	vertical-align: middle;
}
#flowArea ol li span {
	display: block;
	font-weight: bold;
	color: #fff;
	background-color: #ddd;
	padding: 0.5em 0;
}
#flowArea ol li.current span {
	background-color: #f96;
}
#flowArea ol li.current_ex span {
	background-color: #E6B63E;
}
#flowArea ol li.arrRight {
	width: 4%;
	font-size: 2.4em!important;
	color: #2b9db6;
}
#flowArea ol li.arrDown {
	display: none;
}
#flowArea > div.flowInfoArea > p {
	font-size: 1.2em;
}
#flowArea > div.flowInfoArea > p.reglink {
	font-size: 1.5em;
	padding: 1em 0 0 0;
	text-align: center;
}


#flowArea > div.flowInfoArea > p.kome {
	text-indent: -1em;
	padding: 0 0 0 1em;
}

/* timeTable */
/*------------------------------------------------------------------------------*/
#timeTable table {
	width: 100%;
	table-layout: fixed;
	margin-bottom:20px;
}
#timeTable table th,
#timeTable table td {
	border: 1px solid #ddd;
}
#timeTable table th {
	font-size: 1.5em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	padding: 0.3em;
}

#timeTable table tr.tableHeader {
	display: table-row;
}

#timeTable table th.cel_Time {
	width: 7%;
	background-color: #000!important;
}
#timeTable table th.cel_Time_A {
	width: 7%;
	background-color: #a31212;
}
#timeTable table th.cell_A {
	background-color: #a31212;
}
#timeTable table th.cel_Time_B {
	width: 7%;
	background-color: #124fa3;
}
#timeTable table th.cell_B {
	background-color: #124fa3;
}
#timeTable table th.cel_Time_C {
	width: 7%;
	background-color: #d4531a;
}
#timeTable table th.cell_C {
	background-color: #d4531a;
}
table td.cell_No {
	background-color: #eee;
}

#timeTable table td {
	padding: 0.5em;
}
#timeTable table td.cel_Time {
	background-color: #f7f7f7;
}
#timeTable table td.cell_A {
	background-color: #ffecec;
}
#timeTable table td.cell_B {
	background-color: #ecf4ff;
}
#timeTable table td.cell_C {
	background-color: #fff2ec;
}
#timeTable table td.cell_S {
	background-color: #edfff8;
}

#timeTable table td.cel_Time {
	/*word-break: break-all;*/
	vertical-align: middle;
	position: relative;
}
#timeTable table td.cel_Time span.timeBox {
	display: inline-block;
	width: 100%;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
}
#timeTable table td.cel_Time label {
	display: inline-block;
	width: 96%;
	font-size: 1.1em;
	text-align: center;
	background-color: #ccc;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	cursor: pointer;
	padding: 0.5em 0;
	position: absolute;
	bottom: 5px;
	left: 2%;
	transition: all 0.2s;
}
#timeTable table td.cel_Time label input {
	outline: none;
	margin: 0 0.3em 0 0;
}
#timeTable table td.cel_Time label:hover {
	color: #fff;
	background-color: #e48913;
}
#timeTable table td.cel_Time label.selected {
	/*
	color: #fff;
	background-color: #fc1969;
	*/
}
#timeTable table td div.cell_Inner {
	font-size: 1.2em;
	position: relative;
	padding: 0 0 90px 0;
}
#timeTable table td div.cell_Inner div.seminarId {
	margin: 0 0 0.5em 0;
}
#timeTable table td div.cell_Inner div.seminarId span {
	display: inline-block;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	background-color: #f00;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 0.3em 0.5em;
}

/*add 20190308*/
#timeTable table td div.cell_Inner div.seminarId span.cpds {
	display: inline-block;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	background-color: #999;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 0.3em 1.3em;
	text-align: center;
	vertical-align: middle;
}

/*add 20200217*/
#flowArea div.flowInfoArea span.cpds {
	display: inline-block;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	background-color: #999;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 0.3em 1.3em;
	text-align: center;
	vertical-align: middle;
}

/*add 20220304*/
#timeTable table td div.cell_Inner div.seminarId span.cpd {
	display: inline-block;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	background-color: #ee7c45;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 0.3em 1.3em;
	text-align: center;
	vertical-align: middle;
}

/*add 20220304*/
#flowArea div.flowInfoArea span.cpd {
	display: inline-block;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	background-color: #ee7c45;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 0.3em 1.3em;
	text-align: center;
	vertical-align: middle;
}


.cpdsLeft {
	text-align: left;
	float: left;
}
.cpdsRight {
	text-align: right;
}


#timeTable table td div.cell_Inner div.seminarCate {
	font-weight: bold;
	color: #bc2a2a;
	margin: 0 0 0.2em 0;
}
#timeTable table td div.cell_Inner div.seminarName {
	font-size: 1.0em;
	font-weight: bold;
	margin: 0 0 0.3em 0;
}

#timeTable table td div.cell_Inner div.speakerBox {
	background-color: #fff;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 5px;
}
#timeTable table td div.cell_Inner div.speakerBox div.companyName {
	font-size: 1.0em;
}
#timeTable table td div.cell_Inner div.speakerBox div.postName li {
	font-size: 1.0em;
}
#timeTable table td div.cell_Inner div.speakerBox div.speakerName span {
	font-size: 1.0em;
}
#timeTable table td div.cell_Inner div.btnArea {
	width: 100%;
	position: absolute;
	bottom: 0;
}
#timeTable table td div.cell_Inner div.btnArea div.openDetail {
	text-align: center;
	margin: 0 0 0.7em 0;
}
#timeTable table td div.cell_Inner div.btnArea div.openDetail a {
	display: inline-block;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	outline: none;
	background-color: #3a89d9;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 0.4em 0.8em;
	transition: all 0.2s;
}
#timeTable table td div.cell_Inner div.btnArea div.openDetail a:hover {
	background-color: #1860aa;
}
#timeTable table td div.cell_Inner div.btnArea div.btnEntry label {
	display: block;
	font-size: 1.1em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	cursor: pointer;
	background-color: #666;
	padding: 0.4em;
	transition: all 0.2s;
}
#timeTable table td div.cell_Inner div.btnArea div.btnEntry label:hover {
	/*background-color: #e48913;*/
}
#timeTable table td div.cell_Inner div.btnArea div.btnEntry label.selected {
	background-color: #fb991a;
}

#timeTable table td div.cell_Inner div.btnArea div.btnEntry .chk{
	background-color: #fb991a;
}

#timeTable table td div.cell_Inner div.btnArea div.btnEntry label input {
	outline: none;
	margin: 0 0.3em 0 0;
}





/* モーダル */
/*------------------------------------------------------------------------------*/
div.detailBoxArea {
	display: none;
}
div.detailBoxArea div.detailBoxMain {
	font-size: 1.2em;
	padding: 0;
}
div.detailBoxArea div.detailBoxMain div.titleArea {
	border-bottom: 1px solid #ccc;
	margin: 0 0 0.5em 0;
	padding: 0.5em 0;
}
div.detailBoxArea div.detailBoxMain div.titleArea div.seminarCate {
	margin: 0 0 0.8em 0;
}
div.detailBoxArea div.detailBoxMain div.titleArea div.seminarCate span {
	display: inline;
	font-weight: bold;
	color: #fff;
	background-color: #3a89d9;
	border-radius: 1em;
	-webkit-border-radius: 1em;
	-moz-border-radius: 1em;
	padding: 0.4em 1em;
}
div.detailBoxArea div.detailBoxMain div.titleArea div.seminarName span {
	display: inline;
	font-size: 1.4em;
	font-weight: bold;
}
div.detailBoxArea div.detailBoxMain div.dateArea {
	display: table;
	width: 100%;
	padding: 0.5em 0 1.5em 0;
}
div.detailBoxArea div.detailBoxMain div.dateArea div {
	display: table-cell;
	vertical-align: middle;
}
div.detailBoxArea div.detailBoxMain div.dateArea div.seminarId {
	width: 15%;
	padding: 0 1em 0 0;
}
div.detailBoxArea div.detailBoxMain div.dateArea div.seminarId span {
	display: inline-block;
	width: 100%;
	/*font-weight: bold;*/
	line-height: 1;
	color: #fff;
	text-align: center;
	background-color: #f00;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 0.3em 0.5em;
}
div.detailBoxArea div.detailBoxMain div.overviewArea {
	margin: 0 0 1.5em 0;
}
div.detailBoxArea div.detailBoxMain div.overviewArea div.overviewText {
	/*padding: 0 0 0 1.5em;*/
}
div.detailBoxArea div.detailBoxMain div.profileInfoArea {
	margin: 0 0 1em 0;
}
div.detailBoxArea div.detailBoxMain div.profileInfoArea:after {
	content: "";
	display: block;
	clear: both;
}
div.detailBoxArea div.detailBoxMain div.profileInfoArea div.imgBox {
	width: 25%;
	float: left;
}
div.detailBoxArea div.detailBoxMain div.profileInfoArea div.imgBox img {
	width: 100%;
	height: auto;
}
div.detailBoxArea div.detailBoxMain div.profileInfoArea div.textBox {
	width: 72%;
	float: right;
}
div.detailBoxArea div.detailBoxMain div.profileInfoArea div.textBox div.companyName span {
	font-size: 1.2em;
	font-weight: bold;
}
div.detailBoxArea div.detailBoxMain div.profileInfoArea div.textBox div.postName {
	padding: 0.3em 0;
}
div.detailBoxArea div.detailBoxMain div.profileInfoArea div.textBox div.speakerName span {
	font-size: 1.1em;
	font-weight: bold;
}
div.detailBoxArea div.detailBoxMain div.profileInfoText {
	background-color: #eee;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 1em;
}
div.detailBoxArea div.detailBoxMain div.profileInfoText div.profileInfoTitle {
	font-size: 1.1em;
	font-weight: bold;
	margin: 0 0 0.3em 0;
}


div.detailBoxArea div.detailBoxMain div.modalTitle {
	border-bottom: 2px solid #3a89d9;
	margin: 0 0 0.8em 0;
}
div.detailBoxArea div.detailBoxMain div.modalTitle span {
	font-size: 1.2em;
	font-weight: bold;
}
div.detailBoxArea div.detailBoxMain div.modalTitle span:nth-of-type(1) {
	color: #3a89d9;
	padding: 0 0.3em 0 0;
}





/* btnLinkArea */
/*------------------------------------------------------------------------------*/
#btnLinkArea {
	text-align: center;
	padding: 30px 0;
}
#btnLinkArea > div.btnLinkMain {
	display: inline-block;
}
#btnLinkArea > div.btnLinkMain > div.btnLeft {
	float: left;
}
#btnLinkArea > div.btnLinkMain > div.btnRight {
	float: right;
	padding: 0 0 0 2em;
}
/*#btnLinkArea > div {
	display: table-cell;
}*/
/*#btnLinkArea > div:nth-of-type(2) {
	padding: 0 0 0 2em;
}*/

input.btnType01 {
	display: inline-block;
	font-size: 1.5em;
	font-weight: bold;
	color: #fff;
	background-color: #175C90;
	border: none;
	border-bottom: 2px solid #0c426b;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	cursor: pointer;
	outline: none;
	padding: 1em 1.5em;
	transition: all 0.2s;
}
input.btnType01:hover {
	background-color: #1b86d6;
}

input.btnType02 {
	display: inline-block;
	font-size: 1.5em;
	font-weight: bold;
	color: #fff;
	background-color: #1c9fa7;
	border: none;
	border-bottom: 2px solid #0c8991;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	cursor: pointer;
	outline: none;
	padding: 1em 1.5em;
	transition: all 0.2s;
}
input.btnType02:hover {
	background-color: #30c4cd;
}

input.btnType03 {
	display: inline-block;
	font-size: 1.5em;
	font-weight: bold;
	color: #fff;
	background-color: #a1a1a1;
	border: none;
	border-bottom: 2px solid #898989;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	cursor: pointer;
	outline: none;
	padding: 1em 1.5em;
	transition: all 0.2s;
}
input.btnType03:hover {
	background-color: #c2c2c2;
}



#btnLinkArea .btn__link__main {
	display: flex;
	justify-content: center;
}
.page__entry__success .common__btn__type01 {
	width: 30%;
	font-size: 1.3em;
}
@media screen and (max-width: 690px) {
.page__entry__success .common__btn__type01 {
	width: 80%;
}
}





/* joinSeminer */
/*------------------------------------------------------------------------------*/
#joinSeminer {
	/*background-color: #ccc;*/
}
#joinSeminer .joinSeminerMain {
	background-color: #ffebeb;
	background-color: #f9f9f9;
	padding: 1em;
}

#joinSeminer .joinSeminerMain .dateArea {
	background-color: #fff;
	border-left: 5px solid #c00;
	border-bottom: 1px solid #c00;
	padding: 0.5em 0 0.5em 1em;
}
#joinSeminer .joinSeminerMain .dateArea .dateAreaMain {
	font-size: 1.2em;
	font-weight: bold;
	/*color: #fff;*/
	/*text-align: center;*/
}
#joinSeminer .joinSeminerMain .dateArea .dateAreaMain span {
	font-size: 1.4em;
}
#joinSeminer .joinSeminerMain .joinList {
	background-color: #fff;
	border-left: 5px solid #c00;
	padding: 0.5em 1.5em;
}
#joinSeminer .joinSeminerMain .joinList li {
	display: table;
	width: 100%;
	font-size: 1.2em;
	padding: 0.5em;
}
#joinSeminer .joinSeminerMain .joinList li+li {
	border-top: 1px dashed #ccc;
}
#joinSeminer .joinSeminerMain .joinList li > span {
	display: table-cell;
	text-align: left;
	vertical-align: middle;
}
#joinSeminer .joinSeminerMain .joinList li > span.timeBox {
	width: 16%;
}
#joinSeminer .joinSeminerMain .joinList li > span.placeBox {
	width: 8%;
}

#joinSeminer .joinSeminerMain .joinList li > span.seminerName > span.idBox {
	display: inline-block;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	background-color: #f00;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	/*margin: 0 1em 0 0;*/
	padding: 0.3em 0.5em;
}

#joinSeminer .joinSeminerMain .joinList li > span.titleBox {
	width:65%;
}


#inputArea01,
#inputArea03 {
	margin: 0 0 30px 0;
}
#inputArea01 .inputArea01Main,
#inputArea03 .inputArea03Main {
	background-color: #ffebeb;
	background-color: #f9f9f9;
	padding: 1em;
}
#inputArea01 .inputArea01Main table,
#inputArea03 .inputArea03Main table {
	width: 100%;
}
#inputArea01 .inputArea01Main th,
#inputArea01 .inputArea01Main td,
#inputArea03 .inputArea03Main th,
#inputArea03 .inputArea03Main td {
	font-size: 1.2em;
	vertical-align: middle;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 1em;
}
#inputArea01 .inputArea01Main th,
#inputArea03 .inputArea03Main th {
	width: 25%;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	background-color: #dcdcdc;
}
#inputArea01 .inputArea01Main th > span,
#inputArea03 .inputArea03Main th > span {
	display: inline-block;
	font-size: 0.8em;
	color: #fff;
	background-color: #f00;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	margin: 0 0 0 0.5em;
	padding: 0.3em 0.5em;
}

#inputArea01 .inputArea01Main td .layoutBox,
#inputArea03 .inputArea03Main td .layoutBox {
	display: table;
}
#inputArea01 .inputArea01Main td .layoutBox+.layoutBox,
#inputArea03 .inputArea03Main td .layoutBox+.layoutBox {
	margin: 1em 0 0 0;
}
#inputArea01 .inputArea01Main td .layoutBox > div,
#inputArea03 .inputArea03Main td .layoutBox > div {
	display: table-cell;
}

#inputArea01 .inputArea01Main td .layoutBox02,
#inputArea03 .inputArea03Main td .layoutBox02 {
	margin: 0.5em 0 0 0;
}
#inputArea01 .inputArea01Main td .layoutBox02 span,
#inputArea03 .inputArea03Main td .layoutBox02 span {
	color: #f00;
}

#inputArea01 .inputArea01Main td .inputMain > div+div,
#inputArea03 .inputArea03Main td .inputMain > div+div {
	padding: 0 0 0 1em;
}
#inputArea01 .inputArea01Main td .inputMain > div > input,
#inputArea03 .inputArea03Main td .inputMain > div > input {
	font-size: 1.1em;
	border: none;
	border: 1px solid #ccc;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	outline: none;
	padding: 0.5em;
}
#inputArea01 .inputArea01Main td .inputMain > div > select,
#inputArea03 .inputArea03Main td .inputMain > div > select {
	height: 35px;
	font-size: 1.1em;
	border: none;
	border: 1px solid #ccc;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	outline: none;
	padding: 0.3em;
}

#inputArea01 .inputArea01Main td .example > div+div,
#inputArea03 .inputArea03Main td .example > div+div {
	padding: 0 0 0 1em;
}
#inputArea01 .inputArea01Main td .example > div > span,
#inputArea03 .inputArea03Main td .example > div > span {
	display: inline-block;
	font-size: 0.9em;
	font-weight: bold;
	color: #fff;
	background-color: #666;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	margin: 0 0 0 0.5em;
	padding: 0.2em 0.5em;
}


#inputArea02 {
	margin: 0 0 30px 0;
}
#inputArea02 .inputArea02Main {
	background-color: #ffebeb;
	background-color: #eee;
	padding: 1em;
}
#inputArea02 .inputArea02Main table {
	width: 100%;
}
#inputArea02 .inputArea02Main th,
#inputArea02 .inputArea02Main td {
	display: block;
	width: 100%!important;
	font-size: 1.2em;
	vertical-align: middle;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 1em;
}
#inputArea02 .inputArea02Main th {
	font-weight: bold;
	line-height: 1;
	text-align: center;
	background-color: #dcdcdc;
}
#inputArea02 .inputArea02Main tr:nth-of-type(n+2) th {
	border-top: none!important;
}
#inputArea02 .inputArea02Main th > span {
	display: inline-block;
	font-size: 0.8em;
	color: #fff;
	background-color: #f00;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	margin: 0 0 0 0.5em;
	padding: 0.3em 0.5em;
}

#inputArea02 .inputArea02Main td {
	border-top: none!important;
}
#inputArea02 .inputArea02Main td .layoutBox {
	/*display: table;*/
	margin: 0 auto;
	margin: 0;
}
/*#inputArea02 .inputArea02Main td .layoutBox:nth-of-type(n+2) {*/
#inputArea02 .inputArea02Main td .layoutBox:nth-of-type(even) {
	margin: 1em 0 0 0;
}
#inputArea02 .inputArea02Main td .layoutBox > div {
	display: table-cell;
}

#inputArea02 .inputArea02Main td .layoutBox02 {
	text-align: center;
	margin: 0.5em 0 0 0;
}
#inputArea02 .inputArea02Main td .layoutBox02 span {
	color: #f00;
}

#inputArea02 .inputArea02Main td .inputMain > div+div {
	padding: 0 0 0 1em;
}
#inputArea02 .inputArea02Main td .inputMain > div > input {
	display: inline-block;
	font-size: 1.1em;
	border: none;
	border: 1px solid #ccc;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	outline: none;
	margin: 0 auto;
	padding: 0.5em;
}
#inputArea02 .inputArea02Main td .inputMain > div > select {
	height: 35px;
	font-size: 1.1em;
	border: none;
	border: 1px solid #ccc;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	outline: none;
	padding: 0.3em;
}


span.required {
	display: inline-block;
	font-size: 0.8em;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	background-color: #f00;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	margin: 0 0 0 0.5em;
	padding: 0.3em 0.5em;
}



#privacyArea {
	background-color: #444;
	padding: 5px;
	margin: 0 0 30px 0;
}
#privacyArea > div {
	font-size: 1.1em;
	line-height: 1.6;
	background-color: #fff;
	padding: 1em;
}
#privacyArea > div > div.titleBox {
	font-size: 1.2em;
	font-weight: bold;
	margin: 0 0 1em 0;
}
#privacyArea > div > div.privacyText {
	margin: 1em 0 0 0;
}

#privacyArea1,
#privacyArea2 {
	background-color: #444;
	padding: 5px;
	margin: 0 0 30px 0;
}
#privacyArea1 > div,
#privacyArea2 > div {
	font-size: 1.1em;
	line-height: 1.6;
	background-color: #fff;
	padding: 1em;
}
#privacyArea1 > div > div.titleBox,
#privacyArea2 > div > div.titleBox {
	font-size: 1.2em;
	font-weight: bold;
	margin: 0 0 1em 0;
}
#privacyArea1 > div > div.privacyText,
#privacyArea2 > div > div.privacyText {
	margin: 1em 0 0 0;
}





.formTitle01 {
	font-size: 1.5em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background-color: #444;
	padding: 0.5em 0;
}
.formTitle01 span {
	padding: 0 0.5em 0 0;
}

.formTitle02 {
	font-size: 1.5em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background-color: #444;
	padding: 0.5em 0;
}
.formTitle02 span {
	padding: 0 0.5em 0 0;
}



/* successArea */
/*------------------------------------------------------------------------------*/
#successArea {
	padding: 0.5em 0;
}
#successArea > p {
	font-size: 1.4em;
	text-align: center;
	line-height: 1.8;
}
#successArea > p:nth-of-type(2) {
	font-weight: bold;
	color: #fff;
	background-color: #e72b65;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 1em;
}
#successArea > p+p {
	margin: 1.5em 0 0 0;
}




/* yamazaki add */
.enqSubTtl {
	font-weight:bold;
}
.ulenq2Col {
	width:98%;
	margin:5px auto 10px;
}
.ulenq2Col li {
	width:49%;
	float:left;
	margin-bottom:5px;
}
.ulenq2Col:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
	font-size: 0;
}

input.sht {
	width:20%;
}
input.lng {
	width:400px;
}
input.xlng {
	width:600px;
}
.atendStop {
	background:#f00;
	color:#fff;
	font-size: 0.8em;
	font-weight: bold;
	padding:0.1em;
	text-align:center;
}

.atendEnd {
	background:#666;
	color:#fff;
	font-size: 1.1em;
	font-weight: bold;
	padding:0.4em;
	text-align:center;
}

span.soonFull {
	margin-left:0.5em;
    background: #f00;
    color: #fff;
    padding: 0.2em 0.8em;
    font-weight: bold;
    font-size:13px;
}


.ulenq4Col {
	width:98%;
	margin:5px auto 10px;
}
.ulenq4Col li {
	width:24.5%;
	float:left;
	margin-bottom:5px;
}
.ulenq4Col:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
	font-size: 0;
}

span.reg_date {
	font-size: 0.9em;
	font-weight: bold;
	color: #fff;
	background-color: #666;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	padding: 0.2em 0.5em;
}
