@charset "UTF-8";
/* CSS Document */

/* reset default form styles */
button, select {
	text-transform: none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled], html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input::placeholder {
	color: #bbb;
}
input:-ms-input-placeholder {
	color: #bbb;
}
input::-ms-input-placeholder {
	color: #bbb;
}

textarea::placeholder {
	color: #bbb;
}
textarea:-ms-input-placeholder {
	color: #bbb;
}
textarea::-ms-input-placeholder {
	color: #bbb;
}

form input:not([type=checkbox]), button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select::-ms-expand {
	display: none;
}

form input[type="text"], form input[type="tel"], form input[type="email"], form input[type="password"], form input[type="date"], textarea {
	box-sizing: border-box;
	color: #646464;
	font-size: 12pt;
	line-height: 120%;
	background-color: #fff;
	border: 1px solid #999;
	border-radius: 2px;
	width: 100%;
	min-height: 2.5em;
	padding: 9px 16px;
	text-align: left;
	letter-spacing: 1px;
}
form input[type="tel"].short {
	max-width: 150px;
	margin-right: 10px;
}
form label.child input[type="tel"].short {
	max-width: 150px;
}
form input[type="checkbox"] {
	margin-right: 5px;
}
textarea {
	width: 100%;
	height: 8em;
	margin-bottom: 0;
	font-size: 11pt;
	line-height: 160%;
}
select {
    color: #666;
    font-size: 13pt;
    background: #fff;
    border: solid 1px #999;
    margin: 0;
    padding: 10px 16px;
    box-sizing: border-box;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: 1px;
    line-height: 110%;
}
label {
	display: inline-block;
	margin-right: 11px;
	margin-bottom: 10px;
	cursor: pointer;
}
label:last-of-type {
	margin-right: 0;
}
label.other {
	display: block;
}
label.other input[type=text] {
    max-width: calc(100% - 5em);
    margin-left: 0.5em;
}

input[type=radio] {
    display: none;
}
label.radio {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	padding: 0 0 0 25px;
	cursor: pointer;
}
label.radio:after {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 50%;
	content: '';
}
label.radio:before {
	content: '';
	position: absolute;
	top: 11px;
	left: 4px;
	display: block;
	margin-top: -5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #adc56e;
	opacity: 0;
}
label.radio.other {
	width: 100%;
}
label.radio.other input[type=text] {
	max-width: calc(100% - 3.7em);
}
input[type=radio]:checked + label.radio:before {
	opacity: 1;
}

form:not([name=headsearch]) input[type=submit], form:not([name=headsearch]) input[type=button] {
	margin: 0 auto;
	color: #fff;
	font-weight: bold;
	font-size: 11pt;
	letter-spacing: 0.2em;
	border: none;
	border-radius: 8px;
	width: 100%;
	background-color: #ADC56E;
	padding: 18px;
	cursor: pointer;
}
input[type=submit]:hover, input[type=button]:hover {
	opacity: 0.7;
}

form#search label {
	display: inline-block;
	margin-right: 7px;
	width: 130px;
}
form#search label input {
	margin: 0;
	vertical-align: middle;
}
label.selwrap {
	position: relative;
}
label.selwrap:after {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	right: 6px;
	border: 8px solid transparent;
	border-top: 10px solid #000;
	border-bottom-width: 0;
	margin-top: -4px;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	pointer-events: none;
}

form#search label select {
	margin: 0;
	width: 100%;
	padding: 13px 16px 12px;
	vertical-align: middle;
}
form#search input[type=text] {
	width: 100%;
	height: 44px;
	font-size: 12pt;
}
form#search input[type=submit], form#search input[type=button] {
	margin: 0;
	margin-left: 10px;
	width: 60px;
	padding: 12px 0 12px 2px;
}
form#search input[type=button] {
	width: 70px;
	background-color: #000;
	letter-spacing: 1px;
}
.btns:after {
	content: "";
	display: table;
	clear: both;
}
.btns a {
	box-sizing: border-box;
	display: block;
	margin-top: 1em;
	border: none;
	border-radius: 8px;
	background: #6e5313;
	padding: 18px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 11pt;
	letter-spacing: 0.2em;
	text-decoration: none;
}
.btns a:first-child {
	float: left;
	width: 30%;
	background: #555;
}
.btns a:last-child {
	float: right;
	width: calc(70% - 20px);
}

#editForm, #formCheck {
	position: relative;
	box-sizing: border-box;
	margin: 30px auto 0;
	width: calc(100% - 40px);
	max-width: 980px;
	height: auto !important;
}
#formCheck {
	margin-top: 40px;
}
#sbox_inner #editForm, #sbox_inner #formCheck {
	margin-top: 60px;
	width: 100%;
}
#sbox_inner #formCheck dl:after {
	content: "";
	display: table;
	clear: both;
}
#editForm dl, #formCheck dl {
	padding-top: 32px;
}
#editForm dl dt, #formCheck dl dt {
	float: left;
	width: 90px;
	text-align: right;
	font-size: 9.5pt;
	line-height: 40px;
}
#formCheck dl dt {
	line-height: 160%;
}
#editForm dl dt.radio {
	line-height: 140%;
}
#editForm dl dt.radio + dd label {
	margin-right: 12px;
}
#editForm dl dt.file {
	line-height: 180%;
}
#editForm dl dt.tarea {
	line-height: 75px;
}
#editForm dl dt.kana {
	line-height: 26px;
}
#editForm dl dt.requested, #editForm dl dt.requested + dd input[type=text],
#editForm dl dt.requested + dd select, #editForm dl dt.requested + dd textarea, #editForm dl dd label.requested {
	color: #e00;
}
#editForm dl dd, #formCheck dl dd {
	margin: 0;
	padding-left: 120px;
	padding-right: 120px;
	padding-bottom: 40px;
	letter-spacing: 1.5px;
}
#editForm dl dd:last-child, #formCheck dl dd:last-child {
	padding-bottom: 0;
}
#formCheck dl dd {
	margin-bottom: 26px;
	border-bottom: 1px dotted #999;
	padding-bottom: 26px;
}
#formCheck dl dd:last-child {
	border-bottom-width: 0;
}
#editForm dl dd input:last-child {
	margin-bottom: 0;
}
#editForm dl dd input[name=sid] {
	width: 170px;
}
#editForm dl dd input[name=szip], #editForm dl dd label.selwrap {
	display: inline-block;
	width: 240px;
}
#editForm dl dd label.selwrap {
	display: inline-block;
}
#editForm dl dd label.selwrap select {
	margin-bottom: 0;
	width: 100%;
}
#editForm .remove {
	margin-bottom: 20px;
	text-align: center;
	color: #e00;
	font-weight: bold;
	font-size: 11pt;
}
#formCheck .checkbox {
	padding: 0 25px 20px;
	text-decoration: none;
	color: #231815;
}
#formCheck .checkbox .date {
	font-size: 13pt;
}
#formCheck .checkbox p {
    margin: 0;
    padding: 0;
    font-size: 11pt;
}
@media screen and (max-width: 1040px) {
	#editForm dl dd, #formCheck dl dd {
		padding-right: 40px;
	}
}
@media screen and (max-width: 720px) {
	#editForm dl, #formCheck dl {
		padding-top: 0;
	}
	#editForm dl dt {
		float: none;
		margin-bottom: 12px;
		width: 100%;
		text-align: left;
		line-height: 100% !important;
	}
	#editForm dl dd {
		padding-left: 0 !important;
	}
	#editForm dl dt br, #formCheck dl dt br {
		display: none;
	}
	
	#editForm .remove, #editForm .btns {
		padding-left: 0;
	}
}
@media screen and (max-width: 640px) {
	#formCheck .checkbox p {
		margin: 0;
	}
}
@media screen and (max-width: 580px) {
	#editForm dl dd, #formCheck dl dd {
		padding-right: 0 !important;
	}
	#editForm dl dd label {
		display: inline-block;
	}
}
@media screen and (max-width: 480px) {
	#formCheck dl dt {
		float: none;
		margin-bottom: 8px;
		width: 100%;
		text-align: left;
		font-size: 10pt;
		line-height: 100% !important;
	}
	#formCheck dl dd {
		padding-left: 0 !important;
		font-size: 13pt;
	}
	#editForm dl dd, #formCheck dl dd {
		padding-bottom: 20px;
	}
}
@media screen and (max-width: 420px) {
	#editForm, #formCheck {
		width: calc(100% - 20px);
	}
	#formCheck .checkbox {
		padding-left: 10px;
		padding-right: 10px;
	}
}

#sbox #editForm .btns {
	padding-left: 0;
}
dl dd.filearea:after {
	content: "";
	display: table;
	clear: both;
}
dl dd.filearea p:empty {
	display: none;
}
dl dd.filearea > div {
	text-align: center;
}
dl dd.filearea.w200 > div {
	width: 200px;
}
dl dd.filearea > div img {
	width: 100%;
}

.sns:after {
	content: "";
	display: table;
	clear: both;
}
.sns > div:first-child {
	float: left;
	width: 54%;
}
.sns > div:last-child {
	float: right;
	width: 46%;
}
.sns > div dl dd {
	padding-right: 0 !important;
}
.sns > div:last-child dl dt {
	width: 110px !important;
}
.sns > div:last-child dl dd {
	padding-left: 130px !important;
}
@media screen and (max-width: 840px) {
	.sns > div {
		float: none !important;
		width: 100% !important;
	}
	.sns > div dl {
		margin: 0;
	}
	.sns > div dl dd {
		padding-right: 40px !important;
	}
	.sns > div:last-child dl dt {
		width: 180px !important;
	}
	.sns > div:last-child dl dd {
		padding-left: 200px !important;
	}
}


a.imger {
	padding: 0;
	border-radius: 0;
}
a.imger div {
	display: inline-block;
	width: 100%;
	height: 160px;
	text-decoration: none;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
#sbox .imginfo {
	display: none;
}
input.closer {
	background-color: #000 !important;
	color: #fff;
	width: auto !important;
	padding: 6px 10px !important;
	font-size: 16pt;
	line-height: 100%;
	letter-spacing: 0 !important;
}

form[name=editForm] span.att {
	display: inline-block;
	border-radius: 3px;
	padding: 6px 4px 5px 5px;
	background-color: #f10303;
	color: #fff;
	font-size: 8.5pt;
	line-height: 100%;
}

#editForm .contact {
	margin: 50px 0 30px;
}
#editForm .contact h3 {
	margin-bottom: 30px;
	border-bottom: 3px solid #000;
	height: auto;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 3px;
	text-align: center;
	font-size: 16pt;
	font-weight: bold;
	letter-spacing: 2px;
}
#editForm .contact ul.att {
	margin-bottom: 30px;
}
@media screen and (max-width: 780px) {
	#editForm .contact {
		margin-top: 20px;
	}
	#editForm .contact h3 {
		font-size: 13pt;
		letter-spacing: 1px;
	}
}

a.backlink {
	box-sizing: border-box;
	position: relative;
	top: -18px;
	display: inline-block;
	border: 1px solid #aaa;
	border-radius: 16px;
	height: 32px;
	padding: 10px 20px 0 40px;
	color: #aaa;
	font-size: 10pt;
	line-height: 100%;
	text-decoration: none;
}
a.backlink:before {
	content: "\AB";
	position: absolute;
	top: 9px;
	left: 19px;
}
.bbtn {
	margin-top: 40px;
	width: 100% !important;
	height: auto !important;
	padding: 0 !important;
	text-align: center;
}
.bbtn a.backlink {
	top: 0;
}
header a.backlink {
	float: left;
	top: 0;
	margin: 4px 0 0 12px;
	border-radius: 4px;
	border-color: #555;
	height: 30px;
	padding-top: 8px;
	color: #222;
}
header a.backlink:before {
	top: 7px;
}
@media screen and (max-width: 480px) {
	a.backlink {
		top: -5px;
		margin-bottom: 12px;
	}
}

form .must {
    float: right;
    border-radius: 3px;
    background: #e00;
    padding: 2px 5px 3px 6px;
    color: #fff;
    font-size: 8.5pt;
    font-weight: bold;
    line-height: 8.5pt;
    vertical-align: -25%;
}
form dd .must {
	display: inline-block;
	float: none;
	margin-left: 13px;
	vertical-align: middle;
}
@media screen and (max-width: 434px) {
	form .must {
		display: inline-block;
		float: none;
		margin-left: 13px;
		vertical-align: middle;
	}
	form label.child {
		margin-right: 0;
		width: 100%;
	}
	form input[type="tel"].short {
		margin-bottom: 12px;
		width: calc(100% - 60px);
		max-width: none !important;
	}
	label.radio[for=selbooth1]:before, label.radio[for=selbooth1]:after {
		top: 12px;
	}
}
