/* 共通スタイルのインポート */
@import url('common.css');
@import url('header.css');
@import url('footer.css');

/* 環境ページ専用スタイル */
.environment-page {
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  padding: 80px var(--space-lg) 100px;
  background-color: var(--color-bg);
}

.environment-page .page-header {
  margin-bottom: 40px;
}

.environment-list {
  list-style: '・';
  padding: 0 0 0 1.5em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  font-family: 'Zen Kaku Gothic New';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.56px;
}

.environment-annotation-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: 'Zen Kaku Gothic New';
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}

.environment-annotation-list li {
  position: relative;
  padding-left: calc(1em + 2px);
}

.environment-annotation-list li::before {
  content: '※';
  position: absolute;
  left: 0;
}
