/*---------------------------------
	buttons start
---------------------------------*/

.buttons{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 100%;
	margin: 0;
	padding: 0;
}

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

.drawerNavButton{
	gap: 1em 2em;
	width: 90%;
	margin: 0 auto;
}

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

/*---------------------------------
	standardButton start
---------------------------------*/

.standardButton{
	display: block;
	min-width: 12.5em;
	padding: 1em 1.5em;
	margin: 1em;
	color: var(--buttonTextColor);
	text-align: center;
	text-decoration: none;
	font-weight: var(--fontWeightBold);
	background-color: var(--buttonBgColor);
	border:  2px solid var(--buttonBorderColor);
	transition: background-color 0.25s, color 0.25s;
}

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

.standardButton:focus{
	outline: none;
}

.standardButton--medium{
	display: block;
	min-width: 10em;
	padding: 0.75em 1em;
	margin: 0;
}

.standardButton--small{
	display: block;
	min-width: 10em;
	padding: 0.5em 0.75em;
	margin: 0.5em 1em;
}

.drawerNavButton .standardButton,
.drawerNavButton .standardButton--small{
	width: calc((100% - 2em) / 2);
	margin: 0;
	min-width: 0;
}

.standardButton--black{
	background-color: #FFF;
	color: var(--mainTextColor);
	border: 2px solid var(--mainTextColor);
}

.standardButton--black:hover{
	color: #FFF;
	background-color: var(--mainTextColor);
}

.standardButton--line{
	background-color: #00B900;
	border: 2px solid #00B900;
}

.standardButton--line:hover{
	color: #00B900;
	background-color: #FFF;
}

.standardButton--facebook{
	background-color: #0866FF;
	border: 2px solid #0866FF;
}

.standardButton--facebook:hover{
	color: #0866FF;
	background-color: #FFF;
}

.standardButton--twitter{
	background-color: #1D9BF0;
	border: 2px solid #1D9BF0;
}

.standardButton--twitter:hover{
	color: #1D9BF0;
	background-color: #FFF;
}

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

/*---------------------------------
	clipButton start
---------------------------------*/

.clipButton{
	display: block;
	padding: 2px;
	margin: 1em;
	text-decoration: none;
	background-color: var(--buttonBgColor);
	border: none;
	transition: background-color 0.25s, color 0.25s;
	position: relative;
}

.clipButtonInner{
	display: block;
	min-width: 12.5em;
	padding: 1em 1.5em;
	margin: 0;
	color: var(--buttonTextColor);
	text-align: center;
	text-decoration: none;
	font-weight: var(--fontWeightBold);
	background-color: transparent;
	transition: background-color 0.25s, color 0.25s;
}

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

.clipButton:focus{
	outline: none;
}

.clipButton:hover{
	padding: 0;
}

.clipButton--small{
	margin: 0.5em 1em;
}

.clipButton:hover .clipButtonInner{
	min-width: calc(12.5em + (2px * 2));
	padding: calc(1em + 2px) calc(1.5em + 2px);
	background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	position: relative;
	z-index: 2;
}

.clipButton--small .clipButtonInner{
	display: block;
	min-width: 10em;
	padding: 0.5em 0.75em;
	margin: 0;
}

.drawerNavButton .clipButton,
.drawerNavButton .clipButton--small{
	width: calc((100% - 2em) / 2);
	margin: 0;
}

.drawerNavButton .clipButton .clipButtonInner,
.drawerNavButton .clipButton--small .clipButtonInner{
	min-width: 0;
}

.clipButton--small:hover .clipButtonInner{
	min-width: calc(10em + (2px * 2));
	padding: calc(0.5em + 2px) calc(0.75em + 2px);
	margin: 0;
}

.clipButton:before{
	content: "";
	background-color: #FFF;
	position: absolute;
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.25s;
}

.clipButton:hover:before{
	opacity: 1;
}

.clipButton--insta,
.clipButton--insta:hover{
	background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
}

/*---------------------------------
	clipButton 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{
	position: relative;
	padding: 0 0 0.25em;
	font-size: 175%;
	font-weight: var(--fontWeightBold);
	text-align: center;
}

.sectionTitle:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 2em;
	border-bottom: 2px solid var(--mainTextColor);
	transform: translateX(-50%);
}

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

/*---------------------------------
	sectionTitle start
---------------------------------*/

.sectionSubtitle{
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0 0.25em;
	padding: 0;
	font-size: 125%;
	font-weight: var(--fontWeightBold);
	margin: 0 0 1rem;
}

.sectionSubtitle--center{
	justify-content: center;
}

.sectionSubtitle--150{
	font-size: 150%;
}

.sectionSubtitle > *{
	display: block;
	margin: 0;
}

.sectionSubtitle--markYellow:before{
	content: "\25CF";
	color: #FFC000;
}

.sectionSubtitle--markGreen:before{
	content: "\25CF";
	color: #008000;
}

.sectionSubtitle--markPink:before{
	content: "\25CF";
	color: #FF00FF;
}

.sectionSubtitle--markBlue:before{
	content: "\25CF";
	color: #33CCFF;
}

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

/*---------------------------------
	texts start
---------------------------------*/

.texts--alignCenter{
	text-align: center;
}

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

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

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

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

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

.texts--size145{
	font-size: 145%;
}

.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--margin0 > *{
	margin: 0;
}

.texts > *:last-child{
	margin-bottom: 0;
}

.texts_text--colorRed{
	color: #FF0066;
}

.texts_text--colorOrange{
	color: #ffc000;
}

.texts_text--colorBlue{
	color: #33ccff;
}

.texts_text--colorGreen{
	color: #008000;
}

.texts_text--colorPink{
	color: #ff00ff;
}

.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--alignRight{
	text-align: right;
}

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

/*---------------------------------
	standardTable start
---------------------------------*/

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

.standardTable--borderBottom tr{
	border-bottom: 2px solid #CCC;
}

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

.standardTable--vAlMiddle th,
.standardTable--vAlMiddle td{
	vertical-align: middle;
}

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

.standardTable th{
	font-weight: var(--fontWeightBold);
}

.standardTable--borderGrid th{
	background-color: #fce4d6;
	color: var(--tableBordergridHeadTextColor);
}

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

.standardTable--bottomExtra tbody{
	display: flex;
	flex-direction: column;
	gap: 1em;
	width: 100%;
}

.standardTable--bottomExtra tr{
	dispplay: block;
	border: 2px solid #CCC;
	width: 100%;
}

.standardTable--bottomExtra th{
	background-color: #d9e1f2;
	display: block;
	width: 100%;
	padding: 0.75em 1em;
	margin: 0;
}

.standardTable--bottomExtra td{
	background-color: #FFF;
	display: block;
	width: 100%;
	padding: 0.75em 1em;
	margin: 0;
}

.standardTable--borderExtra tbody{
	display: flex;
	flex-direction: column;
	gap: 0.25em;
	width: 100%;
}

.standardTable--borderExtra tr{
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0 0.5em;
	width: 100%;
}

.standardTable--borderExtra th{
	background-color: #c6e0b4;
	width: calc((100% - 0.5em) * 0.3);
	text-align: left;
	padding: 0.75em 1em;
	font-weight: var(--fontWeightBold);
}

.standardTable--borderExtra td{
	background-color: #FFF;
	width: calc((100% - 1em) * 0.7);
	padding: 0.75em 1em;
	border-bottom: 2px solid var(--tableBordergridBorderColor);
}

@media(max-width: 600px){
	.standardTable--borderExtra tbody{
		display: flex;
		flex-direction: column;
		gap: 1em;
		width: 100%;
	}
	.standardTable--borderExtra tr{
		display: block;
		width: 100%;
	}
	.standardTable--borderExtra th,
	.standardTable--borderExtra td{
		display: block;
		width: 100%;
	}
}

/*---------------------------------
	standardTable 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{
	--photoWidth: 45%;
	--contentGap: 5%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.sidePhotoLayout--photoSmall{
	--photoWidth: 35%;
	--contentGap: 7%;
}

.sidePhotoLayout_photo{
	display: flex;
	flex-direction: column;
	gap: 2em;
	flex-grow: 0;
	flex-shrink: 0;
	width: var(--photoWidth);
}

@media(min-width: 1201px){
	.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: calc(100% - var(--photoWidth) - var(--contentGap));
}

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

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

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

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

@media(max-width: 1200px){
	.sidePhotoLayout{
		flex-direction: column;
		align-items: center;
		gap: 2.5em;
		width: 100%;
		margin: 0 auto;
	}
	.sidePhotoLayout_photo{
		width: 100%;
		max-width: 30em;
		margin: 0;
		padding: 0;
	}
	.sidePhotoLayout_content{
		width: 100%;
		margin: 0;
		padding: 0;
	}
	.sidePhotoLayout--photoSmall .sidePhotoLayout_photo{
		max-width: 80%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
}

@media(max-width: 600px){
	.sidePhotoLayout--photoSmall .sidePhotoLayout_photo{
		max-width: 80%;
		flex-direction: column;
		justify-content: flex-start;
	}
}

.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--ratioOrigin{
	padding-top: 0;
}

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

.sidePhotoLayout_photoWrapper--ratioOrigin .sidePhotoLayout_photoImg{
	position: static;
	height: auto;
	object-fit: fill;
}

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

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

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

/*---------------------------------
	nColumsContents start
---------------------------------*/

.nColumsContents{
	--gapX: 2em;
	--gapY: 2em;
	--nColumn: 1;
	list-style: none;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: var(--gapY) var(--gapX);
	padding: 0;
	margin: 0;
}

.nColumsContents_item{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: calc((100% - (var(--gapX) * (var(--nColumn) - 1))) / var(--nColumn));
}

.nColumsContents_link,
.nColumsContents_link:hover{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 0.5em;
	width: 100%;
	color: inherit;
	text-decoration: none;
}

@media(min-width: 1201px){
	.nColumsContents--pcCol4{
		--nColumn: 4;
	}
	.nColumsContents--pcCol3{
		--nColumn: 3;
	}
	.nColumsContents--pcCol2{
		--nColumn: 2;
	}
	.nColumsContents--pcCol1{
		--nColumn: 1;
	}
}

@media(max-width: 1200px) and (min-width: 601px){
	.nColumsContents{
		--gapX: 2em;
	}
	.nColumsContents--tbCol4{
		--nColumn: 4;
	}
	.nColumsContents--tbCol3{
		--nColumn: 3;
	}
	.nColumsContents--tbCol2{
		--nColumn: 2;
	}
	.nColumsContents--tbCol1{
		--nColumn: 1;
	}
}

@media(max-width: 600px){
	.nColumsContents{
		--gapX: 1em;
		--gapY: 3em;
	}
	.nColumsContents--spGapY1{
		--gapY: 1em;
	}
	.nColumsContents--spCol4{
		--nColumn: 4;
	}
	.nColumsContents--spCol3{
		--nColumn: 3;
	}
	.nColumsContents--spCol2{
		--nColumn: 2;
	}
	.nColumsContents--spCol1{
		--nColumn: 1;
	}
}

.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,
.nColumsContentsTable_textsCell{
	width: 100%;
	margin: 0;
}

.nColumsContentsTable_textsCell_textGrow{
	flex-grow: 1;
	
	> div{
		height:100%;
	}
}

.nColumsContentsTable_textsCell_textGrow .fboxalignCenter{
	
	display:flex;
	align-items: center;
	justify-content: center;
	
}

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

.nColumsContentsTable_imageWrapper--ratioGold{
	padding-top: 61.8%;
}

.nColumsContentsTable_imageWrapper--ratioOrigin{
	padding-top: 0;
}

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

.nColumsContentsTable_imageWrapper--ratioOrigin img{
	position: static;
	height: auto;
	object-fit: fill;
}

.nColumsContentsTable_imageLink{
	background-color: #FFF;
	display: block;
}

.nColumsContentsTable_imageLink img{
	transition: opacity 0.25s;
}

.nColumsContentsTable_imageLink:hover img{
	opacity: 0.8;
}

/*---------------------------------
	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: 1200px){
	.blogLayout{
		flex-direction: column;
	}
}

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

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

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

@media(max-width: 1200px){
	.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: 1201px){
	.blogWidgets{
		flex-direction: column;
	}
}

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

.blogWidgetsItem{
	margin-bottom: 2em;
}

@media(max-width: 1200px) 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 > .backButton{
	margin: 0;
	padding: 0.5em 1em;
}

.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
---------------------------------*/
