@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html,body{
  font-family: "メイリオ", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size:1.4rem;
  font-size:14px;
  line-height: 1.5
}
a{
  text-decoration: none;
  color:#333
}
img{
  max-width: 100%;
  vertical-align: top
}

/*** トップへ戻るボタン ***/
.page-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 200;
  transition: .2s ease-out;
}
.page-top-button {
  display: flex;
  cursor: pointer;
  /*opacity: 0;
  visibility: hidden;
  transition: .2s ease-out;*/
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(105, 113, 128, .5);
  outline: none;
  border: none;
  width: 48px;
  height: 48px;
}
.page-top-button::after{
  content: "";
  background: url(/cmn/icon/icon_arrow_top_white.svg) no-repeat center / contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/*** パンくず ***/
.breadcrumb-list{
  width: 100%;
}
.breadcrumb-list .breadcrumb__inner>li{
  font-size: 12px;
}
.breadcrumb-list .breadcrumb__item>a{
  font-size: 12px;
  color: #697180
}
.breadcrumb-list .breadcrumb__item>a:hover{
  color: #3064d5;  
}
.breadcrumb-list .breadcrumb__inner li:last-child{
  color: #2c2a29
}

@media screen and  (min-width: 741px) and ( max-width:1024px) {
  .breadcrumb-list .breadcrumb__inner{
    padding: 5px 24px;
    overflow-x: scroll;
    white-space: nowrap;
    flex-wrap: nowrap
  }
}