:root {
  --color-paper: #f7f5ef;
  --color-ink: #23211e;
  --color-muted: #6f6860;
  --color-line: #d7d0c4;
  --color-panel: #e3dbc8;
  --color-accent: #c40007;
  --shadow-page: 0 18px 50px rgba(42, 34, 25, 0.12);
}

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

html {
  font-size: 16px;
}

body {
  background: var(--color-panel);
  margin: 0;
  color: var(--color-ink);
  line-height: 1.9;
  overflow-wrap: anywhere;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  body {
    line-height: 1.8;
  }
}

.page {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 48px 24px;
}
@media only screen and (max-width: 767px) {
  .page {
    padding: 16px;
  }
}

.document {
  padding: clamp(28px, 6vw, 80px);
}
@media only screen and (max-width: 767px) {
  .document {
    padding: 24px 18px;
  }
}
.document__header {
  margin-bottom: 40px;
  padding-bottom: 28px;
}
@media only screen and (max-width: 767px) {
  .document__header {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }
}
.document__label {
  color: var(--color-accent);
  font-family: Yu Gothic, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0 0 12px;
}
.document__section + .document__section {
  margin-top: 36px;
}
.document__section--img {
  display: grid;
  place-items: center;
  margin: 24px 0;
}
.document__section--img img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #6f6860;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}
@media only screen and (max-width: 767px) {
  .image-modal {
    padding: 12px;
  }
}
.image-modal.is-open {
  display: flex;
}
.image-modal__trigger {
  display: block;
  width: min(100%, 550px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.image-modal__img {
  display: block;
  width: auto;
  max-width: min(100%, 1100px);
  max-height: 90dvh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #fff;
  cursor: zoom-out;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  margin-bottom: 0;
}

h2 {
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  line-height: 1.45;
  margin-bottom: 18px;
  padding-left: 14px;
}
@media only screen and (max-width: 767px) {
  h2 {
    padding-left: 10px;
  }
}

h3 {
  color: var(--color-accent);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  margin: 32px 0 12px;
}

p {
  margin-bottom: 0.95em;
}

ul {
  margin-bottom: 1.2em;
  padding-left: 1.4em;
}

li + li {
  margin-top: 0.35em;
}

hr {
  margin: clamp(32px, 6vw, 56px) 0;
}

.subject {
  font-weight: 700;
}

.signature {
  font-weight: 700;
  margin-top: 2em;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .signature {
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */