/*
* Theme Name: HTMLレイアウト標準テンプレート共通CSS
* Theme URI:
* Description: ４ブランド共通で使うスタイル
* Created Date: 2018.02.28
* Update Date: 2022.02.19
*/

/*------------------------------------
  Color
------------------------------------*/
body {
    color: #000;
}

/*------------------------------------
  Font
------------------------------------*/
/* @font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Regular.ttf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Bold.ttf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-ExtraBold.ttf") format("opentype");
  font-weight: 900;
  font-style: normal;
} */

html,body{
  font-size: 18px;
  font-family: 'Noto Sans JP', 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", sans-serif;
  /* letter-spacing: -.05em; */
}

/*------------------------------------
  Common
------------------------------------*/
*,
*:after,
*:before {
  box-sizing: border-box;
}

body {
  height: 100%;
  margin: 0;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

/*------------------------------------
  Text
------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
th,
td,
dt,
dd {
  line-height: 1.35;
  margin: 0;
  padding: 0;
}

/*------------------------------------
  breadcrumb
------------------------------------*/
.breadcrumb-list{
  width: 1000px;
  margin: 0 auto;
  display: flex;
  list-style: none;
  font-size: 14px;
}

.breadcrumb-list-text-underline{
  text-decoration: underline;
}

.breadcrumb-list-item:not(:last-child)::after {
  content: ">";
}