@charset "UTF-8";

/* ウエディングレポート
 * TOPとresort-wedding-domesticで使用
----------------------------------------------- */
.report_excerpt{
  background: url(/wed/common/images/module/bg-damask-gray.jpg) repeat top left / auto;
}
.report_excerpt__heading{
  background: url(/wed/common/images/module/text-wedding_report.png) no-repeat top 42px left / auto;
}
.report_article-item{
  display: flex;
  text-align: left;
  a{
    position: relative;
    display: block;
    padding: 20px;
    background-color: #ffffff;
  }
  a::after {
    content: "";
    position: absolute;
    right: 7px;
    bottom: 7px;
    height: 20px;
    width: 20px;
    background: var(--color-4);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    transition: .1s ease-in-out;
  }
  .text-container{
    display: flex;
    flex-direction: column-reverse;
    margin-top: 13px;
    line-height: 1.7;
    color: #34251e;
  }
  .image-container{
    overflow: hidden;
    text-align: center;
    img {
      max-width: fit-content;
      height: 100%;
    }
  }
  .label{
    position: absolute;
    top: 0;
    left: 0;
    background-color: #34251e;
    font-family: var(--ff-yu_mincho);

    display: inline-flex;
    align-items: center;
    padding: 1px 10px 0px;
    color: #ffffff;
    line-height: 1.4;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
  }
  .place, .date-head{
    display: none;
  }
}
@media (min-width: 769px){
  .report_article-item{
    .image-container{
      height: 190px;
    }
  }
  .report_article-item a:hover::after {
    right: 5px;
    bottom: 5px;
  }
}
@media (max-width: 768px){
  .report_article-item{
    .image-container{
      height: calc(420 / 750 * 100vw);
    }
  }
}