@charset "UTF-8";

.c-card__merit {
  margin-top: 5px!important;
}

/*高さを制限しているコンテンツの要素*/
.container{
	position: relative;
	width: 100%;
	height: 200px;
	margin: 0px auto;
	padding: 0px 0px 80px;
	overflow: hidden;
	transition: .4s;
	box-sizing: border-box;
	z-index: 2;
	transform: translate3d(0,0,0);/* safari対策 */
  }
  /*グラデーションで隠す擬似要素*/
  .container:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(255,255,255,1) 70%, rgba(255,255,255,0) 100%);
	transition: .4s;
  }
  /*クラス付与時のスタイル*/
  .container.active:before{
	opacity: 0;
	visibility: hidden;
  }
  /*テキストのスタイル*/
  p{
	font-size: 16px;
	line-height: 1.8;
  }
  /*ボタンのスタイル*/
  button{
	position: absolute;
	font-family: "source-han-serif-japanese", serif, sans-serif;
	left: 50%;
	bottom: 20px;
	width: 16rem;
	height: 40px;
	cursor: pointer;
	transform: translate(-50%, 0);
	color: #bc2a9a;
	border-radius: 5px;
	background-color: #ffffff;;
	border: none;
  }