@charset "UTF-8";
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 1;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style-type: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  width: 100%;
  height: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
} /* mixinの定義 */
/* _mixinで定義したものを読み込む際は設定した名称の頭にm.と記述をする */
html {
  font-size: 62.5%;
}
html body {
  background-color: #fffcf9;
}
html body .wrapper {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
html body h3 {
  padding: 20px 0;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #594736;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
html body h4 {
  margin-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #594736;
  line-height: 1.5;
}
html body p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #222222;
  line-height: 1.5;
  text-align: justify;
}
html body a {
  text-decoration: none;
}
html body header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #594736;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
}
html body header h1 {
  max-width: 350px;
  width: 35%;
  padding-left: 20px;
  margin-left: auto;
}
html body header h1 a {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #594736;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #fffcf9;
}
html body header nav {
  max-width: 650px;
  width: 65%;
  padding-right: 20px;
  margin-right: auto;
}
html body header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body header nav ul li a {
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-size: 1.6rem;
  text-transform: uppercase;
  background-color: #fffcf9;
  color: #594736;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  transition: 0.2s;
}
html body header nav ul li a:hover {
  background-color: #8C6751;
  color: #fffcf9;
}
html body main section.wrapper {
  margin-top: 40px;
}
html body main .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80vh;
  max-height: 600px;
  padding-top: calc(2.4rem + 40px);
  justify-content: center;
  background-image: url(../img/dummy-bg.jpg);
  background-position: center center;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #594736;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
html body main .works ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
html body main .about .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body main .about .flex > p {
  max-width: 350px;
  width: 35%;
  padding-left: 20px;
  margin-left: auto;
  padding: 0 30px 0 0;
}
html body main .about .flex div {
  max-width: 650px;
  width: 65%;
  padding-right: 20px;
  margin-right: auto;
  padding: 0;
}
html body main .other {
  max-width: 670px;
}
html body main .other ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body main .other ul li {
  width: calc(50% - 15px);
}
html body footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: end;
  background-color: #594736;
  padding: 150px 0 50px 0;
  margin-top: 100px;
}
html body footer nav {
  max-width: 350px;
  width: 35%;
  padding-left: 20px;
  margin-left: auto;
}
html body footer nav ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #222222;
  line-height: 1.5;
  text-align: justify;
  color: #fff;
  text-transform: uppercase;
}
html body footer small {
  max-width: 650px;
  width: 65%;
  padding-right: 20px;
  margin-right: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #222222;
  line-height: 1.5;
  text-align: justify;
  text-align: right;
  color: #fff;
}/*# sourceMappingURL=style.css.map */