:root {
  --color-primary: #b41918;
  --color-secondary: #fff;
  --color-background: #fff;
  --color-background-main: #f1f1f1;
  --color-text: #333;
  --color-text-sub: #fff;
  --color-text-soft: #b1b1b1;
  --color-border: #dadada;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
  color: var(--color-text);
  font-family: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

body {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
}

ol, ul {
  list-style: none;
  list-style-type: none; 
}

/*==================================
ヘッダー
==================================*/
.app-header {
  background-color: var(--color-background)
}

.app-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 16px 16px;
  box-sizing: border-box;
}

.base-breadcrumb {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

.base-breadcrumb__list {
  align-items: center;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.base-breadcrumb__item {
  align-items: center;
  display: flex;
  gap: .5rem;
}

.base-breadcrumb__text {
  color: var(--color-text, #333);
  font-weight: 500;
}

/*==================================
フッター
==================================*/
.app-footer {
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
}

.app-footer__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: var(--color-background);
  padding: 8px 0;
  box-sizing: border-box;
}

/*==================================
メイン
==================================*/
.container {
  background-color: var(--color-background-main);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.privacy_main {
  margin: 0 auto;
  max-width: 1100px;
  min-height: calc(100vh - 8rem);
  padding: 2.5rem 1rem;
  width: 100%;
  box-sizing: border-box;
}