/* スマホの記述 */
.section-top{
    width: 100%;
    display: block;
    /* color: #333333; */
}
.title{
    width: 80%;
    text-align: center;
    margin: 160px auto 120px;
}
.title h1{
    font-size: 4.0rem;
    font-weight: bold;
    margin-bottom: 5%;
}
.title h3{
    font-size: 1.8rem;
    font-weight: bold;
}

.lead{
    width: 80%;
    text-align: center;
    margin: 0 auto 160px;
}
.lead h2{
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.5;
}
/* スマホの記述 ここまで*/




/* PCの記述 　タイトルの型崩れ防止のためここは940pxで指定している*/
@media(min-width:940px){
    .section-top{
        height: 60vh;
        display: flex;
        width: 80%;
        margin: 0 auto;
    }
    .title{
        width: 50%;
        text-align: left;
        margin: auto 0;
    }
    .title h1{
        font-size: 6.4rem;
        font-weight: bold;
        margin-bottom: 40px;
        margin-left: 25%;
    }
    .title h3{
        font-size: 2.4rem;
        font-weight: bold;
        margin-left: 25%;
    }

    .lead{
        width: 50%;
        text-align: left;
        margin: auto 0;
    }
    .lead h2{
        font-size: 4.0rem;
        font-weight: bold;
        line-height: 1.5;
        margin-top: -2%;
        margin-left: 25%;
    }
}
/* PCの記述 ここまで*/




/* 投稿の表示　section-noteの記述　*/
/* スマホの記述 */
.section-note{
    width: 80%;
    margin: 120px auto;
  }

  .section-note h1{
    font-size: 1.6rem;
    font-weight: normal;
    width: 100%;
    margin: 120px auto 60px;
    text-align: center;
    color: #333333;
  }
  .section-note h1 span{
    border-bottom: solid 1.5px #888888;
    padding: 0 10% 7px;
  }
  
  .section-note ul{
    width: 100%;
  }
  .section-note ul li a{
    text-decoration: none;
  }
  .section-note ul li{
    list-style: none;
    margin-bottom: 80px;
  }
  
  .note-date{
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    color: #888888;
  }
  .note-title{
    font-size: 1.8rem;
    color: #333333;
  }

  .note-golist {
    text-decoration: none;
    color: #333333;
    display: block;
    width: 200px;
    border: solid 1px #333333;
    border-radius: 10px;
    padding: 5px 10px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.15rem;
    font-size: 1.4rem;
  }

  
  /* スマホの記述 ここまで*/
  
  /* PCの記述 */
  @media(min-width:760px){
    .section-note{
        margin-bottom: 240px;
    }

    .section-note h1{
        font-size: 1.8rem;
        font-weight: normal;
        width: 100%;
        margin: 0 auto 120px;
        text-align: left;
      }
      .section-note h1 span{
        border-bottom: solid 1.5px #888888;
        padding: 0 20% 5px 0 ;
      }

    .section-note ul{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .section-note ul li{
      list-style: none;
      margin: 40px 0;
      width: 100%;
      border-bottom: solid 1px #000000;
    }

    .note-golist {
      width: 200px;
      border-radius: 10px;
      padding: 10px 20px;
      margin: 60px auto;
      font-size: 1.6rem;
      }
  }
  
  
  /* PCの記述 ここまで*/
  /* section-noteの記述　ここまで*/