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

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

.buttons--vertically{
	flex-direction: column;
	align-items: center;
}

@media(max-width: 1024px) and (min-width: 601px){
	.buttons--tbAlignLeft{
		justify-content: flex-start;
	}
}

@media(max-width: 600px){
	.buttons--spAlignLeft{
		justify-content: flex-start;
	}
}

.buttons--gapNarrow{
	gap: 0.5em 1em;
}

.buttons a{
	text-decoration: none;
}

.buttons input{
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	cursor: pointer;
}

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

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

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

/*---------------------------------
	standardButton start
---------------------------------*/
.standardButton{
	--standardButtonBgColor: var(--buttonBgColor);
	--standardButtonActiveBgColor: var(--buttonActiveBgColor);
	--standardButtonTextColor: var(--buttonTextColor);
	--standardButtonActiveTextColor: var(--buttonActiveTextColor);
	--standardButtonBorderColor: var(--buttonBgColor);
	--standardButtonBorderWidth: 2px;
	--standardButtonPaddingX: 1.5em;
	--standardButtonPaddingY: 0.75em;
	display: block;
	max-width: 100%;
	min-width: 10em;
	padding: var(--standardButtonPaddingY) var(--standardButtonPaddingX);
	color: var(--standardButtonTextColor);
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	background-color: var(--standardButtonBgColor);
	border:  var(--standardButtonBorderWidth) solid var(--standardButtonBorderColor);
	outline: none !important;
	transition: background-color 0.25s, color 0.25s;
}

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

.standardButton--small{
	--standardButtonPaddingX: 1.5em;
	--standardButtonPaddingY: 0.5em;
	font-size: 90%;
}

.standardButton--x{
	--standardButtonTextColor: #FFF;
	--standardButtonBgColor: #000;
	--standardButtonActiveTextColor: #000;
	--standardButtonActiveBgColor: #FFF;
	--standardButtonBorderColor: #000;
}

.standardButton--facebook{
	--standardButtonTextColor: #FFF;
	--standardButtonBgColor: #1877f2;
	--standardButtonActiveTextColor: #1877f2;
	--standardButtonActiveBgColor: #FFF;
	--standardButtonBorderColor: #1877f2;
}

.standardButton--line{
	--standardButtonTextColor: #FFF;
	--standardButtonBgColor: #06c655;
	--standardButtonActiveTextColor: #06c655;
	--standardButtonActiveBgColor: #FFF;
	--standardButtonBorderColor: #06c655;
}

.standardButton--instagram{
	position: relative;
	padding: calc(var(--standardButtonPaddingY) + var(--standardButtonBorderWidth)) calc(var(--standardButtonPaddingX) + var(--standardButtonBorderWidth));
	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%);
	color: #FFF;
	border: none;
}

.standardButton--instagram:before{
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - (var(--standardButtonBorderWidth) * 2));
	height: calc(100% - (var(--standardButtonBorderWidth) * 2));
	background-color: #FFF;
	visibility: hidden;
	opacity: 0;
	transition: all 0.25s;
}

.standardButton--instagram:hover:before{
	visibility: visible;
	opacity: 1;
}

.standardButton--instagram:hover span{
	position: relative;
	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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texts--colorBlack,
.texts_text--colorBlack{
	color: #333;
}

.texts--colorWarning,
.texts_text--colorWarning{
	color: #FF3333;
}

.texts_text--markerLine{
	display: inline;
	background: linear-gradient(transparent 70%, var(--markerlineColor) 70%, var(--markerlineColor) 100%, transparent 100%);
}

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

/*---------------------------------
	list start
---------------------------------*/
.list{
	list-style: none;
	margin-bottom: 1em;
	padding: 0;
}

.list li{
	position: relative;
	padding-left: 1.25em;
}

.list li:before{
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}

/*---------------------------------
	list end
---------------------------------*/

/*---------------------------------
	ordedList start
---------------------------------*/
.ordedList{
	list-style: none;
	counter-reset: list-count;
	margin-bottom: 1em;
	padding: 0;
}

.ordedList li{
	position: relative;
	padding-left: 1.25em;
}

.ordedList li:before{
	counter-increment: list-count;
	content: counter(list-count) ".";
	position: absolute;
	top: 0;
	left: 0;
}

.ordedList--brackets li{
	padding-left: 1.5em;
}

.ordedList--brackets li:before{
	content: "(" counter(list-count) ")";
}

.ordedList--latin li:before{
	content: counter(list-count, lower-latin) ".";
}

/*---------------------------------
	ordedList end
---------------------------------*/

/*---------------------------------
	list-style
---------------------------------*/

.ListstyleSimple{
	list-style-type: '\30FB';
	padding-left: 1em;
	margin-bottom: 0;
}

.ListstyleSimple.style-flower{
	list-style-type: '\203B';
}

.ListstyleSimple.style-check{
	list-style-type: '\02714';
}

.ListstyleSimple.StyleNakaguro{
	list-style-type:'\025cf';
}

/*--------------------------------
	list-style
---------------------------------*/


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

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

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

@media(min-width: 601px){
	.borderTable th,
	.borderTable td{
		padding: 0.75em 0.5em;
		vertical-align: top;
	}
}

@media(max-width: 600px){
	.borderTable tbody{
		display: flex;
		flex-direction: column;
	}
	
	.borderTable tr{
		display: flex;
		flex-direction: column;
		gap: 0.5em;
		padding: 0.5em 0.5em 0.75em;
	}
}

/*---------------------------------
	borderTable end
---------------------------------*/

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

@media(max-width: 1024px){
	.gridTable--tbScroll{
		display: block;
		width: auto;
		min-width: 100%;
		overflow-x: scroll;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}
	
	.gridTable--tbScroll tbody {
		width: 100%;
		display: table;
	}
}

@media(max-width: 600px){
	.gridTable--spScroll{
		display: block;
		width: auto;
		min-width: 100%;
		overflow-x: scroll;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}
	
	.gridTable--spScroll tbody {
		width: 100%;
		display: table;
	}
}

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

.gridTable th,
.gridTable td{
	border: 2px solid var(--gridTableBorderColor);
}

.gridTable th{
	font-weight: var(--fontWeightBold);
	color: var(--gridTableHeadTextColor);
	background-color: var(--gridTableHeadBgColor);
}

.gridTable td{
	background-color: var(--gridTableCellBgColor);
	color: var(--gridTableCellTextColor);
}

/*---------------------------------
	gridTable 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: 45%;
}

@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: 50%;
}

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

.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_photoImg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

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

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

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

.sidePhotoLayout2_photo{
	flex-grow: 0;
	flex-shrink: 0;
	width: 30%;
}

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

.sidePhotoLayout2_photo--padding0{
	padding: 0;
}

.sidePhotoLayout2_content{
	flex-grow: 0;
	flex-shrink: 0;
	width: 65%;
}

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

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

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

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

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

	.sidePhotoLayout2_photo{
		width: 100%;
		max-width: 17em;
		margin: 0;
		padding: 0;
	}

	.sidePhotoLayout2_content{
		width: 100%;
		margin: 0 0 2.5em;
		padding: 0;
		padding: 0;
	}
}

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

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

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

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

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

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

/*---------------------------------
	sidePhotoLayout2 end
---------------------------------*/



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

.nColumsContents_item{
	width: calc((100% - var(--gapX) * (var(--col) - 1) - 1px) / var(--col));
}

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

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

@media(max-width: 600px){
	.nColumsContents{
		--col: 1;
	}
	
	.nColumsContents--spCol4{
		--col: 4;
	}
	
	.nColumsContents--spCol3{
		--col: 3;
	}
	
	.nColumsContents--spCol2{
		--col: 2;
	}
	
	.nColumsContents--spCol1{
		--col: 1;
	}
}

.nColumsContents_itemLink,
.nColumsContents_itemLink:hover{
	display: block;
	text-decoration: none;
	color: inherit;
}

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

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

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

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

.imageFrame img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.25s;
}

a:hover .imageFrame img{
	transform: scale(1.1);
}

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

/*---------------------------------
	flow start
---------------------------------*/
.flow{
	--gap: 7rem;
	--arrowColor: var(--flowArrowColor);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--gap);
}

@media(max-width: 600px){
	.flow{
		--gap: 5rem;
	}
}

.flow_item{
	position: relative;
	width: 100%;
	padding: 1em;
	border: 3px solid var(--flowBorderColor);
	background-color: var(--flowBackgroundColor);
}

.flow_item:not(:last-of-type):after{
	content: "▼";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: var(--gap);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 200%;
	color: var(--flowArrowColor);
}

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