/*----------
	/dx/common
	DX components
----------*/
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.l-section {
	max-width: 1040px;
}

.l-sitemap-section {
	display: inline;
	padding: 0;
	margin: 0;
	background: none;
}

img {
	border-radius: 0 !important;
}

/*----------
	dx-billboard
----------*/
.c-dx-billboard {
	position: relative;
	padding: 134px 0 0;
	z-index: 2;
}
.c-dx-billboard__inner {
	width: 100%;
	max-width: 1260px;
	margin-inline: auto;
	padding-right: 20px;
}
.c-dx-billboard__title {
	position: relative;
	width: 100%;
	min-height: 120px;
	background-color: var(--color-prim);
	display: inline-block;
	line-height: var(--line-height-s);
}
.c-dx-billboard__title::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 100%;
	min-height: 120px;
	background: url(/sitemanage/assets/images/dx/bg_dx_billboard.png) repeat-y;
	background-size: contain;
}
.c-dx-billboard__title h1 {
	font-size: 2.4rem;
	font-weight: 500;
	padding: 40px 24px 40px 20px;
	color: #fff;
}
.c-dx-billboard__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 200px;
	z-index: -1;
}
.c-dx-billboard__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width: 768px), print {
	.c-dx-billboard {
		padding: 220px 0 0;
	}
	.c-dx-billboard__inner {
		padding-left: 30px;
		padding-right: 90px;
	}
	.c-dx-billboard__title {
		width: 50%;
		min-width: 720px;
		min-height: 200px;
	}
	.c-dx-billboard__title h1 {
		font-size: 4.2rem;
		padding: 70px 90px 20px 0;
	}
	.c-dx-billboard__title::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		width: 100vw;
		right: 100%;
		height: 100%;
		background-color: var(--color-prim);
	}
	.c-dx-billboard__title::after {
		width: 200px;
	}
	.c-dx-billboard__image {
		height: 320px;
	}
}

/*----------
	dx-heading-secondary
----------*/
.c-dx-heading-secondary {
	position: relative;
	margin-top: 80px;
	margin-bottom: 32px;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: var(--line-height-s);
	padding-bottom: 17px;
	padding-left: 24px;
	border-bottom: 1px solid var(--color-border);
}
.c-dx-heading-secondary::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 30px;
	background: var(--color-prim);
}
@media (min-width: 768px), print {
	.c-dx-heading-secondary {
		font-size: 3.4rem;
		margin-top: 100px;
		margin-bottom: 48px;
		padding-bottom: 30px;
		font-size: 3.2rem;
	}
	.c-dx-heading-secondary::after {
		height: 46px;
	}
}

/*----------
	dx-heading-tertiary
----------*/
.c-dx-heading-tertiary {
	position: relative;
	padding-left: 30px;
	margin-top: 40px;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: var(--line-height-s);
}
.c-dx-heading-tertiary::after {
	content: "";
	position: absolute;
	top: calc(50% - 9px);
	left: 0;
	width: 18px;
	height: 18px;
	background: url(/sitemanage/assets/images/dx/icon_dx_flower.svg) no-repeat;
	background-size: contain;
}
@media (min-width: 768px), print {
	.c-dx-heading-tertiary {
		font-size: 2.4rem;
		margin-top: 60px;
		margin-bottom: 30px;
	}
}

/*----------
	dx-heading-quaternary
----------*/
.c-dx-heading-quaternary {
	position: relative;
	margin-top: 30px;
	margin-bottom: 20px;
	font-weight: 600;
	line-height: var(--line-height-s);
}
@media (min-width: 768px), print {
	.c-dx-heading-quaternary {
		margin-bottom: 18px;
		margin-top: 40px;
		font-size: 1.6rem;
	}
}

/*----------
	dx-list
----------*/
.c-dx-list__item {
	position: relative;
	padding-left: 22px;
}
.c-dx-list__item::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 9px;
	left: 4px;
	width: 8px;
	height: 8px;
	background-color: var(--color-prim);
}
.c-dx-list__item.u-txt-red::before {
	background-color: var(--color-red);
}
.c-dx-list__item + .c-dx-list__item {
	margin-top: 8px;
}
@media (min-width: 768px), print {
	.c-dx-list__item::before {
		top: 12px;
		left: 4px;
	}
}
.c-dx-list__item + .c-dx-list__item {
	margin-top: 10px;
}

/*----------
	dx-figure
----------*/
.c-dx-figure__image {
	text-align: center;
	overflow: hidden;
}
.c-dx-figure__image > img {
	max-width: 100%;
	width: auto;
}
.c-dx-figure__caption {
	margin-top: 20px;
	text-align: left;
	font-size: 1.2rem;
	line-height: var(--line-height-m);
	color: var(--color-txt-caption);
}
@media (min-width: 768px), print {
	.c-dx-figure__caption {
		font-size: 1.4rem;
	}
	.c-dx-figure--w660 .c-dx-figure__image {
		max-width: 660px;
		margin: 0 auto;
	}
}

/*----------
	dx-imageset
----------*/
.c-dx-imageset__title {
	color: var(--color-txt);
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 700;
	line-height: var(--line-height-s);
}
.c-dx-imageset__text {
	line-height: var(--line-height-l);
}
.c-dx-imageset * + .c-dx-imageset__text {
	margin-top: 16px;
}
.c-dx-imageset__button {
	margin: 32px auto 0;
	padding: 0 10px;
}
@media (max-width: 767px) {
	.c-dx-imageset__image {
		margin-bottom: 20px;
	}
}
@media (min-width: 768px), print {
	.c-dx-imageset__inner {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.c-dx-imageset__image {
		flex: 0 0 calc(52% - 40px);
		margin-right: 80px;
	}
	.c-dx-imageset__content {
		flex: 1 0 calc(48% - 40px);
	}
	.c-dx-imageset__title {
		font-size: 2.4rem;
	}
	.c-dx-imageset__text {
		margin-top: 24px;
	}
	.c-dx-imageset__button {
		max-width: 300px;
		margin-left: 0;
		padding: 0;
	}
	.c-dx-imageset--reverse .c-dx-imageset__inner {
		flex-direction: row-reverse;
	}
	.c-dx-imageset--reverse .c-dx-imageset__image {
		margin-right: 0;
		margin-left: 40px;
	}
	.c-dx-imageset--column .c-dx-imageset__inner {
		flex-direction: column;
	}
	.c-dx-imageset--column .c-dx-imageset__image {
		flex: 0 0 100%;
		margin-right: 0;
	}
	.c-dx-imageset--column .c-dx-imageset__title {
		margin-top: 30px;
	}
	.c-dx-imageset--column .c-dx-imageset__text {
		margin-top: 30px;
	}
}

/*----------
	dx-content box
----------*/
.c-dx-contentbox {
	padding: 30px;
	background-color: var(--color-bg-gray);
	border-radius: 15px;
}
@media (min-width: 768px), print {
	.c-dx-contentbox {
		border-radius: 20px;
	}
}

/*----------
	dx scroll
----------*/
@media (max-width: 767px) {
	.c-dx-scrollable {
		position: relative;
		display: flex;
		flex-direction: column;
	}
	.c-dx-scrollable .c-dx-scrollable__inner {
		overflow: auto;
		margin-right: -20px;
		margin-left: -20px;
		padding-bottom: 8px;
	}
	.c-dx-scrollable .c-dx-scrollable__inner::-webkit-scrollbar {
		width: 132px;
		height: 4px;
	}
	.c-dx-scrollable .c-dx-scrollable__inner::-webkit-scrollbar-thumb {
		background: #666;
		border-radius: 30px;
	}
	.c-dx-scrollable .c-dx-scrollable__body {
		width: 1000px;
		padding-right: 20px;
		padding-left: 20px;
		padding-bottom: 8px;
	}
}
.c-dx-scroll {
	display: inline-block;
	width: 100%;
	max-width: 210px;
	padding: 0 15px;
	margin: 30px auto 0;
	text-align: center;
	background-color: var(--color-bg-gray);
	border-radius: 20px;
	font-size: 1rem;
	line-height: 39px;
}
.c-dx-scroll::before {
	content: "";
	display: inline-block;
	position: relative;
	top: -2px;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background: url(/sitemanage/assets/images/dx/icon_dx_flick.svg) no-repeat 0 0;
	background-size: cover;
	vertical-align: middle;
}
@media (min-width: 768px), print {
	.c-dx-scroll {
		display: none;
	}
}

/*----------
	dx-modal
----------*/
.c-dx-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	opacity: 0;
	z-index: -2;
	pointer-events: none;
	transition: all ease-out;
}
.c-dx-modal.is-open {
	z-index: 1000;
	opacity: 1;
	pointer-events: visible;
}
.c-dx-modal__inner {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.c-dx-modal__contents {
	position: relative;
	margin-inline: auto;
	z-index: 1001;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;
}
.c-dx-modal__close {
	background-color: var(--color-prim);
	padding: 10px;
	text-align: center;
	z-index: 1000;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	gap: 20px;
	cursor: pointer;
}
.c-dx-modal__close::before {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-close);
	color: #fff;
	font-size: 1.6rem;
}
.c-dx-modal__close span {
	position: relative;
	color: #fff;
	font-weight: 500;
}
.c-dx-modal__button {
	position: relative;
	background-color: var(--color-prim);
	margin: -20px auto 0;
	max-width: 264px;
	z-index: 1;
}
.c-dx-modal__button a {
	display: block;
	text-align: center;
	padding: 18px 50px 18px 24px;
	width: 100%;
	height: 100%;
}
.c-dx-modal__button a span {
	text-align: center;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
}
.c-dx-modal__button .icon-plus {
	position: absolute;
	top: 50%;
	right: 20px;
	color: #fff;
	font-size: 2rem;
	transform: translateY(-50%);
}
@media (max-width: 767px) {
	.c-dx-modal__contents {
		width: 100%;
		padding: 20px 20px 20px;
	}
	.c-dx-modal__close {
		width: 120px;
		height: 40px;
	}
	.c-dx-modal__close::before {
		font-size: 1.6rem;
		line-height: 40px;
	}
}
@media (min-width: 768px), print {
	.c-dx-modal__contents {
		width: 90vw;
		max-width: 1120px;
		padding: 20px 60px;
	}
	.c-dx-modal__close {
		width: 150px;
		height: 60px;
		padding: 20px;
	}
	.c-dx-modal__close::before {
		font-size: 2.4rem;
		line-height: 60px;
	}
	.c-dx-modal__button {
		margin: -30px auto 0;
		max-width: 440px;
	}
}

.c-dx-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1000;
	height: 0;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s, visibility 0.4s;
	cursor: pointer;
}
.c-dx-modal-overlay.is-active {
	height: auto;
	pointer-events: visible;
	opacity: 1;
	visibility: visible;
	height: 100%;
}