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

html {
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  background-color: #ffffff;
  color: #1f1f1f;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

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

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
@media (max-width: 760px) {
  main {
    padding: 32px 18px 64px;
  }
}

a[target=_blank]:hover {
  text-decoration: underline;
}

.Logo {
  position: fixed;
  top: 0;
  left: 0;
  height: 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.72);
  border-radius: 0 0 24px 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
}

.ArticleList-Title {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #888;
}
.ArticleList-Group + .ArticleList-Group {
  margin-top: 40px;
}
.ArticleList-Group-Title {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #bbb;
}
.ArticleList-Item {
  padding: 8px 0;
}
.ArticleList-Item a:hover {
  text-decoration: underline;
}

.Article {
  position: fixed;
  top: 48px;
  left: 24px;
  right: 24px;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.32s ease;
}
@media (max-width: 760px) {
  .Article {
    top: 24px;
  }
}
.Article[data-open] {
  transform: translateY(0);
}
.Article-Header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 48px;
  padding: 0 28px;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 760px) {
  .Article-Header {
    height: 32px;
    padding: 0;
    touch-action: none;
    user-select: none;
  }
}
.Article-Title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}
.Article-Close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f6f6f;
  cursor: pointer;
}
.Article-Close:hover {
  color: #1f1f1f;
}
.Article-Body {
  flex: 1;
  min-height: 0;
  padding: 40px 24px 80px;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}
.Article-Body::-webkit-scrollbar {
  display: none;
}
@media (max-width: 760px) {
  .Article-Body {
    padding: 28px 18px 64px;
  }
}
.Article-Body > * {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.Article-Meta {
  margin-bottom: 28px;
  font-size: 13px;
  color: #6f6f6f;
}
.Article-Heading {
  margin: 40px auto 16px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}
.Article-Paragraph {
  margin-bottom: 16px;
}
.Article-Quote {
  position: relative;
  margin: 24px auto;
  padding: 14px 18px 14px 20px;
  background-color: #f5f5f3;
}
.Article-Quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #1f1f1f;
}

.Greeting-Text {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
}