.column-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column-list > * + *  {
  margin-top: 10px;
  padding-top: 10px;
  border-top: dashed 1px #e6eae9;
}
.column-title {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 15px auto 35px;
  grid-template-columns: 15px auto 35px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column-title > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.column-title > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.column-title > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.column-title:before {
  border-radius: 50%;
  width: 7px;
  height: 7px;
  display: block;
  content: "";
  background: #a38640;
}
.column-title:after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(/common/img/ico_arrow_down_03.png) left center no-repeat;
  background-size: 30px 30px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-left: auto;
}
.mark-circle {
  list-style: initial;
  padding-left: 1.5em;
}
.mark-number {
  list-style: auto;
  padding-left: 1.5em;
}
/* 比較用テーブル */
.compe-table table {
  width: 100%;
}
.compe-table table thead th {
  padding: 10px 5px;
  background: #f1e9d5;
  background: -moz-linear-gradient(top,#f1e9d5 0,#f4f0e6 100%);
  background: -webkit-linear-gradient(top,#f1e9d5 0,#f4f0e6 100%);
  background: linear-gradient(to bottom,#f1e9d5 0,#f4f0e6 100%);
  border-left: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  font-size: 13px;
  text-align: center;
  font-weight: 400;
}
.compe-table table thead th:first-child {
  border-left: none;
}
.compe-table table thead th:last-child {
  background: #f3f3f4;
}
.compe-table table tbody tr td {
  padding: 13px 3px;
  border-left: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  font-size: 11px;
  text-align: center;
}
.compe-table table tbody tr td:first-child {
  border-left: none;
}
/* 以下、スクロールバー追加 */
.table-scroll::-webkit-scrollbar{
 height: 5px;
}
.table-scroll::-webkit-scrollbar-track{
 background: #333;
}
.table-scroll::-webkit-scrollbar-thumb {
 background: #999;
}

.common-table {
	border-collapse: collapse;
	margin: auto;
}

.common-table th,
.common-table td {
	border: solid 1px #A38640;
	text-align: center;
	padding: 10px 0;
}

.common-table th {
	background-color: #fff8dc;
}

.box-author {
  border-radius: 0;
  background: none;
  border-color: #333;
}

.bg-initial {
  background: initial;
}

.no-border {
  border: none;
}

.toggle-contents {
  padding: 30px 0;
  display: none;
}

/* ボタン */
.attention-button {
  width: 80%;
  max-width: 300px;
  margin: 0 auto 20px;
  padding: 10px;
  color: #fff;
  background: #a38640;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}

.detail-accordion-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #333;
  background: #f5f2ea;
  text-align: center;
  margin-top: 30px;
  padding: 10px;
  position: relative;
  border-bottom: solid 1px #a38640;
  cursor: pointer;
}

.detail-accordion-button::after {
  content: '';
  width: 8px;
  height: 8px;
  border-left: solid 2px #a38640;
  border-bottom: solid 2px #a38640;
  transform: rotate(-45deg);
  position: absolute;
  right: 10px;
  transition: .8s;
}

.detail-accordion-button.is-open::after {
  margin-top: 2px;
  transform: rotate(135deg);
}

@media screen and (max-width: 768px) {
  .table-scroll {
    overflow-x: auto;
    white-space: nowrap;
  }
  .detail-accordion-button {
    font-size: 16px;
  }
}