:root {
  --teal: #12897e;
  --teal-dark: #0e5f57;
  --teal-deep: #093f3a;
  --teal-soft: #e8f5f2;
  --ink: #16232d;
  --body: #51636c;
  --muted: #7f8f96;
  --line: #dce7e6;
  --surface: #f4f8f7;
  --white: #fff;
  --blue: #0f76c4;
  --green: #4aa844;
  --orange: #f2871f;
  --violet: #7c51a1;
  --danger: #c0433a;
  --shadow: 0 18px 50px rgba(12, 73, 68, 0.12);
  --radius: 18px;
  --container: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Paperlogy, "Apple SD Gothic Neo", sans-serif;
  line-height: 1.65;
  letter-spacing: -0.015em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
body.surface-public,
body.surface-mypage {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
body.surface-public > .site-header,
body.surface-public > .site-footer,
body.surface-mypage > .site-header,
body.surface-mypage > .site-footer {
  flex: 0 0 auto;
}
body.surface-public > main,
body.surface-mypage > main {
  width: 100%;
  flex: 1 0 auto;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
  word-break: normal;
}
button {
  cursor: pointer;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus {
  top: 16px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.muted {
  color: var(--muted);
}
.mobile-only {
  display: none !important;
}
