/*!
 * Base Styles
 * 基本リセット、フォント、共通スタイル
 */

@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

@font-face {
	font-family: 'icomoon';
	src: url('/fonts/icomoon.eot?4b5hyb');
	src: url('/fonts/icomoon.eot?4b5hyb#iefix') format('embedded-opentype'),
		url('/fonts/icomoon.ttf?4b5hyb') format('truetype'),
		url('/fonts/icomoon.woff?4b5hyb') format('woff'),
		url('/fonts/icomoon.svg?4b5hyb#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

[class^="icon-"]:not(.-w-gnav .icon-mail),
[class*=" icon-"]:not(.-w-gnav .icon-mail) {
	font-family: 'icomoon' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

/* Box sizingの定義 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* デフォルトのpaddingを削除 */
ul,
li,
ul[class],
ol[class] {
	padding: 0;
}

/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

/* デフォルトの見出しboldを削除 */
h1,
h2,
h3,
h4 {
	font-weight: normal;
}

main {
	margin-top: 120px;
}

/* bodyのデフォルトを定義 */
body {
	font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif !important;
	font-size: 1.6rem;
	font-weight: 400;
	font-style: normal;
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.8;
	background: #ffffff;
	color: #313131;
	/* margin-top: 90px; */
}

/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
	list-style: none;
}

/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
	text-decoration-skip-ink: auto;
}

a {
	text-decoration: none;
	color: #313131;
}

/* img要素の扱いを簡単にする */
img {
	max-width: 100%;
	display: block;
}

/* article要素内の要素に自然な流れとリズムを定義 */
article>*+* {
	margin-top: 1em;
}

/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
	font: inherit;
}

/***幅指定***/
[data-w-width] {
	max-width: 100%;
}

/*コンテンツ幅での設置*/
[data-w-width="1"] {
	max-width: 90%;
	width: 1170px;
	width: 1170px;
	margin: 0 auto;
}

@media (max-width: 1169px) {
	[data-w-width="1"] {
		width: calc(100% - 5%);
	}
}

@media (max-width: 768px) {
	[data-w-width="1"] {
		width: calc(100% - 12%);
	}
}

/*リソース設定無い場合とリソース設定がある場合。*/
/*margin設定はデザインによって変更OK*/

/*ウィンドウ幅での設置*/
[data-w-width="0"] {
	width: 100%;
}

a[href*="tel:"] {
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	a[href*="tel:"] {
		pointer-events: auto;
	}
}

/***基本設定***/
html {
	font-size: 62.5%;
}

@media screen and (max-width: 1024px) {
	main {
		margin-top: 80px;
	}
}

@media (max-width: 768px) {
	body {
		font-size: max(3.7vw, 20px);
	}

	h2.-w-general {
		font-size: max(4.8vw, 24px);
		letter-spacing: 0px;
		line-height: 1.5;
		text-align: center;
	}

	h3.-w-general {
		font-size: max(3.8vw, 21px);
		letter-spacing: 0px;
	}

	.text {
		font-size: max(3.7vw, 20px);
	}

	.-w-text {
		font-size: max(3.7vw, 20px);
	}
}


/***色指定***/
.-w-txt.-w-background {
	color: #fff;
	color: #f3f3f3;
}

.-w-txt.-w-background-r {
	color: #000;
	color: #313131;
}

.-w-txt.-w-main {
	color: #001754;
	color: #4a4a4a;
}

.-w-txt.-w-main-r {
	color: #fff;
	color: #ffffff;
}

.-w-txt.-w-accent {
	color: #4f0506;
	color: #ff9724;
}

.-w-txt.-w-accent-r {
	color: #fff;
	color: #ffffff;
}

/*背景色＋テキスト色*/
.-w-bg.-w-background {
	background: #fff;
	background: #f3f3f3;
	color: #000;
	color: #313131;
}

.-w-bg.-w-main {
	background: #001754;
	background: #4a4a4a;
	color: #fff;
	color: #ffffff;
}

.-w-bg.-w-accent {
	background: #4f0506;
	background: #ff9724;
	color: #fff;
	color: #ffffff;
}

/*反転ver*/
.-w-bg.-w-background-r {
	background: #000;
	background: #313131;
	color: #fff;
	color: #f3f3f3;
}

.-w-bg.-w-main-r {
	background: #fff;
	background: #ffffff;
	color: #001754;
	color: #4a4a4a;
}

.-w-bg.-w-accent-r {
	background: #fff;
	background: #ffffff;
	color: #4f0506;
	color: #ff9724;
}

/*hover時背景色指定*/
a.-w-bg.-w-background:hover {
	background: #000;
	background: #313131;
	color: #fff;
	color: #f3f3f3;
}

a.-w-bg.-w-main:hover {
	background: #fff;
	background: #ffffff;
	color: #001754;
	color: #f3f3f3;
}

a.-w-bg.-w-accent:hover {
	background: #fff;
	background: #ffffff;
	color: #4f0506;
	color: #ff9724;
}

a.-w-bg.-w-background-r:hover {
	background: #fff;
	background: #f3f3f3;
	color: #000;
	color: #313131;
}

a.-w-bg.-w-main-r:hover {
	background: #001754;
	background: #4a4a4a;
	color: #fff;
	color: #ffffff;
}

a.-w-bg.-w-accent-r:hover {
	background: #4f0506;
	background: #ff9724;
	color: #fff;
	color: #ffffff;
}

/***ボーダー色指定***/
.-w-bd.-w-background {
	border-color: #fff;
	border-color: #f3f3f3;
}

.-w-bd.-w-main {
	border-color: #001754;
	border-color: #4a4a4a;
}

.-w-bd.-w-accent {
	border-color: #4f0506;
	border-color: #ff9724;
}

.-w-bd.-w-background-r {
	border-color: #000;
	border-color: #313131;
}

.-w-bd.-w-main-r {
	border-color: #fff;
	border-color: #ffffff;
}

.-w-bd.-w-accent-r {
	border-color: #fff;
	border-color: #ffffff;
}

/*hover時ボーダー色指定*/
a.-w-bd.-w-bg.-w-background-r:hover,
a.-w-bd.-w-background:hover {
	border-color: #000;
	border-color: #313131;
}

a.-w-bd.-w-bg.-w-main-r:hover,
a.-w-bd.-w-main:hover {
	border-color: #fff;
	border-color: #ffffff;
}

a.-w-bd.-w-bg.-w-accent-r:hover,
a.-w-bd.-w-accent:hover {
	border-color: #fff;
	border-color: #ffffff;
}

a.-w-bd.-w-bg.-w-background:hover,
a.-w-bd.-w-background-r:hover {
	border-color: #000;
	border-color: #f3f3f3;
}

a.-w-bd.-w-bg.-w-main:hover,
a.-w-bd.-w-main-r:hover {
	border-color: #001754;
	border-color: #4a4a4a;
}

a.-w-bd.-w-bg.-w-accent:hover,
a.-w-bd.-w-accent-r:hover {
	border-color: #4f0506;
	border-color: #ff9724;
}

/*見出しフォント*/
.-w-font_title1 {
	font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif !important;
	font-style: normal;
	font-weight: 500;
}

/*MVフォント*/
.-w-font_title2 {
	font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif !important;
	font-style: normal;
	font-weight: 500;
}

/*英数字フォント*/
.-w-font_en {
	font-family: 'Josefin Sans', 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif !important;
	font-style: normal;
	font-weight: 500;
}

.-w-font_en_after:after {
	font-family: 'Josefin Sans', 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif !important;
	font-style: normal;
	font-weight: 500;
}


/*見出し設定*/
.-w-section_inner h3.-w-general {
	text-align: left;
}

span.-w-general,
.-w-ttl-en.-w-font_en,
.-w-general .-w-font_en,
.-w-ttl-en.-w-font_en {
	position: relative;
	font-size: 4.2rem;
	margin-bottom: 1rem;
	display: inline-block;
	line-height: 1;
	color: #313131;
	color: rgba(49, 49, 49, 1);
}

.-w-general.-w-font_en::before {
	content: "";
	width: 60px;
	display: block;
}

.-w-general.-w-font_en::after {
	content: "";
	width: auto;
	background: #ff9724;
	height: 3px;
	margin: 0 0 2rem;
	display: block;
}

h2.-w-general {
	position: relative;
	margin-bottom: 3rem;
	letter-spacing: 0;
	color: #313131;
	color: rgba(49, 49, 49, 1);
	font-weight: 500;
}

h3.-w-general {
	position: relative;
	margin-bottom: 3rem;
	letter-spacing: 0;
	color: #EA7C5D;
	color: rgba(74, 74, 74, 1);
	font-weight: 500;
}

h4.-w-general {
	font-size: 2rem;
	color: #313131;
	color: rgba(49, 49, 49, 1);
	margin-bottom: 1.5rem;
}

@media (max-width: 1020px) and (min-width: 769px) {
	h2.-w-general {
		font-size: 2.1rem;
	}

	h3.-w-general {
		font-size: 2.05rem;
		letter-spacing: 0;
	}

	h4.-w-general {
		font-size: 1.9rem;
	}
}

@media (max-width: 768px) {
	.-w-ttl_wrap {
		text-align: center;
	}

	.-w-section_inner h3.-w-general {
		text-align: left;
	}

	span.-w-general,
	.-w-ttl-en.-w-font_en,
	.-w-general .-w-font_en,
	.-w-ttl-en.-w-font_en {
		font-size: 7.5vw;
		text-align: center;
		margin-bottom: 1rem;
	}

	h2.-w-general {
		margin-bottom: 1.5rem;
		letter-spacing: 0;
		text-align: left;
		line-height: 1.5;
	}

	h3.-w-general {
		letter-spacing: 0;
		text-align: left;
		margin-bottom: 1.5rem;
	}

	h4.-w-general {
		letter-spacing: 0px;
		text-align: left;
		margin-bottom: 1.5rem;
	}
}

/*smart用見出し設定*/
.-w-ttl_wrap {
	text-align: left;
}

.-w-general.-w-font_en,
span.-w-font_en {
	text-align: left;
	font-size: 4.6rem;
}

h2.-w-general,
h3.-w-general {
	text-align: left;
}

div.-w-text {
	text-align: left;
}

.-w-general.-w-font_en,
span.-w-font_en {
	margin-bottom: 0;
	padding: 15px 0;
	width: fit-content;
}


@media (max-width: 1023px) {

	.-w-general.-w-font_en,
	span.-w-font_en {
		font-size: 5.5rem;
	}
}

@media (max-width: 768px) {

	.-w-general.-w-font_en,
	span.-w-font_en {
		font-size: 9vw;
	}
}

/*見出し改行設定*/
br.-w-sp {
	display: none;
}

@media (max-width: 768px) {
	br.-w-sp {
		display: block;
	}

	br.-w-pc {
		display: none;
	}
}

/* Grid System */
.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.col {
	flex: 1;
	padding: 0 15px;
}

.col-1 {
	flex: 0 0 8.333333%;
	max-width: 8.333333%;
}

.col-2 {
	flex: 0 0 16.666667%;
	max-width: 16.666667%;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.col-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-8 {
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
}

.col-9 {
	flex: 0 0 75%;
	max-width: 75%;
}

.col-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

/* Main Layout */
.site-header {
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-main {
	min-height: calc(100vh - 200px);
}

.site-footer {
	background-color: #333;
	color: #fff;
	padding: 2rem 0;
	margin-top: auto;
}

/* Content Areas */
.content-area {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.entry-content {
	max-width: 800px;
	margin: 0 auto;
}

/* Sidebar */
.sidebar {
	background-color: #f8f9fa;
	padding: 2rem;
	border-radius: 8px;
}

/* Page Templates */
.page-template .entry-content {
	max-width: 100%;
}

/* Archive Pages */
.archive-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem 0;
	background-color: #f8f9fa;
}

.archive-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.archive-description {
	font-size: 1.1rem;
	color: #666;
}



[data-lib="47394"] {
	color: #313131;
	/* padding: 0 10vw 0rem 0; */
	padding: 0;
	background: #ff9724;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

[data-lib="47394"]:after {
	content: "";
	background: #ff9724;
	height: 12vh;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

[data-lib="47394"] .-w-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: calc(80vh - 0rem);
	width: 100%;
	position: relative;
	height: 78vh;
}

[data-lib="47394"] .-w-wrapper:before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

[data-lib="47394"] .-w-kv {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 78vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

[data-lib="47394"] .-w-box {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}

[data-lib="47394"] .-w-box span,
[data-lib="47394"] .-w-box h1.-w-font_en {
	font-size: 10vh;
	line-height: 1;
	margin: 0;
	display: block;
	color: #ffffff;
	position: absolute;
	left: 50%;
	bottom: 10%;
	transform: translateX(-50%);
	width: 90%;
	text-align: center;
	font-weight: 500;
}

[data-lib="47394"] .-w-box h2 {
	font-size: 3rem;
	line-height: 1;
	color: #ffffff;
	position: absolute;
	right: -5vw;
	top: 50%;
	writing-mode: vertical-rl;
	transform: translate(50%, -50%);
	height: 100%;
	text-align: center;
	padding-right: 50px;
}

@media (max-width: 1169px) {
	[data-lib="47394"] .-w-box span,
	[data-lib="47394"] .-w-box h1.-w-font_en {
        font-size: 10rem;
    }
	[data-lib="47394"] .-w-box h2 {
		font-size: 2.5rem;
		padding-right: 30px;
	}
}
@media (max-width: 1023px) {
    [data-lib="47394"] .-w-box span,
    [data-lib="47394"] .-w-box h1.-w-font_en {
        font-size: 10vw;
    }
	[data-lib="47394"] .-w-box h2 {
		font-size: 2rem;
		padding-right: 20px;
	}
}
@media (max-width: 768px) {
	[data-lib="47394"] .-w-box h2 {
		font-size: 1.5rem;
		padding-right: 15px;
	}
}
/* パンくずリストのスタイル */
#breadcrumb {
	padding: 12px 0 11px;
	margin: 0;
	font-size: 14px;
	color: #ffffff;
	position: absolute;
	top: 20px;
	left: 8%;
	z-index: 10;
}
.single #breadcrumb {
	top: 0;
	left: 0;
	position: unset;
}
#breadcrumb a {
	color: #ffffff;
	padding-right: 10px;
}

.breadcrumb_last {
	padding-left: 10px;
}


body.post-type-archive-blog #breadcrumb,
body.post-type-archive-blog #breadcrumb a,
body.post-type-archive-column #breadcrumb,
body.post-type-archive-column #breadcrumb a,
body.is-blog-tag-page #breadcrumb,
body.is-blog-tag-page #breadcrumb a,
body.is-column-tag-page #breadcrumb,
body.is-column-tag-page #breadcrumb a,
body.taxonomy-blog_tag #breadcrumb,
body.taxonomy-blog_tag #breadcrumb a,
body.taxonomy-blog-tag #breadcrumb,
body.taxonomy-blog-tag #breadcrumb a,
body.taxonomy-column_tag #breadcrumb,
body.taxonomy-column_tag #breadcrumb a,
body.archive.taxonomy-blog_tag #breadcrumb,
body.archive.taxonomy-blog_tag #breadcrumb a,
body.single-gallery #breadcrumb,
body.single-gallery #breadcrumb a,
body.single-column #breadcrumb,
body.single-column #breadcrumb a,
body.single-staff #breadcrumb,
body.single-staff #breadcrumb a,
.news-breadcrumb,
.news-breadcrumb a {
	color: #313131 !important;
}

@media (max-width: 1023px) {
	#breadcrumb {
			display: none;
	}
}

/*フェード*/
@media (min-width: 1024px) {
	.-w-anime-fade {
		opacity: 0;
		transition: all .5s ease-in-out;
		transform: translateY(50px);
	}

	.-w-anime-fade.active {
		opacity: 1;
		transform: translateY(0px);
	}

	.-w-anime-fade:nth-child(2) {
		transition-delay: 0.2s;
	}

	.-w-anime-fade:nth-child(3) {
		transition-delay: 0.4s;
	}

	.-w-anime-fade:nth-child(4) {
		transition-delay: 0.6s;
	}

	.-w-anime-fade:nth-child(5) {
		transition-delay: 0.8s;
	}

	.-w-anime-fade:nth-child(6) {
		transition-delay: 1s;
	}

	.-w-anime-fade:nth-child(n+7) {
		transition-delay: 1.2s;
	}
}


/* オーバーレイアニメーション効果 */
[data-lib="31419"] .-w-image,
[data-lib="29113"] .-w-image,
[data-lib="29114"] .-w-contents .-w-image,
[data-lib="29448"] .-w-image,
[data-lib="37104"] .-w-image,
[data-lib="29417"] .image,
[data-lib="31517"] .-w-image,
[data-lib="29113"] .-w-recruitImage,
[data-lib="37149"] .-w-image,
[data-lib="29113"] .-w-contents .-w-image,
.-w-gmap {
	position: relative;
	overflow: hidden;
}

[data-lib="31419"] .-w-image::after,
[data-lib="29113"] .-w-image::after,
[data-lib="29114"] .-w-contents .-w-image::after,
[data-lib="29448"] .-w-image::after,
[data-lib="37104"] .-w-image::after,
[data-lib="29417"] .image::after,
[data-lib="31517"] .-w-image::after,
[data-lib="29113"] .-w-recruitImage::after,
[data-lib="37149"] .-w-image::after,
[data-lib="29113"] .-w-contents .-w-image::after,
.-w-gmap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #4a4a4a;
	z-index: 10;
	-webkit-transition: 0.8s cubic-bezier(0.57, 0.15, 0.13, 0.97);
	transition: 0.8s cubic-bezier(0.57, 0.15, 0.13, 0.97);
	transform: translateX(0);
}

[data-lib="31419"] .-w-image.-w-active::after,
[data-lib="29113"] .-w-image.-w-active::after,
[data-lib="29114"] .-w-contents .-w-image.-w-active::after,
[data-lib="29448"] .-w-image.-w-active::after,
[data-lib="37104"] .-w-image.-w-active::after,
[data-lib="29417"] .image.-w-active::after,
[data-lib="31517"] .-w-image.-w-active::after,
[data-lib="29113"] .-w-recruitImage.-w-active::after,
[data-lib="37149"] .-w-image.-w-active::after,
[data-lib="29113"] .-w-contents .-w-image.-w-active::after,
.-w-gmap.-w-active::before {
	transform: translateX(101%);
}

/* フェード要素用のオーバーレイ */
.fade {
	opacity: 0;
	filter: blur(10px);
	transition-property: opacity, filter, box-shadow;
	transition-duration: 1s, 1s, 1s;
	transition-timing-function:
		ease-out,
		linear,
		ease-out;
}

.fade.on {
	opacity: 1;
	filter: blur(0);
}

@media (min-width: 769px) {
	.fadeL {
		opacity: 0;
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px);
		transition: opacity .8s ease-in-out, transform .8s ease-in-out;
	}

	.fadeL.on {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

[data-lib="47493"] .-w-image {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .8s, transform .8s ease-in-out;
	transition-delay: .3s;
}

[data-lib="47493"] .-w-image.-w-easing.-w-active {
	opacity: 1;
	transform: translateY(0px);
}

/* add パンクズ */

[data-w-width="1"] {
	position: relative;
}


[data-lib="30499"] #breadcrumb {
	position: absolute;
	top: -1em;
	color: #000;
	left: 0;
}

[data-lib="30499"] #breadcrumb a {
	color: #000;
}

/*widget:deab7963-1d5d-4949-b278-d833ff2323ea*/
[data-lib="30499"] {
	min-width: auto;
	min-height: 4.2rem;
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.4;
	margin: 0 auto;
	padding-top: 14.0rem;
}

[data-lib="30499"] [data-w-width="1"] {
	position: relative;
}

[data-lib="30499"] ol {
	margin: 0px;
}

[data-lib="30499"] ol li:last-child:after {
	content: none;
}

[data-lib="30499"] ol li {
	margin: 0px 4px 0 0;
	display: table-cell;
	vertical-align: middle;
	position: relative;
	color: rgba(49, 49, 49, 1);
}

[data-lib="30499"] ol li>span {
	padding: 11px 0;
	display: block;
	text-align: center;
}

[data-lib="30499"] ol li>a>span {
	padding: 12px 0 11px;
	display: block;
	text-align: center;
}

[data-lib="30499"] ol li a {
	text-decoration: none;
	display: block;
	padding: 0 10px 0 30px;
	position: relative;
	min-width: 55px;
	min-height: 37px;
	color: rgba(49, 49, 49, 1);
}

[data-lib="30499"] ol li:first-child a {
	padding: 0;
}

[data-lib="30499"] ol li:last-child span {
	display: block;
	padding: 0 10px 0 30px;
}

[data-lib="30499"] ol li a:hover {
	text-decoration: none;
}

[data-lib="30499"] ol li:after {
	content: ">";
	position: absolute;
	right: -8px;
	top: 12px;
	width: 0;
	height: 0;
	z-index: 2;
}

[data-lib="30499"] ol li a[itemprop="item"]:after {
	content: "";
	position: absolute;
	right: -8px;
	top: 0px;
	width: 0;
	height: 0;
	z-index: 1;
}

@media (max-width: 1023px) {
	[data-lib="30499"] {
		margin-top: 2.0rem;
		display: none;
	}

	[data-lib="30499"] #breadcrumb {
		display: none;
	}

	[data-lib="30499"] ol {
		margin: 0px;
		padding-top: 0rem;
	}
	}

	@media (max-width: 768px) {
	[data-lib="30499"] {
		display: none;
	}
}
