table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
    margin: auto;
    text-align:left;
}

#table01 tr {
  border-bottom: 1px solid #f0f0f0;
}

#table01 th,
#table01 td {
  padding: 24px 0;
  border: none;
}

#table01 th {
  width: 30%;
}

@media only screen and (max-width: 480px) {
  #table01 th,
  #table01 td,
  #table01 tr {
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
    padding-top: 0;
  }
}




#sns-cardlayout-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 2em auto;
    max-width: 960px;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

/* リンクテキストの下線を非表示 */
a.sns-card-link {
    text-decoration: none;
}

/* カードレイアウト内の画像を幅いっぱいに表示 */
#sns-cardlayout-wrap .sns-card-figure img {
    display: block;
    height: auto;
    width:50%;
    margin: auto;
    border-radius: 5rem;
}
#sns-cardlayout-wrap .sns-card-text-tax img {
    display: block;
    height: auto;
    width: 20%;
    margin: auto;
}

.sns-card-figure {
    margin: 0;
    padding: 0;
}

/* カードレイアウトのタイトル部分 */
.sns-card-title {
    margin: 1.6em 0 0;
    color: #818181;
    text-align: center;
    font-size: 1em;
    font-weight: 400;
}

/* カードレイアウトの説明文部分 */
.sns-card-text-tax {
    margin: 0;
    padding: 1em;
    color: #818181;
    font-size: .8em;
}

/* カードレイアウトを1カラムで配置 */
.sns-card-list {
    margin: 0.5em auto;
    padding: 0;
    width: 96%;
    background: #fff;
    box-shadow:0 0 3px rgba(0, 0, 0, 0.18);
}

.sns-card-list-notshadow {
    margin: 0.5em auto;
    padding: 0;
    width: 96%;
    background: #fff;
}

/* 画面幅768px以上の場合カードレイアウトを2カラムで配置 */
@media all and (min-width: 768px) {
    .sns-card-list {
        margin: 0.5em 0;
        width: calc(96% / 2); /* 96%幅を2で割るという指定 */
    }
    .sns-card-list-notshadow {
        margin: 0.5em 0;
        width: calc(96% / 2); /* 96%幅を2で割るという指定 */
    }
}

/* 画面幅992px以上の場合カードレイアウトを3カラムで配置 */
@media all and (min-width: 992px) {
    .sns-card-list {
        width: calc(85% / 3); /* 96%幅を3で割るという指定 */
        padding: 1.2rem;
    }
    .sns-card-list-notshadow {
        width: calc(85% / 3); /* 96%幅を3で割るという指定 */
        padding: 1.2rem;
    }
}
    
/* 最後の行が3列より少ない場合左寄せにレイアウトさせる */
    #cardlayout-wrap::after{
        content: "";
        display: block;
        width: calc(96% / 3);
    }
}

@media all and (max-width: 780px) {
    .sns-card-title {
        font-size: 1.8em;
    }
    
    .sns-card-text-tax {
        font-size:1.4em;
    }
}