p.pdfae-pr-title {
	font-size: 25px;
	text-align: center;
	border-bottom: solid 3px rgb(var(--image-color-accent));
	display: inline;
 }

 .pdfae-pr-block-flex{
	display: flex;
	justify-content: space-around;
	margin: 50px 0 70px;
}

.pdfae-pr-block-flex>div {
	width: 100%;
}

.pdfae-pr-block-flex>div img{
	max-width: 250px;
	width: 100%;
}

.pdfae-pr-block-flex>div p{
	width: 90%;
}

.pdfae-pr-block-flex>div p.flex-item-title{
	text-align: center;
	font-weight: bold;
	width: 100%;
}

.pdfae-pr-text {
	margin-top: 30px;

}

.pdfae-grid {
	display: grid;
	padding: 0;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .pdfae-grid-item {
	border-radius: 10px;
	background: #eee;
	/* border: 1px solid rgb(var(--image-color-accent)); */
	padding: 15px;
	padding-top: 20px;
	margin: 20px 10px 50px;
  }
  img.pdfae-grid-item-img{
	max-width: 90%;
	  border: 1px solid #c1c1c1;
	  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  }

  .pdfae-grid-item h3{
	/* text-align: center; */
	padding-bottom: 30px;
	margin-top: 20px;
  }
  .pdfae-grid-item p{
	/* text-align: center; */
	padding: 0 15px;
  }

  /* function02補足エリア 調整用 */
  .common-extra-block-lightgray .common-dl-tableType-line dl{
	margin: 0;

  }
  .common-extra-block-lightgray .common-dl-tableType-line dl dt{
	margin-bottom: 0;

  }

  .common-extra-block-lightgray .common-dl-tableType-line dl dd{
	margin-top: 0;
	margin-bottom: 0;

  }

  .common-mainTxt-area .common-extra-block-lightgray figure {
	padding: 0 10px;
	margin: 10px auto 20px;
  }

/* CTAボタン */

.cta_btn {
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
	align-items: center;
	display: flex;
	justify-content: right;
	gap: 20px;
	flex-wrap: wrap;
	position: absolute;
	bottom: 8%;
	right: 0;
	width: 100%;
	padding-right: 50px;
}

.cta_btn01,
.cta_btn02 {
	font-size: 16px;
	color: #fff;
	position: relative;
	display: inline-block;
	text-decoration: none;
	padding: 1em 1em 1em 60px;
	border-radius: 100vh;
	width: 100%;
	max-width: 300px;
	transition: all .2s;
	box-shadow: 0 3px 5px rgb(0 0 0 / 50%);

}

/* ボタンの色 */
.cta_btn01 {
	background: rgb(var(--image-color-accent));
}

.cta_btn02 {
	background: rgb(var(--image-color-accent));
}

.cta_btn01::before,
.cta_btn02::before {
	content: '';
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size: cover;
}

/* カタログアイコン */
.cta_btn01::before {
	width: 40px;
	height: 40px;
	background-image: url(mpd_img/catalog-icon.png);
}

/* ダウンロードアイコン */
.cta_btn02::before {
	width: 40px;
	height: 40px;
	background-image: url(img/trial-icon.png);
}

.cta_btn img {
	width: 1em;
	margin-right: 0.5em;
}

/* マウスオーバー時 */
.cta_btn01:hover,
.cta_btn02:hover {
	box-shadow: none;
	transform: scale(0.99, 0.99) translateY(2px);
}

.cta_btn-copy {
	font-size: 90%;
	font-weight: bold;
	color: initial;
	position: absolute;
	top: -2em;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 100%;
}

.cta_btn-copy:before {
	margin-right: .2rem;
	content: '＼';
}

.cta_btn-copy:after {
	margin-left: .1rem;
	content: '／';
}

.pdfae-top-title-area {
	position: relative;
}

  

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

	p.pdfae-pr-title {
		font-size: 20px;
		padding: 0 10px;
		line-height: 2.0;
	}


	.pdfae-pr-text {
		margin-top: 0;
	}
      .pdfae-pr-block-flex {
		display: block;
	 }

	 .pdfae-pr-block-flex >div{
		display: flex;
		justify-content: space-around;
		margin: 30px 0 30px 10px;
	 }

	 .pdfae-pr-block-flex>div div{
		width: 100%;
	}
	.pdfae-pr-block-flex>div div.img-box{
		width: 70%;
	}

	 .pdfae-pr-block-flex>div img{
		max-width: 150px;
		height: auto;
	}
	.pdfae-pr-block-flex>div p{
		padding: 0 15px;
	}

	.pdfae-grid{
		margin-top: 50px;
	}
}

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


	/* CTAボタン */
	.cta_btn {
		bottom: 7%;
	}

	.cta_btn01,
	.cta_btn02 {
		font-size: 14px;
		padding: .5em .7em;
		max-width: 200px;
	}

	.cta_btn01::before,
	.cta_btn02::before {
		display: none;
	}

	.cta_btn-copy {
		font-size: 85%;
	}

}

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


	/* CTAボタン */
	.cta_btn {
		bottom: 7%;
		gap: 5px;
	}

	.cta_btn01,
	.cta_btn02 {
		font-size: 10px;
		padding: .3em .5em;
		max-width: 140px;
	}

	.cta_btn-copy {
		display: none;
	}

}