@charset "UTF-8";

/* ====================================
	製品ページ共通スタイル
 ==================================== */
.font-bold {
	font-weight: bold;
}

.font-middium {
	font-weight: 500;
}

/* フレックスコンテナ */
.flex-container {
	display: flex;
	flex-wrap: wrap;
}

.flex-item {
	width: 100%;
}

.flex-container.column4 .category {
	color: #a0a0a0;
}

.flex-container.column4 .flex-item .img {
	border: solid 1px #d9d9d9;
}

/* サブセクション */
.products-sub-title {
	font-weight: 300;
	border-bottom: solid 1px #a0a0a0;
}

/* アローボタン・左 */
.btn-arrow {
	display: inline-block;
	text-align: center;
}

.btn-arrow a {
	display: block;
	width: 100%;
	height: 100%;
	padding: .7em 1.5em .7em 2.5em;
	font-size: inherit;
	line-height: inherit;
	background-color: #535353;
	background-image: url(/products/common/images/chevron-right-solid-w.svg);
	background-repeat: no-repeat;
	background-position: left .7em center;
	background-size: auto 1em;
	color: #fff;
	text-decoration: none;
}

.btn-arrow.btn-arrow.ba-r a {
	padding: .7em 2.5em .7em 1.5em;
	background-position: right .7em center;
}

.btn-arrow.ba-lightgray a {
	background-color: #8D8D8D;
}

/* ページャー */
#pager {
	padding-top: 6rem;
	padding-bottom: 8rem;
}

.pager-outer {
	border-top: 1px #000 solid;
	padding-top: 3rem;
}

.list-pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	list-style: none;
	text-align: center;
	font-size: 1.8rem;
}

.list-pager a {
	display: inline-block;
	text-decoration: none;
}

.list-pager a::before {
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size: contain;
}

li.prev,
li.next {
	width: 40%;
}

li.next {
	margin-left: auto;
	text-align: right;
	padding-right: 4.5rem;
	position: relative;
}

li.num {
	font-size: 1.4rem;
	color: #535353;
}

li.prev {
	margin-right: auto;
	text-align: left;
	padding-left: 4.5rem;
	position: relative;
}

.next a::before {
	right: 0;
	background-image: url(/products/common/images/btn-arrow-right.svg);
	background-position: center right 0;
}

.prev a::before {
	left: 0;
	background-image: url(/products/common/images/btn-arrow-left.svg);
	background-position: center left 0;
}

/* hタグ置き換え調整 */
.page-navi-product-menu-title .tag-product {
	font-size: inherit;
	font-weight: 700;
}

ul.list-page-navi>li .tag-product {
	font-size: inherit;
	font-weight: 500;
}

/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {

	article {
		/* padding-top: 4.6rem; */
		position: relative;
	}

	.mts {
		margin-top: 2rem;
	}

	#aboutMain {
		margin-top: 3rem;
	}

	body.stop-scroll {
		position: fixed;
	}

	/* フレックスコンテナ */
	.flex-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.flex-container>.flex-item {
		width: 100%;
		margin-top: 3rem;
	}

	.flex-container>.flex-item:first-of-type {
		margin-top: 0;
	}

	/* フレックスコンテナ：イメージテキスト */
	.flex-container.img-text>.img-container,
	.flex-container.img-text>.text-container {
		width: 48%;
	}

	/* フレックスコンテナ：スマホ2列 */
	.flex-container.sp-column2 {
		font-size: 1.5rem;
	}

	.flex-container.sp-column2 .ttl {
		margin-top: .5em;
		font-size: 1.6rem;
	}

	.flex-container.sp-column2 .text {
		margin-top: .5em;
		font-size: 1.4rem;
	}

	.flex-container.sp-column2 .category {
		margin-top: .5em;
		font-size: 1.2rem;
		line-height: 1.4;
	}

	.flex-container.sp-column2>.flex-item {
		width: 48%;
	}

	.flex-container.sp-column2>.flex-item:nth-of-type(-n+2) {
		margin-top: 0;
	}

	/* サブセクション */
	.products-sub-title {
		margin-bottom: 3rem;
		padding-bottom: .2em;
		font-size: 1.8rem;
	}

	/* ページナビメニュー */
	.page-navi-product-menu {
		width: 92%;
		color: #3F3D33;
		position: absolute;
		top: 3rem;
		/* left: 0; */
		left: 50%;
		transform: translateX(-50%);
		z-index: 50;
	}

	.page-navi-product-menu.menu-open {
		top: 0;
		width: 100%;
		height: 100%;
		/* background: rgba(0, 0, 0, .5); */
		background-color: #fff;
		/* position: fixed;
    z-index: 60; */
		overflow: hidden;
	}

	/* .page-navi-product-menu.is-wide {
		animation-name: wide;
		animation-duration: .6s;
		animation-fill-mode: forwards;
		animation-delay: 0.8s;
		opacity: 1;
	}

	@keyframes wide {
		0% {
			width: 96%;
		}

		100% {
			width: 100%;
		}
	} */

	.page-navi-product-menu a {
		color: inherit;
		text-decoration: none;
	}

	.page-navi-product-menu .page-navi-wrap {
		width: 100%;
		/* height: 100%; */
		/* background: rgba(0, 0, 0, 0); */
		position: relative;
		/* transition: all .2s ease .2s; */
		transition: all .2s ease;
	}

	.page-navi-product-menu.menu-open .page-navi-wrap {
		/* background: rgba(0, 0, 0, .2); */
		/* background-color: #fff; */
	}

	.page-navi-product-menu .page-navi-product-menu-title {
		display: flex;
		justify-content: space-between;
		width: 100%;
		height: 3.6rem;
		font-size: 1.8rem;
		font-weight: 700;
		position: absolute;
		top: 0rem;
		/* left: 50%; */
		/* transform: translate(-50%, -50%); */
		z-index: 51;
		/* margin: 0 auto; */
		/* margin-left: 2%; */
		/* border: 1px #B3B3A4 solid; */
		/* border-radius: 5px; */
	}



	.page-navi-product-menu.menu-open .page-navi-product-menu-title {
		width: 100%;
		margin-left: 0;
		border-radius: 0px;
	}

	.page-navi-product-menu.menu-open .menu-area {
		background-color: #E8E8E4;
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
	}

	.page-navi-product-menu.menu-open .prod-area {
		border-top-right-radius: 0px;
		border-bottom-right-radius: 0px;
	}

	.page-navi-product-menu .menu-area {
		background-color: #E8E8E4;
		border-top-left-radius: 4px;
		border-bottom-left-radius: 4px;
		border-left: 1px #B3B3A4 solid;
		border-top: 1px #B3B3A4 solid;
		border-bottom: 1px #B3B3A4 solid;
	}

	.page-navi-product-menu.hover-fade a.hovering {
		opacity: 1;
	}

	.page-navi-product-menu .prod-area {
		width: 100%;
		background: #E8E8E4;
		border-top-right-radius: 4px;
		border-bottom-right-radius: 4px;
		display: flex;
		justify-content: center;
		border-right: 1px #B3B3A4 solid;
		border-top: 1px #B3B3A4 solid;
		border-bottom: 1px #B3B3A4 solid;
		cursor: pointer;
	}

	.page-navi-product-menu .prod-area a {
		pointer-events: none;
	}

	.page-navi-product-menu-title .tag-product {
		color: #000;
		font-weight: 500;
	}

	.page-navi-product-menu .page-navi-product-menu-title a {
		display: flex;
		align-items: center;
		height: 100%;
	}

	.page-navi-product-menu .page-navi-container {
		width: 100%;
		padding-top: 3.6rem;
		display: none;
		border-bottom: 1px #B3B3A4 solid;
		border-left: 1px #B3B3A4 solid;
		border-right: 1px #B3B3A4 solid;
	}

	.page-navi-product-menu ul.list-page-navi {
		background: #E8E8E4;
		color: #000;
		border-radius: 5px;
		width: 100%;
		margin: 0 auto;
	}

	.page-navi-product-menu.menu-open ul.list-page-navi {
		border-radius: 0;
		width: 100%;
		max-height: 55vh; /* 画面の高さに合わせて調整 */
  overflow-y: auto;
	}

	.page-navi-product-menu ul.list-page-navi>li {
		font-size: 1.6rem;
		border-top: solid 1px #B3B3A4;
	}

	.page-navi-product-menu ul.list-page-navi>li:first-of-type {
		border-top: none;
	}

	.page-navi-product-menu ul.list-page-navi>li>a {
		display: block;
		padding: .7em 5%;
		text-decoration: none;
		position: relative;
		text-align: center;
	}

	.page-navi-product-menu ul.list-page-navi li.feature-tag a::before {
		content: '';
		display: inline-block;
		width: 13px;
		height: 15px;
		background: url(/products/common/images/chevron-right-solid.svg) no-repeat center center;
		background-size: auto 100%;
		position: absolute;
		top: 50%;
		right: 4%;
		margin-top: -.4em;
		transform: none;
	}

	.page-navi-product-menu ul.list-page-navi li.prod-page a::before {
		content: '';
		display: inline-block;
		width: 10px;
		height: 10px;
		border-right: 2px solid #000;
		border-bottom: 2px solid #000;
		transform: translateY(-50%) rotate(-45deg);
		/* width: 14px;
			height: 16px; */
		/* background: url(/products/common/images/chevron-right-solid.svg) no-repeat center center; */

		/* background-size: auto 100%; */
		position: absolute;
		top: 50%;
		right: 20px;
		/* margin-top: -.5em; */

		/* width: 18px;
			height: 18px;
			transform: rotate(-90deg);
			background-size: auto 80%;
			background: url(/business/pci/common/images/menu.svg) no-repeat center center; */
	}




	.page-navi-product-menu ul.list-page-navi>li>a[data-accordion-target]::before {
		background: url(/products/common/images/plus-solid.svg) no-repeat center center;
		background-size: auto 100%;
	}

	.page-navi-product-menu ul.list-page-navi>li>a.accordion-open[data-accordion-target]::before {
		background: url(/products/common/images/minus-solid.svg) no-repeat center center;
		background-size: auto 100%;
	}

	.page-navi-product-menu ul.list-page-navi>li.feature-tag>a[data-accordion-target]::before {
		right: 18px;
	}

	.page-navi-product-menu ul.list-page-navi li a.active {
		background: #DBDACB;
		color: #000;
	}

	.page-navi-product-menu ul.list-page-navi li a.active.accordion-open {
		background: inherit;
		color: inherit;
	}

	/* 閉じる */
	ul.list-page-navi>li .btn-closed {
		font-size: 1.5rem;
		font-weight: 300;
		/* border: 1px solid #B3B3A4; */
		border-radius: 2px;
		padding: 10px;
		background-color: #F6F6F4;
	}

	ul.list-page-navi>li .btn-closed span {
		margin-left: 15px;
	}

	.page-navi-product-menu ul.list-page-navi>li.close-area>a {
		padding: 12px 12px;
		cursor: pointer;
	}

	.page-navi-product-menu ul.list-page-navi li.close-area a::before {
		content: '';
		display: inline-block;
		width: 14px;
		height: 16px;
		background: url(/business/pci/products/common/images/plus-solid.svg) no-repeat center center;
		background-size: auto 100%;
		transform: rotate(45deg);
		position: absolute;
		top: 50%;
		left: calc(50% - 35px);
		margin-top: -.5em;
	}

	/* ページナビメニュー・MENUボタン */
	.page-navi-product-menu .btn-menu {
		/* justify-content: center; */
		width: 80px;
		/* padding-left: 1em; */
		font-size: 1.2rem;
		font-weight: normal;
		cursor: pointer;
		position: relative;
		/* left: 7px; */
		padding-left: 7px;
	}

	.page-navi-product-menu .btn-menu span,
	.page-navi-product-menu.menu-open .btn-menu span {
		position: relative;
		left: -2rem;
	}

	.page-navi-product-menu .btn-menu::before {
		content: '';
		display: inline-block;
		width: 20px;
		height: 20px;
		background: url(/products/common/images/chevron-down-solid-w.svg) no-repeat center center;
		background-size: auto 62%;
		position: absolute;
		top: 7.2px;
		right: 0;
		background-color: #3F3D33;
		border-radius: 2px;
		/* padding: 8px; */
	}



	.page-navi-product-menu .btn-menu.menu-open::before {
		transform: rotate(-180deg);
	}

	/* ページナビメニュー・サブメニュー */
	.page-navi-accordion {
		display: none;
		border-top: solid 1px #B3B3A4;

	}

	.page-navi-accordion>ul li .tag-product {
		font-size: 1.4rem;
		font-weight: 400;
		text-align: center;
	}

	.page-navi-accordion>ul>li {
		border-top: solid 1px #B3B3A4;
		width: 90%;
		width: 100%;
		margin: 0 auto;
	}

	.page-navi-product-menu ul.list-page-navi .page-navi-accordion>ul>li a::before {
		content: '';
		display: inline-block;
		width: 10px;
		height: 12px;
		background: url(/products/common/images/chevron-right-solid.svg) no-repeat center center;
		background-size: auto 100%;
		position: absolute;
		top: 50%;
		right: 5%;
	}

	.page-navi-accordion>ul>li:first-child {
		border-top: none;
	}

	.page-navi-accordion>ul>li>a {
		display: block;
		padding: .6em 5% .6em 5%;
		text-decoration: none;
		position: relative;
	}



	/* 製品アイコン */
	ul.list-logo-icons li {
		height: 2.4em;
	}

	/* ページャー */
	#pager {
		padding-top: 3.5rem;
		padding-bottom: 6rem;
	}

	.pager-outer {
		padding-top: 1.6rem;
	}

	.list-pager {
		font-size: 1.6rem;
	}

	li.prev {
		padding-left: 3rem;
	}

	li.next {
		padding-right: 3rem;
	}

	.list-pager a::before {
		width: 20px;
		height: 20px;
	}
}

/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print,
screen and (min-width: 768px) {
	article {
		padding-top: 60px;
		position: relative;
	}

	article[data-page-navi-type="has-sub-menu"] {
		padding-top: 110px;
	}

	.mts {
		margin-top: 4rem;
	}

	/* フレックスコンテナ：ハーフ */
	.flex-container.half {
		justify-content: space-between;
	}

	.flex-container.half>.flex-item {
		width: 48%;
	}

	/* フレックスコンテナ：4列 */
	.flex-container.column4 {
		margin-top: 5rem;
	}

	.flex-container.column4 {
		font-size: 1.5rem;
	}

	.flex-container.column4 .ttl {
		margin-top: .5em;
		font-size: 1.6rem;
	}

	.flex-container.column4 .text {
		margin-top: .5em;
		font-size: 1.4rem;
	}

	.flex-container.column4 .category {
		margin-top: .5em;
		font-size: 1.2rem;
		line-height: 1.4;
	}

	.flex-container.column4>.flex-item {
		width: 23.5%;
		margin-left: 2%;
		margin-top: 2rem;
	}

	.flex-container.column4>.flex-item:nth-of-type(4n-3) {
		margin-left: 0;
	}

	.flex-container.column4>.flex-item:nth-of-type(-n+4) {
		margin-top: 0;
	}

	/* サブセクション */
	.products-sub-title {
		margin-bottom: 5rem;
		padding-bottom: .2em;
		font-size: 2rem;
	}

	/* ページナビメニュー */
	.page-navi-product-menu {
		width: 100%;
		color: #000;
		position: absolute;
		transform: translateX(-50%);
		top: 0;
		left: 50%;
		z-index: 50;
	}

	.page-navi-product-menu a {
		display: flex;
		align-items: center;
		height: 100%;
		color: inherit;
		text-decoration: none;
	}

	.page-navi-product-menu a.hovering {
		opacity: .6;
	}

	.page-navi-wrap {
		display: flex;
		border-top: 1px solid #D9D9D9;
		border-bottom: 1px solid #D9D9D9;
	}

	.page-navi-product-menu-title {
		margin-right: .8em;
		font-size: 2.2rem;
		line-height: 1;
		font-weight: 700;
		display: flex;
		align-items: center;
	}

	ul.list-page-navi {
		display: flex;
	}

	ul.list-page-navi>li {
		font-size: 1.7rem;
		line-height: 1;
		color: #3F3D33;
	}

	ul.list-page-navi>li>a {
		padding: .8em 1.2em;
	}

	ul.list-page-navi a.active {
		pointer-events: none;
	}

	ul.list-page-navi a.active {
		border-bottom: solid 2px #59574C;
		pointer-events: none;
		position: relative;
		top: 1px;
	}

	/* ページナビメニュー・MENUボタン */
	.page-navi-product-menu .btn-menu {
		display: none;
	}

	/* ページナビメニュー・サブメニュー */
	.page-navi-accordion {
		width: 100%;
		height: 46px;
		color: #59574C;
		position: absolute;
		left: 0;
		display: none;
	}

	[data-page-navi-type="has-sub-menu"] .active+.page-navi-accordion {
		display: block;
	}

	.page-navi-accordion ul {
		display: none;
		height: 100%;
	}

	.active+.page-navi-accordion ul {
		display: flex;
		padding-top: 8px;
		padding-left: 65px;
		margin: 0 auto;

	}

	.page-navi-accordion ul>li {
		padding: 0 5px;
		position: relative;
	}

	.page-navi-accordion ul>li::after {
		content: "";
		display: inline-block;
		position: absolute;
		top: 6px;
		left: 0px;
		width: 1px;
		height: 70%;
		background-color: #59574C;
	}

	.page-navi-accordion ul>li:first-child::after {
		content: none;
	}

	.page-navi-accordion ul>li>a {
		height: 100%;
		font-size: 1.4rem;
		line-height: 1.2;
		padding: 0 15px;

	}

	.page-navi-accordion ul a.active,
	.page-navi-accordion ul a:hover {
		color: #000;
		text-decoration: none;
	}

	.page-navi-accordion ul a.active {
		position: relative;
		background-color: #EEEDDE;
		border-bottom: none;
	}


}

/* ====================================
	スクリーン専用スタイル
===================================== */
@media screen {
	/* .page-navi-product-menu.fix {
		position: fixed;
	} */
}

/* ====================================
	IE印刷専用スタイル
===================================== */
@media print and (-ms-high-contrast: none) {
	.flex-container.column2 {
		display: block;
	}

	.flex-container.column2 .flex-item {
		margin-left: 3.5%;
		display: inline-block;
		vertical-align: top;
	}

	.flex-container.column2 .flex-item:nth-child(odd) {
		margin-left: 0;
	}
}