@charset "UTF-8";

  h1 {
    font-size: 1rem;
    margin-bottom: 0px;
  }
  
  h2 {
    font-size: 46px;
    position:relative;
    margin-bottom: 1rem;
  }
  
  h2::after {
    content: url(/images/wind_s.svg);
    /*表示する画像のURL*/
    position: absolute;
    bottom: -2.2rem;
    /*見出しから下の位置に配置*/
    left: 0;
    right: 0;
    transform: scale(1);
    /*サイズ調整*/
  }
  
  h3 {
    font-size: 20px;
    color:var(--blue-004)
  }
  
  h4 {}
  
  h5 {}
  
  h6 {}
  
  @media (min-width: 576px) {
    h2 {
      font-size: 56px;
    }
  }
  @media (min-width: 768px) {

  }
  @media (min-width: 992px) {
  
  }
  @media (min-width: 1200px) {
  
  }
  @media (min-width: 1400px) {
   
  }