* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #111;
  background: #fff;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.site-header {
  height: 80px;
  display: flex;
  align-items: center;
}

.header-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

.site-nav a:hover {
  opacity: 0.65;
}

.icon-link {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
}

.icon-link svg {
  width: 22px;
  height: 22px;
  fill: #111;
}

.hero {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.section {
  padding: 90px 0 70px;
}

.section-title {
  margin: 0 0 50px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

main {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.about-wrap {
  width: min(900px, 100%);
  margin: 0 auto;
}

.about-left {
  margin-bottom: 28px;
}

.about-name {
  margin: 0 0 12px;
  font-weight: 600;
}

.about-info {
  margin: 0;
}

.about-text {
  margin: 0;
}

.works-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 34px;
}

.works-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #eee;
}

.news-list {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 0;
}

.news-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid #111;
}

.news-row:last-child {
  border-bottom: 1px solid #111;
}

.news-row dt {
  font-weight: 600;
}

.news-row dd {
  margin: 0;
}

.contact-form {
  width: min(820px, 100%);
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 18px;
}

.form-row label {
  padding-top: 10px;
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #bbb;
  padding: 10px 12px;
  font: inherit;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #111;
}

.form-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.form-actions button {
  width: 180px;
  height: 46px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.form-actions button:hover {
  opacity: 0.85;
}/*# sourceMappingURL=style.css.map */