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

html {
  font-size: 0.875rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1A1A1A;
  background-color: #FFFFFF;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #1457db;
}
a:hover {
  text-decoration: underline;
}

strong {
  color: #E8734A;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #1457db;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  border: none;
  border-top: 1px solid #E0E0E0;
  margin: 2rem 0;
}

blockquote {
  border-left: 4px solid #E8734A;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  color: #5A5A5A;
  background-color: #F8F9FA;
}

code {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  background-color: #F8F9FA;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}

pre {
  margin-bottom: 1rem;
  padding: 1rem;
  overflow-x: auto;
  background-color: #F8F9FA;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}
pre code {
  padding: 0;
  background: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
table th,
table td {
  padding: 0.5rem 0.75rem;
  border: 1px solid #E0E0E0;
  text-align: left;
}
table th {
  background-color: #F8F9FA;
  font-weight: 700;
}

.callout {
  border: none;
  border-left: 4px solid;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
}
.callout::before {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.callout > *:last-child {
  margin-bottom: 0;
}
.callout-note {
  border-left-color: #1457db;
  background-color: #eef3fc;
}
.callout-note::before {
  content: "NOTE";
  color: #1457db;
}
.callout-tip {
  border-left-color: #1a7f37;
  background-color: #eaf7ee;
}
.callout-tip::before {
  content: "TIP";
  color: #1a7f37;
}
.callout-important {
  border-left-color: #8250df;
  background-color: #f1eefa;
}
.callout-important::before {
  content: "IMPORTANT";
  color: #8250df;
}
.callout-warning {
  border-left-color: #9a6700;
  background-color: #fef8e7;
}
.callout-warning::before {
  content: "WARNING";
  color: #9a6700;
}
.callout-caution {
  border-left-color: #cf222e;
  background-color: #fceef0;
}
.callout-caution::before {
  content: "CAUTION";
  color: #cf222e;
}

.plan-badges {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25em;
  margin-left: 0.5em;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125em 0.625em;
  border-radius: 9999px;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E0E0E0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-title {
  display: flex;
  align-items: center;
  height: 2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav a {
  color: #1A1A1A;
  font-size: 0.875rem;
  font-weight: 700;
}
.site-nav a:hover {
  color: #E8734A;
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #1457db;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.3s ease;
}
.nav-toggle-label span {
  top: 9px;
}
.nav-toggle-label span::before {
  content: "";
  top: -7px;
}
.nav-toggle-label span::after {
  content: "";
  top: 7px;
}

.site-content {
  flex: 1;
  padding: 2rem 0;
}

.site-footer {
  background-color: #1457db;
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem 0;
  margin-top: auto;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-copyright {
  font-size: 0.875rem;
}

.page-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.page-content h2 {
  margin-top: 2rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #E0E0E0;
}
.page-content h3 {
  margin-top: 1.5rem;
}
.page-content ul, .page-content ol {
  margin-bottom: 1rem;
}
.page-content li {
  margin-bottom: 0.25rem;
}
.page-content li > ul {
  margin-bottom: 0;
}

.highlight {
  margin-bottom: 1rem;
  background: #F8F9FA;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 1rem;
  overflow-x: auto;
}
.highlight .c, .highlight .cm, .highlight .c1, .highlight .cs {
  color: #6a737d;
  font-style: italic;
}
.highlight .k, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt {
  color: #d73a49;
}
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .s1 {
  color: #032f62;
}
.highlight .na {
  color: #005cc5;
}
.highlight .nb {
  color: #005cc5;
}
.highlight .nc {
  color: #6f42c1;
}
.highlight .nf {
  color: #6f42c1;
}
.highlight .nn {
  color: #005cc5;
}
.highlight .no {
  color: #005cc5;
}
.highlight .mi, .highlight .mf, .highlight .mh, .highlight .mo {
  color: #005cc5;
}
.highlight .o, .highlight .ow {
  color: #d73a49;
}
.highlight .p {
  color: #1A1A1A;
}
.highlight .gd {
  color: #b31d28;
  background: #ffeef0;
}
.highlight .gi {
  color: #22863a;
  background: #f0fff4;
}

@media (max-width: 900px) {
  .container {
    padding: 0 1rem;
  }
  .site-content {
    padding: 1.5rem 0;
  }
}
@media (max-width: 600px) {
  .nav-toggle-label {
    display: block;
  }
  .site-nav {
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-nav a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid #E0E0E0;
  }
  .nav-toggle:checked ~ .site-nav {
    max-height: 300px;
  }
  .nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
  }
  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }
  .site-footer .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
}

/*# sourceMappingURL=main.css.map */