<p class="heading-01__shoulder">POINT 01</p>
<h3 class="heading-01">見出しが入ります。見出しが入ります。見出しが入ります。</h3>
p.heading-01__shoulder #{ shoulder }
h3.heading-01 #{ heading }
{
  "shoulder": "POINT 01",
  "heading": "見出しが入ります。見出しが入ります。見出しが入ります。"
}
  • Content:
    $BLOCK_NAME: '.heading-01';
    
    // 変数
    $color_primary: #56bcb3;
    
    #{ $BLOCK_NAME } {
      padding-top: 10px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.75;
      letter-spacing: 0.16em;
      @include Mq(md) {
        padding-top: 20px;
        font-size: 24px;
        line-height: 1.67;
        letter-spacing: 0.11em;
      }
      &__shoulder {
        position: relative;
        display: block;
        max-width: 130px;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 500;
        line-height: 1;
        color: $color_primary;
        letter-spacing: 0.12em;
        @include Mq(md) {
          max-width: 154px;
          font-size: 13px;
        }
        &::after {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          display: block;
          width: 60px;
          height: 1px;
          margin: auto;
          content: '';
          background-color: $color_primary;
          @include Mq(md) {
            width: 80px;
          }
        }
      }
    }
    
  • URL: /components/raw/heading01/heading01.scss
  • Filesystem Path: src/components/headings/heading01/heading01.scss
  • Size: 1 KB