/* ベース */
body {
  background: #f5f7f9;
  color: #222;
  line-height: 1.7;
}

a {
  color: #1e5aa8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* レイアウト */
#container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}

.pageTitle {
  font-size: 28px;
  margin: 20px 0 30px;
  color: #1e3a5f;
}

/* パンくず */
.topicpath ul {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #666;
}
.topicpath li::after {
  content: ">";
  margin-left: 8px;
}
.topicpath li:last-child::after {
  content: "";
}

/* カード */
.card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

.cardTitle {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1e5aa8;
  border-left: 4px solid #1e5aa8;
  padding-left: 10px;
}

/* ボタン */
.dojoBtn {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.btn {
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid #1e5aa8;
  color: #1e5aa8;
}

/* リスト */
.list {
  padding-left: 18px;
}
.list li {
  margin-bottom: 6px;
}

/* 注記 */
.note {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.contact {
  font-size: 14px;
  margin-top: 12px;
}

/* テーブル */
.tableWrap {
  overflow-x: auto;
}

.compareTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compareTable th,
.compareTable td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.compareTable th {
  background: #f0f4f8;
  color: #1e3a5f;
}

/* 中央寄せカード */
.centerCard {
  text-align: center;
}

/* リンクボタングループ */
.linkGroup {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}



.entryNav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

/* 共通ボタン */
.entryBtn {
  min-width: 200px;
  padding: 18px 26px;
	background: #fff;
	border: 3px solid #6c6cab;
	color: #3F3F6D;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
}

/* タイトル */
.entryTitle {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .05em;
}


/* 操作方法 */
#indexArea {
    font-size: 85%;
    padding: 20px;
    background-color: #fafafa;
    margin-top: 1em;
    margin-bottom: 2em;
    width: 100%;
    display: flex;
    position: relative;
}