@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

article {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

article,
p {
  color: #2e2e2e !important;
}

article h1 {
}

article h2,
article h3,
article h4,
article h5,
article h6 {
  font-family: 'Kosugi Maru', sans-serif !important;
  font-weight: bold !important;
}

article h2 {
  font-size: 24px !important;
  border-bottom: 8px solid #05517a;
  color: #fff;
  background: #328ebf;
  padding: 12px 24px;
  line-height: 1.4;
}

article h3 {
  font-size: 20px !important;
  border-bottom: 2px solid #05517a;
  display: inline-block;
}

article h4 {
  font-size: 18px !important;
  border-bottom: 1px dotted #2e2e2e;
  display: inline-block;
}

article h5 {
  font-size: 16px !important;
}

article h6 {
  font-size: 14px !important;
}

article .tm-post-featured-wrapper img {
  margin: 0 0 30px 0;
}
article img,
article video {
  border-radius: 1rem;
  margin: 30px 0;
}

article p {
}

/* 目次のスタイル */
article #toc {
  background: #f9f9f9;
  padding: 1.6rem 1.6rem;
  border-radius: 1rem;
  font-size: 14px;
  margin: 30px auto;
  width: 90%;
  min-height: 80px;
}

article #toc h2 {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 4px;
  border-radius: 5px;
  transition: all 0.3s ease;
  width: 100px;
  color: #333;
  margin: 0;
}

article #toc h2:hover {
  color: #328ebf;
}

article #toc ul {
  list-style: none;
  padding-left: 36px;
  margin-top: 10px;
}

article #toc li {
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
  line-height: 1.6;
}

article #toc a {
  text-decoration: none;
  color: #328ebf;
  font-weight: 500;
}

article #toc a:hover {
  text-decoration: underline;
}

article .hidden {
  display: none;
}

article #toc h2::before {
  content: '▼';
  font-size: 16px;
  transition: transform 0.3s ease;
}

article #toc h2.open::before {
  content: '▲';
  transform: rotate(180deg);
}

/* table */
article table {
  border: none;
  border-collapse: collapse;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin: 20px 0;
}

article table th {
  background-color: #f2f2f2;
  color: #333;
  font-weight: bold;
  padding: 10px;
  text-align: left;
  text-transform: uppercase;
  border: 1px solid #ddd;
}

article table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  border-radius: 10px;
}

article table tr:last-child td {
  border-bottom: none;
}

article table tr:hover {
  background-color: #f5f5f5;
}

article table td img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}

article table td:empty {
  background-color: #f9f9f9;
  padding: 20px;
}

article table td,
article table th {
  border-radius: 0;
}

article table td,
article table th {
  border: 1px solid #ddd;
}

.star-container {
  display: flex;
  gap: 4px;
}

.star {
  width: 48px;
  height: 48px;
  background-color: #c3c3c3; /* デフォルトでグレー */
  position: relative;
  display: block;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.--full {
  background-color: black;
}

.star.--half::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: black;
}

table tbody tr,
table thead tr,
.wp-block-table td,
.wp-block-table th {
  border: unset;
}
