.article-content .related__articles {
	border: 1px solid #d8d8d8;
	padding: 1.6rem 1.6rem 2.4rem;
	margin: 4rem 0 2rem;
	border-radius: 0.4rem;
}

.article-content .related__articles .title {
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 1.6rem;
	border-bottom: 0.4rem solid #FFC610;
}

.article-content .related__articles .item {
	cursor: pointer;
	color: inherit;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-bottom: 0.8rem;
	margin-bottom: 1.6rem;
	border-bottom: 1px solid #d8d8d8;
	transition: opacity .3s ease;
}

.article-content .related__articles .item:hover {
	opacity: 0.7;
}

.article-content .related__articles .item:hover .img img{
	transform: translate(-50%, -50%) scale(1.1);
}

.article-content .related__articles .item:last-child {
	margin-bottom: 0;
}

.article-content .related__articles .list {
	margin: 0;
	width: 100%;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	border: none;
}

.article-content .related__articles .pic {
	flex: 0 0 auto;
	width: 37.8%;
	margin-right: 2.2%;
	position: relative;
	overflow: hidden;
}

.article-content .related__articles .pic img {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.article-content .related__articles .pic::after {
	content: '';
	display: block;
	padding-top: calc((240/380)*100%);
}

.article-content .related__articles .text {
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.5;
	margin-bottom: 0.4rem;
}

.article-content .related__articles .post,
.article-content .related__articles .update {
	color: #777;
	font-size: 0.8em;
}
.article-content .related__articles .post::before {
	content: '';
	display: inline-block;
	width: 1rem;
	height: 1rem;
	background: url(../img/related/clock.png) no-repeat center / cover;
	margin-right: 0.4rem;
	vertical-align: middle;
}
.article-content .related__articles .update::before {
	content: '';
	display: inline-block;
	width: 1rem;
	height: 1rem;
	background: url(../img/related/update.png) no-repeat center / cover;
	margin-right: 0.4rem;
	vertical-align: middle;
}

@media screen and (max-width: 767px) {
	.article-content .related__articles {
		padding: 0.8rem 0.8rem 1.6rem;
		margin: 2rem 0;
		border-radius: 0.4rem;
	}
	
	.article-content .related__articles .title {
		font-size: 1.8rem;
		margin-bottom: 1.6rem;
	}
	.article-content .related__articles .pic {
		margin-right: 1.5rem;
	}
	
	.article-content .related__articles .text {
		font-weight: bold;
		font-size: 1.4rem;
		line-height: 1.5;
		margin-bottom: 0.4rem;
	}
	
	.article-content .related__articles .post,
	.article-content .related__articles .update {
		color: #777;
		font-size: 1rem;
	}
	.article-content .related__articles .post::before {
		content: '';
		display: inline-block;
		width: 1rem;
		height: 1rem;
		background: url(../img/related/clock.png) no-repeat center / cover;
		margin-right: 0.4rem;
		vertical-align: middle;
	}
	.article-content .related__articles .update::before {
		content: '';
		display: inline-block;
		width: 1rem;
		height: 1rem;
		background: url(../img/related/update.png) no-repeat center / cover;
		margin-right: 0.4rem;
		vertical-align: middle;
	}
}
@media screen and (max-width: 500px) {
	.article-content .related__articles .title {
		font-size: 1.8rem;
		margin-bottom: 1.6rem;
	}

	.article-content .related__articles .item {
		display: block;
	}
	
	.article-content .related__articles .pic {
		width: 100%;
		margin-right: 0;
	}
}

/* 関連記事ショートコード  */
.relatedLink {
	max-width: 100%;
	margin: 20px 0;
  }
  
  .relatedLink__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	width: 100%;
	height: 100%;
	border: 2px solid #FFEFD8;
	background: #FFF9F0;
	padding: 12px 24px;
	text-decoration: none;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
  }
  
  .relatedLink__link:hover {
	opacity: 0.7;
  }
  
  .relatedLink__link:hover img {
	-webkit-transform: translate(-50%, -50%) scale(1.1);
			transform: translate(-50%, -50%) scale(1.1);
  }
  
  .relatedLink__link:hover .relatedLink__ttl .border {
	text-decoration: underline;
  }
  
  .relatedLink__img {
	-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
			flex: 0 0 auto;
	width: 200px;
	padding-top: 127px;
	position: relative;
	overflow: hidden;
	border: 2px solid #FFEFD8;
	background-color: #fff;
	margin-right: 24px;
  }
  
  .relatedLink__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
  }
  
  .relatedLink__ttl {
	font-size: 16px;
	line-height: 1.5;
	color: #222222;
	font-family: inherit;
	margin: 0;
	padding: 0;
	font-weight: 600;
  }
  
  .relatedLink__ttl .border {
	text-decoration: none;
	font-size: 16px;
  }
  
  @media screen and (max-width: 768px) {
	.relatedLink__link {
	  padding: 8px;
	}
	.relatedLink__img {
	  -webkit-box-flex: 0;
		  -ms-flex: 0 0 auto;
			  flex: 0 0 auto;
	  width: 37.8%;
	  padding-top: calc((240 / 380) * 37.8%);
	  margin-right: 12px;
	}
	.relatedLink__ttl {
	  font-size: 16px;
	}
	.relatedLink__ttl .border {
	  font-size: 16px;
	}
  }
  
  @media screen and (max-width: 500px) {
	.relatedLink__link {
	  -webkit-box-align: start;
		  -ms-flex-align: start;
			  align-items: flex-start;
	}
  }
  
  .myCta {
	margin: 20px 0;
	border: 2px solid #FFEFD8;
	background: #FFF9F0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	padding: 24px;
  }
  
  .myCta__ttl {
	margin: 0;
	padding: 0;
	font-size: 20px;
	margin-bottom: 12px;
	font-weight: 600;
  }
  
  .myCta__btn {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	background-color: #ef6d53;
	font-size: 18px;
	text-align: center;
	border-radius: 60px;
	line-height: 1.5;
	padding: 12px 48px;
	-webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.36);
			box-shadow: 0 3px 0 rgba(0, 0, 0, 0.36);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	min-width: 515px;
  }
  
  .myCta__btn:hover {
	opacity: 0.7;
	-webkit-transform: translateY(3px);
			transform: translateY(3px);
	-webkit-box-shadow: none;
			box-shadow: none;
  }
  
  @media screen and (max-width: 768px) {
	.myCta {
	  margin: 20px 0;
	  padding: 16px;
	}
	.myCta__ttl {
	  font-size: 15px;
	  margin-bottom: 8px;
	}
	.myCta__btn {
	  font-size: 14px;
	  text-align: center;
	  border-radius: 40px;
	  line-height: 1.5;
	  padding: 8px 24px;
	  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.36);
			  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.36);
	  min-width: 280px;
	}
	.myCta__btn:hover {
	  -webkit-transform: translateY(2px);
			  transform: translateY(2px);
	}
  }