/*------------------------------------- 
 ヘッダー・フッター・メニュー
-------------------------------------*/
/* メニュー用 */
#panel2-sw ,
.panel2-sw ,
#panel2-btn ,
.panel2-btn {
	display: none;
}

:root {
	--header-width-pc: 1440px;
	--header-height-pc: 80px;
	--header-gnavi-height-pc: 80px;
	--header-height-sp: 60px;
	--text-letter-spacing: 0;
	--mainarea-width-pc: 1000px;
	--mainarea-width-sp: 500px;
	--mainarea-base: 1;
	--text-letter-spacing: 0;
}

body.is-fixed {
	height: 100%;
	overflow: hidden;
}

@media print, screen and (min-width: 769px) {
	html:lang(ja) {
	/*	--text-letter-spacing: 0.03em */;
		--text-letter-spacing: 0.48px;
	}
}


@media print, screen and (min-width: 769px) {
	:root {
		--mainarea-width: var(--mainarea-width-pc);
		--header-height: var(--header-height-pc);
	}

	.on-sp > .column1:nth-child(1) ,
	.on-sp > .column2:nth-child(2) ,
	.on-sp > .column3:nth-child(3) ,
	.on-sp > .column4:nth-child(4) ,
	.on-sp > .column5:nth-child(5) ,
	#site-info .on-sp > .column >*> *:not(.mgnlEditor) ,
	#header-wrapper .on-sp > .column ,
	.on-sp > .h-column1:nth-child(1) ,
	.on-sp > .h-column2:nth-child(2) ,
	.on-sp > .h-column3:nth-child(3) ,
	.on-sp > .h-column4:nth-child(4) ,
	.on-sp > .h-column5:nth-child(5) ,
	#site-info .on-sp > .h-column >*> *:not(.mgnlEditor) ,
	#header-wrapper .on-sp > .h-column ,
	body:not(.in-editor) .on-sp {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--mainarea-width: var(--mainarea-width-sp);
		--header-height: var(--header-height-sp);
	}

	.on-pc > .column1:nth-child(1) ,
	.on-pc > .column2:nth-child(2) ,
	.on-pc > .column3:nth-child(3) ,
	.on-pc > .column4:nth-child(4) ,
	.on-pc > .column5:nth-child(5) ,
	#site-info .on-pc > .column >*> *:not(.mgnlEditor) ,
	#header-wrapper .on-pc > .column ,
	.on-pc > .h-column1:nth-child(1) ,
	.on-pc > .h-column2:nth-child(2) ,
	.on-pc > .h-column3:nth-child(3) ,
	.on-pc > .h-column4:nth-child(4) ,
	.on-pc > .h-column5:nth-child(5) ,
	#site-info .on-pc > .h-column >*> *:not(.mgnlEditor) ,
	#header-wrapper .on-pc > .h-column ,
	body:not(.in-editor) .on-pc {
		display: none !important;
	}
}

#pagetop {
	transition: 0.3s;
}


#header ,
#footer {
	display: block;
}

:where(#header, #footer) a {
	overflow: visible;
}

#pagetop {
	position: relative;
	height: var(--header-height);
}

/* スキップボタン */
.bg-skip {
	position: absolute;
	top: -60px;
	left: 0;
	width: 100%;
	padding: 10px 0;
	background: #ccc;
	text-align: center;
	transition: 0.3s;
}

.skip-button {
	display: inline-flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 33%;
	height: 40px;
	margin: 0px auto;
	background-color: var(--key-color);
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	padding: 5px 30px;
	border-radius: 5px;
	box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.skip-button::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: 10px;
	margin-top: -5px;
}

.bg-skip:focus-within ~ #pagetop {
	margin-top: 60px;
}

.bg-skip:focus-within ~* #header .on-pc .hx_panel ,
.bg-skip:focus-within ~* #header .on-sp .hx_panel {
	top: 60px;
}

.bg-skip:focus-within ~* #header .panel2-btn,
.bg-skip:focus-within ~* #panel2-btn {
	top: 60px;
}

/*------------- デスクトップ用ヘッダー -------------*/
/* ヘッダーパネル */
#header .on-pc .hx_panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height-pc);
	background: #fff;
	z-index: 1001;
}

#header .on-pc .hx_panel::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: rgba(0, 0, 0, .1);
}

/* ヘッダーパネルをページ上部に固定(編集時・印刷時を除く） */
@media screen {
	body:not(.in-editor) #pagetop.pad ~* #header .on-pc .hx_panel {
		position: fixed;
	}
}

#header .on-pc .hx_panel >* >* {
	position: relative;
}

/* グロナビをページ上部に固定 */
#header .on-pc .hx_gnavi_box {
	position: absolute;
	top: var(--header-height-pc);
	left: 0;
	width: 100%;
	transform: translateY(-100%);
}



/* ロゴ */
#header .on-pc .hx_logo {
	position: relative;

/*	ロゴをコンテンツエリア端に */
	max-width: calc(var(--header-width-pc));
	margin: auto;
}

#header .on-pc .hx_logo >* {
	position: absolute;
	top: 0;
	left: 32px;
	height: 100px;
	z-index: 1;
}

#header .on-pc .hx_logo >* >* >* >*  {
	position: absolute;
	top: calc(var(--header-height-pc) / 2 - 15px);
	left: 0;
/*	transform: translate(0, -50%); */

	display: flex;
	align-items: center;
	gap: 0 28px;
}

#header .on-pc .hx_logo >* >* >* > .h-column2 {
	display: none;
}


#header .on-pc .hx_logo .h-panel a {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: flex-end;
}

#header .on-pc .hx_logo .h-panel a {
	display: block;
	width: 74px;
}

[lang="en"] #header .on-pc .hx_logo .h-panel a {
}

#header .on-pc .hx_logo .h-panel a figure {
	margin: 0;
}

#header .on-pc .hx_logo .h-panel a img {
	display: block;
	width: 100%;
	margin: 0;
	opacity: 1;
}

#header .on-pc .hx_logo .h-panel a .text {
	white-space: nowrap;
	display: block;
	vertical-align: baseline;
	margin-left: 20px;
	padding-left: 16px;
	border-left: 1px solid rgba(10,62,135, 0.2);
	color: inherit;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	letter-spacing: var(--text-letter-spacing);
	text-decoration: none;
}

#header .on-pc .hx_logo .h-panel a:hover {
	opacity: 0.7;
}


/* サブパネル */
#header .on-pc .hx_sub_panel {
	position: relative;

/*	サブパネルをコンテンツエリア端に */
	max-width: calc(var(--header-width-pc));
	margin: auto;
}

#header .on-pc .hx_sub_panel >* {
	position: absolute;
	top: 0;
	right: 0;
	transition: 0.3s;
}

#header .on-pc .hx_sub_panel >* >* {
	display: flex;
	align-items: center;
	gap: 0;
}

#header .on-pc .hx_lang_navi ,
#header .on-pc .hx_utility_link ,
#header .on-pc .hx_search_box ,
#header .on-pc .hx_search_btn {
}



/* 検索窓 */
#header .on-pc .hx_search_box {
	font-size: 16px;
}


/* 検索ダイアログ開閉 */
#header .on-pc .hx_search_btn {
	margin-left: 2px;
}

#header .on-pc .hx_search_btn .search_btn {
	position: relative;
	height: var(--header-gnavi-height-pc);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-align: center;
	font-size: 16px;
	color: inherit;
	font-weight: bold;
	line-height: 1.25;
	letter-spacing: var(--text-letter-spacing);
	text-decoration: none;

	cursor: pointer;
}

#header .on-pc .hx_search_btn .search_btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 4px;
	background-color: #d70c18;
	opacity: 0;
	-webkit-transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	-o-transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transform: scaleX(0);
}

#header .on-pc .hx_search_btn .search_btn span {
	display: block;
	width: 18px;
	height: 18px;
	background: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_search_black.svg) no-repeat center center;
	background-size: contain;
}

#header .on-pc .hx_search_btn .search_btn:hover {
	color: rgba(0, 0, 0, 0.5);
	background-color: #f7f7f7;
}

#header .on-pc .hx_search_btn .search_btn:hover span {
	opacity: 0.5;
}

#header .on-pc .hx_search_btn .search_btn:hover::after {
	opacity: 1;
	transform: scale(1);
}


#header .on-pc .ux_search_btn .search_box {
	overflow: hidden;
	position: fixed;
	top: var(--header-height-pc);
	left: 0;
	width: 100%;
/*	max-height: 0; */
	z-index: 100;
/*	transition: 0.5s; */
}

#header .on-pc .ux_search_btn .search_box.state-open {
/*	max-height: 130px; */
}


#header .on-pc .ux_search_btn .close_box {
	overflow: hidden;
	position: absolute;
	position: fixed;
	left: 0;
	top: var(--header-height-pc);
	width: 100%;
	height: calc(100% - var(--header-height-pc));
	padding: 0;
	z-index: 99;
}


/* 検索ダイアログ */
#header .on-pc .navMenuItem__body {
	position: relative;
	z-index: 100;
	width: 100%;
	background: #fff;
	border-bottom: 2px solid rgba(0, 0, 0, .1);
}

#header .on-pc .navMenuItem__body__inner {
	display: flex;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: calc(var(--mainarea-width) + 40px);
	padding: 0 20px;
	position: relative;
	width: 100%;
}

#header .on-pc .navSubMenu {
	flex: 1 0 auto;
/*	border-bottom: 1px solid rgba(0, 0, 0, .1); */
	border-bottom: 1px solid gray;
	margin: 28px 20px 40px;
}

#header .on-pc input#input-text.search-navi_input ,
#header .on-pc input#input-text2.search-navi_input {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-appearance: none;
	background: transparent;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #000;
	display: block;
	font-size: 16px;
	font-weight: 300;
	padding: 15px 0;
	width: 100%
}

#header .on-pc input#input-text.search-navi_input:focus ,
#header .on-pc input#input-text2.search-navi_input:focus {
    outline: none
}

#header .on-pc .search-navi {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 40px;
    max-width: 960px;
    width: 100%
}

#header .on-pc .search-navi__btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url(/corp/wp-content/themes/sansan-corp4/img/header/header_search_white.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    height: 24px;
    outline: none;
    padding: 0;
    width: 24px
}


/*
    .navMenuItem.is-hover .navSubMenu {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: block;
        margin-top: 28px;
        width: 100%
    }

    .navMenuItem__btn_close,.navMenuItem__btn_search {
        display: none
    }

    .navMenuItem--search {
        margin-bottom: 30px;
        margin-top: 90px
    }

    .navMenuItem--search .navMenuItem__header {
        display: none
    }

    .navMenuItem--search .navMenuItem__body {
        display: block!important
    }

    .navMenuItem--search .navSubMenu {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-left: 0
    }

    .navMenuItem--search input#input-text.search-navi_input {
        color: #000;
        padding: 8px 0
    }

    .navMenuItem--search .navMenuItem--label {
        display: none
    }
*/

#header .on-pc .search-navi {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	max-width: 100%;
	width: 100%
}

#header .on-pc .search-navi__btn {
	background-image: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_search_gray.svg);
	background-position: 100%;
	background-repeat: no-repeat
}

#header .on-pc .navSubMenu__cmask_under {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	width: 100%
}

#header .on-pc .navSubMenu__cmask_under .navSubMenuItem {
	font-weight: 700;
	margin-bottom: 16px;
	margin-top: 0;
	width: 50%
}

#header .on-pc .navSubMenu__cmask_under .navSubMenuItem a {
	font-size: 12px;
}


#header .on-pc .navMenuItem__btn_close {
	position: absolute;
	top: 32px;
	right: 32px;
	height: 20px;
	width: 20px;
}

#header .on-pc .navMenuItem__btn_close ,
#header .on-pc .navMenuItem__btn_search {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: contain;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	z-index: 1
}

#header .on-pc .navMenuItem__btn_close {
	background-image: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_sp_menu_close.svg);
}




/* 言語ナビ */
#header .on-pc .hx_lang_navi {
	position: relative;
}
#header .on-pc .hx_lang_navi::after {
	content: "";
	display: block;
	width: 1px;
	height: 16px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: grey;
}

#header .on-pc .hx_lang_navi .h-link-list ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 0;
}

#header .on-pc .hx_lang_navi .h-link-list li {
	position: relative;
}

#header .on-pc .hx_lang_navi .h-link-list li.highlight {
	display: none;
}

#header .on-pc .hx_lang_navi .h-link-list li > a ,
#header .on-pc .hx_lang_navi .h-link-list li > span {
	word-break: keep-all;
	position: relative;
	height: var(--header-gnavi-height-pc);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	text-align: center;
	font-size: 16px;
	color: inherit;
	font-weight: bold;
	line-height: 1.25;
	letter-spacing: var(--text-letter-spacing);
	text-decoration: none;
}

#header .on-pc .hx_lang_navi .h-link-list li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 4px;
	background-color: #d70c18;
	opacity: 0;
	-webkit-transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	-o-transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transform: scaleX(0);
}


#header .on-pc .hx_lang_navi .h-link-list li > a:hover ,
#header .on-pc .hx_lang_navi .h-link-list li.highlight > a ,
#header .on-pc .hx_lang_navi .h-link-list li.highlight > span {
	color: rgba(0, 0, 0, 0.5);
	background-color: #f7f7f7;
}

#header .on-pc .hx_lang_navi .h-link-list li > a:hover::after {
	opacity: 1;
	transform: scale(1);
}


/* ヘッダーユーティリティリンク */
#header .on-pc .hx_utility_link {
	position: relative;
}
#header .on-pc .hx_utility_link::after {
	content: "";
	display: block;
	width: 1px;
	height: 16px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: grey;
}

#header .on-pc .hx_utility_link .h-link-list li {
	position: relative;
	display: inline-block;
	margin-left: 15px;
}

#header .on-pc .hx_utility_link .h-link-list li > a ,
#header .on-pc .hx_utility_link .h-link-list li > span {
	position: relative;
	height: var(--header-gnavi-height-pc);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	text-align: center;
	font-size: 16px;
	color: inherit;
	font-weight: bold;
	line-height: 1.25;
	letter-spacing: var(--text-letter-spacing);
	text-decoration: none;

	cursor: pointer;
}

#header .on-pc .hx_utility_link .h-link-list li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 4px;
	background-color: #d70c18;
	opacity: 0;
	-webkit-transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	-o-transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transform: scaleX(0);
}

#header .on-pc .hx_utility_link .h-link-list li > a:hover {
	color: rgba(0, 0, 0, 0.5);
	background-color: #f7f7f7;
}

#header .on-pc .hx_utility_link .h-link-list li > a:hover::after {
	opacity: 1;
	transform: scale(1);
}



/* お問い合わせリンク・エントリーボタン */
#header .on-pc .hx_contact_link {
}

#header .on-pc .hx_contact_link .h-link-list ul ,
#header .on-pc .hx_contact_link .h-index-map > ul {
}

#header .on-pc .hx_contact_link .h-link-list ul li ,
#header .on-pc .hx_contact_link .h-index-map > ul > li {
	display: inline-block;
}

#header .on-pc .hx_contact_link .h-link-list ul li > span ,
#header .on-pc .hx_contact_link .h-link-list ul li > a ,
#header .on-pc .hx_contact_link .h-index-map > ul > li > .item > span ,
#header .on-pc .hx_contact_link .h-index-map > ul > li > .item > a {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	min-width: 145px;
	min-height: 40px;
	padding: 5px 35px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing);
	background: var(--key-color);
	border: 1px solid var(--key-color);
	text-decoration: none;
	border-radius: 4px;
}

#header .on-pc .hx_contact_link .h-link-list ul li > a::before ,
#header .on-pc .hx_contact_link .h-index-map > ul > li > .item > a::before {
	content: "";
	position: absolute;
	top: calc(50% - 6px);
	right: 10px;
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

#header .on-pc .hx_contact_link .h-link-list ul li > a:hover ,
#header .on-pc .hx_contact_link .h-index-map > ul > li > .item > a:hover {
	color: var(--key-color);
	background: #fff
}
#header .on-pc .hx_contact_link .h-link-list ul li > a:hover::before ,
#header .on-pc .hx_contact_link .h-index-map > ul > li > .item > a:hover::before {
	border-color: var(--key-color);
}


/* グロナビ */
#header .on-pc .hx_gnavi_box {
	/* 左側のロゴ領域 */
	padding-left: 30px;

	/* 右側のユーティリティエリア */
	padding-right: 30px;
}

#header .on-pc .hx_gnavi_box > * {
	/* グロナビをコンテンツエリア端に */
/*
	max-width: calc(var(--mainarea-width) + 40px);
	padding: 0 20px;
*/
	margin: auto;
}

#header .on-pc .hx_gnavi_box > * > * {
	display: flex;
	flex-flow: row nowrap;

	/* 中央揃え */
	justify-content: center;

	/* 右揃え */
/*
	justify-content: flex-end;
*/
	height: var(--header-gnavi-height-pc);
	gap: 0;
}

/* グロナビで非公開等の理由で空の項目は非表示 */
#header .on-pc .hx_gnavi_box > * > * > *.empty {
	display: none;
}


/* グロナビ要素同士の間隔 */
#header .on-pc .hx_gnavi_box > * > * > * {
	display: inline-block;
}
#header .on-pc .hx_gnavi_box > * > * > *:first-child {
}


/* グロナビ要素 */
#header .on-pc .hx_gnavi >*> .h-panel.no-img a {
	word-break: keep-all;
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	text-align: center;
	font-size: 16px;
	color: inherit;
	font-weight: bold;
	line-height: 1.25;
	letter-spacing: var(--text-letter-spacing);
	text-decoration: none;
	transition: 0.3s;
}

#header .on-pc .hx_gnavi >*> .h-panel.no-img a {
	height: var(--header-gnavi-height-pc);
}


#header .on-pc .ux_gnavi_megamenu >*> .h-panel.no-img a {
	padding-right: 32px;
}

#header .on-pc .ux_gnavi_megamenu >*> .h-panel.no-img a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	display: inline-block;
	width: 16px;
	height: 16px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-image: url(https://jp.corp-sansan.com//corp/wp-content/themes/sansan-corp4/img/header/header_menu_arrow_black.svg);
	background-repeat: no-repeat;
	background-position: 100%;
	background-size: contain;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

#header .on-pc .hx_gnavi >*> .h-panel.no-img a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 4px;
	background-color: #d70c18;
	opacity: 0;
	-webkit-transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	-o-transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transition: bottom 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), opacity 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04), -webkit-transform 0.3s cubic-bezier(0.17, 0.67, 0.68, 1.04);
	transform: scaleX(0);
}


#header .on-pc .hx_gnavi >*> .h-panel.no-img a[target="_blank"] .icon_rear {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
	background-size: contain;
	margin-left: 5px;
}

#header .on-pc .hx_gnavi >*> .h-panel.no-img a .text span {
	display: none;
}

/* 現在地 */
body:not(.is-megadrop-open) #header .on-pc .hx_gnavi >*> .h-panel.no-img a.act ,
body:not(.is-megadrop-open) #header .on-pc .hx_gnavi >*> .h-panel.no-img a.within {
	background-color: #f7f7f7;
}

body:not(.is-megadrop-open) #header .on-pc .hx_gnavi >*> .h-panel.no-img a.act::after ,
body:not(.is-megadrop-open) #header .on-pc .hx_gnavi >*> .h-panel.no-img a.within::after {
	opacity: 1;
	transform: scale(1);
}

/* マウスオーバー */
/*#header .on-pc .hx_gnavi >*> .h-panel.no-img a:focus-within , */ 
#header .on-pc .hx_gnavi >*> .h-panel.no-img a:hover {
	color: rgba(0, 0, 0, 0.5);
}

body:not(.is-megadrop-open) #header .on-pc .hx_gnavi:focus-within >*> .h-panel.no-img a ,
body:not(.is-megadrop-open) #header .on-pc .hx_gnavi:hover >*> .h-panel.no-img a {
	background-color: #f7f7f7;
}

/*#header .on-pc .hx_gnavi:focus-within >*> .h-panel.no-img a::after ,*/
#header .on-pc .hx_gnavi:hover >*> .h-panel.no-img a::after {
	opacity: 1;
	transform: scale(1);
}

/* メガドロップメニュー開 */
#header .on-pc .ux_gnavi_megamenu.state-open >* > .h-panel.no-img a {
	background-color: #fff;
}

#header .on-pc .ux_gnavi_megamenu.state-open >*> .h-panel.no-img a::before {
	transform: translateY(-50%) rotate(180deg);
}

#header .on-pc .ux_gnavi_megamenu.state-open >* > .h-panel.no-img a::after {
	opacity: 1;
	transform: scale(1);
}





/* タブレット対応 */
@media screen and (max-width: 1200px) {
	#header .on-pc .hx_logo >* {
		left: 10px;
	}

	#header .on-pc .hx_lang_navi .h-link-list li > a ,
	#header .on-pc .hx_lang_navi .h-link-list li > span ,
	#header .on-pc .hx_utility_link .h-link-list li > a ,
	#header .on-pc .hx_utility_link .h-link-list li > span {
		padding: 0 2px;
		font-size: 12px;
	}

	#header .on-pc .hx_search_btn .search_btn {
		padding-left: 3px;
		padding-right: 10px;
	}

	#header .on-pc .hx_gnavi_box {
		padding-left: 100px;
	}

	#header .on-pc .hx_gnavi_box > * > * {
		justify-content: flex-start;
	}

	#header .on-pc .hx_gnavi >*> .h-panel.no-img a {
		padding-left: 2px;
		padding-right: 2px;
		font-size: 12px;
/*		letter-spacing: 0.48px; */
	}

	#header .on-pc .ux_gnavi_megamenu >*> .h-panel.no-img a {
		padding-left: 8px;
		padding-right: 16px;
		font-size: 13px;
	}

	#header .on-pc .ux_gnavi_megamenu >*> .h-panel.no-img a::before {
		right: 0;
	}
}


/* IR TOP 用 */
body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_panel {
	background: transparent;
}

body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_panel::before {
	background: rgb(255 255 255 / 20%);
	background: rgb(255,255,255, 0.2);
}

body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_logo >* >* >* > .h-column1 {
	display: none;
}

body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_logo >* >* >* > .h-column2 {
	display: flex;
}

body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_gnavi >*> .h-panel.no-img a {
	color: #fff;
	background: transparent;
}

body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .ux_gnavi_megamenu >*> .h-panel.no-img a::before {
	background-image: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_menu_arrow_white.svg);
}

body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_utility_link .h-link-list li > a ,
body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_utility_link .h-link-list li > span ,
body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_lang_navi .h-link-list li > a ,
body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_lang_navi .h-link-list li > span {
	color: #fff;
	background: transparent;
}

body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_utility_link::after ,
body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_lang_navi::after {
	background: rgb(255 255 255 / 20%);
	background: rgb(255,255,255, 0.2);
}

body#ir-top:not(.is-megadrop-open) #pagetop:not(.float) ~* #header:not(:hover) .on-pc .hx_search_btn .search_btn span {
	background-image: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_search_white.svg);
}





/* メガドロップメニュー 開閉機構・アニメーション */
#header .on-pc .ux_gnavi_megamenu >* > .reuse-main-area {
/*	opacity: 0; */
/*	visibility: hidden; */
/*	max-height: 0; */

	z-index: 100;
/*	transition: 0.5s; */
}

#header .on-pc .ux_gnavi_megamenu.state-open >* > .reuse-main-area {
/*	opacity: 1; */
/*	visibility: visible; */
/*	max-height: 380px; */
}

#header .on-pc .ux_gnavi_megamenu >* > .reuse-main-area .gnavi-close-btn {
	position: absolute;
	top: 32px;
	right: 32px;
	display: block;
	width: 20px;
	height: 20px;
	z-index: 1;
}

#header .on-pc .ux_gnavi_megamenu >* > .reuse-main-area .gnavi-close-btn::before {
	content: "";
}

#header .on-pc .ux_gnavi_megamenu >* > .reuse-main-area .gnavi-close-btn span {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 20px;
	height: 20px;
	background: url(https://jp.corp-sansan.com//corp/wp-content/themes/sansan-corp4/img/header/header_sp_menu_close.svg) no-repeat center center;
	background-size: contain;
}


/* メガドロップメニュー 閉パネル */
#header .on-pc .ux_gnavi_megamenu_close_btn {
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	padding: 0;
	z-index: 99;
}

#header .on-pc .ux_gnavi_megamenu.state-open ~ .ux_gnavi_megamenu_close_btn {
	height: calc(100vh - var(--header-height-pc));
}



/* メガドロップメニュー スタイル */
#header .on-pc .ux_gnavi_megamenu >* > .reuse-main-area {
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	padding: 0;
	z-index: 100;
}

#header .on-pc .ux_gnavi_megamenu >* > .reuse-main-area::after {
	content: "";
	overflow: hidden;
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 100%;
	height: calc(100% - 8px);
/* height:100% だと ドロップシャドーが付けられない */
	padding: 0;
	background: #fff;
	border-bottom: 2px solid rgba(0,0,0,.1);
	z-index: -1;
}


/* メガドロップ カラム割 */
#header .on-pc .hx_gnavi * * .h-multiColumn {
	display: flex;
	flex-flow: row nowrap;
	align-items: normal;
	justify-content: flex-start;
	width: 100%;
	gap: 0 var(--column-side-margin);
}

#header .on-pc .hx_gnavi * * .h-multiColumn > .h-column {
	flex: 0 0 auto;
}

#header .on-pc .hx_gnavi * * .h-multiColumn1 > .h-column {
	width: calc(100% * var(--mainarea-base));
	max-width: var(--mainarea-width);
}
#header .on-pc .hx_gnavi * * .h-multiColumn2 > .h-column {
	width: calc((100% * var(--mainarea-base) - var(--column-side-margin)) / 2);
	max-width: calc((var(--mainarea-width) - var(--column-side-margin)) / 2);
}
#header .on-pc .hx_gnavi * * .h-multiColumn3 > .h-column {
	width: calc((100% * var(--mainarea-base) - 2 * var(--column-side-margin)) / 3);
	max-width: calc((var(--mainarea-width) - 2 * var(--column-side-margin)) / 3);
}
#header .on-pc .hx_gnavi * * .h-multiColumn4 > .h-column {
	width: calc((100% * var(--mainarea-base) - 3 * var(--column-side-margin)) / 4);
	max-width: calc((var(--mainarea-width) - 3 * var(--column-side-margin)) / 4);
}
#header .on-pc .hx_gnavi * * .h-multiColumn5 > .h-column {
	width: calc((100% * var(--mainarea-base) - 4 * var(--column-side-margin)) / 5);
	max-width: calc((var(--mainarea-width) - 4 * var(--column-side-margin)) / 5);
}

#header .on-pc .hx_gnavi * * .lx_mcol3_ratio1on1.h-multiColumn3 > .h-column1 ,
#header .on-pc .hx_gnavi * * .lx_mcol3_ratio1on1.h-multiColumn3 > .h-column3 {
	width: calc(100% * var(--mainarea-base));
	max-width: var(--mainarea-width);
}

/* メガドロップ マージン設定 */
#header .on-pc .hx_gnavi >* > .reuse-main-area > .h-multiColumn.empty {
	display: none;
}

#header .on-pc .hx_gnavi >* > .reuse-main-area > .h-multiColumn {
	position: relative;
	width: calc(100% - 40px);
	max-width: var(--mainarea-width);
	margin: 0 auto;
}
#header .on-pc .hx_gnavi >* > .reuse-main-area > a:first-child + .h-multiColumn ,
#header .on-pc .hx_gnavi >* > .reuse-main-area > .h-multiColumn:first-child {
	margin-top: 28px;
}
#header .on-pc .hx_gnavi >* > .reuse-main-area > .h-multiColumn:last-child {
	margin-bottom: 10px;
}

/* タブレット対応 */
@media screen and (max-width: 1200px) {
	#header .on-pc .hx_gnavi >* > .reuse-main-area > .h-multiColumn {
		width: calc(100% - 24px);
	}
}


/*== メガドロップの中身 ==*/

/* 区切り線 */
#header .on-pc .hx_gnavi * * .hx_menu_hairline {
	margin-top: 28px;
	padding-top: 40px;
}
#header .on-pc .hx_gnavi * * .hx_menu_hairline::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100%);
	height: 1px;
	background: #e6e6e6;
}


/* テキストバナー(スタイルB) on メガドロップ */
#header .on-pc .hx_gnavi * * .h-panel.no-img.style2 {
	margin-bottom: 20px;
}

#header .on-pc .hx_gnavi * * .h-panel.no-img.style2 a {
	position: relative;
	display: inline-block;
	color: inherit;
	font-size: 30px;
	line-height: 1.25;
}


/* 画像バナー on メガドロップ */
#header .on-pc .hx_gnavi * * .h-panel.has-img.style1 a {
	position: relative;
	display: flex;
	flex-direction: column;
}

#header .on-pc .hx_gnavi * * .h-panel.has-img.style1 a > * {
	flex: 0 0 auto;
	margin: 0;
}

#header .on-pc .hx_gnavi * * .h-panel.has-img.style1 a .text {
	order: 2;
	position: relative;
	font-size: 14px;
	color: inherit;
	border-bottom: 1px solid transparent;
	text-decoration: none;
	padding-left: 20px;
}

#header .on-pc .hx_gnavi * * .h-panel.has-img.style1 .icon_front {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
	left: 10px;
	display: block;
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}

#header .on-pc .hx_gnavi * * .h-internal-panel.has-img.style1 a[target="_blank"] .icon_rear ,
#header .on-pc .hx_gnavi * * .h-external-panel.has-img.style1 a[target="_blank"] .icon_rear {
	border: none;

	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
	background-size: contain;
}

#header .on-pc .hx_gnavi * * .h-download-panel.has-img.style1 a[href*=".pdf"] .icon_rear {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 23px;
	background: url("../../../../../../resources/templating-kit/themes/pop/img/defaulticon/common/pdf.png") center center no-repeat;
	background-size: contain;
	margin-left: 5px;
}

#header .on-pc .hx_gnavi * * .h-panel.has-img.style1 .text + figure {
	order: 1;
	display: block;
	margin-bottom: 5px;
}

#header .on-pc .hx_gnavi * * .h-panel.has-img.style1 .text + figure img {
	display: block;
}



#header .on-pc .hx_gnavi * * .h-panel.has-img.style1 a:hover .text {
	text-decoration: underline;
}

#header .on-pc .hx_gnavi * * .h-panel.has-img.style1 a:hover img {
	opacity: 0.7;
}

/* インデックス・サイトマップ・リンクリスト on メガドロップ */
#header .on-pc .hx_gnavi * * .h-link-list ,
#header .on-pc .hx_gnavi * * .h-index-map {
	font-size: 0;
}

/* 折り返し(逆N型) */
#header .on-pc .hx_gnavi * * .h-link-list ul ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_0 ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_1 {
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

/* 折り返し(逆N型2列) */
/*#header .on-pc .hx_gnavi * * .ux_fold_imap_col2 .h-link-list ul ,*/
#header .on-pc .hx_gnavi * * .ux_fold_imap_col2 .h-index-map > ul.indexLevel_1 {
	width: calc(50% - 10px);
	margin-right: 10px;
}

/* 折り返し(逆N型3列) */
/*#header .on-pc .hx_gnavi * * .ux_fold_imap_col3 .h-link-list ul ,*/
#header .on-pc .hx_gnavi * * .ux_fold_imap_col3 .h-index-map > ul.indexLevel_1 {
	width: calc(33.33% - 10px);
	margin-right: 10px;
}

/* 折り返し(逆N型4列) */
/*#header .on-pc .hx_gnavi * * .ux_fold_imap_col4 .h-link-list ul ,*/
#header .on-pc .hx_gnavi * * .ux_fold_imap_col4 .h-index-map > ul.indexLevel_1 {
	width: calc(25% - 10px);
	margin-right: 10px;
}

/* インデックス・サイトマップ・リンクリスト on メガドロップ */
/* 第２階層 */
#header .on-pc .hx_gnavi * * .h-link-list li.highlight ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_0 {
	line-height: 1.75;
	margin-bottom: 28px;
}

#header .on-pc .hx_gnavi * * .h-link-list li.highlight > a ,
#header .on-pc .hx_gnavi * * .h-link-list li.highlight > span ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_0 > li > .item > a ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_0 > li > .item > span {
	display: inline-block;
	color: inherit;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing);
/*	transition: opacity .04s linear; */
	transition: opacity .3s cubic-bezier(.17,.67,.68,1.04);
}

#header .on-pc .hx_gnavi * * .h-link-list li.highlight > a::before ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_0 > li > .item > a::before {
}

#header .on-pc .hx_gnavi * * .h-link-list li.highlight > a::after ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_0 > li > .item > a::after {
	content: "";
	background-image: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_arrow_black.svg);
	background-position: 100%;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 10px;
	height: 16px;
	margin-left: 8px;
	line-height: 1;
}

html:lang(en) #header .on-pc .hx_gnavi * * .h-link-list li.highlight > a::after ,
html:lang(en) #header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_0 > li > .item > a::after {
	margin-left: 13px;
}

#header .on-pc .hx_gnavi * * .h-link-list li.highlight > a:hover ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_0 > li > .item > a:hover {
	opacity: 0.5;
}

/* 第３階層 */
#header .on-pc .hx_gnavi * * .h-link-list:not(.highlight) ul ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_1 {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

#header .on-pc .hx_gnavi * * .h-link-list li:not(.highlight) ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_1 > li {
	position: relative;
	display: block;
	vertical-align: top;
	width: 33.333%;
	line-height: 1.75;
	margin-bottom: 40px;
}


#header .on-pc .hx_gnavi * * .h-link-list li:not(.highlight) > a ,
#header .on-pc .hx_gnavi * * .h-link-list li:not(.highlight) > span ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_1 > li > .item > a ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_1 > li > .item > span {
	display: inline-block;
	color: inherit;
	font-size: 16px;
	font-weight: bold;
/*	line-height: 1; */
	letter-spacing: var(--text-letter-spacing);
	transition: opacity .3s cubic-bezier(.17,.67,.68,1.04);
}

#header .on-pc .hx_gnavi * * .h-link-list li:not(.highlight) > a::before ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_1 > li > .item > a::before {
}

#header .on-pc .hx_gnavi * * .h-link-list li:not(.highlight) > a[target="_blank"]::after ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_1 > li > .item > a[target="_blank"]::after {
	content: "";
	position: relative;
	top: 2px;
	display: inline-block;
	vertical-align: baseline;
	width: 14px;
	height: 14px;
	background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
	background-size: contain;
	margin-left: 8px;
}

#header .on-pc .hx_gnavi * * .h-link-list li:not(.highlight) > a:hover ,
#header .on-pc .hx_gnavi * * .h-index-map > ul.indexLevel_1 > li > .item > a:hover {
	opacity: 0.5;
}

/* 第４階層 */
#header .on-pc .hx_gnavi * * .h-index-map ul.indexLevel_2 {
	display: none;
}


/* IR サブリンク */
/* 区切り線 */
#header .on-pc .hx_gnavi * * .hx_menu_sublink {
	position: relative;
	padding-top: 33px;
}
#header .on-pc .hx_gnavi * * .hx_menu_sublink::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100%);
	height: 1px;
	background: #e6e6e6;
}

#header .on-pc .hx_gnavi * * .hx_menu_sublink .h-link-list li:not(.highlight) ,
#header .on-pc .hx_gnavi * * .hx_menu_sublink .h-index-map > ul.indexLevel_1 > li {
	width: auto;
	margin-right: 56px;
	margin-bottom: 40px;
}

#header .on-pc .hx_gnavi * * .hx_menu_sublink .h-link-list li:not(.highlight) > a ,
#header .on-pc .hx_gnavi * * .hx_menu_sublink .h-link-list li:not(.highlight) > span ,
#header .on-pc .hx_gnavi * * .hx_menu_sublink .h-index-map > ul.indexLevel_1 > li > .item > a ,
#header .on-pc .hx_gnavi * * .hx_menu_sublink .h-index-map > ul.indexLevel_1 > li > .item > span {
	display: inline-block;
	color: inherit;
	font-size: 14px;
	font-weight: bold;
	line-height: 2;
	letter-spacing: var(--text-letter-spacing);
}

#header .on-pc .hx_gnavi * * .hx_menu_sublink .h-link-list li:not(.highlight) > a:hover ,
#header .on-pc .hx_gnavi * * .hx_menu_sublink .h-index-map > ul.indexLevel_1 > li > .item > a:hover {
	opacity: 0.5;
}



/* コンパクトヘッダー */
/*
#header .on-pc .hx_panel ,
#header .on-pc .hx_gnavi_box ,
#header .on-pc .hx_sub_panel ,
#header .on-pc .hx_logo >* >* >* >* {
	transition: 0.3s;
}

#pagetop.float ~* #header {
	--header-height-pc: 75px;
//	--header-gnavi-height-pc: 55px;
}

#pagetop.float ~* #header .on-pc .hx_sub_panel {
	opacity: 0;
	z-index: -1;
}
*/

/*------------- スマホ用ヘッダー -------------*/
@media screen and (max-width: 768px) {

	/* ハンバーガーアイコン */
	#header .panel2-btn ,
	#panel2-btn {
		position: fixed;
		top: 6px;
		left: 9px;
		display: block;
		width: 48px;
		height: 48px;
		margin: 0;
		border-radius: 0;
		background: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_sp_menu_black.svg) no-repeat center center;
		background-size: 21px 10px;
		z-index: 1111;
	}

	#header .panel2-btn:hover ,
	#panel2-btn:hover {
	}

	.panel2-btn-icon1 ,
	.panel2-btn-icon2 ,
	.panel2-btn-icon3 {
		display: none !important;
	}

	.panel2-btn-title {
		display: none !important;
	}


	/* open時 */
	#panel2-sw:checked ~* #header .panel2-btn {
		background-image: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_sp_menu_close.svg);
		background-size: 14px 14px;
	}

}

/*------------------ ヘッダー ------------------*/
/* ヘッダーパネル */
#header .on-sp .hx_panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height-sp);
	background: #fff;
	border-bottom: 1px solid #eee;
	z-index: 1010;
}

/* ロゴ */
#header .on-sp .hx_logo {
	position: relative;
}

#header .on-sp .hx_logo >* >* >* >*  {
	position: absolute;
	top: calc(var(--header-height-sp) / 2);
	left: 50%;
	transform: translate(-50%,-50%);
}

#header .on-sp .hx_logo >* >* >* > .h-column2 {
	display: none;
}

#header .on-sp .hx_logo a {
	display: block;
	width: 60px;
	height: 23px;
}

[lang="en"] #header .on-sp .hx_logo a {
}

#header .on-sp .hx_logo a figure {
	margin: 0;
}

#header .on-sp .hx_logo a img {
	display: block;
	max-width: 100%;
	margin: 0;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: left center;
	   object-position: left center;
	opacity: 1;
}


/* 言語リンク */
#header .on-sp .hx_lang_navi {
	position: absolute;
	top: 20px;
	right: 10px;
	z-index: 1050;
}

body:not(.is-fixed) #header .on-sp .hx_lang_navi {
	visibility: hidden;
}

#header .on-sp .hx_lang_navi .h-link-list ul {
	display: flex;
	flex-flow: row nowrap;
}

#header .on-sp .hx_lang_navi .h-link-list ul li {
}

#header .on-sp .hx_lang_navi .h-link-list ul li.highlight {
	display: none;
}

#header .on-sp .hx_lang_navi .h-link-list ul li > a ,
#header .on-sp .hx_lang_navi .h-link-list ul li > span {
	display: block;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing);
	color: inherit;
	line-height: 1;
}

/*#header .on-sp .hx_lang_navi .h-link-list ul li > a.act , */
/*#header .on-sp .hx_lang_navi .h-link-list ul li > a.within , */
#header .on-sp .hx_lang_navi .h-link-list ul li.highlight > span ,
#header .on-sp .hx_lang_navi .h-link-list ul li.highlight > a {
	color: var(--key-color);
	background: #F2F9F3;
	border-bottom-color: var(--key-color);
}



/* 検索窓 */
#header .on-sp .hx_search_box {
	font-size: 16px;
}

/* 検索ダイアログ */
/*
#header .on-sp .hx_search_btn {
	position: absolute;
	top: 10px;
	right: 50px;
}

#header .on-sp .hx_search_btn .search_btn {
	cursor: pointer;
}

#header .on-sp .hx_search_btn .search_btn span {
	display: block;
	width: 32px;
	height: 32px;
	background: rgba(0,128,1,0.05) url("../../../../../../resources/sw_img/icon/icon_search.svg") no-repeat center center;
	background-size: 18px 18px;
	border-radius: 100%;
}
*/

/* 検索窓 */
#header .on-sp .navSubMenu {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	margin-bottom: 30px;
}

#header .on-sp input#input-text.search-navi_input {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #000;
    display: block;
    font-size: 16px;
    font-weight: 300;
    padding: 8px 0;
    width: 100%
}

#header .on-sp input#input-text.search-navi_input:focus {
    outline: none
}

#header .on-sp .search-navi {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 40px;
    max-width: 960px;
    width: 100%
}

#header .on-sp .search-navi__btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url(/corp/wp-content/themes/sansan-corp4/img/header/header_search_white.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    height: 24px;
    outline: none;
    padding: 0;
    width: 24px
}


/*
    .navMenuItem.is-hover .navSubMenu {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: block;
        margin-top: 28px;
        width: 100%
    }

    .navMenuItem__btn_close,.navMenuItem__btn_search {
        display: none
    }

    .navMenuItem--search {
        margin-bottom: 30px;
        margin-top: 90px
    }

    .navMenuItem--search .navMenuItem__header {
        display: none
    }

    .navMenuItem--search .navMenuItem__body {
        display: block!important
    }

    .navMenuItem--search .navSubMenu {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-left: 0
    }

    .navMenuItem--search input#input-text.search-navi_input {
        color: #000;
        padding: 8px 0
    }

    .navMenuItem--search .navMenuItem--label {
        display: none
    }
*/

#header .on-sp .search-navi {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
	max-width: 100%;
	width: 100%
}

#header .on-sp .search-navi__btn {
	background-image: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_search_gray.svg);
	background-position: 100%;
	background-repeat: no-repeat
}

#header .on-sp .navSubMenu__cmask_under {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	width: 100%
}

#header .on-sp .navSubMenu__cmask_under .navSubMenuItem {
	font-weight: 700;
	margin-bottom: 16px;
	margin-top: 0;
	width: 50%
}

#header .on-sp .navSubMenu__cmask_under .navSubMenuItem a {
	font-size: 12px;
}


/* IR TOP 用 */
body#ir-top:not(.is-fixed) #pagetop:not(.float) ~* #header .on-sp .hx_panel {
	background: transparent;
	border-bottom-color: transparent;
}

body#ir-top:not(.is-fixed) #pagetop:not(.float) ~* #header .on-sp .hx_logo >* >* >* > .h-column1 {
	display: none;
}
body#ir-top:not(.is-fixed) #pagetop:not(.float) ~* #header .on-sp .hx_logo >* >* >* > .h-column2 {
	display: flex;
}

body#ir-top:not(.is-fixed) #pagetop:not(.float) ~* #header .panel2-btn {
	background-image: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_sp_menu_white.svg);
}






/* メニュー */
/* ヘッダーの下に表示 */
#header .on-sp .hx_menu {
	font-size: 0;
	position: fixed;
	top: var(--header-height-sp);
	left: 0;
	width: 100vw;
	height: calc(100% - var(--header-height-sp));
	max-height: 100%;
	overflow: hidden;
	z-index: 1000;
	transition: .3s;

	max-height: 0;
/*	left: 100%; */
}

#panel2-sw.open ~* #header .on-sp .hx_menu ,
#panel2-sw:checked ~* #header .on-sp .hx_menu {
	max-height: 100%;
/*	left: 0; */
}

#header .on-sp .hx_menu > * {
	position: absolute;
	width: 100vw;
	height: 100%;
	overflow: hidden;
	overflow-y: scroll;
	background: #fff;
	transition: 0.3s;
}

#header .on-sp .hx_menu >* > * {
	padding: 30px 24px 132px;
/*	background: rgba(255, 255, 255, 0.9); */
	transition: 0.5s;
}


/* クリックオープンメニュー */
#header .on-sp .ux_click_open .hx_gnavi_box {
	padding: 0;
}

/* 共通 */
#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map .item {
/*	color: #fff; */
/*	background: #585757; */
}

#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li > a ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li > span ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map .item > a ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map .item > span {
	position: relative;
	display: block;
	color: inherit;
	font-size: 14px;
	font-weight: normal;
	letter-spacing: var(--text-letter-spacing);
	padding: 19px 0;
	text-align: left;
}

#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li > a[target="_blank"]::after ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map .item > a[target="_blank"]::after {
	content: "";
	display: inline-block;
	vertical-align: baseline;
	width: 14px;
	height: 14px;
	background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
	background-size: contain;
	margin: 0 8px;
}

#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li > a:hover ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map .item > a:hover {
}

/* 親階層 */
#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li.highlight ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_0 > li > .item {
	border-top: 1px solid rgba(0,0,0,.1);
}

#header .on-sp .ux_click_open .hx_gnavi_box >*>*>*:first-child .h-link-list li.highlight ,
#header .on-sp .ux_click_open .hx_gnavi_box >*>*>*:first-child .h-index-map ul.indexLevel_0 > li > .item {
	border-top: none;
}

#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li.highlight > a ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li.highlight > span ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_0 > li > .item > a ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_0 > li > .item > span {
	padding-left: 15px;
	font-size: 16px;
	font-weight: bold;
}

#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li.highlight > a::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li.highlight > span::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_0 > li > .item > a::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_0 > li > .item > span::before {
}

/* 親要素アクティブ = IRのみ */
#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li.highlight > a.wihtin::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_0 > li > .item > a.wihtin::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .lx_menu_act .h-link-list li.highlight > a::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .lx_menu_act .h-index-map ul.indexLevel_0 > li > .item > a::before {
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 9px);
	display: block;
	height: 18px;
	width: 3px;
	background-color: #d70c18;
}



/* 子階層 */
#header .on-sp .ux_click_open .hx_gnavi_box .h-column3 .h-link-list ul ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-column3 .h-index-map ul.indexLevel_1 {
	margin-left: 44px;
}

#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li:not(.highlight) ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_1 > li > .item {
	margin: 0 0 20px;
	line-height: 1.15;
}

#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li:not(.highlight) > a ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li:not(.highlight) > span ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_1 > li > .item > a ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_1 > li > .item > span {
	display: inline-block;
	padding: 0;
	padding-left: 8px;
	color: rgba(0,0,0,.5);
	font-weight: 700;
	line-height: 1.15;
}

#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li:not(.highlight) > a::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li:not(.highlight) > span::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_1 > li > .item > a::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_1 > li > .item > span::before {
}

#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li:not(.highlight) > a br ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li:not(.highlight) > span br ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_1 > li > .item > a br ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_1 > li > .item > span br {
	display: none;
}

/* 子要素アクティブ */
#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li:not(.highlight) > a.act ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_1 > li > .item > a.act {
	padding-left: 3px;
	color: inherit;
}

#header .on-sp .ux_click_open .hx_gnavi_box .h-link-list li:not(.highlight) > a.act::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_1 > li > .item > a.act::before {
	content: "";
	position: absolute;
	left: -8px;
	top: calc(50% - 8px);
	display: block;
	height: 16px;
	width: 3px;
	background-color: #d70c18;
}


/* 孫階層(非表示) */
#header .on-sp .ux_click_open .hx_gnavi_box .h-index-map ul.indexLevel_2 {
	display: none;
}

/* IR サブリンク */
#header .on-sp .ux_click_open .hx_gnavi_box .hx_menu_sublink .h-link-list ul ,
#header .on-sp .ux_click_open .hx_gnavi_box .hx_menu_sublink .h-index-map ul.indexLevel_1 {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
}

#header .on-sp .ux_click_open .hx_gnavi_box .hx_menu_sublink .h-link-list li:not(.highlight) ,
#header .on-sp .ux_click_open .hx_gnavi_box .hx_menu_sublink .h-index-map ul.indexLevel_1 > li > .item {
	width: calc((100% - 44px) / 2);
}

#header .on-sp .ux_click_open .hx_gnavi_box .hx_menu_sublink .h-link-list li:not(.highlight) > a ,
#header .on-sp .ux_click_open .hx_gnavi_box .hx_menu_sublink .h-link-list li:not(.highlight) > span ,
#header .on-sp .ux_click_open .hx_gnavi_box .hx_menu_sublink .h-index-map ul.indexLevel_1 > li > .item > a ,
#header .on-sp .ux_click_open .hx_gnavi_box .hx_menu_sublink .h-index-map ul.indexLevel_1 > li > .item > span {
	color: rgba(0, 0, 0, .5);
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
/*	transition: max-height .25s cubic-bezier(.215,.61,.355,1); */
}


/* 開閉ボタン */
#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 {
	position: relative;
}

#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 .h-title4 {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
	color: transparent;
	font-size: 0;
}

#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 .h-title4 h4 {
	content: "";
	position: absolute;
	top: 27px;
	right: 10px;
	display: block;
	width: 12px;
	height: 7px;
	background-image: url(https://jp.corp-sansan.com/corp/wp-content/themes/sansan-corp4/img/header/header_sp_menu_arrow.svg);
	background-position: 100%;
	background-repeat: no-repeat;
	background-size: 12px 7px;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion.open > .h-column1 .h-title4 h4 {
	transform: rotate(180deg);
}

#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 .h-link-list li > a ,
#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 .h-link-list li > span ,
#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 .h-index-map .item > a ,
#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 .h-index-map .item > span {
	margin-right: 70px;
}
#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 .h-link-list li > a::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 .h-link-list li > span::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 .h-index-map .item > a::before ,
#header .on-sp .ux_click_open .hx_gnavi_box .ux_accordion > .h-column1 .h-index-map .item > span::before {
}


/* 3way-navi */
#header .on-sp .ux_navi_3way .hx_gnavi_box {
}

/* フォルダ開閉 */
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map ul {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	padding-bottom: 20px;
	background: #fff;
	overflow: hidden;
	z-index: 1;
	transition: 0.5s;
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map ul.open {
	left: 0;
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map ul.active {
	overflow-y: scroll;
}

/* 開いている階層以外は透過 */
/*
#header .on-sp .ux_navi_3way >*:not(.active) ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map ul:not(.active) {
	background: transparent;
}

#header .on-sp .ux_navi_3way > *:not(.active) .hx_sub_menu ,
#header .on-sp .ux_navi_3way > *:not(.active) .hx_gnavi_box .h-index-map > .item > a ,
#header .on-sp .ux_navi_3way > *:not(.active) .hx_gnavi_box .h-index-map > .item > span ,
#header .on-sp .ux_navi_3way > *:not(.active) .hx_gnavi_box .h-link-list li > a ,
#header .on-sp .ux_navi_3way > *:not(.active) .hx_gnavi_box .h-link-list li > span {
	opacity: 0;
}
*/

/* 各要素共通 */
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item > a ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item > span ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > a ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > span {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 50px;
	text-align: left;
	margin: 0 10px;
	padding: 10px 10px;
	padding-left: 30px;
	color: #000;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: var(--text-letter-spacing);
	text-decoration: none;
	border-bottom: 1px solid #f0f0f0;
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item > a[target="_blank"]::after ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > a[target="_blank"]::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
	background-size: contain;
	margin: 0 4px;
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item > a[href*=".pdf"]::after ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > a[href*=".pdf"]::after {
	content: none;
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item > a .filesize ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > a em {
	font-style: normal;
	font-size: 75%;
}

/* 通常リンク */
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item:not(.gn-to-folder):not(.gn-folder-top):not(.gn-back) > a ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > a {
	color: var(--key-color);
	font-weight: bold;
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item:not(.gn-to-folder):not(.gn-folder-top):not(.gn-back) > a::before ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > a::before {
	content: "";
	position: absolute;
	left: 10px;
	top: calc(50% - 5px);
	width: 7px;
	height: 7px;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	transform: rotate(135deg);
}

/* 現在地表示 */
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item:not(.gn-to-folder) > a.act ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > a.act {
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item:not(.gn-to-folder) > a.act::before ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > a.act::before {
}

/* ↓階層フォルダへ */
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-to-folder > a ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-to-folder > span {
	padding-right: 30px;
	color: #000;
	font-weight: bold;
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-to-folder > a::before ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-to-folder > span::before {
	content: "";
	position: absolute;
	right: 10px;
	top: calc(50% - 5px);
	display: block;
	width: 7px;
	height: 7px;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	transform: rotate(135deg);
}

/* ↑階層へ(BACK) */
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-back > a {
	padding-left: 30px;
	color: #000;
	font-weight: bold;
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-back > a::before {
	content: "";
	position: absolute;
	left: 10px;
	top: calc(50% - 5px);
	display: block;
	width: 7px;
	height: 7px;
	border-top: 1px solid #222;
	border-left: 1px solid #222;
	transform: rotate(-45deg);
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-back > a span {
	display: inline;
}

/*
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-back > a span {
	display: none;
}
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-back > a::after {
	content: "戻る"
}
[lang="en"] #header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-back > a::after {
	content: "BACK";
}
*/

/* フォルダトップ */
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-folder-top > a ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-folder-top > span {
/*	padding-left: 30px; */
	font-size: 16px;
	color: var(--key-color);
	font-weight: bold;
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-folder-top > a::after ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-folder-top > span::after {
	content: "TOP";
}

#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-folder-top > a::before ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map .item.gn-folder-top > span::before {
/*
	content: "";
	position: absolute;
	left: 10px;
	top: calc(50% - 5px);
	display: block;
	width: 9px;
	height: 9px;
	border-top: 2px solid var(--key-color);
	border-left: 2px solid var(--key-color);
	transform: rotate(-45deg);
*/
}


/* 第２階層 */
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map > .item > a ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map > .item > span ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > a ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-link-list li > span {
}

/* 第３階層以下 */
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map ul .item:not(.gn-to-folder):not(.gn-folder-top) > a ,
#header .on-sp .ux_navi_3way .hx_gnavi_box .h-index-map ul .item:not(.gn-back) > span {
}




/* メニュー内サブエリア */
#header .on-sp .hx_sub_menu {
}


/* お問い合わせリンク・エントリーボタン */
#header .on-sp .hx_contact_link {
	float: left;
	width: 50%;
}

#header .on-sp .hx_contact_link .h-link-list ul ,
#header .on-sp .hx_contact_link .h-index-map > ul {
}

#header .on-sp .hx_contact_link .h-link-list ul li ,
#header .on-sp .hx_contact_link .h-index-map > ul > li {
	position: relative;
}

#header .on-sp .hx_contact_link .h-link-list ul li > a ,
#header .on-sp .hx_contact_link .h-link-list ul li > span ,
#header .on-sp .hx_contact_link .h-index-map > ul > li > .item > a ,
#header .on-sp .hx_contact_link .h-index-map > ul > li > .item > span {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 45px;
	padding: 3px 30px;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing);
	line-height: 1.5;
	background: var(--key-color);
}

#header .on-sp .hx_contact_link .h-link-list ul li > span::before ,
#header .on-sp .hx_contact_link .h-link-list ul li > a::before {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
	right: 10px;
	display: block;
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

#header .on-sp .hx_contact_link .h-link-list ul li > a[target="_blank"]::before {
	content: none;
}

#header .on-sp .hx_contact_link .h-link-list ul li > a[target="_blank"]::after {
	content: "";
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
	background-size: contain;
	margin-left: 8px;
}


/* ヘッダーユーティリティリンク集 */
#header .on-sp .hx_utility_link {
	float: left;
	width: 50%;
}

#header .on-sp .hx_utility_link .h-link-list ul {
}

#header .on-sp .hx_utility_link .h-link-list ul li {
	position: relative;
}

#header .on-sp .hx_utility_link .h-link-list ul li > a ,
#header .on-sp .hx_utility_link .h-link-list ul li > span {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 45px;
	padding: 3px 30px;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: var(--text-letter-spacing);
	background: #444;
}

#header .on-sp .hx_utility_link .h-link-list ul li > span::before ,
#header .on-sp .hx_utility_link .h-link-list ul li > a::before {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
	right: 10px;
	display: block;
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

#header .on-sp .hx_utility_link .h-link-list ul li > a[target="_blank"]::before {
	content: none;
}

#header .on-sp .hx_utility_link .h-link-list ul li > a[target="_blank"]::after {
	content: "";
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 14px;
		background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
	background-size: contain;
	margin-left: 5px;
}

#header .on-sp .hx_utility_link .h-panel {
	position: relative;
	display: inline-block;
}

#header .on-sp .hx_utility_link .h-panel a {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: flex-end;
	padding: 10px 20px;
}

#header .on-sp .hx_utility_link .h-panel a >* {
	order: 0;
	flex: 0 0 auto;
}

#header .on-sp .hx_utility_link .h-panel .text {
	margin-left: 5px;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: var(--text-letter-spacing);
}




#site-info .ax_other {
	display: none;
}

/*== 画面内固定 上に戻るリンク ==*/
#site-info .ux_to_page_top {
	position: relative;
}

#site-info .topcontrol {
	position: fixed;
	left: 0;
	bottom: -80px;
	width: 100%;
	height: 0;
	font-size: 0;
	opacity: 0;
	z-index: 200;
	transition: 0.3s;

	display: none !important;
}

#site-info .topcontrol.visible {
	bottom: 15px;
	opacity: 1;
}

#site-info .topcontrol > div {
	position: relative;
	width: 100%;
	margin: auto;
}

#site-info .topcontrol a {
	position: absolute;
	bottom: 0;
	right: 15px;
}

/* 画像を使用する場合 */
#site-info .topcontrol a {
	display: block;
	width: 60px;
	height: 60px;
/*	background: url("../../../../../../resources/sw_img/default/pagetop.svg") no-repeat center center; */
	background-size: contain;
}

#site-info .topcontrol a:hover {
/*	background-image: url("../../../../../../resources/sw_img/default/pagetop_hover.png");*/
	opacity: 0.7;
}


/* 画像を使用しない場合 */
/*
#site-info .topcontrol a {
	display: block;
	width: 51px;
	height: 42px;
	background: rgba(0,0,0, 0.53);
}

#site-info .topcontrol a::before {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
	left: calc(50% - 9px);
	display: block;
	width: 17px;
	height: 17px;
	border-top: 3px solid #FFF;
	border-left: 3px solid #FFF;
	transform: rotate(45deg);
}
*/

/* ページ内設置 上に戻るリンク */
#site-info .toTop {
	position: relative;
}

#site-info .toTop a {
	position: absolute;
	right: 20px;
	top: 0;
	margin-top: -20px;
	display: block;
	width: 30px;
	height: 72.5px;
}

#site-info .toTop a::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
	width: 30px;
	height: 17px;
	margin: auto;
	background: url(https://jp.corp-sansan.com/img/btn--scrolltop_black.svg) no-repeat center center;
	background-size: contain;
}


@-webkit-keyframes boundScrollTop {
    0% {
        opacity: 0;
        top: 20px
    }

    to {
        opacity: 1;
        top: 0
    }
}

@keyframes boundScrollTop {
    0% {
        opacity: 0;
        top: 20px
    }

    to {
        opacity: 1;
        top: 0
    }
}



/* PC:コンテンツエリアから一定距離以上離れない */
/* SP:常に画面内右下 */
/* 印刷時:非表示 */

@media print, screen and (min-width: 769px) {
	#site-info .topcontrol > div {
		max-width: calc(var(--mainarea-width) + (51px + 50px) *2);
	}

	/* フッターより下に行かない設定 */
	#site-info .topcontrol.fix-bottom {
		position: absolute;
	}


	#site-info .toTop a:hover {
		-webkit-animation: boundScrollTop .3s cubic-bezier(.17,.67,.68,1.04);
		animation: boundScrollTop .3s cubic-bezier(.17,.67,.68,1.04)
	}
}

@media screen and (max-width: 768px) {
	#site-info .topcontrol {
		bottom: -50px;
	}

	#site-info .toTop {
	}

	#site-info .toTop a {
		right: 0;
		top: 20px;
		width: 16px;
		height: 8px;
	}

	#site-info .toTop a::before {
		width: 16px;
		height: 8px;
	}
}

@media print {
	#site-info .topcontrol {
		display: none !important;
	}
}


/*------------- レスポンシブフッター -------------*/
#footer {
	background: #f7f7f7;
}

/* 各背景色 */
#footer .fx_frame5 {
}

#footer .fx_frame4 {
}

#footer .fx_frame3 {
}

#footer .fx_frame2 {
}

#footer .fx_frame1 {
}


@media print, screen and (min-width: 769px) {
	#footer {
		margin-top: 160px;
	}

	#footer .fx_frame5 > * ,
	#footer .fx_frame4 > * ,
	#footer .fx_frame3 > * ,
	#footer .fx_frame2 > * ,
	#footer .fx_frame1 > * {
		max-width: calc(var(--mainarea-width-pc) + 40px);
		padding: 0 40px;
		margin: auto;
	}

	#footer .fx_frame3 {
		padding-top: 64px;
		padding-bottom: 32px;
	}

	html:lang(en) #footer .fx_frame3 {
		padding-bottom: 34px;
	}

	#footer .fx_frame3 > * > * {
		display: flex;
		flex-flow: row nowrap;
/*		align-items: flex-start; */
		justify-content: space-between;
	}

	#footer .fx_frame3 > * > * >*:first-child {
		width: 75%;
	}

	#footer .fx_frame3 > * > * >*:last-child {
		position: relative;
		width: 18.75%;
		padding-left: 24px;
	}

	#footer .fx_frame3 > * > * >*:last-child::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 1px;
		height: calc(100% - 24px);
		background-color: #e6e6e6;
	}

	#footer .fx_frame2 {
		border-top: 1px solid #e6e6e6;
		padding-top: 40px;
	}

	#footer .fx_frame1 {
		padding-bottom: 64px;
	}

	#footer .fx_frame1 > * > * {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: flex-start;
	}
}

@media screen and (max-width: 768px) {
	#footer {
		margin-top: 120px;
	}

	#footer .fx_frame5 > * ,
	#footer .fx_frame4 > * ,
	#footer .fx_frame3 > * ,
	#footer .fx_frame2 > * ,
	#footer .fx_frame1 > * {
/*		max-width: calc(var(--mainarea-width-sp) + 30px); */
		padding: 0 25px;
		margin: auto;
	}

	#footer .fx_frame3 {
		padding-top: 16px;
	}

	#footer .fx_frame2 > * > * {
		border-top: 1px solid #e6e6e6;
		padding-top: 20px;
	}

	#footer .fx_frame1 {
		padding-bottom: 32px;
	}
}


/* フッターバナー*/
#footer .fx_banner {
}

#footer .fx_banner .f-text-section {
	font-size: 18px;
}

@media print, screen and (min-width: 769px) {
	#footer .fx_banner {
		padding: 25px 0 5px;
	}

	/* カラム割 */
	#footer .fx_banner >*>*> * {
		position: relative;
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		justify-content: center;
		gap: 0 var(--column-side-margin);
		width: calc(100% - 40px);
		max-width: var(--mainarea-width);
		margin: 0 auto;
	}

	#footer .fx_banner >*>*> * > * {
		display: block;
	}

	#footer .fx_banner >*>*> .f-multiColumn1 > * {
		width: 100%;
	}
	#footer .fx_banner >*>*> .f-multiColumn2 > * {
		width: calc((100% - var(--column-side-margin)) / 2);
	}
	#footer .fx_banner >*>*> .f-multiColumn3 > * {
		width: calc((100% - var(--column-side-margin) * 2) / 3);
	}
	#footer .fx_banner >*>*> .f-multiColumn4 > * {
		width: calc((100% - var(--column-side-margin) * 3) / 4);
	}
	#footer .fx_banner >*>*> .f-multiColumn5 > * {
		width: calc((100% - var(--column-side-margin) * 4) / 5);
	}
}

@media screen and (max-width: 768px) {
	#footer .fx_banner {
		padding: 35px 10px 40px;
	}

	#footer .fx_banner >*>*> * {
		position: relative;
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		justify-content: center;
		gap: 0 var(--column-side-margin);
		width: calc(100% - 30px);
		max-width: var(--mainarea-width);
		margin: 0 auto;
	}

	#footer .fx_banner >*>*> * > * {
		display: block;
	}

	#footer .fx_banner >*>*> .f-multiColumn1 > * ,
	#footer .fx_banner >*>*> .f-multiColumn2 > * ,
	#footer .fx_banner >*>*> .f-multiColumn3 > * {
		width: 100%;
	}

	#footer .fx_banner >*>*> .f-multiColumn4 > * ,
	#footer .fx_banner >*>*> .f-multiColumn5 > * {
		width: calc((100% - var(--column-side-margin)) / 2);
	}
}


/* フッターサイトマップ */
@media print, screen and (min-width: 769px) {
	#footer .fx_sitemap {
	}

	/* 枠 */
	/* なりゆき、または、折り返すケース */
/*
	#footer .fx_sitemap >* >* {
		display: flex;
		width: 100%;
		flex-flow: row wrap;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0 30px;
	}

	#footer .fx_sitemap >* >* >* {
		width: calc(100% / 5);
		margin: 0;
	}

	#footer .fx_sitemap >* >* >*:last-child {
	}

	#footer .fx_sitemap >* >* > .fx_sitemap_w100 {
		width: 100%;
	}
*/

	/* グリッド */
	html:lang(ja) #footer .fx_sitemap >* >* {
		display: grid;
		gap: 16px;
		grid-template-areas:
		    "areaA areaD areaE areaF"
		    "areaB areaD areaE areaF"
		    "areaC areaD areaE areaF";
		grid-template-columns: 25% 25% 25% 25%;
		grid-template-rows: minmax(0, 38px) minmax(0, 38px) 1fr;
	}

	html:lang(en) #footer .fx_sitemap >* >* {
		display: grid;
		gap: 16px;
		grid-template-areas:
		    "areaA areaD areaE"
		    "areaB areaD areaF"
		    "areaC areaD areaF";
		grid-template-columns: 33% 33% 33%;
		grid-template-rows: minmax(0, 38px) minmax(0, 38px) 1fr;
	}

	#footer .fx_sitemap >* >* >* {
		margin-bottom: 24px;
	}

	#footer .fx_sitemap >* >* >*:nth-child(1) {
		grid-area: areaA;
	}
	#footer .fx_sitemap >* >* >*:nth-child(2) {
		grid-area: areaB;
	}
	#footer .fx_sitemap >* >* >*:nth-child(3) {
		grid-area: areaC;
	}
	#footer .fx_sitemap >* >* >*:nth-child(4) {
		grid-area: areaD;
	}
	#footer .fx_sitemap >* >* >*:nth-child(5) {
		grid-area: areaE;
	}
	#footer .fx_sitemap >* >* >*:nth-child(6) {
		grid-area: areaF;
	}


	/* 共通 */
	#footer .fx_sitemap .f-link-list > ul,
	#footer .fx_sitemap .f-index-map > ul {
		display: inline-block;
		vertical-align: top;
	}

	#footer .fx_sitemap .f-link-list li ,
	#footer .fx_sitemap .f-index-map li > .item {
		position: relative;
		line-height: 1.2;
	}

	#footer .fx_sitemap .f-link-list li > a ,
	#footer .fx_sitemap .f-link-list li > span ,
	#footer .fx_sitemap .f-index-map .item > a ,
	#footer .fx_sitemap .f-index-map .item > span {
		display: inline-block;
		color: inherit;
		line-height: 1.5;
		letter-spacing: var(--text-letter-spacing);
		text-decoration: none;
		transition: opacity .3s cubic-bezier(.17,.67,.68,1.04);
	}

	#footer .fx_sitemap .f-link-list li > a:hover ,
	#footer .fx_sitemap .f-index-map .item > a:hover {
		opacity: 0.5;
	}

	#footer .fx_sitemap .f-link-list li > a[target="_blank"]::after ,
	#footer .fx_sitemap .f-index-map .item > a[target="_blank"]::after {
		content: "";
		position: relative;
		top: 2px;
		display: inline-block;
		vertical-align: baseline;
		width: 12px;
		height: 12px;
		background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
		background-size: contain;
		margin-left: 8px;
	}

	/* 第２階層(カテゴリトップ) */
	#footer .fx_sitemap .f-link-list li.highlight ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_0 > li > .item {
		margin-bottom: 18px;
	}

	#footer .fx_sitemap .f-link-list li.highlight > a ,
	#footer .fx_sitemap .f-link-list li.highlight > span ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_0 > li > .item > a ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_0 > li > .item > span {
		color: #000;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.75;
	}

	/* 第２階層(en) */
	html:lang(en) #footer .fx_sitemap .f-link-list li.highlight ,
	html:lang(en) #footer .fx_sitemap .f-index-map ul.indexLevel_0 > li > .item {
		margin-bottom: 21px;
	}

	/* 第３階層 */
	#footer .fx_sitemap .f-link-list li:not(.highlight) ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_1 > li > .item {
		margin-bottom: 8px;
	}

	#footer .fx_sitemap .f-link-list li:not(.highlight) > a ,
	#footer .fx_sitemap .f-link-list li:not(.highlight) > span ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_1 > li > .item > a ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_1 > li > .item > span {
		font-size: 12px;
		line-height: 2;
	}

	/* 第３階層(en) */
	html:lang(en) #footer .fx_sitemap .f-link-list li:not(.highlight) ,
	html:lang(en) #footer .fx_sitemap .f-index-map ul.indexLevel_1 > li > .item {
		margin-bottom: 7px;
	}

	html:lang(en) #footer .fx_sitemap .f-link-list li:not(.highlight) > a ,
	html:lang(en) #footer .fx_sitemap .f-link-list li:not(.highlight) > span ,
	html:lang(en) #footer .fx_sitemap .f-index-map ul.indexLevel_1 > li > .item > a ,
	html:lang(en) #footer .fx_sitemap .f-index-map ul.indexLevel_1 > li > .item > span {
		line-height: 1.75;
	}

	/* 第４階層 */
	#footer .fx_sitemap .f-index-map ul.indexLevel_2 {
		display: none;
	}

	#footer .fx_sitemap .f-title4 {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	#footer .fx_sitemap {
	}

	#footer .fx_sitemap >* >* {
		display: flex;
		flex-wrap: wrap;
		gap: 0 16px;
		margin-bottom: 24px;
	}

	footer .fx_sitemap >* >* > * {
		width: calc(50% - 8px);
	}

	footer .fx_sitemap >* >* > * {
		margin-bottom: 8px;
	}

	footer .fx_sitemap >* >* > *:nth-child(1) ,
	footer .fx_sitemap >* >* > *:nth-child(2)  {
		margin-bottom: 0px;
	}


	/* 共通 */
	#footer .fx_sitemap .f-link-list li ,
	#footer .fx_sitemap .f-index-map .item {
		line-height: 1.15;
	}

	html:lang(ja) #footer .fx_sitemap .f-link-list li ,
	html:lang(ja) #footer .fx_sitemap .f-index-map .item {
		padding: 2px 0 1px;
	}

	#footer .fx_sitemap .f-link-list li > a ,
	#footer .fx_sitemap .f-link-list li > span ,
	#footer .fx_sitemap .f-index-map .item > a ,
	#footer .fx_sitemap .f-index-map .item > span {
		display: inline;
		color: inherit;
		font-size: 12px;
		letter-spacing: var(--text-letter-spacing);
		text-decoration: none;
		transition: opacity .3s cubic-bezier(.17,.67,.68,1.04);
	}

	#footer .fx_sitemap .f-link-list li > a[target="_blank"]::after ,
	#footer .fx_sitemap .f-index-map .item > a[target="_blank"]::after {
		content: "";
		display: inline-block;
		vertical-align: middle;
		width: 12px;
		height: 12px;
		background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
		background-size: contain;
		margin-left: 8px;
	}

	#footer .fx_sitemap .f-link-list li > a:hover ,
	#footer .fx_sitemap .f-index-map .item > a:hover {
		opacity: 0.5;
	}


	/* 第２階層(カテゴリトップ) */
	#footer .fx_sitemap .f-link-list li.highlight ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_0 > li > .item {
		margin-top: 8px;
		margin-bottom: 16px;
	}

	#footer .fx_sitemap .f-link-list li.highlight > a ,
	#footer .fx_sitemap .f-link-list li.highlight > span ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_0 > li > .item > a ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_0 > li > .item > span {
		border: none;

		position: relative;
		display: block;
		font-size: 12px;
		font-weight: 700;
		line-height: 1.5;
		margin-bottom: 0;
	}

	/* 第３階層 */
	#footer .fx_sitemap .f-index-map ul.indexLevel_1 {
	}

	#footer .fx_sitemap .f-link-list li:not(.highlight) ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_1 > li {
		line-height: 1.5;
		margin-top: 8px;
	}

	html:lang(en) #footer .fx_sitemap .f-link-list li:not(.highlight) ,
	html:lang(en) #footer .fx_sitemap .f-index-map ul.indexLevel_1 > li {
		line-height: 1.34;
	}

	#footer .fx_sitemap .f-link-list li:not(.highlight) > a ,
	#footer .fx_sitemap .f-link-list li:not(.highlight) > span ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_1 > li > .item > a ,
	#footer .fx_sitemap .f-index-map ul.indexLevel_1 > li > .item > span {
		font-weight: 300;
	}

	/* 第４階層 */
	#footer .fx_sitemap .f-index-map ul.indexLevel_2 {
		display: none;
	}

	/* アコーディオン */
	#footer .fx_sitemap .ux_accordion > .f-column1 {
		position: relative;
	}

	#footer .fx_sitemap .ux_accordion > .f-column1 .f-title4 {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	#footer .fx_sitemap .ux_accordion > .f-column1 .f-title4 h4 {
		position: absolute;
		top: 50%;
		right: 15px;
		display: block;
		width: 20px;
		height: 20px;
		transform: translateY(-50%);
		font-size: 0;
	}

	#footer .fx_sitemap .ux_accordion > .f-column1 .f-title4 h4::before ,
	#footer .fx_sitemap .ux_accordion > .f-column1 .f-title4 h4::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 100%;
		height: 1px;
		background-color: currentColor;
	}

	#footer .fx_sitemap .ux_accordion > .f-column1 .f-title4 h4::after {
		transform: rotate(90deg);
	}

	#footer .fx_sitemap .ux_accordion.open > .f-column1 .f-title4 h4::after {
		opacity: 0;
	}

	#footer .fx_sitemap .ux_accordion .f-link-list li.highlight > a ,
	#footer .fx_sitemap .ux_accordion .f-link-list li.highlight > span ,
	#footer .fx_sitemap .ux_accordion .f-index-map ul.indexLevel_0 > li > .item > a ,
	#footer .fx_sitemap .ux_accordion .f-index-map ul.indexLevel_0 > li > .item > span {
		margin-right: 50px;
	}

	#footer .fx_sitemap .ux_accordion .f-link-list li.highlight > a::before ,
	#footer .fx_sitemap .ux_accordion .f-index-map ul.indexLevel_0 > li > .item > a::before {
		content: none;
	}
}


/* フッターリンク集2 */
#footer .fx_link2 {
}

#footer .fx_link2 .f-link-list ul {
}

#footer .fx_link2 .f-link-list li {
	position: relative;
	line-height: 1.2;
	margin-bottom: 16px;
}

#footer .fx_link2 .f-link-list li > a ,
#footer .fx_link2 .f-link-list li > span {
	display: inline-block;
	color: inherit;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: var(--text-letter-spacing);
	text-decoration: none;
	transition: opacity .3s cubic-bezier(.17,.67,.68,1.04);
}

#footer .fx_link2 .f-link-list li > a[target="_blank"]::after {
	content: "";
	position: relative;
	top: 2px;
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
	background-size: contain;
	margin: 0 4px;
}

#footer .fx_link2 .f-link-list li > a:hover {
	opacity: 0.5;
}

@media screen and (max-width: 768px) {
	#footer .fx_link2 {
		border-top: 1px solid #e6e6e6;
		padding-top: 20px;
	}

	#footer .fx_link2 .f-link-list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 24px 16px;
		margin-bottom: 24px;
	}

	#footer .fx_link2 .f-link-list li {
		width: calc(50% - 8px);
		margin-bottom: 0;
	}

	#footer .fx_link2 .f-link-list li > a ,
	#footer .fx_link2 .f-link-list li > span {
		font-size: 12px;
	}
}


/* フッターリンク集1 */
#footer .fx_link1 {
}

#footer .fx_link1 .f-link-list ul {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
}

#footer .fx_link1 .f-link-list li {
	line-height: 1.75;
	margin-right: 40px;
	margin-bottom: 16px;
}

#footer .fx_link1 .f-link-list li > a ,
#footer .fx_link1 .f-link-list li > span {
	color: inherit;
	font-size: 14px;
	letter-spacing: 0;
	transition: opacity .3s cubic-bezier(.17,.67,.68,1.04);
}

#footer .fx_link1 .f-link-list li > a[target="_blank"]::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	background: url("https://jp.corp-sansan.com/img/btn--link.svg") center center no-repeat;
	background-size: contain;
	margin: 0 4px;
}

#footer .fx_link1 .f-link-list li > a:hover {
	opacity: 0.5;
}

@media screen and (max-width: 768px) {
	#footer .fx_link1 .f-link-list ul {
		display: block;
	}

	#footer .fx_link1 .f-link-list li > a ,
	#footer .fx_link1 .f-link-list li > span {
		font-size: 12px;
		font-weight: 300;
	}
}

/* フッターSNSリンク集 */
#footer .fx_sns_link {
}

#footer .fx_sns_link > * > * >* >* {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	padding-right: 25px;
}

#footer .fx_sns_link .f-panel {
	display: inline-block;
	font-size: 0;
	line-height: 1;
	width: 32px;
	margin-right: 24px;
}

#footer .fx_sns_link .f-panel a {
	display: flex;
	align-items: center;
	height: 32px;
	transition: opacity .3s cubic-bezier(.17,.67,.68,1.04);
}

#footer .fx_sns_link .f-panel figure {
	margin: 0;
}

#footer .fx_sns_link .f-panel a:hover {
	opacity: 0.5;
}

#footer .fx_sns_link .f-panel a:hover img {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	#footer .fx_sns_link {
		padding-top: 11px;
	}
}


/* コピーライト */
#footer .fx_copyright {
	padding: 0;
}

#footer .fx_copyright .f-text-section {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: var(--text-letter-spacing);
	
}

@media screen and (max-width: 768px) {
	#footer .fx_copyright {
		padding-top: 33px;
	}
	#footer .fx_copyright .f-text-section {
		font-size: 12px;
		line-height: 1.5;
	}
}
