/* CSS Document */

/* normalize */
button,input,optgroup,select,textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}
button {
	overflow: visible;
}
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[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
legend {
	border: 0;
	padding: 0;
}
textarea {
	overflow: auto;
}
optgroup {
	font-weight: bold;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,th {
	padding: 0;
}


/* ------------------------------
個別設定用
------------------------------ */
.inner-article {/*上書き分のみ。基本設定はcommon.cssで、*/
	padding:20px 75px;
	width:850px;
	float:none;
}
.inner-article p {
	margin: 12px 12px 12px;
}
.inner-article p.center {
	text-align: center;
}

/*-----申し込みページ-----*/
.outline-wrap {
	margin-bottom: 18px;
}
.outline-wrap:after {
	clear: both;
	content: '';
	display: block;
}
.outline-box {
	width: 650px;
	float: left;
}
.outline-text {
	background-color: #fff;
	margin-bottom: 12px;
	height: 177px;
	overflow: hidden;
}
.outline-text p {
	font-size: 15px;
	line-height: 1.55;
	margin: 3px 6px 6px;
}
.outline-text p.right {
	text-align: right;
	margin: 0 6px;
}
.outline-catch {}
.outline-catch p {
	font-size: 11px;
	color: #a71e2e;
	line-height: 1.4;
	margin: 9px 1px 0;
}
.chirashi-link {
	margin-right: 1px;
	width: 180px;
	float: right;
}
.chirashi-link img {
	-webkit-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}
.chirashi-link img:hover {
	opacity: 0.8;
}


table {
	border: solid 1px #999;
	width: 100%;
	empty-cells: show;
	margin: 12px 0;
}
th {
	font-size: 0.875em;
	font-size: 0.875rem;
	font-weight: normal;
	color: #fff;
	line-height: 1.4;
	background-color: #4f6b2e;
	padding: 8px;
	border: solid 1px #999;
	width: 180px;
}
th.th1 {
	background-color: #852e19;
}
td {
	font-size: 0.813em;
	font-size: 0.813rem;
	line-height: 1.4;
	padding: 9px;
	border: solid 1px #999;
}
tr:nth-child(even) td {/*偶数行の背景色をグレーに*/
	background-color: #f5f5f5;
}
.inner-article td p {
	font-size: 12px;
	line-height: 1.4;
	margin: 3px 0 0;
}

input,
select {
	width: 100%;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

input.narrow {
	width: 40%;
}
input.medium {
	width: 60%;
}
input.wide {
	width: 80%;
}

textarea {
	width: 100%;
	height: 5em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input,
textarea,
select {
	background-color: #fff;
	border: solid 1px #999;
	padding: 3px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
select {
	max-width: 360px;
}
input[type="radio"] {
	width: 1.5em;
	border-style: none;
}
input[type="checkbox"] {
	width: 1.5em;
	border-style: none;
}
input[type="file"] {
	background-color: transparent;
	border-style: none;
}
input[type="text"]:hover,
input[type="text"]:focus,
input[type="email"]:hover,
input[type="email"]:focus,
input[type="tel"]:hover,
input[type="tel"]:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
	background-color: #ffc;
}

.submitBtn {
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	color: #333333;
	background-color: #f3f3f1;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(1.00, #ececec), color-stop(0.00, #fefefe));
	background:-webkit-linear-gradient(top, #fefefe 0%, #ececec 100%);
	background:-moz-linear-gradient(top, #fefefe 0%, #ececec 100%);
	background:linear-gradient(top, #fefefe 0%, #ececec 100%);
	margin-top: 12px;
	padding: 12px;
	border-radius: 4px;
	max-width: 360px;
}
.submitBtn:hover {
	border-color: #e6a400;
	background-color: #ffd875;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(1.00, #ffc32a), color-stop(0.00, #ffd875));
	background:-webkit-linear-gradient(top, #ffd875 0%, #ffc32a 100%);
	background:-moz-linear-gradient(top, #ffd875 0%, #ffc32a 100%);
	background:linear-gradient(top, #ffd875 0%, #ffc32a 100%);
}


/*-----ギャラリーページ-----*/
.bnr-kasen-gallery {
	margin-bottom: 50px;
}
.pictList {
	list-style: none;
}
.pictList:after {
	clear: both;
	content: '';
	display: block;
}
.pictList li {
	font-size: .875em;
	font-size: .875rem;
	line-height: 1.4;
	width: 150px;
	height: 210px;
	float: left;
	margin: 15px 0 0 20px;
}
.pictList li:first-child {
	margin-left: 8px;
}
.pictList li img {
	margin-bottom: 7px;
	-webkit-box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, .35);
	box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, .35);
	-webkit-transition: all .15s ease 0s;
	transition: all .15s ease 0s;
}
.pictList li img:hover {
	opacity: .8;
}

.pageNation {
	font-size: 0.875em;
	font-size: 0.875rem;
	text-align: center;
	margin: 48px auto;
}
.pageNation a,
.pageNation .pages,
.pageNation .current {
	font-weight: bold;
	text-decoration: none;
	color: #333;
	background-color: #fff;
	text-align: center;
	border: solid 1px #ccc;
	padding: 9px 12px;
	margin-right: 6px;
	-webkit-transition: all .15s ease 0s;
	transition: all .15s ease 0s;
}
.pageNation a:hover,
.pageNation .current {
	color: #fff;
	background-color: #4f6b2e;
	border: solid 1px #4f6b2e;
}

.detail-img {
	margin-top: 36px;
	text-align: center;
}
.detail-img img {
	padding: 6px;
	border: solid 1px #ccc;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.detail-txt {
	font-size: .875em;
	font-size: .875rem;
	line-height: 1.6;
	margin: 24px auto 48px;
	width: 640px;
}
.detail-txt:after {
	clear: both;
	content: '';
	display: block;
}
.detail-txt dt {
	color: #555;
	font-weight: bold;
	padding-top: 9px;
	width: 130px;
	float: left;
	clear: both;
}
.detail-txt dd {
	padding-top: 9px;
	width: 510px;
	float: left;
}
