@charset "UTF-8";

/*---------------------------------------------------------------*\
$reset styles
\*---------------------------------------------------------------*/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
}

a, a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  outline: none;
}

ul, li {
  list-style: none;
}

figure {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

span, i, time, picture, a {
  display: block;
}

img, canvas, iframe, video, svg {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}


/*---------------------------------------------------------------*\
$base styles
\*---------------------------------------------------------------*/

* {
  color: #111;
  box-sizing: border-box;
  line-height: 1;
}

html {
  scroll-behavior: auto;
  height: 100%;
}

body {
  font-family: "Inter Tight", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "ヒラギノ角ゴ Pro W3", Roboto, "Segoe UI", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  font-weight: 650;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #F0F9FF;
}

a {
  color: #13C6FF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/*---------------------------------------------------------------*\
$static header
\*---------------------------------------------------------------*/

.static-header {
  background-color: #13C6FF;
  padding: 20px 40px;
}

.static-header .logo {
  display: inline-block;
}

.static-header .logo svg {
  width: 120px;
  height: auto;
  fill: #fff;
}

@media screen and (max-width: 768px) {
  .static-header {
    padding: 16px 20px;
  }

  .static-header .logo svg {
    width: 100px;
  }
}


/*---------------------------------------------------------------*\
$static footer
\*---------------------------------------------------------------*/

.static-footer {
  background-color: #13C6FF;
  padding: 24px 40px;
  text-align: center;
  margin-top: auto;
}

.static-footer .copyright {
  color: #fff;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .static-footer {
    padding: 20px;
  }
}


/*---------------------------------------------------------------*\
$static page content (privacy, terms, etc.)
\*---------------------------------------------------------------*/

.static-content {
  width: 100%;
  padding: 80px 0;
  flex: 1;
}

.static-content .container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 40px;
}

.static-content .page-title {
  font-size: 36px;
  font-weight: 780;
  color: #111;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.4;
}

.static-content .content-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0px 10px 32px rgb(0 0 0 / 8%);
}

.static-content .intro {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.static-content .section {
  margin-bottom: 40px;
}

.static-content .section:last-of-type {
  margin-bottom: 20px;
}

.static-content .section h2 {
  font-size: 20px;
  font-weight: 780;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.6;
}

.static-content .section p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

.static-content .section ol {
  margin-left: 20px;
  margin-bottom: 12px;
}

.static-content .section ol li {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
  list-style-type: decimal;
}

.static-content .section ol ol {
  margin-top: 12px;
  margin-left: 20px;
}

.static-content .section ol ol li {
  list-style-type: decimal;
}

.static-content .section ul {
  margin-left: 40px;
  margin-top: 12px;
}

.static-content .section ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
  list-style-type: disc;
}

.static-content address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-top: 16px;
}

.static-content address a {
  display: inline;
}

.static-content .date {
  text-align: right;
  font-size: 14px;
  color: #666;
  margin-top: 40px;
  font-weight: 780;
}


/*---------------------------------------------------------------*\
$responsive
\*---------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  .static-content {
    padding: 40px 0;
  }

  .static-content .container {
    padding: 0 20px;
  }

  .static-content .page-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .static-content .content-box {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .static-content .intro {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .static-content .section {
    margin-bottom: 32px;
  }

  .static-content .section h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .static-content .section p,
  .static-content .section ol li,
  .static-content .section ul li,
  .static-content address {
    font-size: 14px;
    line-height: 1.7;
  }

  .static-content .section ol {
    margin-left: 16px;
  }

  .static-content .section ol ol {
    margin-left: 16px;
  }

  .static-content .section ul {
    margin-left: 32px;
  }

  .static-content .date {
    font-size: 13px;
    margin-top: 32px;
  }
}

@media screen and (max-width: 600px) {
  .static-content {
    padding: 32px 0;
  }

  .static-content .container {
    padding: 0 16px;
  }

  .static-content .page-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .static-content .content-box {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .static-content .intro {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .static-content .section {
    margin-bottom: 28px;
  }

  .static-content .section h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .static-content .section p,
  .static-content .section ol li,
  .static-content .section ul li,
  .static-content address {
    font-size: 13px;
    line-height: 1.6;
  }
}
