@charset "UTF-8";
body {
  font-family: fot-rodin-pron, sans-serif;
  margin: 0;
  background: #caced0;
  color: #25611e;
}

* {
  font-family: fot-rodin-pron, sans-serif;
  letter-spacing: 0.05em;
  line-height: 2em;
  color: #25611e;
}

.site-header {
  text-align: center;
  padding: 2rem;
  border-bottom: 1px solid #ddd;
}

section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  font-size: 1.5rem;
  border-left: 4px solid #333;
  padding-left: 0.5rem;
}

/* デフォルト */
.txt_rd {
  color: #b24040;
}

.txt_gr {
  color: #2c8640;
}

.txt_bu {
  color: #2c3f8b;
}

.txt_or {
  color: #b05b1e;
}

.txt_gy {
  color: #a7a7a7;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links li {
  margin: 0.5rem 0;
}

/* header */
.header_news {
  text-align: center;
  padding: 4px 8px;
  border-bottom: 1px solid #dbe2e5;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.header_news p {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.header {
  padding: 4px 8px;
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
}

/* footer */
.footer .copyright {
  padding: 4px 8px;
}

/* works_section */
.works_section {
  max-width: 980px;
  margin: 0 auto 64px;
  width: 88%;
}
.works_section .wrap {
  -moz-column-count: 3;
       column-count: 3;
  gap: 24px 4%;
}
.works_section .wrap .portfolio_item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: inline-block; /* これが必須 */
  width: 100%;
  overflow: hidden;
}
.works_section .wrap .portfolio_item img {
  width: 100%;
  height: auto;
}
.works_section .wrap .portfolio_item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 780px), screen and (orientation: portrait) {
  .works_section .wrap {
    -moz-column-count: 2;
         column-count: 2;
  }
}
/* web_section */
.web_section .wrap {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.web_section .wrap a .sample {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  background-color: #333;
  border-radius: 3px;
}/*# sourceMappingURL=style.css.map */