/*---------------------------------
	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--gapNarrow{
	gap: 0.75em 0.5em;
}

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

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

/*---------------------------------
	standardButton start
---------------------------------*/
.standardButton{
	--borderWidth: 2px;
	--paddingX: 2em;
	--paddingY: 0.75em;
	display: block;
	padding: var(--paddingY) var(--paddingX);
	color: var(--buttonTextColor);
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	background-color: var(--buttonBgColor);
	border:  var(--borderWidth) solid var(--buttonBorderColor);
	border-radius: clamp(5px, 0.25em, 10px);
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	transition: all 0.25s;
}

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

.standardButton:focus{
	outline: none;
}

.standardButton--small{
	--paddingX: 1em;
	--paddingY: 0.5em;
	font-size: 90%;
}

.standardButton--colorGray{
	--buttonTextColor: #FFF;
	--buttonBgColor: #888;
	--buttonActiveTextColor: #888;
	--buttonActiveBgColor: #FFF;
	--buttonBorderColor: #888;
}

.standardButton--facebook{
	--buttonTextColor: #FFF;
	--buttonBgColor: #1877f2;
	--buttonActiveTextColor: #1877f2;
	--buttonActiveBgColor: #FFF;
	--buttonBorderColor: #1877f2;
}

.standardButton--line{
	--buttonTextColor: #FFF;
	--buttonBgColor: #06c655;
	--buttonActiveTextColor: #06c655;
	--buttonActiveBgColor: #FFF;
	--buttonBorderColor: #06c655;
}

.standardButton--instagram{
	position: relative;
	padding: calc(var(--paddingY) + var(--borderWidth)) calc(var(--paddingX) + var(--borderWidth));
	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(--borderWidth) * 2));
	height: calc(100% - (var(--borderWidth) * 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
---------------------------------*/

/*---------------------------------
	sectionTitle start
---------------------------------*/
.sectionTitle{
	position: relative;
	font-size: 175%;
	font-weight: bold;
	text-align: left;
	letter-spacing: var(--f-letterSpacing-catch);
}

.sectionTitle span{
	position: relative;
	display: block;
	font-size: 60%;
	line-height: 1.1;
	color: #666;
}

.sectionTitle span:before{
	content: "";
	position: absolute;
	top: calc(0.5em - 1px);
	right: calc(100% + 0.5em);
	width: 0.5em;
	border-bottom: 2px solid var(--c-hex-accent);
}

.sectionSubtitle{
	font-weight: bold;
}

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

/*---------------------------------
	simpleTitle start
---------------------------------*/
.simpleTitle{
	font-size: 175%;
	margin-bottom: 2em;
}

/*---------------------------------
	simpleTitle end
---------------------------------*/

/*---------------------------------
	kentFooter start
---------------------------------*/
.kentFooter{
	text-align: center;
	margin: 0;
	padding: 0.1em 1em;
	background: #BBBBBB;
	color: #333;
	font-size: 100%;
}

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

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

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

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

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

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

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

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

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

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

.texts--frame{
	border: 2px solid #AAA;
	padding: 1em;
}

.texts--frameFitContent{
	width: fit-content;
	border: 2px solid #AAA;
	padding: 1em;
}

.texts a{
	color: inherit;
	text-decoration: underline;
}

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

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

.texts--margin0 > *{
	margin: 0;
}

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

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

.texts_text--colorGray{
	color: #888;
}

.texts_text--weightBold{
	font-weight: bold;
}

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

/*---------------------------------
	noticeBlock start
---------------------------------*/
.noticeBlock{
	background-color: rgba(var(--subColor01_rgb),0.25);
	padding: 2.5em 1.5em;
}

/*---------------------------------
	catchText end
---------------------------------*/

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

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

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

.basicTable th{
	font-weight: bold;
	color:  #666;
}

/*---------------------------------
	basicTable end
---------------------------------*/

/*---------------------------------
	alignTable start
---------------------------------*/
.alignTable > tbody > tr > th,
.alignTable > tbody > tr > td{
	padding-right: 1em;
	white-space: nowrap; 
}

/*---------------------------------
	alignTable end
---------------------------------*/

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

@media(min-width: 601px){
	.images--col2 .images_item{
		width: calc(100% / 2 - 1em);
	}
	
	.images--col2 .images_item:not(:nth-of-type(2n)){
		margin-right: 2em;
	}
}

@media(max-width: 600px){
	.images_item{
		width: 100%;
		margin-bottom: 1.5em;
	}
}

.images_imageWrapper{
	position: relative;
	width: 100%;
	padding-top: calc(100% / 4 * 3);
	border-radius: 10px;
	overflow: hidden;
}

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

/*---------------------------------
	images end
---------------------------------*/

/*---------------------------------
	sideMediaLayout start
---------------------------------*/
.sideMediaLayout{
	--gapX: 3em;
	--gapY: 3em;
	display: flex;
	align-items: flex-start;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 0 var(--gapX);
}

.sideMediaLayout_media{
	flex-grow: 0;
	flex-shrink: 0;
	width: calc((100% - var(--gapX)) / 2);
}

.sideMediaLayout_content{
	flex-grow: 0;
	flex-shrink: 0;
	width: calc((100% - var(--gapX)) / 2);
}

.sideMediaLayout--ratio1to1 .sideMediaLayout_media,
.sideMediaLayout--ratio1to1 .sideMediaLayout_content{
	width: calc((100% - var(--gapX)) / 2);
}

.sideMediaLayout--ratio6to4 .sideMediaLayout_media{
	width: calc((100% - var(--gapX)) * 0.6);
}

.sideMediaLayout--ratio6to4 .sideMediaLayout_content{
	width: calc((100% - var(--gapX)) * 0.4);
}

.sideMediaLayout--ratio7to3 .sideMediaLayout_media{
	width: calc((100% - var(--gapX)) * 0.7);
}

.sideMediaLayout--ratio7to3 .sideMediaLayout_content{
	width: calc((100% - var(--gapX)) * 0.3);
}

.sideMediaLayout--ratio4to6 .sideMediaLayout_media{
	width: calc((100% - var(--gapX)) * 0.4);
}

.sideMediaLayout--ratio4to6 .sideMediaLayout_content{
	width: calc((100% - var(--gapX)) * 0.6);
}

.sideMediaLayout--ratio45to55 .sideMediaLayout_media{
	width: calc((100% - var(--gapX)) * 0.45);
}

.sideMediaLayout--ratio45to55 .sideMediaLayout_content{
	width: calc((100% - var(--gapX)) * 0.55);
}

.sideMediaLayout--ratio3to7 .sideMediaLayout_media{
	width: calc((100% - var(--gapX)) * 0.3);
}

.sideMediaLayout--ratio3to7 .sideMediaLayout_content{
	width: calc((100% - var(--gapX)) * 0.7);
}

@media(min-width: 1025px){
	.sideMediaLayout--mediaFirst .sideMediaLayout_media{
		order: 0;
	}

	.sideMediaLayout--mediaFirst .sideMediaLayout_content{
		order: 1;
	}

	.sideMediaLayout--contentFirst .sideMediaLayout_media{
		order: 1
	}

	.sideMediaLayout--contentFirst .sideMediaLayout_content{
		order: 0;
	}
}

@media(max-width: 1024px){
	.sideMediaLayout{
		flex-direction: column-reverse;
		align-items: center;
		gap: var(--gapY) 0;
	}

	.sideMediaLayout .sideMediaLayout_media{
		width: 100%;
		max-width: 600px;
		margin: 0;
	}

	.sideMediaLayout .sideMediaLayout_content{
		width: 100%;
	}
}

/*---------------------------------
	sideMediaLayout end
---------------------------------*/

/*---------------------------------
	imageFrame start
---------------------------------*/
.imageFrame{
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 30em;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.imageFrame--ratio1to1{
	aspect-ratio: 1 / 1;
}

.imageFrame--ratio4to3{
	aspect-ratio: 4 / 3;
}

.imageFrame--ratio5to3{
	aspect-ratio: 5 / 3;
}

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

.imageFrame--fitContain img{
	object-fit: contain;
}

/*---------------------------------
	imageFrame end
---------------------------------*/

/*---------------------------------
	simpleCol2Layout start
---------------------------------*/
.simpleCol2Layout{
	display: flex;
}

@media(min-width: 1025px){
	.simpleCol2Layout{
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.simpleCol2Layout_item{
		width: calc(100% / 2 - 0.75em);
	}
}

@media(max-width: 1024px){
	.simpleCol2Layout{
		flex-direction: column;
	}
	
	.simpleCol2Layout_item{
		width: 100%;
		margin-bottom: 2em;
	}
}

/*---------------------------------
	simpleCol2Layout end
---------------------------------*/

/*---------------------------------
	contentWrapper start
---------------------------------*/
.contentWrapper--mw1000{
	margin: 0 auto;
	widht: 100%;
	max-width: 1000px;
}

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

/*---------------------------------
	snsLinks start
---------------------------------*/
.snsLinks{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	color: #FFF;
	background: var(--c-hex-accent);
}

@media(min-width: 1025px){
	.snsLinks{
		gap: 0 1.5em;
		padding: 1em 1em 1em 2em;
	}
}

@media(max-width: 1024px){
	.snsLinks{
		flex-direction: column;
		gap: 1em 0;
		padding: 1.5em;
	}
}

.snsLinks_head{
	margin: 0;
	font-size: 150%;
	font-weight: bold;
}

.snsLinks_list{
	list-style: none;
	display: flex;
	align-items: stretch;
	flex-wrap: nowrap;
	gap: 0.5em;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.snsLinks_list li{
	margin: 0;
	padding: 0;
}

.snsLinks_list a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	max-width: 100%;
	aspect-ratio: 1/1;
	background-color: #FFF;
	transition: all 0.1s;
}

.snsLinks_list a:hover{
	transform: scale(1.025);
}

.snsLinks_list img{
	width: 40px;
}

/*---------------------------------
	snsLinks end
---------------------------------*/

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

.nColumsContents--alignCenter{
	justify-content: center;
}

.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_link,
.nColumsContents_link:hover{
	display: block;
	text-decoration: none;
	color: inherit;
}

.nColumsContents_linkHead{
	position: relative;
	padding: 0.75rem 3.5rem 0.75rem 0;
	font-weight: bold;
	font-size: 150%;
	letter-spacing: var(--f-letterSpacing-catch);
}

.nColumsContents_linkHead:before{
	content: 'right';
	position: absolute;
	top: 0.75rem;
	right: 0.375rem;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'LigatureSymbols' !important;
	-webkit-text-rendering: optimizeLegibility;
	-moz-text-rendering: optimizeLegibility;
	-ms-text-rendering: optimizeLegibility;
	-o-text-rendering: optimizeLegibility;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-font-feature-settings: "liga" 1, "dlig" 1;
	-moz-font-feature-settings: "liga=1, dlig=1";
	-ms-font-feature-settings: "liga" 1, "dlig" 1;
	-o-font-feature-settings: "liga" 1, "dlig" 1;
	font-feature-settings: "liga" 1, "dlig" 1;
	font-size: 1.5rem;
	font-weight: 400;
	color: #AAA;
	transform: translateX(-0.25rem);
	transition: all 0.25s;
}

a:hover .nColumsContents_linkHead:before{
	right: 0.35em;
	transform: scale(1.5);
	transform-origin: 40% 52%;
	color: #FFF;
}

.nColumsContents_linkHead:after{
	content: '';
	position: absolute;
	top: 0;
	right: -0.75rem;
	z-index: 10;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	z-index: 10;
	transition: all 0.25s;
}

a:hover .nColumsContents_linkHead:after{
	background-color: var(--c-hex-accent);
}

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

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

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

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

/*---------------------------------
	simpleDatalist start
---------------------------------*/
.simpleDatalist{
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.5em 1em;
}

.simpleDatalist dt,
.simpleDatalist dd{
	margin: 0;
}


/*---------------------------------
	simpleDatalist end
---------------------------------*/

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

.mailformTable tr{
	border-bottom: none;
}

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

.mailformTable th{
	width: 35%;
	font-weight: bold;
	color: #333;
}

.mailformTable  .mailformTable_cell--required,
.mailformTable  .mailformTable_cell--optional{
	position: relative;
	padding: 1.25em 1em;
	background-clip: padding-box;
	vertical-align: top;
}

.mailformTable_cell--required:after{
	display: inline-block;
	content: "\5FC5\9808";
	color: #555;
	font-size: 90%;
	font-weight: bold;
	margin: 0 0 0 1em;
}

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

.mailformTable_textForm{
	width: 100%;
	font-size: 90%;
	margin: 0.25em 0;
	padding: 0.5em 1em;
	background: #EFEFEF;
	border: 1px solid #CCC;
	border-radius: 4px;
	outline: none;
	transition: background-color 0.25s;
}

.mailformTable_textForm:not(:placeholder-shown){
	background-color: #FFF;
}

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

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

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

.mailformTable_textarea{
	width: 100%;
	height: 10em;
	font-size: 90%;
	margin: 0.25em 0;
	padding: 0.5em 1em;
	background: #EFEFEF;
	border: 1px solid #CCC;
	border-radius: 4px;
	outline: none;
	transition: background-color 0.25s;
}

.mailformTable_textarea:not(:placeholder-shown){
	background-color: #FFF;
}


.mailformTable select{
	background: #EFEFEF;
	padding: 0.5em 0.5em;
}

.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"]{
	border-radius: 4px;
	width: auto;
	height: auto;
	padding: 0;
	transform: scale(2, 2);
	max-width: calc(100% - 20px);
	margin-left: 0.5em;
	margin-right: 20px;
}

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

.checkboxList_item a{
	color: inherit;
	text-decoration: underline;
}

/*---------------------------------
	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{
	width: calc(100% - 15em - 5em);
}

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

.blogLayout_sidebar{
	width: 15em;
	margin-left: 5em;
}

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

.blogArticlesItem{
	padding: 0;
	margin-bottom: 2em;
}

.blogArticlesItem_date{
	margin: 0;
	margin-bottom: 0.5em;
	font-size: 125%;
}

.blogArticlesItem_cate{
	display: flex;
	justify-content: flex-end;
	margin: 0;
}

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

.blogArticlesItem_body{
	margin: 0 0 2em;
}

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

.blogArticlesItemTitle{
	display: inline-block;
	margin-bottom: 1em;
	padding: 0.25em 0.5em;
	font-size: 150%;
	font-weight: bold;
	color: #FFF;
}

.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: "E";
	position: absolute;
	top: 0.25em;
	left: 0;
}

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

.blogWidgetsItemTitle{
	padding: 0.25em 0.25em 0.5em;
	margin-bottom: 0.5em;
	font-size: 125%;
	font-weight: bold;
	font-weight: normal;
	border-bottom: 1px solid #333;
}

.blogRssLinkWrapper{
	text-align: left;
}

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

.blogRssLinkWrapper a,
.blogRssLinkWrapper a:hover{
	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: #FFF;
	font-size: 90%;
	font-weight: bold;
	text-align: center;
	background-color: var(--mainColor01_hex);
	border: 2px solid var(--mainColor01_hex);
	border-radius: 3px;
	-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: #FFF;
}

.searchBox_submitButton:hover{
	color: var(--mainColor01_hex);
	background-color: #FFF;
}

.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.25em 0.25em;
	padding: 0.25em;
	color: #fe7b21;
	text-align: center;
	font-size: 125%;
	background-color: #FFF;
	border: 2px solid var(--mainColor01_hex);
	outline: none;
	transition: color 0.25s, background-color 0.25s;
}

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

.pager > a:hover,
.pager > span{
	color: #FFF;
	background-color: var(--mainColor01_hex);
}

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

/*---------------------------------
	flow start
---------------------------------*/
.flowItem{
	background-color: var(--mainColor02_hex);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	margin-bottom: 3em;
}

.flowItem_no{
	flex-grow: 0;
	flex-shrink: 0;
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2em;
	background-color: var(--mainColor01_hex);
	color: #FFF;
	font-size: 200%;
	padding: 1em 0.5em;
}

.flowItem_title{
	flex-grow: 0;
	flex-shrink: 0;
	width: 20%;
	font-size: 150%;
	font-weight: bold;
	padding: 0.5em 1em;
}

.flowItem_text{
	flex-grow: 1;
	flex-shrink: 1;
	padding: 1em;
}

@media(max-width: 750px){
	.flowItem{
		align-items: flex-start;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	
	.flowItem_no{
		align-self: stretch;
		padding: 0.5em 0;
		line-height: 100%;
		font-size: 125%;
		margin-bottom: 0.5em;
	}
	
	.flowItem_title{
		width: 100%;
		padding: 0.5em;
		font-size: 125%;
	}
	
	.flowItem_text{
		width: 100%;
		flex-grow: 0;
		flex-shrink: 0;
		font-size: 85%;
	}
}

/*---------------------------------
	flow end
---------------------------------*/

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

.newsPickupItem{
	margin-bottom: 0;
	border-bottom: 2px solid #919090;
	width: 100%;
}

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