@charset "UTF-8";
/*
  /asset/css/object/module/m-article-fv.css
  記事・事例のFVモジュール用CSS
*/

.m-article-fv {
  background-color: var(--rsaikenkanri-bg-main);
  color: var(--white);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 255px;
  position: relative;
  overflow: hidden;
  @media screen and (max-width: 1024px) {
    min-height: auto;
    padding: 18px 20px;
    text-align: left;
    align-items: flex-start;
  }
  &::before,
  &::after {
    display: block;
    content: "";
    position: absolute;
    z-index: 0;
    width: 290px;
    height: 400px;
    background-image: url(/asset/image/common/component/cta-back-component.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  &::before {
    bottom: -110px;
    left: -70px;
    transform: rotate(131deg);
    @media screen and (max-width: 600px) {
      content: none;
    }
  }
  &::after {
    top: -125px;
    right: -60px;
    transform: rotate(-72deg);
    @media screen and (max-width: 600px) {
      width: 145px;
      height: 180px;
      top: -60px;
      right: -43px;
    }
  }
}
.m-article-fv-title {
  font-size: 30px;
  font-weight: bold;
  margin: 13px 0 0;
  z-index: 10;
  max-width: 1000px;
  @media screen and (max-width: 1024px) {
    font-size: 26px;
  }
  @media screen and (max-width: 600px) {
    font-size: 20px;
    margin: 5px 0 0;
  }
}
.m-article-fv-title__catch {
  font-size: 20px;
  z-index: 10;
  @media screen and (max-width: 600px) {
    font-size: 14px;
  }
}
