@charset "utf-8";
/* テーブル全体 */
table {
  width: 100%;               /* 横幅いっぱい */
  border-collapse: collapse;  /* セルの境界線を結合 */
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

/* セル・ヘッダの基本 */
table th,
table td {
  padding: 8px 12px;          /* 内側の余白 */
  border: 1px solid #ccc;     /* 薄い枠線 */
  text-align: left;
}

/* ヘッダ背景色 */
table th {
  background-color: #f8f8f8;
  font-weight: bold;
}

/* ゼブラストライプ（偶数行の背景色） */
table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* ホバーで行を強調 */
table tbody tr:hover {
  background-color: #eef;
}

/* 小さくはみ出す横スクロール対応 */
.table-wrapper {
  overflow-x: auto;
  width: 1200px !important;
  margin: 0 auto;

}
#wrapper{
	margin: 0 !important;
	padding: 0 !important;
	max-width:unset;
	width: 100% !important;
}
.fusion-body #wrapper.wrapper_blank {
  display: block !important;
 }
.entry-content {
    width: 100%;
    max-width: 1031px;
}
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
    max-width: 1030px;
    width: 100%;
}
.post-content h1, .search-page-search-form h1, .title h1, h1 {
  width: 1200px !important;
  margin: 0 auto !important;
}