@charset "UTF-8";
/*
  /asset/css/object/component/c-heading.css
  見出しコンポーネント用CSS
*/

/*
  h2
*/
.c-heading {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  padding: 0 0 56px;
  position: relative;
  text-align: center;
  &::after {
    content: "";
    width: 40px;
    height: 3px;
    line-height: 0;
    background-color: var(--rsaikenkanri-primary);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    @media screen and (max-width: 600px) {
      bottom: 25px;
      height: 2px;
    }
  }
  @media screen and (max-width: 600px) {
    font-size: 25px;
    padding: 0 0 50px;
  }
}

/*
  見出し下リード分
*/
.c-heading-lead {
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 25px;
  position: relative;
  text-align: center;
  &:last-child {
    margin: 0;
  }
  @media screen and (max-width: 840px) {
    line-height: 1.6;
    margin: 0 0 20px;
    text-align: left;
  }
  @media screen and (max-width: 600px) {
    font-size: 16px;
  }
}
