/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 09 2025 | 02:01:45 */
<style>
  /* 親アコーディオン */
  .parent-accordion input[type="checkbox"] {
    display: none;
  }

  .parent-accordion label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #4a90e2, #357ABD);
    color: white;
    padding: 15px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease;
  }

  .parent-accordion label:hover {
    background: linear-gradient(135deg, #3b7ac6, #2e63ad);
  }

  .parent-accordion label::after {
    content: "＋";
    font-size: 1.8em;
    transition: transform 0.3s ease;
  }

  .parent-accordion input[type="checkbox"]:checked + label::after {
    content: "−";
    transform: rotate(180deg);
  }

  .parent-accordion .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
    background: #eaf2ff;
    border-radius: 0 0 8px 8px;
    padding: 0 20px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }

  .parent-accordion input[type="checkbox"]:checked + label + .content {
    max-height: 1200px;
    padding: 20px;
  }

  /* 子アコーディオンは親アコーディオン内で使う */
  .child-accordion input[type="checkbox"] {
    display: none;
  }

  .child-accordion label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #a0c4ff, #6699ff);
    color: #003366;
    padding: 12px 18px;
    margin-bottom: 6px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
  }

  .child-accordion label:hover {
    background: linear-gradient(135deg, #89b0ff, #5080ff);
  }

  .child-accordion label::after {
    content: "＋";
    font-size: 1.4em;
    transition: transform 0.3s ease;
  }

  .child-accordion input[type="checkbox"]:checked + label::after {
    content: "−";
    transform: rotate(180deg);
  }

  .child-accordion .content {
  max-height: 0px;              /* 高さ上限を設定 */
  overflow-y: auto;               /* 縦スクロールを許可 */
  background: #dbe9ff;
  border-radius: 0 0 6px 6px;
  padding: 0 18px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  margin-bottom: 12px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .child-accordion input[type="checkbox"]:checked + label + .content {
    max-height: 600px;
    padding: 15px 18px;
  }

  /* 横並び（PC画面） */
  .parent-accordion-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .parent-accordion-wrapper > div {
    flex: 1 1 45%;
  }

  /* スマホは縦並び */
  @media (max-width: 768px) {
    .parent-accordion-wrapper {
      flex-direction: column;
    }
    .parent-accordion-wrapper > div {
      flex: 1 1 100%;
    }
  }
/* 名前とリンクのセルを縦並びに */
tbody td.name-link-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 15px;
  vertical-align: middle;
}

/* 名前のスタイル */
tbody td.name-link-cell .name {
  font-weight: 600;
  font-size: 1em;
  color: #222;
}

/* ボタンはそのまま */
tbody td.name-link-cell .btn-link {
  display: inline-block;
  background-color: #4a90e2;
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

tbody td.name-link-cell .btn-link:hover {
  background-color: #357ABD;
}

.vertical-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  text-align: center;
  vertical-align: middle;
}

.thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.name {
  font-weight: 600;
  font-size: 1.1em;
  color: #222;
}

.btn-link {
  display: inline-block;
  background-color: #4a90e2;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-link:hover {
  background-color: #357ABD;
}

.responsive-cell {
  padding: 12px 15px;
}

.item-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.text-block {
  display: flex;
  flex-direction: column; /* 名前とボタンを縦並びに */
  gap: 8px;
}

.name {
  font-weight: 600;
  font-size: 1.1em;
  color: #222;
}

.btn-link {
  display: inline-block;
  background-color: #4a90e2;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-link:hover {
  background-color: #357ABD;
}

/* --- スマホではすべて縦並びに --- */
@media (max-width: 768px) {
  .item-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.table-space {
  border-collapse: separate;
  border-spacing: 0 12px; /* 横・縦に余白 */
  background: #cac2ff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  vertical-align: top;
}

.table-space02 {
  border-collapse: separate;
  border-spacing: 0 12px; /* 横・縦に余白 */
  background: #c2ffca;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  vertical-align: top;
}

</style>
