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

body {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  width: 100%;
}

.site {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

a {
  color: #0073aa;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
}

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.site-header .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.site-branding {
  text-align: center;
  margin-bottom: 1rem;
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
}
.site-title a {
  color: #333;
  text-decoration: none;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Hero */
.hero {
  background-color: #f5f5f5;
  padding: 4rem 0;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background-color: #555;
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
  margin-top: auto;
}
.site-footer .footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.site-footer .footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.site-footer .footer-links li a:hover {
  opacity: 0.7;
}
.site-footer .site-info .footer-desc {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  color: #ccc;
}
.site-footer .site-info .footer-copy {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #ccc;
}

@media (max-width: 600px) {
  .site-footer {
    padding: 40px 20px;
  }
  .site-footer .footer-links {
    gap: 15px;
    margin-bottom: 30px;
  }
  .site-footer .footer-links li a {
    font-size: 12px;
  }
  .site-footer .site-info .footer-desc,
  .site-footer .site-info .footer-copy {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */