@media(max-width: 768px){
  /* ================================================================
  基本設定
  ================================================================ */
  h1{
    font-size:30px;
  }

  /* ================================================================
  ナビゲーションバー
  ================================================================ */
  .navbar-brand{
    display: flex;
    padding: 0;
    margin: 0;
    max-width: 70%;
  }
  .jp-name{
    font-size:32px;
  }
  .en-name{
    font-size:24px;
  }

  /* ================================================================
  gridレイアウト SP用
  ================================================================ */
  #content{
    /* 画像を常に天地左右の中央に配置 */
    background-position: top 350px center;

    /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
    background-size: 100% 500px;
  }

  .container-home{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 700px 500px 1fr;
  }
  .design1{
    grid-row: 1 / 2;
  }
  .design2{
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .design3{
    grid-row: 3 / 4;
  }
  .description{
    font-size: 20px;
  }
  .container-profile {
    grid-template-columns: 1fr;
    grid-template-rows: 100px 350px 0.9fr 1fr;
  }
  .item.name{
    grid-row: 1 / 2;
  }
  .item.skill{
    grid-row: 3 / 4;
  }
  .item.photo{
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 320px;
  }
  .item.biography{
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  #content-member{
    background-size: 100% 500px;
  }
  footer{
    width: 250px;
    font-size: 10px;
  }
  .list {
    margin: 0;
    padding: 0;
    display: block;
  }
  
  .col-md {
    flex: 0 0 33.3333%;
    padding: 0;
  }

  .col-md-9 {
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .card-note {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 10px 0;
  }
  .card-wrapper {
    display: block;
  }
  .card-thumbnail {
    width: 100%;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    .img {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .card-contents {
    margin: 0 10px 0;
    position: relative;
    line-height: 1;
  }
  .card-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    height: 3rem;
  }
  .card-description {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 5px;
    line-height: 1.5;
    color: #3e3b3f;
    height: 4rem;
  }
  .card-date {
    margin-left: auto;
  }
  .card-author {
    padding: 5px 0;
    border-top: 1px solid #f5f5f5;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    bottom: 0;
  }

  .card-author-name {
    font-size: 12px;
    color: #3e3b3f;
    padding-left: 8px;
  }

  /* ================================================================
  投稿記事一覧ページ
  ================================================================ */
  .container2{
    padding: 40px 15%;
  }

  .wrapper{
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .card {
  margin: 0 0 1rem;
  width: 100%;
  }

  .card-note_side {
    margin-bottom: 25px;
  }

}