@charset "utf-8";

/* common */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* title */
.pageTitlearea {
	background: url("../images/common/title_bg.png") no-repeat center;
	background-size: cover;
}
.pageTitlearea .title {
	text-align: center;
	padding: 34px 25px 70px;
	font-size: 32px;
	font-weight: 600;
	color: rgba(255,255,255,1);
	text-shadow: 
		2px 2px 2px rgba(0,0,0,.3), -2px 2px 2px rgba(0,0,0,.3), 
		2px -2px 2px rgba(0,0,0,.3), -2px -2px 2px rgba(0,0,0,.3), 
		2px 0px 2px rgba(0,0,0,.3), 0px 2px 2px rgba(0,0,0,.3), 
		-2px 0px 2px rgba(0,0,0,.3), 0px -2px 2px rgba(0,0,0,.3);
}

/* Bread_crumb_List */
.bread_crumb_list {
	margin-right: 320px;
}
.bread_crumb {
	padding: 12px 20px;
}
.bread_crumb li {
	display: inline;
	font-size: 12px;
	letter-spacing: .1em;
	color: rgba(255,255,255,1);
}
.bread_crumb li:after {
	content : '\003e';
	padding-left: .35rem;
	margin-right: .075rem;
}
.bread_crumb li:last-child:after {
	content : '';
}
.bread_crumb li a {
	color: rgba(255,255,255,1);
	text-decoration: underline;
}
.bread_crumb li a:hover {
	opacity: .7;
}
.bread_crumb li.current:after {
	content : '';
}

/* layout */
.subContainer {
	background: rgba(255,255,255,1);
	padding: 50px 0 80px;
}
.subContainer .subInner {
	margin: 0 auto;
	width: 900px;
	min-height: 600px;
}
.subContainer .subInner p, .subContainer .subInner dt, .subContainer .subInner dd, .subContainer .subInner li, .subContainer .subInner a, .subContainer .subInner table th, .subContainer .subInner table td{
	font-size: 15px;
	line-height: 2;
	letter-spacing: .025em;
}

/* h1 */
.subContainer .subInner h1 {
	font-size: 25px;
	font-weight: 500;
	margin-bottom: 20px;
	padding-bottom: 14px;
	position: relative;
	letter-spacing: .05em;
	line-height: 1.4;
}
.subContainer .subInner h1:after {
	position: absolute;
	content: "";
	width: 80px;
	height: 1px;
	background: rgba(0,105,52,1);
	left: 0;
	bottom: 0;
}
.subContainer .subInner *+h1 {
	margin-top: 50px;
}

/* h2 */
.subContainer .subInner h2 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	color: rgba(0,105,52,1);
	line-height: 1.4;
}
.subContainer .subInner *+h2 {
	margin-top: 1.5em;
}

/* h3 */
.subContainer .subInner h3 {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 10px;
	padding-left: 14px;
	position: relative;
	line-height: 1.4;
}
.subContainer .subInner h3:before {
	content: "";
	position: absolute;
	background: rgba(0,105,52,1);
	width: 4px;
	height: 1.1em;
	left: 0;
	top: .175em;
}
.subContainer .subInner *+h3 {
	margin-top: 1.5em;
}

/* h4 */
.subContainer .subInner h4 {
	font-size: 18px;
	display: inline-block;
	border-bottom: 1px solid rgba(55,55,55,1);
	margin-bottom: 10px;
	padding-bottom: 4px;
}
.subContainer .subInner *+h4 {
	margin-top: 1.5em;
}

/* h5 */
.subContainer .subInner h5 {
	font-size: 17px;
	color: rgba(0,105,52,1);
	margin-bottom: 10px;
}
.subContainer .subInner *+h5 {
	margin-top: 1.5em;
}

/* h6 */
.subContainer .subInner h6 {
	font-weight: 500;
	margin-bottom: 10px;
}
.subContainer .subInner *+h6 {
	margin-top: 1.5em;
}

/* text */
.subContainer .subInner strong {
	font-weight: 600;
/*	color: rgba(0,105,52,1);*/
}
.subContainer .subInner small{
	font-size: .9em;
	opacity: .7;
	display: inline-block;
}
.subContainer .subInner a {
	color: rgba(220,20,60,1);
	text-decoration: underline;
}
.subContainer .subInner a:hover{
	color: rgba(220,20,60,.75);
}

/* list */
.subContainer .subInner > ul {
	margin-left: .55em;
}
.subContainer .subInner > ul > li, .subContainer .subInner .txtbox > ul > li {
	position: relative;
	padding-left: 1em;
}
.subContainer .subInner > ul > li:before, .subContainer .subInner .txtbox > ul > li:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	background: rgba(55,55,55,1);
	border-radius: 50%;
	top: .8em;
	left: 0;
}
.subContainer .subInner ol {
	list-style-type: decimal;
	margin-left: 1.5em;
}
.subContainer .subInner ol.circle {
	counter-reset: count;
	margin-left: .15em !important;
}
.subContainer .subInner ol.circle > li {
	counter-increment: count;
	list-style: none;
	position: relative;
	padding-left: 1.35em;
}
.subContainer .subInner ol.circle > li:before {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1.4em;
	height: 1.4em;
	border: 1px solid rgba(0,0,0,1);
	border-radius: 50%;
	font-size: .8em;
	line-height: 1;
	content: counter(count);
	position: absolute;
	top: .55em;
	left: 0;
}
.subContainer .subInner *+ul, .subContainer .subInner *+ol {
	margin-top: 15px;
}

/* anchor link1 */
.subContainer .subInner > .anchor_link1 > ul {
	font-size: 0;
}
.subContainer .subInner > .anchor_link1 > ul > li {
	min-width: 25%;
	margin-right: 0;
	display: inline-block;
	position: relative;
}
.subContainer .subInner *+.anchor_link1 {
	margin-top: 30px;
	margin-bottom: 30px;
}
.subContainer .subInner > .anchor_link1 > ul > li:before {
	position: absolute;
	content: "";
	right: 20px;
	top: calc( 50% - 5px );
	width: 10px;
	height: 10px;
	border-top: solid 1px rgba(255,255,255,1);
	border-right: solid 1px rgba(255,255,255,1);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.subContainer .subInner > .anchor_link1 > ul > li > a {
	color: rgba(255,255,255,1);
	display: block;
	font-size: 16px;
	text-decoration: none;
	background: rgba(0,84,42,.9);
	padding: 13px 20px;
	padding-right: 40px;
}
.subContainer .subInner > .anchor_link1 > ul > li > a:hover{
	background: rgba(0,84,42,1);
}

/* anchor link2 */
.subContainer .subInner > .anchor_link2 {
	width: 100%;
	margin-bottom: 20px;
}
.subContainer .subInner *+.anchor_link2 {
	margin-top: 20px;
}
.subContainer .subInner > .anchor_link2 > ul > li {
	min-width: 31%;
	margin: 10px 2% 10px 0;
	display: inline-block;
	position: relative;
}
.subContainer .subInner > .anchor_link2 > ul > li:before {
	position: absolute;
	content: "";
	right: 20px;
	top: calc( 50% - 3px );
	width: 7px;
	height: 7px;
	border-top: 2px solid rgba(0,105,52,1);
	border-right: 2px solid rgba(0,105,52,1);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.subContainer .subInner > .anchor_link2 > ul > li > a {
	color: rgba(55,55,55,1);
	text-decoration: none;
	display: block;
	padding: 15px 20px;
	padding-right: 40px;
	background: rgba(241,241,241,1);
}
.subContainer .subInner > .anchor_link2 > ul > li > a:hover {
	background: rgba(241,241,241,.6);
}

/* related page */
.subContainer .subInner > .related_page {
	padding: 25px 30px;
	background: rgba(241,241,241,1);
}
.subContainer .subInner > .related_page > p {
	font-size: 17px;
	font-weight: bold;
	color: rgba(0,105,52,1);
	line-height: 1em;
}
.subContainer .subInner > .related_page > ul {
	margin: 15px 0 0;
}
.subContainer .subInner > .related_page > ul > li{
	position: relative;
	min-width: 20%;
	display: inline-block;
	padding-left: 1em;
	margin-right: 4.6%;
}
.subContainer .subInner > .related_page > ul > li > a {
	color: rgba(55,55,55,1);
	text-decoration: none;
	padding: 0;
}
.subContainer .subInner > .related_page > ul > li > a:hover {
	text-decoration: underline;
}
.subContainer .subInner > .related_page > ul > li:before {
	position: absolute;
	content: "";
	left: 0;
	top: .8em;
	width: 7px;
	height: 7px;
	border-top: 2px solid rgba(0,105,52,1);
	border-right: 2px solid rgba(0,105,52,1);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* table */
.subContainer .subInner table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 30px;
}
.subContainer .subInner table th, .subContainer .subInner table td {
	font-weight: normal;
	padding: 8px 12px;
	border: 1px solid rgba(212,212,212,1);
}
.subContainer .subInner table.table1 thead th, .subContainer .subInner table.table2 thead th {
	background: rgba(102,102,102,1);
	color: rgba(255,255,255,1);
}
.subContainer .subInner table.table2 tbody tr:nth-of-type( even ) th, .subContainer .subInner table.table2 tbody tr:nth-of-type( even ) td {
	background: rgba(227,227,227,1);
}
.subContainer .subInner *+table {
	margin-top: 30px;
}
.subContainer .subInner > .table1 th {
	background: rgba(227,227,227,1);
	font-weight: 500;
}
.subContainer .subInner > .table1 tbody tr:nth-of-type( even ) td{
	background: #fff;
}

/* txtbox */
.subContainer .subInner > .txtbox {
	margin-bottom: 30px;
	padding: 20px 25px;
	background: rgba(241,241,241,1);
}
.subContainer .subInner *+.txtbox {
	margin-top: 30px;
}
.subContainer .subInner > .txtbox.bg_yellow {
	background: rgba(255,255,0,.3);
}

/* image */
.subContainer .subInner .img-txt:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}
.subContainer .subInner .img-txt img {
	display: block;
	margin: 0.5em 1.5em;
}
.subContainer .subInner .img-txt .alignnone {
	margin-left: 0;
	margin-right: 0;
}
.subContainer .subInner .img-txt .alignleft {
	float: left;
	margin-left: 0;
}
.subContainer .subInner .img-txt .alignright {
	float: right;
	margin-right: 0;
}
.subContainer .subInner .img-txt .aligncenter {
	margin: 2em auto;
}

/* image list */
.subContainer .subInner .imglist {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.subContainer .subInner *+.imglist {
	margin-top: 30px;
}
.subContainer .subInner .imglist > figure {
	max-width: 32%;
	margin: 12px 2% 12px 0;
}
.subContainer .subInner .imglist > figure:nth-of-type(3n) {
	margin-right: 0;
}
.subContainer .subInner .imglist > figure > figcaption {
	font-size: 15px;
	line-height: 1.5em;
	margin-top: 8px;
}
.subContainer .subInner .imglist > figure > img {
	width: 100%;
}

/* blockquote */
.subContainer .subInner > blockquote {
	position: relative;
	background: rgba(241,241,241,1);
	margin-bottom: 30px;
	padding: 20px 20px 20px 50px;
}
.subContainer .subInner > blockquote:before {
	display: inline-block;
	position: absolute;
	top: 24px;
	left: 18px;
	content: "";
	background: url("../images/common/icon_quote.png") no-repeat right center;
	width: 21px;
	height: 18px;
	background-size: contain;
}
.subContainer .subInner *+blockquote {
	margin-top: 30px;
}

/* tel-link */
.subContainer .subInner .tel_link{
	color: #373737;
	text-decoration: none;
}
.subContainer .subInner .tel_link:hover{
	color: #373737;
}

/* tag link */
.subContainer .subInner .dog_tag {
	margin-top: 80px;
}
.subContainer .subInner .dog_tag > a {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255,255,255,1);
	text-decoration: none;
	background-color: rgba(255,140,0,1);
	margin-right: 0.3em;
	margin-bottom: 0.6em;
	padding: 0.2em 0.5em;
	border-radius: 3px;
	display: inline-block;
}
.subContainer .subInner .dog_tag > a:hover {
	text-decoration: underline;
}

/* YouTube Link */
.youtubelink {
	position: relative;
	width: 560px;
	height: 315px;
	margin: 1.5em auto;
}
.youtubelink iframe {
	width: 100% !important;
	height: 100% !important;
	border: none;
}

/* Pagenation */
.pagination {
	margin-top: 80px;
	text-align: center;
}
ul.page-numbers {
	list-style: none;
	display: inline-block;
	padding: 0;
	margin-top: 10px;
}
ul.page-numbers li {
	display: inline;
	text-align: center;
}
ul.page-numbers a, ul.page-numbers .current {
	float: left;
	display: block;
	font-size: 16px;
	text-decoration: none !important;
	padding: 5px 15px;
	color: #fff;
	margin-left: -1px;
	border: 1px solid transparent;
	line-height: 1em;
}
ul.page-numbers .current {
	cursor: default;
}
ul.page-numbers a:active {
	outline: none;
}
ul.page-numbers li:first-child a {
	-moz-border-radius: 6px 0 0 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px 0 0 6px;
}
ul.page-numbers li:last-child a {
	-moz-border-radius: 0 6px 6px 0;
	-webkit-border-radius: 0;
	border-radius: 0 6px 6px 0;
}
ul.page-numbers a {
	border-color: #ddd;
	color: #4285F4 !important;
	background: #fff;
}
ul.page-numbers a:hover {
	background: #eee;
}
ul.page-numbers .current {
	border-color: #4285F4;
	background: #4285F4;
	color: #fff;
	line-height: 30px;
}
ul.page-numbers a:active {
	border-color: #4285F4;
	background: #4285F4;
	color: #fff;
}

@media screen and (max-width: 767px) {

/* title */
.pageTitlearea .title {
	font-size: 20px;
	text-align: center;
	padding: 30px 15px;
}

/* Bread_crumb_List */
.bread_crumb_list {
	display: none;
}

/* layout */
.subContainer {
	padding: 40px 0 60px;
}
.subContainer .subInner {
	width: calc(100% - 30px);
	margin: 0 15px;
	border-left: 0 solid transparent;
	border-right: 0 solid transparent;
}

/* h1 */
.subContainer .subInner > h1 {
	font-size: 20px;
}
.subContainer .subInner h1:after {
	width: 60px;
}
.subContainer .subInner *+h1 {
	margin-top: 30px;
}

/* h2 */
.subContainer .subInner h2 {
	font-size: 20px;
}

/* h3 */
.subContainer .subInner h3 {
	font-size: 18px;
	padding-left: 12px;
}

/* h5 */
.subContainer .subInner h5 {
	font-size: 16px;
}

/* h6 */
.subContainer .subInner h6 {
	font-size: 16px;
}

/* anchor link1 */
.subContainer .subInner > .anchor_link1 > ul > li {
	width: 100%;
}
.subContainer .subInner > .anchor_link1 > ul > li > a {
	font-size: 14px;
}

/* anchor link2 */
.subContainer .subInner > .anchor_link2 {
	width: 100%;
}
.subContainer .subInner > .anchor_link2 > ul > li {
	width: 100%;
	margin: 4px 0;
}
.subContainer .subInner > .anchor_link2 > ul > li > a {
	padding: 10px 38px 10px 10px;
}

/* related page */
.subContainer .subInner > .related_page {
	padding: 20px 24px;
}
.subContainer .subInner > .related_page > ul > li {
	width: 44.5%;
}

/* table */
.subContainer .subInner table th {
	min-width: 25%;
}
.subContainer .subInner table th, .subContainer .subInner table td {
	padding: 8px 10px;
	font-size: 14px;
}

/* image */
.subContainer .subInner img {
	width: 100%;
	text-align: center;
}
.subContainer .subInner .img-txt img {
	width: 100%;
	margin: 1.5em auto;
}

/* image list */
.subContainer .subInner .imglist > figure {
	max-width: initial;
	width: 100%;
	margin: 12px auto;
}

/* blockquote */
.subContainer .subInner > blockquote {
	padding: 17px 20px 17px 40px;
}
.subContainer .subInner > blockquote:before {
	top: 12px;
	left: 12px;
	background: url("../images/common/icon_quote.png") no-repeat right center;
	background-size: contain;
	width: 16px;
	height: 14px;
}

/* Google Map */
#gmap {
	width: 100% !important;
	height: 300px !important;
	margin-top: 20px !important;
}

/* tag link */
.subContainer .subInner .dog_tag > a:hover {
	text-decoration: none;
}

/* YouTube Link */
.youtubelink {
	width: 100%;
	height: auto;
	padding-top: 56.25%;
}
.youtubelink iframe {
	position: absolute;
	top: 0;
	right: 0;
}

}