@charset "UTF-8";
/*
  /rakurakucloud/mailmarketing/asset/css/object/component/c-heading.css
  見出しコンポーネント用CSS
*/
/*
  h1
*/
.c-heading-h1 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
  text-align: center;
  padding: 0 0 25px;
  @media screen and (max-width: 600px) {
    font-size: 25px;
  }
}
/*
  h2
*/
.c-heading-h2 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
  padding: 0 0 56px;
  position: relative;
  text-align: center;
  &::after {
    content: "";
    width: 40px;
    height: 3px;
    line-height: 0;
    background-color: var(--rmailmarketing-dark);
    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;
  }
}

/*
  h3
*/
.c-heading-h3 {
  padding: 0 0 30px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

/*
  h4
*/
.c-heading-h4 {
  padding: 0 0 30px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

/*
  見出し下リード分
*/
.c-heading-lead {
  font-size: 18px;
  line-height: 1.7;
  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;
  }
}
