/*---------------------------------
	buttons start
---------------------------------*/
.buttons{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5em 1.5em;
	font-size: 100%;
	margin: 0;
	padding: 0;
}

.buttons--alignLeft{
	justify-content: flex-start;
}

.innerButton{
	width: 100%;
	justify-content: flex-start;
	gap: 0.5em 1em;
}

/*---------------------------------
	buttons end
---------------------------------*/

/*---------------------------------
	standardButton start
---------------------------------*/
.standardButton{
	display: block;
	min-width: 12.5em;
	padding: 0.75em 1.5em;
	margin: 0;
	color: var(--buttonTextColor);
	text-align: center;
	text-decoration: none;
	font-weight: var(--fontWeightNormal);
	background-color: var(--buttonBgColor);
	border: 2px solid var(--buttonBorderColor);
	transition: background-color 0.25s, color 0.25s;
	border-radius: 0.5em;
}

.standardButton:hover{
	color: var(--buttonActiveTextColor);
	text-decoration: none;
	background-color: var(--buttonActiveBgColor);
}

.standardButton:focus{
	outline: none;
}

.innerButtonItem{
	min-width: 0;
	padding: 0.5em 1em;
	background-color: var(--themeColorC);
	border: 2px solid var(--themeColorC);
	transition: background-color 0.25s, color 0.25s;
}

.innerButtonItem:hover{
	color: var(--themeColorC);
}

/*---------------------------------
	buttons end
---------------------------------*/

/*---------------------------------
	kentFooter start
---------------------------------*/
.kentFooter{
	text-align: center;
	margin: 0;
	padding: 0.1em 1em;
	background: var(--footerBgColor);
	color: var(--footerTextColor);
	font-size: 100%;
}

.kentFooter a,
.kentFooter a:hover{
	color: inherit;
}

/*---------------------------------
	kentFooter end
---------------------------------*/

/*---------------------------------
	sectionTitle start
---------------------------------*/
.sectionTitle{
	width: 100%;
	margin: 0;
	position: relative;
	padding: 0 0 1.1em;
	font-size: 175%;
	font-weight: var(--fontWeightNormal);
	text-align: center;
	background-image: url("../../images/common/sectonTitle.png");
	background-repeat: no-repeat;
	background-size: auto 0.35em;
	background-position: bottom center;
}

/*---------------------------------
	sectionTitle end
---------------------------------*/

/*---------------------------------
	texts start
---------------------------------*/
.texts--alignCenter{
	text-align: center;
}

.texts--alignRight{
	text-align: right;
}

@media(min-width: 1025px){
	.texts--pcAlignCenter{
		text-align: center;
	}
}

.texts--alignRight{
	text-align: right;
}

.texts--size90{
	font-size: 90%;
}

.texts--size110{
	font-size: 110%;
}

.texts--size125{
	font-size: 125%;
}

.texts--size150{
	font-size: 150%;
}

.texts--size175{
	font-size: 175%;
}

.texts--size200{
	font-size: 200%;
}

.texts--size250{
	font-size: 250%;
}

@media(max-width: 600px){
	.texts--spSize100{
		font-size: 100%;
	}
	
	.texts--spSize110{
		font-size: 110%;
	}

	.texts--spSize125{
		font-size: 125%;
	}

	.texts--spSize150{
		font-size: 150%;
	}

	.texts--spSize175{
		font-size: 175%;
	}

	.texts--spSize200{
		font-size: 200%;
	}
}

.texts--weightBold{
	font-weight: var(--fontWeightBold);
}

.texts--lineHeight100{
	line-height: 100%;
}

.texts--lineHeight200{
	line-height: 200%;
}

.texts--indent1{
	padding-left: 1em;
}

.texts--indent2{
	padding-left: 2em;
}

.texts > *{
	margin: 0 0 1em;
}

.texts > *{
	margin: 0 0 1em;
}

.contentAlignCenter{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}

.texts--lastMargin0 > *:last-of-type{
	margin: 0;
}

.texts_text--colorBlack{
	color: #000;
}

.texts_text--colorTheme{
	color: var(--themeColorC);
}

.texts_text--weightBold{
	font-weight: var(--fontWeightBold);
}

.texts_text--size110{
	font-size: 110%;
}

.texts_text--size125{
	font-size: 125%;
}

.texts_text--size150{
	font-size: 150%;
}

.texts_text--size175{
	font-size: 175%;
}

.texts_text--size200{
	font-size: 200%;
}

.texts_text--size225{
	font-size: 225%;
}

.texts_text--size250{
	font-size: 250%;
}

.texts_text--strong{
	font-size: 175%;
	color: var(--themeColor);
	margin-bottom: 1em;
}

.texts_text--alignRight{
	text-align: right;
}

/*---------------------------------
	texts end
---------------------------------*/

/*---------------------------------
	standardTable start
---------------------------------*/
.standardTable{
	width: 100%;
	table-layout: auto;
}

.standardTable--borderBottom tr{
	border-bottom: 1px solid #BFBFBF;
}

.standardTable th,
.standardTable td{
	padding: 1.5rem 0.75rem;
	vertical-align: top;
}

.standardTable--borderGrid th,
.standardTable--borderGrid td{
	border: 2px solid var(--tableBordergridBorderColor);
}

.standardTable th{
	padding-right: 3rem;
	font-weight: var(--fontWeightNormal);
	font-size: 125%;
	color: var(--themeColorC);
	white-space: nowrap;
}

.tableSbutitle{
	display: block;
	margin: 1em 0 0;
	font-size: 1rem;
}

.standardTable--borderGrid th{
	background-color: var(--tableBordergridHeadBgColor);
	color: var(--tableBordergridHeadTextColor);
	white-space: nowrap;
}

.standardTable--borderGrid td{
	background-color: var(--tableBordergridCellBgColor);
	color: var(--tableBordergridCellTextColor);
}

/*---------------------------------
	standardTable end
---------------------------------*/


/*---------------------------------
	innerTable start
---------------------------------*/

.innerTable{
	width: 100%;
	table-layout: auto;
}

.innerTable th{
	font-weight: var(--fontWeightNormal);
	font-size: 100%;
	color: inherit;
	padding: 0 2em 0.5em 0;
	border: hidden;
}

.innerTable td{
	padding: 0 0 0.5em;
	border: hidden;
}

.innerTable tr:last-of-type th,
.innerTable tr:last-of-type td{
	padding-bottom: 0;
}

/*---------------------------------
	innerTable end
---------------------------------*/

/*---------------------------------
	effectin start
---------------------------------*/
.effectin--fadein{
	opacity: 0;
}

.effectin--fadein.is-effectinActive{
	animation: effectinFadein 0.5s 0s both;
}

@keyframes effectinFadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.effectin--delay1.is-effectinActive{
	animation-delay: 0.25s;
}

.effectin--delay2.is-effectinActive{
	animation-delay: 0.5s;
}

.effectin--delay3.is-effectinActive{
	animation-delay: 0.75s;
}

@media(max-width: 600px){
	.effectin--spDelay0.is-effectinActive{
		animation-delay: 0s;
	}
}

/*---------------------------------
	effectin start
---------------------------------*/

/*---------------------------------
	sidePhotoLayout start
---------------------------------*/
.sidePhotoLayout{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.sidePhotoLayout_photo{
	flex-grow: 0;
	flex-shrink: 0;
	width: 35%;
	border-radius: 1em;
	overflow: hidden;
}

@media(min-width: 1025px){
	.sidePhotoLayout--photoLeft .sidePhotoLayout_photo{
		order: 0;
	}
	.sidePhotoLayout--photoRight .sidePhotoLayout_photo{
		order: 1;
	}
}

.sidePhotoLayout_photo--padding0{
	padding: 0;
}

.sidePhotoLayout_content{
	flex-grow: 0;
	flex-shrink: 0;
	width: 60%;
	border-radius: 1em;
	background-color: #FFF;
	padding: 2em 1.5em 3em;
}

.sidePhotoLayout_content--topMargin1{
	padding-top: 1em;
}

.sidePhotoLayout_content--topMargin2{
	padding-top: 2em;
}

.sidePhotoLayout_content--topMargin3{
	padding-top: 3em;
}

@media(min-width: 1025px){
	.sidePhotoLayout--photoLeft .sidePhotoLayout_content{
		order: 1;
	}
	
	.sidePhotoLayout--photoRight .sidePhotoLayout_content{
		order: 0;
	}
}

@media(max-width: 1024px){
	.sidePhotoLayout{
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin: 0 auto;
	}

	.sidePhotoLayout_photo{
		width: 100%;
		max-width: 30em;
		margin: 0;
		padding: 0;
	}

	.sidePhotoLayout_content{
		width: 100%;
		margin: 0 0 2.5em;
		padding: 1.5em 1em 1em;
	}
}

.sidePhotoLayout_photoWrapper{
	position: relative;
	width: 100%;
	padding-top: calc(100% / 4 * 3);
}

.sidePhotoLayout_photoWrapper--ratio4to3{
	padding-top: calc(100% / 4 * 3);
}

.sidePhotoLayout_photoWrapper--ratio5to3{
	padding-top: calc(100% / 5 * 3);
}

.sidePhotoLayout_photoWrapper--ratioOrign{
	padding-top: 0;
}

.sidePhotoLayout_photoImg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sidePhotoLayout_photoImg--fitContain{
	object-fit: contain;
}

.sidePhotoLayout_photoWrapper--ratioOrign .sidePhotoLayout_photoImg{
	position: static;
	width: 100%;
	height: auto;
	object-fit: fill;
}

.sidePhotoLayout_photoWrapper--border{
	border: 2px solid #CCC;
}

/*---------------------------------
	sidePhotoLayout end
---------------------------------*/

/*---------------------------------
	nColumsContents start
---------------------------------*/
.nColumsContents{
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}

.nColumsContents_item{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media(min-width: 1025px){
	.nColumsContents_item{
		width: calc(100% / 2 - 0.5em - 1px);
		margin-bottom: 1em;
	}
	
	.nColumsContents--pcCol4 .nColumsContents_item{
		width: calc(100% / 4 - 0.5em - 1px);
	}
	
	.nColumsContents--pcCol4 .nColumsContents_item:not(:nth-of-type(4n)){
		margin-right: calc(0.5em * 4 / 3);
	}
	
	.nColumsContents--pcCol3 .nColumsContents_item{
		width: calc(100% / 3 - 0.5em - 1px);
	}
	
	.nColumsContents--pcCol3 .nColumsContents_item:not(:nth-of-type(3n)){
		margin-right: calc(0.5em * 3 / 2);
	}
	
	.nColumsContents--pcCol2 .nColumsContents_item{
		width: calc(100% / 2 - 0.5em - 1px);
	}
	
	.nColumsContents--pcCol2 .nColumsContents_item:not(:nth-of-type(2n)){
		margin-right: calc(0.5em * 2);
	}
	
	.nColumsContents--pcCol1 .nColumsContents_item{
		width: 100%;
	}
}

@media(max-width: 1024px) and (min-width: 601px){
	.nColumsContents_item{
		width: calc(100% / 2 - 0.5em - 1px);
		margin-bottom: 1em;
	}
	
	.nColumsContents--tbCol4 .nColumsContents_item{
		width: calc(100% / 4 - 0.5em - 1px);
	}
	
	.nColumsContents--tbCol4 .nColumsContents_item:not(:nth-of-type(4n)){
		margin-right: calc(0.5em * 4 / 3);
	}
	
	.nColumsContents--tbCol3 .nColumsContents_item{
		width: calc(100% / 3 - 0.5em - 1px);
	}
	
	.nColumsContents--tbCol3 .nColumsContents_item:not(:nth-of-type(3n)){
		margin-right: calc(0.5em * 3 / 2);
	}
	
	.nColumsContents--tbCol2 .nColumsContents_item{
		width: calc(100% / 2 - 0.5em - 1px);
	}
	
	.nColumsContents--tbCol2 .nColumsContents_item:not(:nth-of-type(2n)){
		margin-right: calc(0.5em * 2);
	}
	
	.nColumsContents--tbCol1 .nColumsContents_item{
		width: 100%;
	}
}

@media(max-width: 600px){
	.nColumsContents_item{
		width: calc(100% / 2 - 0.5em - 1px);
		margin-bottom: 1em;
	}
	
	.nColumsContents--spCol4 .nColumsContents_item{
		width: calc(100% / 4 - 0.5em - 1px);
	}
	
	.nColumsContents--spCol4 .nColumsContents_item:not(:nth-of-type(4n)){
		margin-right: calc(0.5em * 4 / 3);
	}
	
	.nColumsContents--spCol3 .nColumsContents_item{
		width: calc(100% / 3 - 0.5em - 1px);
	}
	
	.nColumsContents--spCol3 .nColumsContents_item:not(:nth-of-type(3n)){
		margin-right: calc(0.5em * 3 / 2);
	}
	
	.nColumsContents--spCol2 .nColumsContents_item{
		width: calc(100% / 2 - 0.5em - 1px);
	}
	
	.nColumsContents--spCol2 .nColumsContents_item:not(:nth-of-type(2n)){
		margin-right: calc(0.5em * 2);
	}
	
	.nColumsContents--spCol1 .nColumsContents_item{
		width: 100%;
	}
}

.nColumsContentsTable{
	width: 100%;
	table-layout: fixed;
}

.nColumsContentsTable th,
.nColumsContentsTable td{
	padding: 0.5em;
	vertical-align: top;
}

.nColumsContents--borderGrid .nColumsContentsTable th,
.nColumsContents--borderGrid .nColumsContentsTable td{
	border: 2px solid var(--tableBordergridBorderColor);
}

.nColumsContents--borderBottom .nColumsContentsTable th,
.nColumsContents--borderBottom .nColumsContentsTable td{
	border-bottom: 2px solid #CCC;
}

.nColumsContentsTable th{
	text-align: center;
	font-weight: var(--fontWeightBold);
}

.nColumsContents--borderGrid th{
	background-color: var(--tableBordergridHeadBgColor);
	color: var(--tableBordergridHeadTextColor);
}

.nColumsContents--borderGrid td{
	background-color: var(--tableBordergridCellBgColor);
	color: var(--tableBordergridCellTextColor);
}

.nColumsContentsTable_imageCell{
	width: 40%;
}

.nColumsContentsTable_textsCell{
	width: 60%;
}

.nColumsContentsTable_imageWrapper{
	position: relative;
	width: 100%;
	padding-top: calc(100% / 4 * 3);
}

.nColumsContentsTable_imageWrapper img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/*---------------------------------
	nColumsContents end
---------------------------------*/

/*---------------------------------
	newsPickup start
---------------------------------*/
.newsPickup{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

.newsPickupItem{
	margin-bottom: 0;
	border-bottom: 2px solid #CCC;
}

.newsPickupItem_link,
.newsPickupItem_link:hover{
	color: inherit;
	text-decoration: none;
}

.newsPickupItem_link:hover{
	text-decoration: underline;
}

.newsPickupItem_inner{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

.newsPickupItem_date{
	flex-grow: 0;
	flex-shrink: 0;
	width: 8em;
	padding: 0.75em 0.5em;
	margin: 0;
	color: #000000;
}

.newsPickupItem_title{
	flex-grow: 1;
	flex-shrink: 1;
	padding: 0.75em 0.5em;
	margin: 0;
}

@media(max-width: 600px){
	.newsPickupItem_inner{
		flex-direction: column;
		padding: 0.5em 0.5em;
	}
	
	.newsPickupItem_date,
	.newsPickupItem_title{
		width: 100%;
		padding: 0;
		margin-bottom: 0.5em;
		
	}
}

/*---------------------------------
	newsPickup end
---------------------------------*/

/*---------------------------------
	gmap start
---------------------------------*/
.gmap{
	position: relative;
	width: 100%;
	height: 25em;
}

.gmap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*---------------------------------
	gmap end
---------------------------------*/

/*---------------------------------
	youtube start
---------------------------------*/
.youtube{
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding-top: 55%;
}

.youtube iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*---------------------------------
	youtube end
---------------------------------*/

/*---------------------------------
	simpleImage start
---------------------------------*/
.simpleImage_image{
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

/*---------------------------------
	simpleImage end
---------------------------------*/

/*---------------------------------
	telfax start
---------------------------------*/
.telfax{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}

.telfax_item{
	margin: 0 1.5em 1.5em;
}

.telfax_no{
	font-size: 200%;
	margin: 0;
	white-space: nowrap;
}

/*---------------------------------
	telfax end
---------------------------------*/

/*---------------------------------
	mailformTable start
---------------------------------*/
.mailformTable{
	width: 100%;
}

.mailformTable tr{
	border-bottom: 1px solid #CCC;
}

.mailformTable th,
.mailformTable td{
	padding: 1.25em 1em;
	vertical-align: top;
}

.mailformTable th{
	position: relative;
	width: 15em;
	font-weight: var(--fontWeightBold);
	color: #333;
}

@media(min-width: 601px){
	.mailformTable .mailformTable_cell--required,
	.mailformTable .mailformTable_cell--optional{
		padding: 1.25em 4.25em 1.25em 1em;
	}
}

.mailformTable_cell--required:after{
	position: absolute;
	top: 1.375em;
	right: 1.125em;
	display: inline-block;
	padding: 0.1em 0.5em;
	content: "必須";
	color: #FFF;
	font-size: 90%;
	background-color: #CC3333;
	border-radius: 5px;
}

@media(max-width: 600px){
	.mailformTable tr{
		display: block;
		padding: 0.5em 0.5em;
	}
	
	.mailformTable th,
	.mailformTable td{
		display: block;
		width: 100%;
		margin: 0.5em 0;
		padding: 0;
		border: none;
	}
	
	.mailformTable_cell--required,
	.mailformTable_cell--optional{
		padding: 0 4.25em 0 0;
	}
	
	.mailformTable_cell--required:after{
		top: 0;
	}
}

.mailformTable_textForm{
	width: 100%;
	font-size: 90%;
	font-weight: var(--fontWeightNormal);
	margin: 0 0 0.5em;
	padding: 0.25em 0.5em;
	background: #FFF;
	border: 1px solid #aaa;
	border-radius: 2px;
	outline: none;
	transition: background-color 0.25s;
}

.mailformTable_textForm:last-of-type{
	margin-bottom: 0;
}

.mailformTable_textForm:focus{
	background-color: #FFF;
}

.mailformTable_textForm::placeholder{
	color: inherit;
	opacity: 0.3;
}

.mailformTable_textForm:-ms-input-placeholder{
	color: rgba(0,0,0,0.35);
}

.mailformTable_textForm::-ms-input-placeholder{
	color: rgba(0,0,0,0.35);
}

.mailformTable_textarea{
	width: 100%;
	height: 10em;
	font-size: 90%;
	font-weight: var(--fontWeightNormal);
	margin: 0;
	padding: 0.5em 1em;
	background: #FFF;
	border: 1px solid #aaa;
	border-radius: 2px;
	outline: none;
	transition: background-color 0.25s;
}

.mailformTable_textarea:focus{
	background-color: #FFF;
}

.mailformTable_textarea::placeholder{
	color: inherit;
	opacity: 0.35;
}

.mailformTable_textarea:-ms-input-placeholder {
	color: rgba(0,0,0,0.35);
}

.mailformTable_textarea::-ms-input-placeholder {
	color: rgba(0,0,0,0.35);
}

.mailformTable .msg{
	color: #FF0000;
}

/*---------------------------------
	mailformTable end
---------------------------------*/

/*---------------------------------
	radiobuttonsList start
---------------------------------*/
.radiobuttonsList{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.radiobuttonsList_item{
	margin: 0.25em 1.5em 0.25em 0;
}

.radiobuttonsList_item label{
	margin: 0;
}

.radiobuttonsList_item input[type="radio"]{
	margin-right: 0.25em;
}

/*---------------------------------
	radiobuttonsList end
---------------------------------*/

/*---------------------------------
	checkboxList start
---------------------------------*/
.checkboxList{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.checkboxList_item{
	margin: 0.25em 1.5em 0.25em 0;
}

.checkboxList_item label{
	margin: 0;
}

.checkboxList_item input[type="checkbox"]{
	margin-right: 0.25em;
}

/*---------------------------------
	radiobuttonsList end
---------------------------------*/

/*---------------------------------
	blog start
---------------------------------*/
.blogLayout{
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}

@media(max-width: 1024px){
	.blogLayout{
		flex-direction: column;
	}
}

.blogLayout_articles{
	flex-grow: 1;
	flex-shrink: 1;
}

@media(max-width: 1024px){
	.blogLayout_articles{
		width: 100%;
		margin-bottom: 5em;
	}
}

.blogLayout_sidebar{
	flex-grow: 0;
	flex-shrink: 0;
	width: 25%;
	margin-left: 10%;
}

@media(max-width: 1024px){
	.blogLayout_sidebar{
		width: 100%;
		margin-left: 0;
	}
}

.blogArticlesItem{
	padding: 0;
	margin-bottom: 3em;
	padding-bottom: 3em;
	border-bottom: 1px solid #CCC;
}

.blogArticlesItem_cate{
	text-align: right;
}

.blogArticlesItem_body{
	margin: 0 0 2em;
}

.blogArticlesItem_body img{
	max-width: 100%;
}

.blogArticlesItemTitle{
	margin-bottom: 1em;
	padding: 0.5em 0;
	font-size: 150%;
	font-weight: var(--fontWeightBold);
	color: #000;
	border-bottom: 2px solid var(--mainTextColor);
}

.blogArticlesItemTitle_link,
.blogArticlesItemTitle_link:hover{
	color: inherit;
}

.blogArticlesItemTitle_link{
	text-decoration: none;
}

.blogArticlesItemTitle_link:hover{
	text-decoration: underline;
}

.blogWidgets{
	display: flex;
}

@media(min-width: 1025px){
	.blogWidgets{
		flex-direction: column;
	}
}

@media(max-width: 1024px){
	.blogWidgets{
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
	}
}

.blogWidgetsItem{
	margin-bottom: 2em;
}

@media(max-width: 1024px) and (min-width: 601px){
	.blogWidgetsItem{
		width: calc(100% / 2 - 1em);
	}
}

@media(max-width: 600px){
	.blogWidgetsItem{
		width: 100%;
	}
}

.blogWidgetsItem_content{
	padding: 0.5em;
}

.blogWidgetsItemListWrapper ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.blogWidgetsItemListWrapper li{
	position: relative;
	padding: 0.25em 0.25em 0.25em calc(0.25em + 1em);
}

.blogWidgetsItemListWrapper li:before{
	content: "・";
	position: absolute;
	top: 0.25em;
	left: 0;
}

.blogWidgetsItemListWrapper li a,
.blogWidgetsItemListWrapper li a:hover{
	color: inherit;
}

.blogWidgetsItemListWrapper li a{
	text-decoration: none;
}

.blogWidgetsItemTitle{
	padding: 0.25em 0;;
	margin-bottom: 0.5em;
	font-size: 125%;
	font-weight: var(--fontWeightBold);
	border-bottom: 2px solid var(--mainTextColor);
}

.blogRssLinkWrapper{
	text-align: left;
}

.blogRssLinkWrapper img{
	display: inline-block;
	width: auto;
	margin: 0 0.1em 0 0;
}

.blogRssLinkWrapper a,
.blogRssLinkWrapper a:hover{
	text-decoration: none;
	color: inherit;
}

/*---------------------------------
	blog end
---------------------------------*/

/*---------------------------------
	searchBox start
---------------------------------*/
.searchBox{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.searchBox_textBox{
	flex-grow: 1;
	flex-shrink: 1;
	width: 100%;
	margin-right: 0.5em;
	padding: 0.25em 0.5em;
	font-size: 90%;
	background: #FFF;
	border: 1px solid #CCC;
	outline: none;
}

.searchBox_textBox::placeholder{
	color: inherit;
	opacity: 0.35;
}

.searchBox_textBox:-ms-input-placeholder {
	color: rgba(0,0,0,0.35);
}

.searchBox_textBox::-ms-input-placeholder {
	color: rgba(0,0,0,0.35);
}

.searchBox_submitButton{
	width: 5em;
	padding: 0.25em 0.5em;
	color: var(--buttonTextColor);
	font-size: 90%;
	font-weight: var(--fontWeightBold);
	text-align: center;
	background-color: var(--buttonBgColor);
	border: 2px solid var(--buttonBorderColor);
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	cursor: pointer;
	outline: none;
	transition: color 0.25s, background-color 0.25s;
}

.searchBox_submitButton,
.searchBox_submitButton:hover{
	color: var(--buttonTextColor);
}

.searchBox_submitButton:hover{
	color: var(--buttonActiveTextColor);
	background-color: var(--buttonActiveBgColor);
}

.searchBox_submitButton input::-webkit-search-decoration{
	display: none;
}

.searchBox_submitButton input::focus{
	outline-offset: -2px;
}

/*---------------------------------
	searchBox end
---------------------------------*/

/*---------------------------------
	pager start
---------------------------------*/
.pager{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pager > *{
	margin: 0 0.5em 0.5em;
	padding: 0.25em 0.5em;
	color: var(--buttonTextColor);
	text-align: center;
	background-color: var(--buttonBgColor);
	border: 1px solid var(--buttonBorderColor);
	outline: none;
	transition: color 0.25s, background-color 0.25s;
}

.pager > a,
.pager > a:hover{
	color: var(--buttonTextColor);
	text-decoration: none;
}

.pager > a:hover,
.pager > span{
	color: var(--buttonActiveTextColor);
	background-color: var(--buttonActiveBgColor);
}

/*---------------------------------
	pager end
---------------------------------*/

/*---------------------------------
	contentWrapper start
---------------------------------*/

.contentWrapper{
	display: block;
	width: 100%;
	padding: 2.5em 2em 3em;
	background-color: #FFF;
	border-radius: 1em;
}

/*---------------------------------
	contentWrapper end
---------------------------------*/

