/* reset CSS */
html {
  font-size: 100%;
}
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, address, em, strong, img, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, dd {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-size: 1rem;
}
* {
	box-sizing: border-box;
}
ul,
ol {
    list-style: none;
    padding-left: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
figure {
  margin: 0;
}

/* リンクのリセット */
a {
  text-decoration: none; /* 下線を削除 */
  color: inherit; /* 親要素のテキストカラーを継承 */
  background: transparent; /* 背景を透明に */
  outline: none; /* フォーカス時の枠線を削除 */
}

/* フォーカスやホバー時のデフォルト装飾をなくす */
a:focus,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
  outline: none;
}

/* ボタンやナビゲーション用のリセット */
button,
a.button,
.nav a {
  display: inline-block;
  cursor: pointer;
}

/* 画像リンクのリセット */
a img {
  border: none;
  vertical-align: middle;
}

body, h1, h2, h3, h4, h5, h6, p, a, li, dt, dd, span, div, input, button, textarea {
  font-family: serif;
}

/* パンくず */
.breadcrumb {
  font-size: 0.9rem;
    margin: 45px auto;
    padding: 0 15px;
    color: #666;
    width: 90%;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: ">";
  color: #999;
  margin: 0 8px;
}

.breadcrumb a {
	text-decoration: none;
	color: #556b2f;
	transition: color 0.2s;
}

.breadcrumb a:hover {
	text-decoration: underline;
	color: #746B4C;
}
@media only screen and (max-width: 768px) {
  .breadcrumb ol {
    font-size: 12px;
  }
}
