/* ====================================
	グローバル：カラー設定
 ==================================== */
/* グローバヘッダー・リンク設定 */
#breadcrumb a{
	text-decoration: none;
	color: #000;
}

#breadcrumb a:hover {
	opacity: 0.6;
	}

/* パンくずリスト：構造化データ対応版 */
#breadcrumb {
	background: #e6e6e6;
	font-weight: 300;
	font-family: 'Noto Sans JP', sans-serif;
	font-size : 0.9em;
	color: #000;
}

#breadcrumb-text a{
	text-decoration: none;
}

#breadcrumb ol.item-list-breadcrumb {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline;
}

#breadcrumb ol.item-list-breadcrumb li {
	display: inline;
}

#breadcrumb ol.item-list-breadcrumb li::before {
	content: '\03e';
	margin: 0 0.5em;
	color: #7d7d7d;
}

#breadcrumb ol.item-list-breadcrumb li:first-child::before {
	content: '';
	margin: 0 0;
}

/* 旧パンくずリスト */
.breadcrumb-container .breadcrumb-arrow {
	margin: 0 0.5em;
	color: #7d7d7d;
}

/* パンくずリスト：構造化データ対応版 */
#breadcrumb {
		padding: 0.5em 0;
}

/* 旧パンくずリスト */
.breadcrumb-container .breadcrumb-arrow {
		margin: 0 0.5em;
}


/* ボタン */

section.btn_area {
  max-width: 450px;
  margin: 40px auto;
}
a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  position: relative;
  background: #535353;
  border: 1px solid #535353;
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  border-radius: 5px;
  transition-duration: 0.3s;
}
a.btn:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 16px;
  margin-top: -4px;
}
a.btn:hover {
	background: #fff;
	color: #535353;
	text-decoration: none;  
}
a.btn:hover:before {
  border-top: 2px solid #535353;
  border-right: 2px solid #535353;
}