@charset "utf-8";

/* ---------- common ---------------------------------------- */

#contents h1 {
	padding: 11px 15px 11px;
	margin-bottom: 20px;
	background-color: #eee;
	border-left: solid 3px #c8a040;
	font-size: 94%;
	font-weight: bold;
}

#contents h2 {
	padding: 10px 15px;
	margin-bottom: 5px;
	background-color: #f8f5ef;
	border-left: solid 3px #c8a040;
	font-size: 88%;
	font-weight: bold;
}

#contents > p {
	margin-bottom: 1.5em;
}


/* error-message */
.error-message {
	padding: 3px 0;
	color: #e20a16;
	font-size: 110%;
	font-weight: bold;
}

/* btn-block */
.btn-block {
	margin: 50px auto 60px;
	text-align: center;
}

/* submit button */
.submit {
	display: inline-block;
	cursor: pointer;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity  0.3s ease;
	margin: 10px;
	text-align: center;
}
.submit:hover {
	opacity: 0.7;
}

.submit input {
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.submit a,
.submit input {
	display: inline-block;
	width: 280px;
	line-height: 54px;

	color: #fff;
	font-size: 94%;
	font-weight: bold;

	background: #c8a655;
	border-bottom: solid 3px #d4d4d4;
}
.submit a.back,
.submit input.back {
	width: 260px;
	line-height: 50px;
	border: none;
	color: #fff;
	background-color: #9e9e9e;
	border-bottom: 3px solid #d4d4d4;
}


/* formtable */
.formtable {
	width: 100%;
}
.formtable th,
.formtable td {
	box-sizing: border-box;
	padding: 12px 18px;
	border-bottom: 1px solid #d4d4d4;
}
.formtable th {
	width: 24%;
	background-color: #f5f5f5;
	font-weight: bold;
	vertical-align: top;
}

/* icon */
.formtable th.icon {
	width: 7%;
	padding: 0 5px;
	text-align: center;
}
.formtable th.icon span {
	display: inline-block;
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.1em;
	padding: 0 3px;
	margin-top: 16px;
	border-radius: 2px;
	line-height: 18px;
}
.formtable th.icon .required {background-color: #c8a655;}
.formtable th.icon .optional {background-color: #bdbdbd;}

/* parent child */
.formtable th.parent {
	width: 14%;
}
.formtable th.child {
	width: 10%;
	padding-right: 5px;
	background-color: #fafafa;
}
.formtable th.child.icon {
	width: 7%;
}
.formtable td {
	width: 69%;
	background-color: #fff;
}

/* note */
.formtable td.note {
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	font-weight: bold;
}

/* unit */
.formtable span.unit {
	padding: 0 7px;
}

/* tooltip */
.formtable .tooltip {
	position: absolute;
	background: #eee;
	font-size: 13px;
	width: 265px;
	padding: 8px 12px;
	right: -45px;
	top: -5px;
	border-radius: 5px;
	border: 1px solid #ddd;
	z-index: 10000;
	color: #222;
	line-height: 140%;
	display: none;
}
.formtable .tooltip:before {
	content: '';
	position: absolute;
	top: 9px;
	left: -14px;
	border-top: solid 7px transparent;
	border-bottom: solid 7px transparent;
	border-right: 13px solid #ddd;
}
.formtable .tooltip:after {
	content: '';
	position: absolute;
	top: 9px;
	left: -12px;
	border-top: solid 7px transparent;
	border-bottom: solid 7px transparent;
	border-right: solid 13px #eee;
}
.formtable .tooltip.bottom {
	top: 58px;
}
.formtable .tooltip.bottom:before {
	content: '';
	position: absolute;
	top: -18px;
	left: 20px;
	border: 7px solid transparent;
	border-bottom: 11px solid #ddd;
}
.formtable .tooltip.bottom:after {
	content: '';
	position: absolute;
	top: -16px;
	left: 20px;
	border: 7px solid transparent;
	border-bottom: 11px solid #eee;
}


/* input */
.formtable input,
.formtable textarea {
	padding: 10px 8px;
	line-height: 140%;
	background-color: #f5f5f5;
	border-color: #eee;
}
.formtable input[type='text'],
.formtable input[type='email'],
.formtable input[type='password'],
.formtable input[type='file'] {
	width: 300px;
}
.formtable input.name {
	margin-right: 24px;
	width: 140px;
}
.formtable input.zipcode {
	margin-right: 5px;
	width: 120px;
}
.formtable input.zipbtn {
	margin-left: 4px;
	padding: 7px 14px;
	cursor: pointer;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity  0.3s ease;
	border: solid 1px #d4d4d4;
	background-color: #fafafa;
}
.formtable input.zipbtn:hover {
	opacity: 0.7;
}
.formtable input.address {
	width: 420px;
}
.formtable input.number {
	width: 120px;
}
.formtable input.review-number {
	width: 80px;
	margin-right: 5px;
	display: inline-block;
}

/* textarea */
.formtable textarea {
	width: 520px;
}

/* label */
.formtable label span {
	display: inline-block;
	min-width: 50px;
}

/* radio */
.formtable .radio {
	display: inline-block;
	padding: 10px 20px 10px 0;
}
.formtable .radio input {
	margin-right: 4px;
}

/* checkbox */
.formtable .checkbox {
	display: inline-block;
	padding: 10px 20px 10px 0;
}
.formtable .checkbox input {
	margin-right: 4px;
}

/* other-field */
.formtable .other-field {
	display: inline-block;
	display: none;
}
.formtable .other-field span.unit {
	padding-left: 0;
}
.formtable input.other {
	width: 180px;
	margin-top: 10px;
}

/* authorization-field */
.authorization-field {
	display: block;
}
.authorization-field input {
	margin: 8px 0;
}


/* select */
.formtable .select {
	margin-bottom: 10px;
}
.formtable select {
	padding: 5px 10px 5px 4px;
}
.formtable option {
	padding: 2px 3px;
}


/* photo */
.formtable .photo-thumbnail {
	
}
.formtable .photo-thumbnail img {
	max-width: 300px;
	max-height: 320px;
	width: auto;
	height: auto;
}

.formtable .photo-name {
	padding: 4px 0;
}

.formtable .photo-reset {
	position: relative;
	display: inline-block;
	cursor: pointer;
	margin: 3px 0;
	padding-top: 1px;
	padding-left: 21px;
	color: #e20a16;
}
.formtable .photo-reset span {
	display: inline-block;
	position: absolute;
	top: 45%;
	left: 0;
}
.formtable .photo-reset span:before,
.formtable .photo-reset span:after {
	display: inline-block;
	content: "";
	position: absolute;
	left: 0;
	width: 16px;
	height: 2px;
	background: #e20a16;
}
.formtable .photo-reset span:before {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.formtable .photo-reset span:after {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
.formtable .photo-field {}
.formtable .photo-notice {
	font-size: 12px;
	font-weight: 500;
	margin-top: 8px;
}

/* group-table-wrapper */
.group-table-wrapper {
	display: none;
}
.group-table-wrapper.open {
	display: block;
}
.group-table-wrapper .formtable th {
	width: 20%;
}
.group-table-wrapper .formtable tr:first-child th:first-child {
	width: 5%;
	padding: 12px 0 12px 15px;
	background-color: #d2e0e1;
}


/* entry-block */
.entry-block {
	margin-bottom: 30px;
}

/* complete-block */
.complete-block {
	margin-top: 25px;
	margin-bottom: 80px;
	text-align: center;
}
.complete-block .title {
	padding: 15px 10px 28px;
	font-size: 94%;
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 160%;
}
.complete-block .total {
	padding: 40px;
	font-size: 113%;
}
.complete-block .payee {
	width: 770px;
	margin: 0 auto;
	border: 3px solid #ccc;
	padding: 10px 18px;
	margin-bottom: 45px;
	text-align: left;
}

.complete-block .btn-block {
	margin-top: 80px;
}
.complete-block .btn-block > p {
	margin-bottom: 20px;
}


/* login-block */
.login-block {
	float: left;
	width: 425px;
	margin: 30px 0 50px;
}
.login-block.new {
	margin-right: 50px;
}
.login-block > p {
	margin-bottom: 20px;
}
.login-block .formtable {
	border-top: solid 1px #d4d4d4;
}
.login-block .formtable th {
	width: 28%;
	padding: 10px 10px;
	vertical-align: middle;
}
.login-block .formtable input[type='email'],
.login-block .formtable input[type='password'] {
	width: 240px;
}
.login-block .reissue-link {
	padding-top: 6px;
	text-align: right;
}
.login-block .reissue-link a {
	color: #be9634;
}
.login-block .reissue-link a:hover {
	text-decoration: underline;
}

/* email-block */
.email-block {
	margin-top: 30px;
}
.email-block .formtable {
	border-top: solid 1px #d4d4d4;
}
.email-block .formtable th {
	width: 26%;
	vertical-align: middle;
}
.email-block .formtable td {
	width: 74%;
}


/* contact-block */
.contact-block {
	display: inline-block;
	margin-bottom: 30px;
	padding: 26px 24px;
	background-color: #f8f5ef;
}
.contact-block .title {
	margin-bottom: 9px;
	color: #be9633;
	font-size: 82%;
	font-weight: bold;
}
.contact-block address {
	font-size: 82%;
	line-height: 200%;
	letter-spacing: 1px;
	padding-bottom: 5px;
}
.contact-block a {
	color: #be9634;
	text-decoration: underline;
}

/* page-block */
.page-block {
	margin-bottom: 80px;
}
.page-block p {
	padding-left: 4px;
	padding-right: 4px;
}
.page-block > p {
	margin-bottom: 25px;
}
.page-block > section {
	margin-bottom: 30px;
}
#contents .page-block h2 {
	margin-bottom: 10px;
}

.page-block ol {
	padding: 6px 0 0 10px;
}
.page-block ol li {
	list-style: inside none decimal;
	font-size: 82%;
	line-height: 180%;
}


/* history-block */
.history-block {}


/* history-table */
.history-table {
	width: 100%;
	margin-bottom: 80px;
}
.history-table th,
.history-table td {
	box-sizing: border-box;
	padding: 12px 18px;
	border-bottom: 1px solid #d4d4d4;
	border-left: 1px solid #d4d4d4;
}

.history-table th:first-child,
.history-table td:first-child {
	border-left: none;
}

.history-table th {
	background-color: #f5f5f5;
	font-weight: bold;
	vertical-align: top;
}

.history-table th.name    { width: 48%;}
.history-table th.date    { width: 24%;}
.history-table th.result  { width: 14%;}
.history-table th.actions { width: 14%;}

/* link */
.history-table .link {
	vertical-align: middle;
	text-align: center;
}
.history-table .link a {
	display: inline-block;
	background-color: #c8a655;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.1em;
	padding: 6px 8px;
	border-radius: 2px;
	line-height: 18px;
}

.history-table td {
	background-color: #fff;
}
.history-table td.result {
	font-size: 94%;
	text-align: center;
}
.history-table .action {}

.result-notice {
	margin-bottom: 0.5em;
	text-align: right;
}
/* tmp */
.tmp_notice {
	margin-top: 15px;
}
.tmp_notice a {
	color: #be9634;
	text-decoration: underline;
}