@charset "utf-8";

/*-------------------------------
	資料ダウンロード一覧
-------------------------------*/

.Download-block:not(:last-child){
	margin-bottom: 10rem;
}
.Download-list{
	width: 100%;
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.Download-list__item{
	width: calc((100% - 2rem) / 2);
}
.Download-list__item a{
	width: 100%;
	padding: 3rem 3rem 3.5rem;
	border: 1px solid #cbcbcb;
	border-radius: 1.6rem;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.Download-list__item-image{
	width: 18rem;
	height: 18rem;
}
.Download-list__item-image img{
	transition: var(--transition);
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(1.6rem 1.6rem 1.6rem rgba(0,0,0,.15));
}
.Download-list__item-body{
	width: calc(100% - 18rem);
	padding-left: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}
.Download-list__item-title{
	transition: var(--transition);
	font-size: 2rem;
	font-weight: 700;
	line-height: calc(3 / 2);
}
.Download-list__item-title span{
	line-height: calc(3 / 2);
}
.Download-list__item-category{
	transition: var(--transition);
	font-size: 1.2rem;
	margin-bottom: 2.2rem;
	height: 2.8rem;
	padding: .2rem 1.3rem;
	border-radius: .8rem;
	line-height: 1;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ebebeb;
}
.Download-list__item .C-Arrow{
	width: 4rem;
	height: 4rem;
	border-radius: .8rem;
	align-self: flex-end;
}
.Download-list__item .C-Arrow__item{
	width: 1.1rem;
	height: 1rem;
}

.C-Post-sidebar-list__item a{
	border: none;
}
.Download-list__item a:hover{
	border-color: var(--maincolor);
}
.Download-list__item a:hover .Download-list__item-category{
	color: var(--maincolor);
	background: #f9e5ea;
}
.Download-list__item a:hover .Download-list__item-title{
	color: var(--maincolor);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

	.Download-list__item a{
		padding: 2.5rem;
	}
	.Download-list__item-image{
		width: 15rem;
		height: 21.2rem;
	}
	.Download-list__item-body{
		width: calc(100% - 15rem);
	}

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.Download-list__item-image{
		width: 10rem;
		height: 17rem;
	}
	.Download-list__item-body{
		width: calc(100% - 10rem);
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Download-list{
		flex-direction: column;
	}
	.Download-list__item{
		width: 100%;
	}
	.Download-list__item-image{
		width: 15rem;
		height: 21.2rem;
	}
	.Download-list__item-body{
		width: calc(100% - 15rem);
	}

}
@media screen and (max-width:768px){

	.Download-block:not(:last-child){
		margin-bottom: 13.5rem;
	}
	.Download-list{
		gap: 6rem 5rem;
	}
	.Download-list__item{
		width: calc((100% - 5rem) / 2);
	}
	.Download-list__item a{
		padding: 0;
		border: none;
		border-radius: 0;
		flex-direction: column;
	}
	.Download-list__item-image{
		width: 100%;
		height: 100%;
		margin-bottom: 3.6rem;
		aspect-ratio: 1 / 1;
	}
	.Download-list__item-body{
		width: 100%;
		padding-left: 0;
	}
	.Download-list__item-title{
		font-size: 3rem;
		line-height: calc(4.5 / 3);
	}
	.Download-list__item-category{
		font-size: 2rem;
		margin-bottom: 2.5rem;
		height: 5rem;
		padding: .2rem 1.8rem;
		border-radius: 1.6rem;
	}
	.Download-list__item .C-Arrow{
		display: none;
	}

}



/*-------------------------------
	資料ダウンロード詳細
-------------------------------*/

.Single__inner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.Single__content{
	width: calc((100% - 7rem) / 2);
}
.Single-header{
	margin-bottom: 7rem;
}
.Single-header__category{
	margin-bottom: 2.6rem;
	font-size: 1.4rem;
	height: 3rem;
	padding: .2rem 1.3rem;
	border-radius: .8rem;
	border: 1px solid #cbcbcb;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Single-header__title{
	margin-bottom: 0;
}
.Single__text{
	color: var(--blackcolor2);
	margin-top: 4rem;
}
.Single__image{
	width: 100%;
	margin-bottom: 8rem;
	max-width: 38rem;
	aspect-ratio: 1 / 1;
    margin-left: auto;
    margin-right: auto;
}
.Single__image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(2rem 2rem 2rem rgba(0,0,0,.15));
}
.Single-toc__title{
	width: 100%;
	font-size: 2.4rem;
	margin-bottom: 2.4rem;
	padding-bottom: 2.2rem;
	font-weight: 700;
	line-height: 1;
	border-bottom: 1px solid #cbcbcb;
}
.Single-toc__item{
	color: var(--blackcolor2);
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.Single-toc__item::before{
	content: "・";
}

.C-Contact-form{
	background: var(--graycolor);
	width: calc((100% - 7rem) / 2);
	border-radius: 1.6rem;
	padding: 3.5rem 3.3rem 4rem 4rem;
}
.Single-form__text{
	margin-bottom: 4.5rem;
	font-weight: 700;
}
.C-Contact-form-block-wrap{
	margin-bottom: 3.5rem;
}
.C-Contact-form-block:not(:last-child){
	margin-bottom: 3rem;
}
.C-Contact-form-block__title{
	width: 100%;
	margin-bottom: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.C-Contact-form-block__title span{
	line-height: 1;
	display: block;
}
.C-Contact-form-block__title::after{
	margin-left: 1.6rem;
}
.C-Contact-form-policy__text{
	color: var(--blackcolor);
}
.Single-form__lasttext{
	margin-bottom: 5.4rem;
	font-size: 1.4rem;
}

.C-Contact-form__button{
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.Single__content{
		width: calc((100% - 5rem) / 2);
	}
	.C-Contact-form{
		width: calc((100% - 5rem) / 2);
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Single__inner{
		flex-direction: column;
	}
	.Single__content{
		width: 100%;
		margin-bottom: 10rem;
	}
	.C-Contact-form{
		width: 100%;
	}

}
@media screen and (max-width:768px){

	.Keyvisual.-download-single{
		padding-top: 2.8rem;
		margin-bottom: 10rem;
	}
	.Single__inner{
		flex-direction: column;
	}
	.Single__content{
		width: 100%;
	}
	.Single-header__category{
		margin-bottom: 3.6rem;
		font-size: 2rem;
		height: 5rem;
		padding: .2rem 1.8rem;
		border-radius: 1.6rem;
	}
	.Single__text{
		margin-top: 6.5rem;
		margin-bottom: 7rem;
	}
	.Single__image{
		margin-bottom: 8.2rem;
	}
	.Single-toc__title{
		font-size: 3.2rem;
		margin-bottom: 2.5rem;
		padding-bottom: 3rem;
	}

	.C-Contact-form{
		margin-top: 14rem;
		width: 100%;
		border-radius: 6rem;
		padding: 8.5rem var(--padding-leftright) 10rem;
	}
	.Single-form__text{
		margin-bottom: 7rem;
        font-size: 3.2rem;
        line-height: calc(6 / 3.2);
	}
	.C-Contact-form-block-wrap{
		margin-bottom: 5.5rem;
	}
	.C-Contact-form-block:not(:last-child){
		margin-bottom: 5.5rem;
	}
	.C-Contact-form-block__title{
		margin-bottom: 3.6rem;
	}
	.Single-form__lasttext{
		margin-bottom: 10rem;
		font-size: 2.6rem;
	}

}



/*-------------------------------
	資料ダウンロード完了
-------------------------------*/

.Send__text{
	font-size: 2.2rem;
	margin-bottom: 6.5rem;
	font-weight: 700;
}
.Send__button{
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

}
@media screen and (max-width:768px){

	.Send__text{
		font-size: 3.2rem;
		line-height: calc(6 / 3.2);
		margin-bottom: 9.5rem;
	}
	.Send .Single-header{
		margin-bottom: 8.5rem;
	}
	.Send .Single__image{
		margin-bottom: 10rem;
	}

}