@charset "utf-8";
@import "reset.css";

/* Base Style
================================================== */


@media print {
	body {
		width: 1200px;
		transform: scale(0.8);
		-moz-transform: scale(0.8);
		-webkit-transform: scale(0.8);
		transform-origin: 0 0;
	}

	#logo-sub {
		display: none;
	}

	.sp-header {
		display: none;
	}

	#scrollTop {
		display: none;
	}
}


/* Windows */
@font-face {
	font-family: YuGothicM;
	font-weight: normal;
	src: local('YuGothic-Medium'),
		/* Mediumを明示的に指定 */
		local('Yu Gothic Medium'),
		/* Chrome用 */
		local('YuGothic-Regular');
	/* Windows8.1ではMediumがないのでRegularを指定 */
}

@font-face {
	font-family: YuGothicM;
	font-weight: bold;
	src: local('YoGothic-Bold'),
		/* Boldはそのまま */
		local('Yu Gothic');
	/* Chrome用 */
}

.clr {
	clear: both;
	min-height: 1em;
}


.clr:after {
	display: block;
	height: 1px;
	content: "";
	clear: both;
}

input,
select,
textarea {
	color: #000;
	font-family: inherit;
	font-size: 100%;
}

.new {
	margin-left: 5px;
	color: #ff5353;
	font-size: 75%;
	font-weight: bold;
	text-transform: uppercase;
}



/**
 * https://unsplash.com/photos/rTZW4f02zY8
 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.target {
	display: block;
	max-width: 350px;
	width: 70%;
	height: auto;
}

/* Animation */
.target {
	animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
	0% {
		transform: translateY(-10%);
	}

	100% {
		transform: translateY(10%);
	}
}



/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
	transition: 0.8s ease-in-out;
	transform: translateY(30px);
	opacity: 0;
}

.scroll_up.on {
	transform: translateY(0);
	opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
	transform: translateX(-30px);
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
}

.scroll_left.on {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
	transform: translateX(30px);
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
}

.scroll_right.on {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	transform: translateX(0);
}

/*------------------------*/
/*------------------------*/
/*------- layout -------*/



.timing02 {
	transition-delay: .2s;
}

.timing03 {
	transition-delay: .4s;
}

.timing04 {
	transition-delay: .6s;
}

.timing05 {
	transition-delay: .8s;
}



/* Clearfix
================================================== */
.inner:after,
header:after,
footer:after,
nav ul:after,
section:after,
article:after,
aside:after,
.clearfix:after {
	visibility: hidden;
	display: block;
	content: " ";
	clear: both;
	height: 0;
}

.inner,
header,
footer,
nav ul,
section,
article,
aside,
.clearfix {
	zoom: 1;
}

.none_text {
	display: none;
}


a {
	word-break: break-all;
}

a:hover img,
a:focus img {
	opacity: 0.85;
	filter: alpha(opacity=85);
}

:-ms-input-placeholder {
	color: #4d4d4d;
}


body,
html {
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	line-height: 140%;


}



ol,
ul {
	list-style: none;
}

form {
	margin: 0px;
	padding: 0px;
}

* {
	box-sizing: border-box;
}


@media screen and (min-width: 811px) {
	.sp-disp {
		display: none !important;
	}

}

@media screen and (max-width: 810px) {
	.pc-disp {
		display: none !important;
	}

}



@media screen and (min-width: 601px) {
	.sp-disp600 {
		display: none !important;
	}

}

@media screen and (max-width: 600px) {
	.pc-disp600 {
		display: none !important;
	}

}





.hideAnchor {
	display: block;
	height: 0px;
	overflow: hidden;
	text-indent: -9999px;
	margin-top: -90px;
	padding-bottom: 90px;
}



#lay-container {
	width: 100%;
	min-height: 100%;
	height: auto !important;
	margin: 0;
	position: relative;
	top: -3px;
}

@media screen and (max-width: 1000px) {
	#lay-container {
		top: -25px;
	}
}


@media screen and (max-width: 811px) {
	#lay-container {
		top: -30px;
	}
}


@media screen and (max-width: 810px) {
	#lay-container {
		top: 0;
	}
}

#scrollTop {
	position: fixed;
	right: 0;
	z-index: 20;
	margin-bottom: 0;

}


#scrollTop img {
	width: 60px;
}


.skip-header a {
	display: block;
	background-color: #007b44;
	color: #fff;
	text-decoration: none;
	text-align: center;
	position: absolute;
	height: 0;
	overflow: hidden;
}

.header-bottom {
	padding-top: 148px;
}

@media screen and (max-width: 810px) {
	.header-bottom {
		padding-top: 70px !important;
	}
}


#pc-header {
	width: 100%;
	position: fixed;
	top: 0px;
	z-index: 9997;
	background-color: rgba(255, 255, 255, 1.0);
}



.headerInner {
	width: 100%;
	padding: 10px 20px;
}

.headerInner table {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}



@media screen and (max-width: 1325px) {
	.headerInner table {
		max-width: 1100px;
	}

}

.headerInner-l {
	width: auto;
	vertical-align: middle;
}

.headerInner-l img {
	width: 350px;
}


.headerInner-r {
	width: auto;
	text-align: right;
	vertical-align: middle;
}


.headerInner-r table {
	width: auto;
}

.headerInner-r table td {
	vertical-align: middle;
}

.headerInner-r table td.header-snsLinks {
	width: 35px;
	padding-left: 5px;
}

.headerInner-r table td.header-snsLinks img {
	width: 100%;
}

.headerInner-r table td.header-search {
	width: 100px;
	padding: 0 0 0 0px;
	position: relative;
}

.headerInner-r table td.header-search input[type="text"] {
	width: 200px;
	border: 1px solid #acacac;
	padding: 7px 30px 9px 10px;
	font-size: 13px;
	line-height: 1;
	vertical-align: top;
	border-radius: 5px;
	margin-left: 10px;
}

.headerInner-r table td.header-search input[type="image"] {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 18px;
	height: auto;

}

.headerInner-r table td.header-contact {
	width: 140px;
	padding: 0 0 0 10px;
}

.headerInner-r table td.header-contact a {
	display: block;
	padding: 4px 0;
	text-decoration: none;
	border-radius: 5px;
	background-color: #eb754b;
	color: #fff;
	font-weight: bold;
	text-align: center;
}


.h-news-wrap {
	background-color: #fce9e0;
}

.h-news-wrap02 {
	background-color: #ffd5d5;

}

.h-news-wrap02 ul {
	font-weight: bold;
}


.header-new {
	width: 100%;
}


.header-new {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

th.emergency-title {
	color: #bf3030 !important;
}

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

	.header-new {
		max-width: 1100px;
	}

}


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

	.h-news-wrap02,
	.h-news-wrap {
		padding: 0 30px;
	}
}



.header-new th {
	width: 190px;
	color: #eb754b;
	font-size: 22px;
	vertical-align: middle;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	text-align: left;
	padding-left: 10px;
}





.header-new td.td01 {
	width: auto;
	vertical-align: middle;

}

.header-new td ul {
	width: 100%;
	padding: 20px 0;
}

.header-new td ul li .date {
	display: table-cell;
	width: 110px;
	color: #4d4d4d;
}

.header-new td ul li .title {
	display: table-cell;
	width: auto;
	color: #4d4d4d;
}


.header-new td.td02 {
	width: 30px;
	vertical-align: middle;

}

.header-new td.td02 img {
	width: 100%;
}














.header-nav-list-wrap {
	width: 100%;
	padding: 30px 0;
	background-color: #fff6f0;
}




.header-nav-list li a {
	word-wrap: break-word;
}

.header-nav-list li a:hover {
	opacity: 1 !important;
}

.header-nav-list li>* {
	cursor: pointer;
}


.header-nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	width: 100%;
}




.header-nav-list>li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.header-nav-list>li>.menuTitle {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	color: #4d4d4d;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: 0.02em;
	text-align: center;
	padding: 0 20px 0;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}


#sub-header .header-nav-list>li>.menuTitle {
	font-size: 18px;
}


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

	#sub-header .header-nav-list>li>.menuTitle {
		font-size: 14px;
	}


	#sub-header .headerInner-l img {
		width: 300px;
	}

}



#sub-header .headerInner-r-top {
	padding-top: 10px;
}


#sub-header .header-nav-list>li:last-child>.menuTitle {
	padding-right: 0;
}


@media print,
screen and (max-width: 1280px) {

	#sub-header .header-nav-list>li>.menuTitle {

		padding: 0 15px 0;
	}
}

@media print,
screen and (max-width: 1250px) {

	#sub-header .header-nav-list>li>.menuTitle {

		font-size: 16px;
		padding: 0 15px 0;
	}
}

@media print,
screen and (max-width: 1170px) {

	#sub-header .header-nav-list>li>.menuTitle {

		font-size: 14px;
		padding: 0 13px 0;
	}
}



@media print,
screen and (max-width: 1070px) {

	#sub-header .header-nav-list>li>.menuTitle {

		font-size: 14px;
		padding: 0 8px 0;
	}
}


@media print,
screen and (max-width: 970px) {
	#sub-header .headerInner-l img {
		width: 250px;
	}
}


@media print,
screen and (max-width: 900px) {
	#sub-header .headerInner-l img {
		width: 220px;
	}

	#sub-header .header-nav-list>li>.menuTitle {
		font-size: 80%;
	}
}


.header-nav-list>li>.menuTitle:hover {
	color: #eb754b;
}

.header-nav-list>li>.menuTitle::before {
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	height: 100%;
	height: -o-calc(100% - 0.2em);
	height: calc(100% - 0.2em);
	background-color: #4d4d4d;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.header-nav-list>li:first-child>.menuTitle {
	padding-left: 0;
}

.header-nav-list>li:first-child>.menuTitle::before {
	content: none;
}

.header-nav-list>li:last-child>.menuTitle {
	padding-right: 0;
}

.header-nav-list>li:hover .accordionMenu__02 {
	display: block;
	-webkit-transform: translate(50%, 100%) scale(1, 1);
	transform: translate(50%, 100%) scale(1, 1);
}

@media only screen and (min-width: 811px) and (min-width: 811px) and (max-width: 809px) {
	.header-nav-list>li:nth-last-child(3) .accordionMenu__02 {
		-webkit-transform: translate(0, 100%) scale(1, 0);
		transform: translate(0, 100%) scale(1, 0);
		right: 0;
	}

	.header-nav-list>li:nth-last-child(3):hover .accordionMenu__02 {
		-webkit-transform: translate(0, 100%) scale(1, 1);
		transform: translate(0, 100%) scale(1, 1);
	}
}

@media print,
screen and (min-width: 811px) {
	.header-nav-list .accordionMenu__02 {
		display: block;
		position: absolute;
		width: auto;
		height: 0;
		bottom: 4px;
		right: 50%;
		left: auto;
		-webkit-transition: -webkit-transform 0.2s ease-in;
		transition: -webkit-transform 0.2s ease-in;
		transition: transform 0.2s ease-in;
		transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
		-webkit-transform-origin: top center;
		transform-origin: top center;
		-webkit-transform: translate(50%, 100%) scale(1, 0);
		transform: translate(50%, 100%) scale(1, 0);
		padding: 30px 0 0;
	}

	.header-nav-list .accordionMenu__02Inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 300px;
		background: #eb754b;
		padding: 10px 20px 10px;
		border: 2px solid #fff;
		border-radius: 20px;
	}

	.header-nav-list .accordionMenu__02 .header-nav-list__02 {
		position: relative;
		display: block;
		width: 100%;
	}

	.header-nav-list .accordionMenu__02 .header-nav-list__02>li {
		border-bottom: 1px solid #d7c693;
	}

	.header-nav-list .accordionMenu__02 .header-nav-list__02>li:last-child {
		border-bottom: none;
	}

	.header-nav-list .accordionMenu__02 .header-nav-list__02>li>.title a {
		position: relative;
		display: block;
		width: 100%;
		color: #fff;
		font-size: 15px;
		text-decoration: none;
		word-wrap: break-word;
		padding: 0.5em 1em 0.5em;
		text-align: left;
	}


	.header-nav-list .accordionMenu__02 .header-nav-list__02>li>.title a::before {
		content: "";
		position: absolute;
		display: block;
		width: 0.5em;
		height: 2px;
		top: 50%;
		left: 0;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
		background-color: #d7c693;
		border-radius: 2px;
		opacity: 0;
		-webkit-transition: opacity 0.2s ease-in;
		transition: opacity 0.2s ease-in;
	}

	.header-nav-list .accordionMenu__02 .header-nav-list__02>li:hover>.title a::before {
		opacity: 1;
	}
}

@media print,
screen and (min-width: 811px) {
	.header-nav-list .header-nav-list__02>li {
		position: relative;
	}

	.header-nav-list .header-nav-list__02>li:hover>.accordionMenu__03 {
		display: block;
	}
}

@media print,
screen and (min-width: 811px) {
	.header-nav-list .accordionMenu__03 {
		display: none;
		width: 100%;
	}

	.header-nav-list .accordionMenu__03>.header-nav-list__03>li {
		padding: 0.5em 1em 0.5em;
	}

	.header-nav-list .accordionMenu__03>.header-nav-list__03>li>.menuTitle {
		display: block;
		width: 100%;
		color: #4d4d4d;
		font-size: 14px;
		text-decoration: none;
	}
}




@media print,
screen and (max-width: 1000px) {

	.headerInner {
		padding: 10px 12px 10px 8px;
	}

	.headerInner-l img {
		width: 300px;
	}

	.headerInner-r {
		padding-top: 6px;
	}

	.header-nav-list>li>.menuTitle {
		font-size: 18px;
	}

	.h-news-wrap02,
	.h-news-wrap {
		font-size: 90%;
		padding: 0 10px;
	}

	.header-nav-list-wrap {
		padding: 25px 0;
	}

	.header-new th {
		font-size: 20px;
	}

	.header-new td ul {
		padding: 20px 0;
	}

	.header-new td.td02 {
		width: 20px;
	}

	.headerInner-r table td.header-contact {
		width: 120px;
	}

	.headerInner-r table td.header-contact a {
		font-size: 80%;
	}

	.headerInner-r table td.header-search input[type="text"] {
		width: 160px;
		padding: 5px 30px 5px 10px;
	}


	.headerInner-r table td.header-search input[type="image"] {
		right: 10px;
		top: 8px;
		width: 15px;
	}

}

@media screen and (max-width: 900px) {
	.header-nav-list>li>.menuTitle {
		font-size: 100%;
	}
}



.font-size {
	background-color: #eb754b;
	display: inline-block;
	width: auto;
	height: 52px;
	padding: 10px 15px 7px 15px;
	text-align: center;
}

.pc-search {
	display: inline-block;
	width: auto;
	height: 52px;
	background-color: #eb754b;
	float: right;
	padding: 9px 17px;
	text-align: left;
}

.sp-search {

	margin-top: 50px;
	text-align: center;
}


.pc-search span {
	display: inline-block;
}

.label {
	color: #fff;
	font-size: 14px;
	margin-right: 6px;
}

.default {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
}

.default a:link {
	text-decoration: none;
	display: block;
	background-color: #fff;
	color: #000;
	padding: 3px 8px;
	border-radius: 20px;
}

.default a:hover {
	background-color: #fff;
	color: #000;
}

.large {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
}

.large a:link {
	text-decoration: none;
	display: block;
	background-color: #000;
	color: #f6e490;
	padding: 3px 8px;
	border-radius: 20px;
}

.large a:hover {
	background-color: #fff;
	color: #000;
}





.input_item {
	width: 166px;
	border: none;
	height: 32px;
	padding: 3px 28px 3px 5px;
	background: #fff;
	font-size: 16px;

	border-radius: 0px !important;
	color: #4d4d4d;
}


#searchsubmit {
	width: 18px;
	margin-left: -26px;
	padding-bottom: 0;

}


.input_item2 {
	width: 90%;
	max-width: 300px !important;
	border: 1px solid #ccc;
	height: 32px;
	padding: 3px 28px 3px 5px;
	background: #fff;
	font-size: 16px;

	border-radius: 0px !important;
	color: #4d4d4d;
}


#searchsubmit2 {
	width: 18px;
	margin-left: -26px;
	padding-bottom: 0;

}





#globalNav {
	width: 100%;
	padding-top: 5px；
}

#globalNavInner {
	width: 100%;
	padding: 0 0 0 0;
}



#globalNavInner ul {
	width: 100%;
	display: inline-flex;
	flex-wrap: nowrap;
	font-size: 110%;
	justify-content: right;
	padding: 8px 0;
}



#globalNavInner ul li {
	text-align: center;
	padding: 8px 0;
	font-size: 90%;
}


#globalNavInner ul li a {
	display: block;
	padding: 0 22px;
	text-decoration: none;
	font-weight: bold;
	border-left: #000 solid 1px;
}




@media screen and (max-width: 1000px) {
	#globalNavInner ul li a {
		padding: 0 10px;
	}
}




#globalNavInner ul li:first-child a {
	border-left: none;
}




#globalNavInner ul li a:hover {
	color: #eb754b;
}



#sub-header {
	position: fixed;
	z-index: 9998;
	background-color: #fff6f0;
	top: -300px;
	box-shadow: 0 0 6px #b5b5b5;
}


@media screen and (max-width: 810px) {
	#sub-header {
		display: none;
	}
}


#sub-header .header-nav-list-wrap {
	width: 100%;
	padding: 14px 0;
}

#sub-header .header-nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	width: 100%;
}


.headerInner-r-top {
	display: inline-block;
	width: auto;
}

.headerInner-r-bottom {
	display: block;
}


/* プルダウン Nav
================================================== */

#globalNavInner {
	position: relative;
}





#globalNavInner>ul .child {
	display: none;
	position: absolute;
	z-index: 800;
	margin-left: -2px;
	width: 300px;
}


#globalNavInner>ul .child li {
	max-width: auto;
	font-weight: bold;
	border-right: none;
	font-size: 80%;
	transition: .4s;
	color: #fff;

}

#globalNavInner>ul .child li:nth-child(odd) {
	background-color: #eb754b;
}

#globalNavInner>ul .child li:nth-child(even) {
	background-color: #004136;
}


#globalNavInner>ul .child li:last-child {}

#globalNavInner>ul .child li a {
	display: block;
	text-decoration: none;
	padding: 0 15px;
	text-align: left;
	color: #fff;
	border-left: none;
}

#globalNavInner>ul .child li a:hover {}

#globalNavInner>ul .child li:hover {
	background-color: #b1c104;
}








/*メニュー関係終わり
---------------------------------------------------------------*/




/* トップ
================================================== */



#home #content {
	width: 100%;
	margin: 0px auto;
	padding-bottom: 0px;
	border-bottom: none;
}


#content {
	width: 100%;
	margin: 0px auto;
	padding-bottom: 60px;
}



.top3 h2,
.top5 .top5-inner2 h2,
.top6 h2 {
	text-align: center;
	padding-bottom: 12px;
	font-size: 40px;
	margin-bottom: 60px;
	font-weight: 800;
	position: relative;

}

.top3 h2:before,
.top5 .top5-inner2 h2:before {
	position: absolute;
	bottom: -10px;
	left: calc(50% - 50px);
	width: 100px;
	height: 5px;
	content: '';
	border-radius: 3px;
	background: #d6e019;
}

.top5 .top5-inner2 h2:before {
	background: #fc9b71;
}


.top6 h2 {}

.top6 h2:before {
	position: absolute;
	bottom: -10px;
	left: calc(50% - 50px);
	width: 100px;
	height: 3px;
	content: '';
	border-radius: 3px;
	background: #d7c693;
}


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

	.top3 h2,
	.top5 .top5-inner2 h2,
	.top6 h2 {
		font-size: 230%;
	}

	.sub-h2 {
		font-size: 130%;
	}

}


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

	.top3 h2,
	.top5 .top5-inner2 h2,
	.top6 h2 {
		font-size: 200%;
	}
}

/*

@media only screen and (max-width: 420px) {
.top3 h2, .top5 .top5-inner2 h2, .top6 h2 {
    font-size: 180%;
}
}
*/

















.top1 {
	width: 100%;
	background-color: #fce9e0;
}

.top1.emergency {
	width: 100%;
	background-color: #ffd5d5;
}


.top1-inner {
	width: 100%;
}

.header-new-sp {
	width: 100%;

}

.header-new-sp td {
	width: 100%;
}

.header-new-sp td.td01 {
	padding: 30px 30px 5px 30px;
}

.header-new-sp td.td02 {
	padding: 20px 30px 30px 30px;
}


.header-new-sp td h2 {
	color: #eb754b;
	font-size: 22px;
	border-bottom: 1px solid #eb754b;
	padding-bottom: 15px;
}

.emergency .header-new-sp td h2 {
	color: #bf3030;
	border-bottom-color: #bf3030;
}

.header-new-link {
	text-align: right;
	margin-top: -40px;
}

.header-new-link img {
	width: 25px;
}

.header-new-sp td ul li .date {
	display: block;
	color: #4d4d4d;
}

.header-new-sp td ul li .title {
	display: block;
}




.top2 {
	width: 100%;
}


.top2-inner {
	width: 100%;
	position: relative;
}


.slider {
	width: 100%;
	overflow: hidden;
}

/*
.slick-box img {
	width: 100%;
    padding-top: 20px;
    height: 43em;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}
*/
.slider li img {
	width: 100%;
	height: 43em;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

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

	/*
.slick-box img {
    height: auto;
}
*/
	.slider li img {
		height: auto;
	}

}



@media screen and (max-width: 1000px) {
	/*
.slick-box img {
    padding-top: 0;
}
*/
}


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

	.slider li img {
		height: 43em;
	}

}


.top2-copy {
	position: absolute;
	width: 25%;
	bottom: 17%;
	left: 40px;
}


@media screen and (max-width: 1325px) {
	.top2-copy {
		width: 35%;
	}
}



.top2-copy img {
	width: 100%;
}

.top2-nami {
	position: absolute;
	width: 100%;
	bottom: -1px;
	left: 0;
}

.top2-nami img {
	width: 100%;
}

.top2-cover {
	position: absolute;
	width: 30%;
	bottom: 0;
	right: 0;
}

.top2-cover img {
	width: 100%;
}

@media only screen and (max-width: 810px) {
	.top2-copy {
		width: 40%;
		top: 8%;
	}

	.top2-cover {
		width: 50%;
	}


}





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

	.slider li img {
		height: auto;
	}

	.top2-copy {
		width: 50%;
		top: 6%;
		left: 30px;
	}

}


@media screen and (max-width: 480px) {
	.top2-copy {
		width: 60%;
		top: 7%;
	}
}


.top3 {
	width: 100%;
	background-color: #fff;
}


.top3-inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 20px 50px 20px;
	;
}

.sub-h2 {
	text-align: center;
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: bold;
}


.top3-ul {
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.top3-ul li {
	width: 23%;
	margin-bottom: 30px;
	border-radius: 50%;
	position: relative;
	background-repeat: no-repeat;
	background-position: center top 20%;
	background-size: 30%;
}

.top3-ul li a {
	display: block;
	height: 100%;
	border-radius: 50%;

}

@media screen and (max-width: 767px) {
	.top3-ul li {
		width: 48%;
		margin-bottom: 20px;
	}
}

.top3-ul li:nth-child(1) {
	background-image: url("../images/icon01.png");
}

.top3-ul li:nth-child(2) {
	background-image: url("../images/icon02.png");
}

.top3-ul li:nth-child(3) {
	background-image: url("../images/icon03.png");
}

.top3-ul li:nth-child(4) {
	background-image: url("../images/icon04.png");
}

.top3-ul li:hover {
	opacity: 0.85;
}

.top3-ul li a {
	display: block;
	text-decoration: none;
	color: #fff;

}

.top3-ul li:nth-child(odd) {
	background-color: #fc9b71;
}

.top3-ul li:nth-child(even) {
	background-color: #f47f56;
}

.top3-ul li a h3 {
	position: absolute;
	top: 60%;
	width: 100%;
	font-size: 180%;
	text-align: center;
}

@media screen and (max-width: 950px) {
	.top3-ul li a h3 {
		font-size: 150%;
	}
}


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

	.top3-ul li:nth-child(1),
	.top3-ul li:nth-child(4) {
		background-color: #f47f56;
	}

	.top3-ul li:nth-child(2),
	.top3-ul li:nth-child(3) {
		background-color: #ffaa85;
	}

}

.top4 {
	width: 100%;
	background: linear-gradient(30deg, #f0faea 0%, #fdf1ee 100%);
}


.top4-inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 20px;

}

.top4 table {
	width: 100%;
	margin-bottom: 60px;
}

.top4 table td.td01 {
	width: auto;
}

.top4 table td.td01 h2 {
	color: #eb754b;
	font-size: 34px;
}


.top4 table td.td02 {
	width: 430px;
}

.top4-ul {
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
}

.top4-ul li {
	width: 30%;
	font-weight: bold;
	font-size: 90%;
}

.top4-ul li a:link {
	display: block;
	padding: 5px 0;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	color: #fff;
}


.top4-ul li:nth-child(1) a {
	background-color: #b1c104;
}

.top4-ul li:nth-child(2) a {
	background-color: #eb754b;
}

.top4-ul li:nth-child(3) a {
	background-color: #fff;
	color: #eb754b !important;
	/*    border: 1px solid #eb754b;*/
}

.top4-ul li a:hover {
	color: #eb754b;
}


.top4 .ichiran {
	/*	margin-top: 30px;*/
	text-align: right;
}

.top4 .ichiran span {
	display: inline-block;
	width: 135px;
	font-size: 90%;
	font-weight: bold;
}

.top4 .ichiran span a {
	display: block;
	color: #eb754b;
	padding: 3px 0 3px 20px;
	border-radius: 5px;
	background-image: url("../images/arrow_o.png");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 10px;
	text-align: left;
	text-decoration: none;
}

.top4 .ichiran span a:hover {
	opacity: 0.85
}

.news-list ul {
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.news-list ul li {
	width: 31.333%;
	margin: 0;
	margin-bottom: 30px;
	background-color: #fff;
	position: relative;
	border-radius: 20px;
	box-shadow: 0 0 6px #b5b5b5;
}

.news-list ul li .thumb {
	display: block;
}

.news-list ul li .thumb img {
	width: 100%;
	border-radius: 20px 20px 0 0;
	object-fit: cover;
	object-position: top;
}

.news-list ul li .date {
	display: block;
	margin: 15px 0 0px 0;
	padding: 0 20px;
	color: #eb754b;
	font-size: 90%;
}

.news-list ul li .title {
	display: block;
	margin: 0 0 20px 0;
	padding: 0 20px;
}

.news-list ul li .title a {
	color: #4d4d4d;
}



.list-category-mark {
	display: inline-block;
	position: absolute;
	width: 120px;
	top: 0;
	left: 0;
	text-align: center;
	padding: 7px 0;
	border-radius: 20px 0 20px 0;
	color: #fff;
	font-size: 85%;
	font-weight: bold;

}

.list-category-mark.list-category-info_01 {
	background-color: #b1c104;
}

.list-category-mark.list-category-info_02 {
	background-color: #eb754b;
}




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

	.top4 table tr,
	.top4 table td {
		display: block;
	}

	.top4 table td.td01,
	.top4 table td.td02 {
		width: 100%;
		text-align: center;
	}

	.top4 table td.td01 h2 {
		margin-bottom: 30px;
	}


	.news-list ul li {
		width: 48%;
	}

	.top4 table {
		margin-bottom: 45px;
	}


	.top4-ul li a:link {
		box-shadow: 0 0 6px #b5b5b5;
	}

	.top4-ul {
		max-width: 500px;
	}

	/*
.news-list ul li .thumb {
    display: block;
    width: 250px;
}
	
*/

	.news-list ul li .thumb img {
		height: 200px !important;
	}

}


@media screen and (max-width: 550px) {
	.news-list ul li .thumb img {
		height: 150px !important;
	}
}

.top4-event {
	margin-top: 50px;
	text-align: center;
}

.top4-event span {
	display: inline-block;
	width: 40%;
	font-size: 120%;
	margin: 0 10px;
}

.top4-event span a {
	display: block;
	padding: 20px 0 20px 60px;
	text-align: left;
	background-color: #eb754b;
	border-radius: 10px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	background-image: url(../images/cal.png), url(../images/arrow_w.png);
	background-repeat: no-repeat, no-repeat;
	background-position: left 20px center, right 20px center;
	background-size: 25px, 12px;
	box-shadow: 0 0 6px #b5b5b5;
}


.top4-event span.magazine a {
	background-image: url(../images/magazine.png), url(../images/arrow_w.png);
}

.top4-event span a:hover {
	opacity: 0.85;
}


@media screen and (max-width: 750px) {
	.top4-event span {
		width: 45%;
	}
}


@media screen and (max-width: 640px) {
	.top4-event span {
		width: 100%;
		display: block;
		margin: 20px auto;
		max-width: 380px;
	}
}

@media screen and (max-width: 480px) {
	.news-list ul li {
		width: 47%;
		border-radius: 15px;
	}

	.list-category-mark {
		border-radius: 15px 0 15px 0;
	}

	.news-list ul li .thumb img {
		border-radius: 15px 15px 0 0;
	}


}

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

	.top4-ul li a {
		font-size: 12px;
	}


	/*
.news-list ul li {
	width: 100%;
}
*/

	.list-category-mark {
		width: 88px;
		font-size: 10px;
	}



	.top4-event span {
		width: 100%;
	}

	.news-list ul li .date {
		display: block;
		margin: 15px 0 5px 0;
		padding: 0 15px;
		color: #eb754b;
		font-size: 90%;
	}

	.news-list ul li .title {
		display: block;
		margin: 0 0 15px 0;
		padding: 0 15px;
		line-height: 150%;
		font-size: 90%;
	}

	.news-list ul li .thumb img {
		height: 120px !important;
	}

}


@media screen and (max-width: 390px) {
	.top4-event span {
		width: 290px;
	}

	.top4-event span a {
		font-size: 14px;
	}

}


.top5 {
	width: 100%;
	background-image: url("../images/nami_o.png"), url("../images/bg.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: bottom center, left top;
	background-size: 100%, cover;
	padding-bottom: 70px;
}

@media screen and (max-width: 480px) {
	.top5 {
		background-position: bottom center, right top;
	}
}


.top5-inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 20px;
}



.top5-inner h2 {
	color: #eb754b;
	font-size: 34px;
	margin-bottom: 20px;
}



.top5-ul {
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	margin-top: 10px;

}

.top5-ul li {
	width: 23%;
	margin: 1%;
}


@media screen and (max-width: 810px) {
	.top5-ul li {
		width: 31.3%;
	}
}



.top5-ul li img {
	width: 100%;
	border-radius: 5px;
	box-shadow: 0 0 6px #b5b5b5;
}



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



	.top5-ul li {
		width: 46%;
		margin: 2%;
	}

	.top5-ul li img {
		border-radius: 7px;
	}

}

.top5-inner2 {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 20px 0 20px;

}



.top5-inner2 p {
	font-weight: bold;
}

.top5-inner2-inner {
	width: 100%;
	border: 7px solid #f9d0c2;
	border-radius: 30px;
	position: relative;
	text-align: center;
	padding: 70px 40px 50px 40px;
	background-color: #fff;
}


.top5-bird {
	position: absolute;
	top: 15px;
	right: -30px;
	width: 240px;
}


@media screen and (max-width: 1140px) {
	.top5-bird {
		top: -32px;
		right: 20px;
		width: 240px;
	}
}


.top5-bird img {
	width: 100%;
}



.top5-sodan {
	margin: 30px 0 40px 0;
}

.top5-sodan span {
	display: inline-block;
	width: 280px;
	font-size: 120%;
}

.top5-sodan span a {
	display: block;
	padding: 20px 0 20px 20px;
	text-align: left;
	background-color: #b1c104;
	border-radius: 10px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	background-image: url(../images/arrow_w.png);
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 12px;
	box-shadow: 0 0 6px #b5b5b5;
}




.top5-sodan span a:hover {
	opacity: 0.85;
}

.top5-link {
	width: 100%;
	padding-top: 30px;
}

.top5-link-inner {
	width: 100%;
	margin: 0 auto;
}

.top5-link-inner span {
	display: inline-block;
	width: 48%;
	font-size: 110%;
}

.top5-link-inner span.span01 {
	margin-right: 2%;
}

.top5-link-inner span.span02 {
	margin-left: 2%;
}



.top5-link-inner span a {
	display: block;
	padding: 20px 0 20px 50px;
	text-align: left;
	background-color: #fce9e0;
	border-radius: 10px;
	text-decoration: none;
	color: #4d4d4d;
	font-weight: bold;
	background-image: url("../images/arrow_o.png");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 12px;
	box-shadow: 0 0 4px #cdcdcd;
}




.top5-link-inner span.span01 a,
.top5-link-inner span.span02 a {
	background-repeat: no-repeat, no-repeat;
	background-position: left 15px center, right 20px center;
	background-size: 24px, 12px;
}


.top5-link-inner span.span01 a {
	background-image: url("../images/renrakusaki.png"), url("../images/arrow_o.png");
}

.top5-link-inner span.span02 a {
	background-image: url("../images/mail.png"), url("../images/arrow_o.png");
}

.top5-link-inner span a:hover {
	opacity: 0.75;
}


@media screen and (max-width: 700px) {
	.top5-link-inner span a {
		padding: 20px 0 20px 50px;
	}
}


@media screen and (max-width: 767px) {
	.top5-bird {
		top: -40px;
		right: 0;
		width: 210px;
	}

}


@media screen and (max-width: 480px) {
	.top5-bird {
		top: -60px;
	}

	.top5-inner2-inner {
		border: 5px solid #f9d0c2;
		padding: 50px 30px;
	}

	.top5 .top5-inner2 h2 {
		margin-bottom: 40px;
	}

}

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

	.top5-sodan span {
		width: 250px;
	}

	/*
.top5-link-inner {
	max-width: 250px;
}
*/


	.top5-link-inner span {
		width: 100%;
		max-width: 340px;
	}

	.top5-link-inner span.span01 {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.top5-link-inner span.span02 {
		margin-left: 0;
	}

}


@media screen and (max-width: 435px) {
	.top5-link-inner span a {
		font-size: 90%;
	}
}


@media screen and (max-width: 420px) {
	.top5-inner2-inner {
		padding: 40px 20px 30px 20px;
	}

	.top5-link-inner span a {
		padding: 20px 0 20px 40px;
		background-position: left 13px center, right 20px center;
	}

	.top5-link-inner span.span01 a,
	.top5-link-inner span.span02 a {
		background-position: left 15px center, right 15px center;
		background-size: 17px, 9px;
	}
}

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

	.top5-sodan span {
		width: 100%;
	}
}



#lay-footer {
	width: 100%;
	margin-top: -2px;
}

.nami_o {
	width: 100%;
}

.nami_o img {
	width: 100%;
}


.footer-inner {
	width: 100%;
	padding: 60px 0 80px 0;
	text-align: center;
	color: #fff;
	background-color: #eb754b;
}


.footer-link {
	font-size: 90%;

}

.footer-link span {
	padding: 0 25px;
	font-size: 90%;
	font-weight: 700;
	border-right: 1px solid #fff;
}




.footer-link span:last-child {
	border-right: none;
}


.footer-link a:link {
	text-decoration: none;
	color: #fff;
}

.footer-link a:visited {
	color: #fff;
}

.footer-link a:hover {
	opacity: 0.85;
}

.footer-logo {
	margin: 30px 0 10px;
}

.footer-logo img {
	width: 60px;
}

.footer-logo-text {
	font-size: 22px;
	font-weight: bold;
	margin: 0 0 23px 0;
}

.footer-logo-text-sub {
	font-weight: bold;
	font-size: 17px;
}

.footer-add {}

.footer-copy {
	margin-top: 30px;
	font-size: 65%;
	padding: 0 0px;
}



@media only screen and (max-width: 480px) {
	.footer-logo img {
		width: 40px;
	}

	.footer-inner {
		font-size: 90%;
		padding: 30px 0 50px 0;
	}

	.footer-logo-text-sub {
		font-size: 100%;
	}

	.footer-logo-text {
		font-size: 140%;
	}

}


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


	.footer-logo-text {
		font-size: 24px;
	}

}















/* コンテンツページ関係始まり
==================================================
*/


#lay-title-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	min-height: 280px;
	padding: 20px 24px 80px;
	background-color: #ffebdd;
	background-image: url(../images/nami_w.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100%;
	position: relative;
}

.title-inner {
	max-width: 1300px;
	width: 100%
}


.t-bird {
	position: absolute;
	top: auto;
	right: 20px;
	width: 240px;
	bottom: 30px;
}


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

	.t-bird {
		bottom: 0;
	}


}




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

	.t-bird {
		width: 200px;
	}

}


@media screen and (max-width: 767px) {
	#lay-title-wrap {
		min-height: 230px;
		padding: 40px 24px 80px;
	}
}


@media screen and (max-width: 480px) {
	#lay-title-wrap {
		min-height: 170px;
	}
}


.header-bottom {
	padding-top: 170px;
}

#lay-breadcrumbs-list .pankuze_list_items {
	width: 100%;
	max-width: 1300px;
	font-size: 90%;
	line-height: 1.8em;
	letter-spacing: 0.06em;
	padding: 20px 0;
	margin: 60px auto 0;
	border-top: dotted 2px #eb754b;
}

#lay-breadcrumbs-list .pankuze_list_items a {
	color: #eb754b;
}



@media screen and (max-width: 540px) {
	#lay-breadcrumbs-list .pankuze_list_items {
		padding: 30px 0 0 0;
	}
}

#lay-title-wrap .title-inner .title {
	font-size: 230%;
	font-weight: 800;
	line-height: 1.2em;
	letter-spacing: 0.06em;
	text-align: center;
	color: #eb754b;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}


#lay-main {
	width: 100%;
	background-image: url(../images/nami_o.png), url(../images/bg.jpg);
	background-repeat: no-repeat, no-repeat;
	background-position: bottom center, left top;
	background-size: 100%, cover;
	padding-bottom: 80px;
}

.lay-page,
.page-side {
	max-width: 1300px;
	margin: 30px auto;
}

#lay-main>h1:has(+ .com-date-txt),
#lay-main h1 {
	margin: 0 auto;
	margin-bottom: 70px;
	margin-top: 30px;
	text-align: center;
	padding: 0 25px 25px 25px;
	font-size: 230%;
	position: relative;
	width: 100%;
	max-width: 1300px;
}

#lay-main h1:before {
	position: absolute;
	bottom: -10px;
	left: calc(50% - 50px);
	width: 100px;
	height: 5px;
	content: '';
	border-radius: 3px;
	background: #d6e019;
}


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

	.lay-page {
		padding-left: 30px;
		padding-right: 30px;
	}

}

.cat-img-wrap {
	position: relative;

}

.cat-img img {
	vertical-align: bottom;
	width: 100%;
	height: 145px;
	object-fit: cover;
	font-family: 'object-fit: contain;';
	object-position: center;
}


@media screen and (max-width: 800px) {
	.cat-img img {
		height: 140px;
	}
}


@media screen and (max-width: 500px) {
	.cat-img img {
		height: 120px;
	}

	#lay-title-wrap .title-inner .title {
		font-size: 210%;
		letter-spacing: 0;
	}

	#lay-main>h1:has(+ .com-date-txt),
	#lay-main h1 {
		font-size: 200%;
		padding: 0 25px 10px 25px;
	}

	#lay-main h1:before {
		height: 3px;
	}

}

@media screen and (max-width: 480px) {
	#lay-breadcrumbs-list .pankuze_list_items {
		margin: 40px auto 0;
	}
}

.cat-img-con {
	position: absolute;
	width: 100%;
	top: 28%;
	text-align: center;
	font-size: 220%;
	letter-spacing: 4px;
	color: #eb754b;
	font-weight: 900;
	line-height: 1;
	margin: 0;
	z-index: 3;
}


@media screen and (max-width: 481px) {
	.cat-img-con {
		font-size: 200%;
		letter-spacing: 1px;
	}
}


@media screen and (max-width: 370px) {
	.cat-img-con {
		font-size: 190%;
		letter-spacing: 1px;
	}
}


.cat-img-con span.sub-cat-img-con {
	display: block;
	font-size: 50%;
	color: #ea6000;
	padding-top: 15px;
	letter-spacing: 0px;
	font-family: 'Anton', sans-serif;
	letter-spacing: 1px;
}


#home #breadCrumb {
	display: none;
}

#breadCrumb {
	width: 100%;
	font-size: 100%;
	margin-bottom: 15px;
}

#breadCrumb a {
	color: #eb754b;
}

#breadCrumb .inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 25px;
}


#breadCrumb p {
	margin-left: 0px;

}




.scrText {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}



.print_wrp {
	display: none;
	text-align: right;
	padding-top: 8px;
	margin-bottom: -32px;
}

.contentBodyWrapper {
	padding: 0px;
}

.contentListWrapper {
	padding: 0px;
}

#content-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 0 25px;
}

#content-inner:after {
	content: "";
	display: block;
	clear: both;
}

#main {
	width: 73%;
	float: left;
}

#main2 {
	width: 100%;

}


.contentBody {
	width: 100%;
	font-size: 110%;
	margin-right: auto;
	margin-left: auto;
	clear: both;
	line-height: 180%;
	min-height: 1em;
}

.contentBody a:link,
.contentBody a:visited {
	color: #eb754b;
}


.contentBody img {
	width: auto;
	max-width: 100%;
}


.sect-category-list {
	margin-top: 20px;
}

.pageList {
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}


.pageList .pageList-item,
.pageList .pagelist-item {
	width: 46%;
	margin: 1.5% 2%;
	font-size: 110%;
	font-weight: bold;
	display: block;
	background-color: #ffffff;
	text-decoration: none;
	/* border: 1px solid #eb754b; */
	transition: all 0.2s ease-in-out;
	/* box-shadow: 0 0 4px gray; */
	border: 5px solid #f9d0c2;
	border-radius: 20px;
	padding-bottom: 0;

}


.pageList .pageList-item a,
.pageList .pagelist-item a {
	text-decoration: none;
	display: block;
}

.pageList .pageList-item:hover,
.pageList .pagelist-item:hover {
	background-color: #fff6f0;
}

.pageList .pageList-item apan.date,
.pageList .pagelist-item span.date {
	display: block;
	font-size: 87.5%;
	color: #eb754b;
	padding: 0px 30px 30px 0;
	text-align: right;
	margin-top: 5px;
}

.pageList .pageList-item span.thumb,
.pageList .pagelist-item span.thumb {
	display: block;
	width: 100%;
}

.pageList .pageList-item .thumb a,
.pageList .pagelist-item .thumb a {
	display: block;
}

.pageList .pageList-item .thumb img,
.pageList .pagelist-item .thumb img {
	transition: 0.3s;
	vertical-align: bottom;
	width: 100%;
	object-fit: cover;
}

.pageList .pageList-item .title,
.pageList .pagelist-item .title {
	display: block;
	font-size: 150%;
	margin: 30px;
	line-height: 160%;
	text-align: left;
	padding: 0 0 0 30px;
}

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

	.pageList .pageList-item .title,
	.pageList .pagelist-item .title {
		margin: 23px;
	}
}

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

	.pageList .pageList-item,
	.pageList .pagelist-item {
		width: 100%;
		margin: 15px 0;
	}

	.pageList .pageList-item,
	.pageList .pagelist-item {
		border: 3px solid #f9d0c2;
		border-radius: 15px;
	}

}

.pageList .pageList-item .title a {
	font-size: 130%;
	text-decoration: none;
	font-weight: bold;
	display: block;
}

.pageList .pageList-item .title a:hover,
.pageList .pagelist-item .title a:hover {
	text-decoration: underline;
}

.pageList .pageList-item .description,
.pageList .pagelist-item .description {
	margin-top: 15px;
	padding: 15px 4%;
	display: block;
	font-size: 77%;
	line-height: 140%;
	color: #eb754b;
	border-top: 2px dotted #b1c104;
}

.pageList .pageList-item p,
.pageList .pagelist-item p {
	text-align: right;
	padding: 0 10px 5px 0;
	font-size: 90%;
}



.pagination,
.contentBodyWrapper .pagination {
	text-align: center;
	margin-top: 45px;
}

.pagination a:link,
.contentBodyWrapper .pagination a {
	background-color: #eb754b;
	color: #fff;
	text-decoration: none;
}

.pagination span.current,
.pagination a:link,
.contentBodyWrapper .pagination a {
	border: 1px solid #eb754b;
	padding: 5px 12px;
	text-align: center;
	display: inline-block;
	min-width: 40px;
	border-radius: 8px;
}

.pagination a:hover,
.contentBodyWrapper .pagination a:hover {
	background-color: #fff;
	color: #eb754b;
}

.pagination span.current {
	color: #eb754b;
}

li.pagelist-item.current-category_fascinating-news-item span.thumb {
	display: none;
}

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

	.pageList .pageList-item .title,
	.pageList .pagelist-item .title {
		font-size: 130%;
	}
}


/*　検索一覧ページ
*********************************************/
.contentBodyWrapper .search-area ul li {
	margin-bottom: 10px;
}

.contentBodyWrapper .search-ul li .thumb,
.contentBodyWrapper .search-ul li .description,
.contentBodyWrapper .search-ul li .date {
	display: none;
}




/*サイトマップ初め
================================================== */



.sitemap {
	margin-left: 0px;
}

/********** 共通 **********/
.sitemap .sitemap-list {
	margin-top: 2%;
}

.sitemap .sitemap-list {
	display: block;
}

.sitemap .sitemap-list li {
	display: block;
}

.sitemap .sitemap-list li .sitemap-list-item-span {
	display: block;
	line-height: 1.8em;
	letter-spacing: 0.1em;
	transition: 0.3s;
}

.sitemap .sitemap-list li .sitemap-list-item-span a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.sitemap .sitemap-list li .sitemap-list-item-span a:hover {
	color: #eb754b;
}

/********** 第1階層 **********/
.sitemap .sm-depth1-list {
	margin-top: 0;
}

.sitemap .sm-depth1-list>li {
	padding: 0 0 0;
	margin: 0 0 4%;
}

.sitemap .sm-depth1-list>li:last-child {
	margin-bottom: 0;
}

.sitemap .sm-depth1-list>li>.sitemap-list-item-span {
	display: block;
	font-size: 115%;
	font-weight: bold;
	border-left: 10px solid #eb754b;
	padding: 0.5em 1.0em;
	margin: 1.5em 0;
}

.sitemap .sm-depth1-list>li>.sitemap-list-item-span>a {}

/* 第2階層 */
.sitemap .sm-depth2-list {}

.sitemap .sm-depth2-list>li {
	margin: 0 0 4%;
}

.sitemap .sm-depth2-list>li:last-child {
	margin-bottom: 0;
}

.sitemap .sm-depth2-list>li>.sitemap-list-item-span {
	display: block;
	color: #000;
	font-size: 115%;
	font-weight: bold;
	padding: 0.5em 1.0em;
	background-color: #d8ece9;
}

.sitemap .sm-depth2-list>li>.sitemap-list-item-span>a {}

/* 第3階層 */
.sitemap .sm-depth3-list {}

.sitemap .sm-depth3-list>li {
	margin: 0 0 4%;
}

.sitemap .sm-depth3-list>li:last-child {
	margin-bottom: 0;
}

.sitemap .sm-depth3-list>li>.sitemap-list-item-span {
	display: block;
	color: #000;
	font-size: 110%;
	font-weight: bold;
	border-bottom: 1px solid #b1c104;
	padding: 0 1.0em 0.5em;
}

.sitemap .sm-depth3-list>li>.sitemap-list-item-span>a {}

/* 第4階層 */
.sitemap .sm-depth4-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

.sitemap .sm-depth4-list>li {
	width: calc(25% - (40px * 3 / 4));
	margin: 0 0 4%;
}

@media screen and (max-width:1000px) {
	.sitemap .sm-depth4-list>li {
		width: calc((100% / 3) - (30px * 2 / 3));
	}
}

@media screen and (max-width:860px) {
	.sitemap .sm-depth4-list>li {
		width: calc(50% - 15px);
	}
}

@media screen and (max-width:500px) {
	.sitemap .sm-depth4-list>li {
		width: 100%;
	}
}

.sitemap .sm-depth4-list>li:last-child {
	margin-bottom: 0;
}

.sitemap .sm-depth4-list>li>.sitemap-list-item-span {
	display: block;
	color: #fff;
	font-size: 105%;
	font-weight: bold;
	background-color: #eb754b;
	padding: 0.25em 0.5em;
}

.sitemap .sm-depth4-list>li>.sitemap-list-item-span:hover {
	opacity: 0.7;
}

.sitemap .sm-depth4-list>li>.sitemap-list-item-span>a {}

.sitemap .sm-depth4-list>li>.sitemap-list-item-span>a:hover {
	color: #fff;
}

/* 第5階層 */
.sitemap .sm-depth5-list {}

.sitemap .sm-depth5-list>li {
	position: relative;
	padding: 0 0 0 1.5em;
	margin: 0 0 2%;
}

.sitemap .sm-depth5-list>li::before {
	content: "";
	position: absolute;
	top: 0.9em;
	left: 0.25em;
	width: 1.0em;
	height: 1.8em;
	width: 0.5em;
	height: 2px;
	background-color: #b1c104;
}

.sitemap .sm-depth5-list>li:last-child {
	margin-bottom: 0;
}

.sitemap .sm-depth5-list>li>.sitemap-list-item-span {
	display: block;
	font-size: 100%;
	font-weight: 400;
}

.sitemap .sm-depth5-list>li>.sitemap-list-item-span>a {}

.sitemap .sm-depth5-list>li>.sitemap-list-item-span>a:hover {
	text-decoration: underline;
}

/* 第6階層以降 */
.sitemap .sm-depth5-list .sitemap-list {
	margin-top: 1%;
}

.sitemap .sm-depth5-list .sitemap-list>li {
	position: relative;
	padding: 0 0 0 1.0em;
}

.sitemap .sm-depth5-list .sitemap-list>li::before {
	position: absolute;
	content: "・";
	color: #eb754b;
	width: 1.0em;
	height: auto;
	top: 0;
	left: 0;
	line-height: inherit;
}

.sitemap .sm-depth5-list .sitemap-list>li>.sitemap-list-item-span>a {}

.sitemap .sm-depth5-list .sitemap-list>li>.sitemap-list-item-span>a:hover {
	text-decoration: underline;
}

.isEmpty {
	height: 0 !important;
	min-height: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	border: none !important;
	box-shadow: none !important;
	background: none !important;
}

.isEmpty::before,
.isEmpty::after {
	content: none !important;
}

/*サイトマップ終わり
================================================== */


/*　検索一覧ページ
================================================== */

/*
.search-result h2{
	padding: 7px 3%;
	display: block;
	margin: 30px 0 10px 0;
	border-left: 10px solid #78242e;
	background-color: #f5f5f5;
}
*/

.search-result h2 {
	margin: 80px 0px 30px 0;
	padding: 10px 15px;
	border-left: 14px solid #eb754b;
	font-size: 155%;
	line-height: 160%;
	background-color: #f7f7f7;
}










.search-result ul li {
	display: block;
	line-height: 120%;
	margin: 12px 0;
	background-image: url(../images/icon.png);
	background-repeat: no-repeat;
	background-position: 0px top;
	background-size: 24px;
	padding: 0px 0px 0px 30px;
	text-align: left;
	font-size: 1.15em;
}

@media screen and (max-width: 767px) {
	.search-result ul li {
		background-size: 9px;
		padding: 0px 0px 0px 22px;
	}
}


.search-result ul li .thumb,
.search-result ul li .description,
.search-result ul li .date {
	display: none;
}

.search-result p {
	margin-bottom: 20px;
}

/*　検索一覧ページ終わり
================================================== */


/*　検索ページ
================================================== */
.input_items_wrap {
	margin: 10px 0;
}

.input_items_wrap .input_item {
	width: 70%;
	height: 32px;
	max-width: 500px;
	padding: 0 5px;
	background-color: #e4e4e4;
}

.input_items_wrap .submit_btn {
	height: 32px;
	padding-left: 3px;
}

/*　検索ページ終わり
================================================== */

/*コンテンツページ関係終わり
================================================== */





/* レスポンシブ対応
==================================================
==================================================
==================================================
================================================== */



@media screen and (min-width: 811px) {
	.sp-header {
		display: none;
	}


}







/*メニュー関係
---------------------------------------------------------------*/




.inner {
	width: 960px;
	margin: 0 auto;
}

.sp-header {
	width: 100%;
	height: 70px;
	vertical-align: middle;
	position: fixed;
	z-index: 1100;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(4px);
}



.sp-header .inner {
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.sp-header .inner .sp-logo {
	width: 100%;
	padding: 10px 0 0 10px;
}



.sp-header .inner .sp-logo img {
	height: 50px;
	position: absolute;
	z-index: 999;
}



.sp-header nav {
	margin-right: -16px;
}




#main_img {
	max-width: 960px;
	margin: 0 auto;
}

#nav_toggle {
	display: none;
}

.change_btn {
	color: #fff;
	display: block;
	width: 100%;
	text-decoration: none;
	border: 1px solid #fff;
	text-align: center;
	padding: 25px 0;
	font-size: 20px;
	margin-top: 40px;
}


header {}

h1 {}

.inner {
	width: 90%;
}

#main_img {
	width: 100%;
}

.change_btn {
	width: 90%;
	margin: 32px auto;
}


.sp_search {
	width: 70px;
	height: 70px;
	position: fixed;
	top: 0;
	right: 70px;
}

.sp_search a {
	display: block;
	height: 70px;
	background-color: #ea6000;
	color: #fff !important;
	text-decoration: none !important;
	text-align: center;
	padding-top: 38px;
	background-image: url(../images/search_sp.png);
	background-repeat: no-repeat;
	background-position: center top 9px;
	background-size: 30px;
	font-size: 14px;
	font-weight: bold;
}

.sp_search a:visited {
	color: #fff;
}

.sp_search img {
	width: 100%;
}

/*メニュー部分*/
.sp-header nav {
	display: none;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: #eb754b;
	left: 0;
	z-index: 50;
	-webkit-overflow-scrolling: touch;
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-y;
	background-position: left top;
	background-size: 120%;
}




.nav-ul {
	display: flex;
	align-items: center;
	display: block;
	width: 100%;
	position: absolute;
	top: 70px;
	right: 0;
	bottom: 0px;
	left: 0px;
	margin: auto;
	padding: 120px 30px 30px 30px;
	overflow: scroll;
	border-top: 1px solid #eb754b;
}

.nav-li {
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #eb754b;
	padding-left: 5px;
	padding-right: 5px;
}

.nav-li a:link {
	text-decoration: none;
	font-weight: bold;
	color: #eb754b;
}

.nav-li a:visited {
	color: #eb754b;
}




.nav-li a span {
	display: block;
	font-size: 130%;
	background-image: url(../images/menu_icon.png);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: 20px;
	/*	padding-left: 10px;*/
}


.kaso-ul {
	display: inline-flex;
	width: 100%;
	flex-wrap: wrap;
	margin-top: 10px;
	padding: 0 10px;
}

.kaso-ul li {
	width: 100%;
	font-size: 14px;

}

/*
@media screen and (max-width: 500px) {
.kaso-ul li {
    width: 50%;
	font-size: 12px;
}
}
*/




.kaso-ul li::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 2px;
	margin-bottom: 2px;
	margin-right: 10px;
	background: #d6e019;
	/* border-radius: 2px; */
	vertical-align: middle;
}

.kaso-ul li a:link {
	font-weight: normal;
	color: #4d4d4d;
}


.kaso-ul li a:visited {
	color: #4d4d4d;
}



/*開閉ボタン*/
#nav_toggle {
	display: block;
	width: 50px;
	height: 50px;
	background-color: #eb754b;
	position: fixed;
	top: 10px;
	right: 11px;
	padding-top: 0px;
	z-index: 100;
	padding: 0 11px;
	border-radius: 6px;
}

#nav_toggle div {
	position: relative;
}

#nav_toggle span {
	display: block;
	height: 2px;
	background: #fff;
	position: absolute;
	width: 100%;
	left: 0;
	transition: 0.5s ease-in-out;
}

#nav_toggle span:nth-child(1) {
	top: 10px;
}

#nav_toggle span:nth-child(2) {
	top: 18px;
}

#nav_toggle span:nth-child(3) {
	top: 26px;
}

#nav_toggle p {
	position: absolute;
	width: 100%;
	color: #fff;
	top: 29px;
	left: 6px;
	font-size: 10px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	letter-spacing: -1px;
	font-weight: bold;
}

/*開閉ボタンopen時*/
.open #nav_toggle {
	background-color: #eb754b;
}

.open #nav_toggle span {
	background: #fff;
}

.open #nav_toggle span:nth-child(1) {
	top: 20px;
	transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}

.open #nav_toggle span:nth-child(3) {
	top: 20px;
	transform: rotate(-135deg);
}


@media screen and (max-width: 480px) {
	/*

.sp-header nav {
    background-position: left 10px top 16px, left top;
    background-size: 250px, cover;
}
*/
}



@media screen and (max-width: 810px) {
	.headerInner-r {
		width: auto;
		text-align: center;
		vertical-align: middle;
		width: 100%;
		position: absolute;
		top: 71px;
		z-index: 9999;
		background-color: #fce9e0;
		padding: 25px 20px 20px 20px;
	}
}


/*メニュー関係終わり
---------------------------------------------------------------*/



@media print {
	body {
		width: 1200px;
		transform: scale(0.8);
		-moz-transform: scale(0.8);
		-webkit-transform: scale(0.8);
		transform-origin: 0 0;
	}

	#scrollTop {
		display: none;
	}
}


/* books
---------------------------------------------------------------*/
.books__inner {
	display: grid;
	grid-template-columns: 10% auto 10%;
	gap: 20px;
}

.books__info {
	display: flex;
	flex-direction: column;
}

@media screen and (max-width: 811px) {
	.books__inner {
		display: grid;
		grid-template-columns: auto 50px;
		grid-template-rows: auto auto;
		gap: 20px;
	}

	.books__image {
		grid-column-start: 1;
		grid-column-end: 3;
		text-align: center;
	}

	.books__image img {
		max-width: 30%;
	}
}

/* tbl-form
---------------------------------------------------------------*/
.tbl-form .required {
	background-color: #c9171e;
	color: #fff;
	padding: 3px 5px;
	font-size: 85%;
	margin-left: 10px;
	border-radius: 3px;
}

.tbl-form th {
	width: 200px;
}

.tbl-form input:not([type="radio"]),
.tbl-form textarea {
	width: 100%;
}

.tbl-form textarea {
	height: 200px;
}

.tbl-form input.input100 {
	width: 100%;
}

.tbl-form input.input50 {
	width: 50%;
	min-width: 400px;
}

.tbl-form input.input25 {
	width: 25%;
	min-width: 200px;
}

.tbl-form textarea.input-textarea {
	width: 100%;
	height: 200px;
}

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

	.tbl-form th,
	.tbl-form td {
		display: block;
		width: 100%;
	}

	.tbl-form .input50,
	.tbl-form .input25 {
		width: 100%;
		min-width: 100%;
	}
}

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


	.hideAnchor {
		display: block;
		height: 0px;
		height: 1px;
		overflow: hidden;
		text-indent: -9999px;
		margin-top: -60px;
		padding-bottom: 60px;
	}


	body,
	html {
		-webkit-text-size-adjust: 100%;

	}



	select,
	textarea,
	input[type=text],
	input[type=email],
	input[type=date],
	input[type=tel] {
		font-size: 16px;
		/*  transform: scale(0.8);*/
	}




	.scrollTable {
		overflow-x: auto;
		padding-bottom: 10px;
		-webkit-overflow-scrolling: touch;
	}



	#scrollTop img {
		width: 50px;
	}




	#pc-header {
		display: none;
	}

	#globalNav {
		display: none;
	}


}


/* sect-sitemap
============================================================ */
.sect-sitemap>.sitemap-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
}

@media print,
screen and (min-width: 1025px) {
	.sect-sitemap>.sitemap-list>li {
		width: calc((100% / 3) - (40px * 2 / 3));
		margin: 80px 0 0;
	}

	.sect-sitemap>.sitemap-list>li:nth-child(-n+3) {
		margin-top: 0;
	}
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
	.sect-sitemap>.sitemap-list>li {
		width: calc(50% - 20px);
		margin-top: 60px;
	}

	.sect-sitemap>.sitemap-list>li:nth-child(-n+2) {
		margin-top: 0;
	}
}

@media only screen and (max-width: 599px) {
	.sect-sitemap>.sitemap-list>li {
		width: 100%;
		margin-top: 50px;
	}

	.sect-sitemap>.sitemap-list>li:first-child {
		margin-top: 0;
	}
}

.sect-sitemap>.sitemap-list>li>span {
	display: block;
	color: #eb754b;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.5em;
	letter-spacing: 0.06em;
	margin-bottom: 13px;
}

.sect-sitemap>.sitemap-list>li>span>a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-decoration: none;
	padding: 0.5em 2em 0.5em 0.3em;
	-webkit-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	/* background-color: #fff6f0; */
	border-bottom: 2px dotted #fbc29a;
}

.sect-sitemap>.sitemap-list>li>span>a::before {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border: 0.4em solid transparent;
	border-left: 0.6em solid #b1c104;
	border-right: none;
	top: 50%;
	right: 0.75em;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.sect-sitemap>.sitemap-list>li>span>a:hover {
	opacity: 1 !important;
	color: #b1c104;
}

.sect-sitemap>.sitemap-list>li ul {
	margin-top: 1em;
	padding: 0 0 0 0.5em;
}

.sect-sitemap>.sitemap-list>li ul>li {
	margin-bottom: 0.25em;
}

.sect-sitemap>.sitemap-list>li ul>li:last-child {
	margin-bottom: 0;
}

.sect-sitemap>.sitemap-list>li ul>li>span {
	display: block;
}

.sect-sitemap>.sitemap-list>li ul>li>span>a {
	position: relative;
	display: block;
	padding: 0 0 0 1.25em;
	line-height: 1.8em;
}

.sect-sitemap>.sitemap-list>li ul>li>span>a::before {
	content: "";
	position: absolute;
	display: block;
	font-size: inherit;
	width: 0.5em;
	height: 0.5em;
	top: 0.4em;
	left: 0;
	border: 2px solid #cfd641;
	border-bottom: none;
	border-left: none;
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sect-sitemap>.sitemap-list>li ul>li>span>a:hover {
	opacity: 1 !important;
}



#lay-preview-mode-notice {
	position: fixed;
	top: 0;
	left: 50%;
	z-index: 9999;
	width: 100%;
	max-width: 580px;
	padding: 10px 5px;
	background: rgba(0, 0, 0, 0.8);
	color: #f80000;
	border-radius: 0 0 5px 5px;
	margin: 0 0 -26px 30px;
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

#lay-preview-mode-notice p {
	font-size: 14px;
	font-weight: bold;
}

#lay-preview-mode-notice a {
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}

#lay-preview-mode-notice a::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 10px;
	margin-bottom: 1px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (min-width: 1025px) {

	html .less-w811,
	html .less-w481,
	.contentBody .less-w811,
	.contentBody .less-w481 {
		display: none !important;
	}
}



/*inner	*/

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

	.top3-inner,
	.top4-inner,
	.top5-inner,
	.top5-inner2,
	.lay-page {
		padding-left: 30px;
		padding-right: 30px;
	}

}


@media screen and (max-width: 767px) {
	.top3-inner {
		padding-top: 50px;
		max-width: 530px;
	}

	.top4-inner,
	.top5-inner {
		padding-top: 60px;
	}

	.top5-inner2 {
		padding: 80px 30px 0 30px;
	}

	.top4-inner {
		padding-bottom: 60px;
	}

}


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

	.top4 table td.td01 h2,
	.top5-inner h2 {
		font-size: 220%;
		text-align: center;
	}
}



/*　カレンダー
==================================================*/

.calendar {}

.sectionHeader {
	margin-bottom: 20px;
}


.sect-calendar {
	width: 100%;
	padding: 0 30px 0 30px;
}



.calendar-nav {
	text-align: center;
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
	.calendar-nav {
		margin-top: 40px;
	}
}


.now-month {
	font-size: 230%;
	padding: 0 25px;
	color: #eb754b;
}

.prev-month {
	font-weight: bold;
	background-image: url(../images/cal_icon_02.png);
	background-repeat: no-repeat;
	background-position: left 0px center;
	background-size: 20px;
	padding: 0px 0px 0px 25px;
}

.next-month {
	font-weight: bold;
	background-image: url(../images/cal_icon.png);
	background-repeat: no-repeat;
	background-position: right 0px center;
	background-size: 20px;
	padding: 0px 25px 0px 0px;
}


.calendar-category {
	margin-bottom: 10px;
	display: none;
}

.cal_category_select {}



.calendar table {
	width: 100%;
}

.calendar .colgroup1 {
	width: auto;
}


.calendar table caption {
	font-size: 140%;
	color: #5f3919;
	font-weight: bold;
	padding-bottom: 5px;
}

.calendar thead {
	background-color: #ffffbb;
}

.calendar table th,
.calendar table td {
	border: 1px solid #575757;
	height: auto;

}

.week-wrap {
	background-color: #f9f9f9;

}

.one_calendar .cal_head,
.one_calendar .cal_day {
	width: calc(100% / 7);
	border: 1px solid #fff;
	background-color: #f1f1f1;
}

.calendar .day,
.calendar .week,
.calendar .event {
	vertical-align: middle;
}

.calendar .sunday {
	background-color: #ffefdf;

}

.calendar .saturday {
	background-color: #e3f5f9;
}

.calendar table td a {}

.calendar_item {
	padding: 2px 4px;
	display: block;
}

.one-calendar ul {
	margin-left: 5px;
}

.one-calendar ul li {
	display: block;
	font-weight: bold;
	background-image: url(../images/cal_icon.png);
	background-repeat: no-repeat;
	background-position: left 0px top 18px;
	background-size: 20px;
	padding: 10px 0px 10px 25px;
}


.calendar_item span {
	display: block;
}

.calendar_item .title {
	padding: 0;
	margin-right: 10px;
}

.calendar_item .time {
	font-size: 80%;
	color: #eb754b;
	letter-spacing: 0;
}

.calendar_item .title a {
	/*	pointer-events: none;*/
	/*	text-decoration: none;*/
}

.calendar table .category_title {
	display: none;
}

.calendar table .category {
	background-color: #ad6ad1;
	color: #fff;
	font-size: 80%;
	padding: 2px 5px;
}

.calendar table .calendar_item .cate1 {
	background-color: #d17bfe;
}

.calendar table .calendar_item .cate2 {
	background-color: #48D1CC;
}

.calendar table .calendar_item .cate3 {
	background-color: #67cafe;
}

.calendar table .calendar_item .cate4 {
	background-color: #33d867;
}

.calendar table .calendar_item .category {}


.calendar .cal_day_tbl {
	margin-bottom: 10px;
}




.calendar .cal_day_tbl th,
.calendar .cal_day_tbl td {
	padding: 5px 10px;
}

.calendar .cal_day_tbl th {
	vertical-align: middle;
	background-color: #eee;
	width: auto;
}




.cal_category_select label {
	display: none;
}


.sect-calendar .one-calendar {
	border: 2px solid #575757;
	border-bottom: 1px solid #575757;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}



.week-wrap.header {
	display: none;
}

.cal-day {
	border-bottom: 1px solid #575757;
	position: relative;
}

.calendar .cal-day.holiday {
	background-color: #ffefdf;
}


.cal-day.blank {
	display: none;
}



.cal-day-head {
	display: table-cell;
	width: 150px;
	font-weight: bold;
	padding: 4%;
	vertical-align: middle;
	border-right: 1px solid #575757;
}

.cal-day-head .day {
	display: block;
	/* width: 30px; */
	text-align: center;
}

.cal-day-head .wday {
	display: block;
	/* width: 30px; */
	text-align: center;
}

.cal-day.holiday .cal-day-head .wday,
.cal-day.holiday .cal-day-head .day,
.cal-day.sunday .cal-day-head .wday,
.cal-day.sunday .cal-day-head .day {
	color: #eb754b;
}


.cal-day.saturday .cal-day-head .wday,
.cal-day.saturday .cal-day-head .day {
	color: #368fa3;
}

.cal-day-head .wday::before {
	content: '(';
}

.cal-day-head .wday::after {
	content: ')';
}


.cal-day-head .label {
	color: #eb754b;
	text-align: center;
	display: block;
	font-size: 80%;
}



.cal-day ul {
	display: table-cell;
	width: auto;
	padding: 20px;
	vertical-align: middle;
}

.cal-day.holiday ul li:first-child {}



#lay-title-wrap h1 {
	margin-bottom: 3%;
}

.sect-calendar-info table {
	width: 100%;
	margin-bottom: 15px;
}

.sect-calendar-info table,
.sect-calendar-info td,
.sect-calendar-info th {
	border-collapse: collapse;
	border: 1px solid #575757;
}

.sect-calendar-info td,
.sect-calendar-info th {
	padding: 5px;
}

.sect-calendar-info th {
	width: 130px;
	background-color: #fff6f0;
}

.sect-calendar-info td {
	background-color: #fff;
}

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

	.sect-calendar-info tr,
	.sect-calendar-info td,
	.sect-calendar-info th {
		display: block;
	}

	.sect-calendar-info td,
	.sect-calendar-info th {
		width: 100%;
	}


}


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

	.cal-day-head {
		width: 90px;
		font-size: 85%;
	}

	.cal-day-head .label {
		line-height: 150%;
		font-size: 70%;
	}

	.cal-day-head .day {
		line-height: 100%;
	}

	.one-calendar ul li {
		display: block;
		font-weight: bold;
		background-image: url(../images/cal_icon.png);
		background-repeat: no-repeat;
		background-position: 0px 15px;
		background-size: 13px;
		padding: 10px 0px 10px 13px;
		font-size: 80%;
		line-height: 150%;
	}

}



/* sect-search-results
============================================================ */

.com-section.sect-search-results {
	width: 100%;
	max-width: 1100px;
	margin: 60px auto !important;
	padding: 0 30px;
}

.search-result-list li .thumb {
	display: none;
}