@charset "utf-8";

/* 全体ベース */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* テキスト系 */
h1, h2, h3, h4, h5, h6, p, span{
  font-size: inherit;
  font-weight: inherit;
}

/* リスト */
ul, ol, li {
  list-style: none;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}


button {
  cursor: pointer;
}


a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  /* color: inherit; */
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: inherit;
  text-decoration: none;

}












/* 中央寄せ */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 左寄せ・右寄せ */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}

/* キャプション付き画像 */
.wp-caption {
  max-width: 100%;
  text-align: center;
  margin-bottom: 1.5em;
}

.wp-caption img {
  max-width: 100%;
  height: auto;
}

.wp-caption-text {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
}

/* キャプション + 左右寄せ */
.wp-caption.alignleft {
  float: left;
  margin-right: 1.5em;
}

.wp-caption.alignright {
  float: right;
  margin-left: 1.5em;
}

.wp-caption.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.wp-block-table,
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5em;
}

table th,
table td {
  border: 1px solid #ddd;
  padding: 0.6em 1em;
  background:#fff;
}

table th {
  background: #f9f9f9;
  font-weight: bold;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
}

.gallery-item {
  padding: 4px;
  text-align: center;
}

.gallery-caption {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
}
