@charset "utf-8";
/* CSS Document */
main *{box-sizing: border-box;}

/*カテゴリーソートへ戻るボタン*/
div#page-sort {
    position: fixed;
    bottom: 100px;
    right: 20px;
	z-index: 400;
}
div#page-sort span{
	display: block;
	width: 80px;
	height: 60px;
	background: #fff;
	color: #2a315b;
	padding: 16px 3px 10px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3em;
	text-align: center;
	letter-spacing: -0.08em;
	box-shadow: 0 0 3px #2a315b;
	transition: all 0.3s ease-out;
	position: relative;
	cursor: pointer;
	box-sizing: border-box;
}
div#page-sort span:hover{
	background: #d5dbff;
}
div#page-sort span:before{
	content: "";
	width: 8px;
	height: 8px;
	margin: auto;
	border-top: 2px solid #2a315b;
	border-left: 2px solid #2a315b;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	right: 0;
	top: 5px;
}

@media screen and (max-width: 768px) {
	div#page-sort {
		right: 15px;
	}
	div#page-sort span{
		width: 70px;
		height: 55px;
		padding: 16px 3px 10px;
		font-size: 13px;
	}
}

/*--------------------------------
  メイン画像 
--------------------------------*/
.mainArea{
	background-image: linear-gradient(to top, #e9e9e9 0, #fff 100%);
	padding: 30px 0;
}
.mainArea .inner{
	width: 1200px;
	min-height: 360px;
	background-image: url(../../_images/template/main-img.webp);
	background-repeat: no-repeat;
	background-position: right 50%;
	margin: 0 auto;
	padding-right: 600px;
}

.mainArea .inner h2{
	font-size: 50px;
	font-weight: 700;
	line-height: 1em;
}
.mainArea .inner h2:before{
	content: "Download";
	display: block;
	width: fit-content;
	color: #adadad;
	font-size: 32px;
}
.mainArea .inner p.lead{
	margin: 10px 0;
}
.mainArea .inner > dl{
	display: flex;
	gap: 15px;
	width: fit-content;
	background-color: #fff;
	margin: 15px 0;
	padding: 10px 30px;
	font-size: 20px;
	font-weight: 700;
	border-radius: 10px;
}
.mainArea .inner > dl > dt{
	color: #5564a6;
	padding-right: 15px;
	border-right: 3px solid #5564a6;
}

@media screen and (max-width: 768px) {
	.mainArea{
		padding: 3%;
	}
	.mainArea .inner{
		width: 100%;
		background-size: 45% auto;
		padding-right: 48%;
	}

	.mainArea .inner h2{
		font-size: 36px;
	}
	.mainArea .inner h2:before{
		font-size: 28px;
	}
	.mainArea .inner > dl{
		padding: 3% 8%;
		font-size: 18px;
	}
}

@media screen and (max-width: 480px) {
	.mainArea .inner{
		background-position: center bottom;
		background-size: 300px auto;
		padding: 0 0 230px;
	}

	.mainArea .inner h2{
		font-size: 30px;
		letter-spacing: -0.05em;
	}
	.mainArea .inner h2:before{
		font-size: 24px;
		letter-spacing: 0;
	}
	.mainArea .inner > dl{
		margin: 15px auto;
		font-size: 17px;
	}
	.mainArea .inner > dl + p{
		width: fit-content;
		margin: auto;
	}
}

/*--------------------------------
  カテゴリーソート
--------------------------------*/
.categorySort{
	max-width: 1200px;
	margin: 40px auto;
	padding: 3% 2%;
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 0 0 15px rgba( 0, 0, 0, 0.3);
}
.categorySort > .title{
	display: block;
	width: fit-content;
	margin: 0 auto 20px;
	padding: 0 20px 5px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5em;
	border-bottom: 1px solid #111;
}
.categorySort > .title + p{
	margin: 10px auto;
	font-size: 14px;
	text-align: center;
}

.categorySort ul.selectList{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.categorySort ul.selectList > li{
	width: calc((100% - 30px) / 4);
}
.categorySort ul.selectList > li button{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #fff;
	color: #252525;
	padding: 12px 10px;
	font-family: inherit;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2em;
	text-align: center;
	border: 1px solid #b6b6b6;
	border-radius: 8px;
	transition: all .2s ease;
	position: relative;
}
.categorySort ul.selectList > li button:hover{
	background-color: #dee3ff;
}
.categorySort ul.selectList > li button.active{
	background-color: #c4cdff;
}
.categorySort ul.selectList > li button.active:before{
	content: "";
	width: 12px;
	height: 7px;
	margin: auto;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(-45deg);
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 5px;
}

@media screen and (max-width: 768px) {
	.categorySort{
		width: 95%;
		padding: 3% 2%;
		box-shadow: 0 0 8px rgba( 0, 0, 0, 0.3);
	}
	.categorySort > .title{
		font-size: 21px;
	}

	.categorySort ul.selectList > li{
		width: calc((100% - 20px) / 3);
	}
	.categorySort ul.selectList > li button{
		font-size: 17px;
	}
	.categorySort ul.selectList > li.all{
		width: 70%;
		margin: auto;
	}
}

@media screen and (max-width: 480px) {
	.categorySort > .title{
		font-size: 19px;
	}

	.categorySort ul.selectList{
		gap: 7px;
	}
	.categorySort ul.selectList > li{
		width: calc((100% - 7px) / 2);
	}
	.categorySort ul.selectList > li button{
		padding: 8px 5px;
		font-size: 15px;
	}
	.categorySort ul.selectList > li.all button{
		padding: 6px;
	}
	.categorySort ul.selectList > li button.active:before{
		content: "";
		width: 10px;
		height: 5px;
		left: 4px;
	}
}


/*--------------------------------
  商材 
--------------------------------*/
/*------見出し1------*/
.product-item{
	max-width: 1200px;
	margin: auto;
	padding: 2% 3%;
	animation: fadeInUp 0.5s ease forwards;
	position: relative;
}

.product-item .categoryTitle{
	margin: 0 0 15px;
	padding-left: 15px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5em;
	border-left: 8px solid #222;
}


/*------アンカーリンク------*/
.product-item .anchorLink{
	background-color: #f0f0f0;
	margin: 0 0 30px;
	padding: 2%;
}
.product-item .anchorLink > p{
	margin-bottom: 5px;
	font-size: 14px;
}
.product-item .anchorLink ul{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.product-item .anchorLink ul > li{
	width: calc((100% - 30px) / 4);
}
.product-item .anchorLink ul > li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	background-color: #fff;
	padding: 5px 20px 5px 5px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	border: 1px solid #b6b6b6;
	border-radius: 8px;
	position: relative;
}
.product-item .anchorLink ul > li a:after{
	content: "";
	width: 6px;
	height: 6px;
	border-right: 2px solid #222;
	border-bottom: 2px solid #222;
	margin: auto;
	transform: rotate(45deg);
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 3px;
}

.product-item .anchorLink ul > li a:hover{
	background-color: #dee3ff;
	color: inherit;
	opacity: 1;
}

/* 表示状態のクラス */
.product-item.show {
    display: block; /* または flex など */
    animation: fadeInUp 0.4s ease-out forwards;
}

/* 消えていく状態のクラス */
.product-item.fading-out {
    animation: fadeOutDown 0.2s ease-out forwards;
}

/* 完全に隠れた状態 */
.product-item.hidden {
    display: none;
}
/* 表示時のアニメーション（ふわっと浮上） */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 非表示時のアニメーション（ふわっと沈む） */
@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(10px);
    }
}

/*------一覧------*/
.product-item .itemBox{
	width: 100%;
	margin: 40px auto;
}
.product-item .itemBox:last-child{
	margin: 40px auto 20px;
}

.product-item .itemBox .itemName{
	margin: 0 auto 10px;
	padding: 0 20px 5px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5em;
	border-bottom: 1px solid #191919;
}

.product-item .itemBox > dl{
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #252525;
}
.product-item .itemBox > dl > div{
	display: flex;
	align-items: center;
	padding-bottom: 10px;
	border-bottom: 1px solid #c5c5c5;
}
.product-item .itemBox > dl > div dt{
	width: 50%;
	padding: 20px 20px 20px 60px;
	font-size: 20px;
	letter-spacing: 0.05em;
	word-break: break-all;
	position: relative;
}
.product-item .itemBox > dl > div dt span{
	display: inline-block;
	background-color: #d6dcff;
	margin-right: 8px;
	padding: 3px 10px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 5px;
}
.product-item .itemBox > dl > div dt small{
	display: block;
	width: fit-content;
	margin-top: 5px;
}
.product-item .itemBox > dl > div dt:before{
	content: "";
	width: 8px;
	height: 8px;
	margin: auto;
	border-top: 3px solid #ff1c1c;
	border-right: 3px solid #ff1c1c;
	transform: rotate(45deg);
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
}
.product-item .itemBox > dl > div dt:after{
	content: "";
	width: 1px;
	height: 100%;
	background-color: #c5c5c5;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}
.product-item .itemBox > dl > div dd{
	display: flex;
	justify-content: center;
	gap: 20px;
	width: 50%;
	padding: 20px 50px;
}
.product-item .itemBox > dl > div dd a{
	flex-shrink: 1;
	display: block;
	width: 100%;
	background-color: #e94343;
	color: #fff;
	padding: 8px 40px 8px 30px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6em;
	text-align: center;
	border: 2px solid #e94343;
	border-radius: 10px;
	position: relative;
}
.product-item .itemBox > dl > div dd a:after{
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	background-image: url(../../_images/template/icon-download.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px auto;
	margin: auto;
	position: absolute;
	right: 5%;
	top: 0;
	bottom: 0;
}
.product-item .itemBox > dl > div dd a:hover{
	background-color: #fff;
	color: #e94343;
}
.product-item .itemBox > dl > div dd a:hover:after{
	filter: brightness(0) saturate(100%) invert(75%) sepia(73%) saturate(6516%) hue-rotate(330deg) brightness(88%) contrast(109%);
}

/*準備中*/
.product-item .itemBox > dl > div dd .preparation{
	flex-shrink: 1;
	display: block;
	width: 100%;
	background-color: #666;
	color: #fff;
	padding: 8px 40px 8px 30px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6em;
	text-align: center;
	border-radius: 10px;
}


@media screen and (max-width: 768px) {
	/*------見出し1------*/
	.product-item{
		width: 95%;
		padding: 2% 2%;
	}

	.product-item .categoryTitle{
		font-size: 28px;
		border-left-width: 6px;
	}

	/*------アンカーリンク------*/
	.product-item .anchorLink ul{
		gap: 8px;
	}
	.product-item .anchorLink ul > li{
		width: calc((100% - 16px) / 3);
	}
	.product-item .anchorLink ul > li a{
		font-size: 16px;
	}

	/*------一覧------*/
	.product-item .itemBox{
		margin: 40px auto;
	}
	.product-item .itemBox:last-child{
		margin: 40px auto 20px;
	}

	.product-item .itemBox .itemName{
		padding: 0 15px 5px;
		font-size: 22px;
	}

	.product-item .itemBox > dl > div{
		padding-bottom: 10px;
	}
	.product-item .itemBox > dl > div dt{
		width: 40%;
		padding: 3% 3% 3% calc(3% + 15px);
		font-size: 18px;
	}
	.product-item .itemBox > dl > div dt span{
		display: block;
		width: fit-content;
		margin-bottom: 3px;
		padding: 2px 10px;
		font-size: 16px;
	}
	.product-item .itemBox > dl > div dt:before{
		width: 8px;
		height: 8px;
		left: 12px;
	}
	.product-item .itemBox > dl > div dd{
		display: flex;
		justify-content: center;
		gap: 10px;
		width: 60%;
		padding: 3%;
	}
	.product-item .itemBox > dl > div dd a{
		padding: 5px 20px 5px 5px;
		font-size: 17px;
	}
	.product-item .itemBox > dl > div dd a:after{
		width: 22px;
		height: 22px;
	}

	.product-item .itemBox > dl > div dd .preparation{
		padding: 5px;
		font-size: 17px;
	}
}
@media screen and (max-width: 480px) {
	.product-item .categoryTitle{
		font-size: 24px;
		border-left-width: 5px;
	}

	/*------アンカーリンク------*/
	.product-item .anchorLink ul > li{
		width: calc((100% - 8px) / 2);
	}
	.product-item .anchorLink ul > li a{
		font-size: 15px;
		line-height: 1.3em;
	}

	/*------一覧------*/
	.product-item .itemBox{
		margin: 40px auto;
	}
	.product-item .itemBox:last-child{
		margin: 40px auto 20px;
	}

	.product-item .itemBox .itemName{
		padding: 0 15px 5px;
		font-size: 20px;
	}

	.product-item .itemBox > dl > div{
		flex-direction: column;
		align-items: flex-start;
		padding-bottom: 10px;
		border-bottom-color: #999;
	}
	.product-item .itemBox > dl > div dt{
		width: 100%;
		margin: 0;
		padding: 2% 3% 2% calc(3% + 15px);
		font-size: 16px;
		line-height: 1.3em;
	}
	.product-item .itemBox > dl > div dt span{
		display: inline-block;
		font-size: 15px;
	}
	.product-item .itemBox > dl > div dt:before{
		left: 2px;
	}
	.product-item .itemBox > dl > div dt:after{
		width: 100%;
		height: 1px;
		background-color: #ddd;
		right: auto;
		left: 0;
		top: auto;
		bottom: 0;
	}
	.product-item .itemBox > dl > div dd{
		width: 100%;
		padding: 3%;
	}
	.product-item .itemBox > dl > div dd a{
		font-size: 15px;
	}
	.product-item .itemBox > dl > div dd a:after{
		width: 20px;
		height: 20px;
	}

	.product-item .itemBox > dl > div dd .preparation{
		font-size: 15px;
	}
}











