@charset "UTF-8";
/* クーポン内のアイテムカード */

.item {
    background-color: #FFFFFF;
    margin-bottom: 0.5em;
    padding-top: 1em;
    padding-bottom: 1em;
    border-top: 0.5em solid #FE4B6D;
    -webkit-box-shadow: 0px 0px;
    box-shadow: 0px 0px;
}
.items {
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.items .item {
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    border-top: thick solid #FE4B6D;
}
.item-title {
    margin-top: 2px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #F61069;
}
.item-body p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
.item .item-body .title {
    border-bottom: thin solid #BC9E89;
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 0.5em;
}
/*.item-img {
    padding: 0;
}
.item-body {
  padding: 0;
}


*/
@media screen and (max-width: 1025px) {
	.items {
    width: 90%;
}
.items .item {
    width: 48%;
}

}
@media screen and (max-width: 767px) {
  .items {
    flex-direction: column;
  }
  .items .item {
    width: 100%;
  }
}
