.footer {
    display: flex;
    justify-content: center;
}

.row2 {
    font-family:"Meiryo", "メイリオ";
    font-weight: bold;
    display: flex;
    justify-content: space-between; 
}

.content {
    font-family:"Meiryo", "メイリオ";
    font-weight: bold;
    color: #0000B4;
    text-align: center; 
    font-size: 24px;
}

.table-custom {
    width: 60%;
    margin: 20px auto;
    background-color: #ffffff; /* 背景白 */
    border: 1px solid #ddd;
    text-align: center;
}
.table-custom th,
.table-custom td {
    vertical-align: middle;
    color: #00bfff; /* 文字は水色 */
}

/* styles.css に追加 */
.table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: auto;
  }
  
  .table-custom {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

@media (max-width: 480px) {
    .footer1, .footer2 {
        font-size: 10px; /* 文字サイズを小さく設定 */
    }
}

/* ボタン全体の外枠指定 */
.snsbtniti {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    max-width: 350px;/* ボタンを設置する場所の最大横幅 */
    margin: 0 auto;/* ボタンを中央へ */
  }
  
  /* ulタグの内側余白なしと箇条書きの黒丸削除 */
  ul.snsbtniti {
    padding: 0!important;
    list-style-type: none!important;
  }
  
  /* ボタン同士の余白調整 */
  .snsbtniti li {
    flex: 0 0 100%;/* ボタンを3つ並びへ */
    text-align: center!important;
  }
  
  /* ボタン全体 */
.flowbtn {
    font-family: 'Noto Sans Japaneses', sans-serif; /* フォント指定 */
    position: relative;
    display: inline-block;
    width: 75px; /* 背景横幅 */
    height: 65px;/* 背景高さ */
    font-size: 30px;/* アイコンサイズ */
    border-radius: 15px; /* 角に丸みをつける */
    color: #fff!important;/* ボタン内カラー */
    transition: .5s;
    text-decoration: none;
    box-shadow: 0 1px 2px #999;
    margin-bottom:10px;/* ボタン下余白 */
}
  
  /* アイコンの位置を少し下げる */
  .flowbtn i {
    position: relative;
    top: 7px;
    left: 15px;
  }
  
  /* ボタン内テキスト調整 */
  .flowbtn div {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0;
  }
  
  /* ボタンマウスホバー時少し浮き上がる */
  .flowbtn:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    text-decoration: none;
    cursor: pointer;
  }
  
  /* インスタ・Amazonのアイコンを少し大きく */
  .flowbtn i.fa-brands.fa-instagram,.flowbtn i.fa-brands.fa-amazon {
    font-size: 50px;
  }
  
  /* エックス背景 */
  .my_x1 {
    background: #000;
  }
  
  /* Instagram紫グラデ背景 */
  .my_instagram1 {
   background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
  }