@charset "utf-8";
/* CSS Document */


.stories__title{
	margin: 20px 0;
	text-align: center;
	font-size: 30px;
	font-weight: 400;
}
.stories__title .jp{
	font-size: 13px;
	display: block;
}
.stories__text{
	text-align: center;
	font-size: 13px;
	border-bottom: 1px solid #CFC7C0;
	margin-bottom: 40px;
	padding: 0 20px 40px;
}

.card-grid__container {
  display: grid;
  gap: 40px;
  max-width: 1210px;
  margin: 0 auto;
  box-sizing: content-box;
  @media (min-width: 641px) {
    grid-template-columns: repeat(auto-fit, minmax(390px,1fr));
    padding: 40px;
  }
  @media (max-width: 640px) {
    padding: 20px;
  }
}
 
.c-card {
  filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.09));
 
  .c-card__img {
    width: 100%;
      vertical-align: bottom;
  }
 
  .c-card__text-box {
    text-align: center;
    padding: 20px;
    background-color: #fff;
  }
 
  .c-card__title {
    font-size: 16px;
    font-weight: bold;
  }
 
  .c-card__text {
    font-size: 12px;
  }
 
  .c-card__button {
    font-size: 18px;
    font-weight: bold;
  }
}