@charset "UTF-8";
/* リセットcss */
@import url(https://unpkg.com/ress/dist/ress.min.css);
/* Google Fonts */
@import url(https://fonts.googleapis.com);
@import url(https://fonts.gstatic.com);
@import url(https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap);
/*
color-swatch ========================================*/
/*
breakpoint ==========================================================================*/
/*
font ========================================*/
/* Noto Sans */
/* Noto Serif */
/* Jost */
/*
all ==========================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-inline: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  transition: all 0.3s ease;
}
.header.active {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}
.header.active .header__nav {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1240px) {
  .header {
    padding-inline: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 65px;
  }
}
@media screen and (max-width: 550px) {
  .header {
    height: 50px;
  }
}
.header h1,
.header p {
  display: block;
}
.header h1 a,
.header p a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header h1 a img,
.header p a img {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .header h1 a img,
  .header p a img {
    width: 250px;
  }
}
@media screen and (max-width: 900px) {
  .header h1 a img,
  .header p a img {
    width: 27.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header h1 a img,
  .header p a img {
    width: 200px;
  }
}
@media screen and (max-width: 550px) {
  .header h1 a img,
  .header p a img {
    width: 170px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__nav {
    flex-direction: column;
    position: fixed;
    top: -2000px;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    padding-top: 13%;
    padding-inline: 0.5rem;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .header__nav.active {
    top: 0;
  }
}
@media screen and (max-width: 550px) {
  .header__nav {
    padding-top: 18%;
  }
}
.header__nav ul {
  display: flex;
  margin-right: 2rem;
}
@media screen and (max-width: 1240px) {
  .header__nav ul {
    margin-right: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav ul {
    width: 100%;
    margin-right: 0;
    flex-direction: column;
    margin-bottom: 6%;
  }
}
.header__nav ul li a {
  position: relative;
  padding-inline: 1rem;
  display: block;
  border-right: solid 1px #075607;
  font-size: 0.75rem;
}
@media screen and (max-width: 1240px) {
  .header__nav ul li a {
    font-size: clamp(0.5125rem, 1.45vw, 0.75rem);
    padding-inline: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav ul li a {
    font-size: clamp(0.75rem, 4.7vw, 1.125rem);
    padding-inline: 1rem;
    padding-block: 4%;
    width: 100%;
    border-right: none;
    border-bottom: solid 1.5px #075607;
  }
}
@media screen and (max-width: 550px) {
  .header__nav ul li a {
    padding-inline: 5%;
  }
}
.header__nav ul li a::after {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: -27px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #075607;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__nav ul li a::after {
    display: none;
  }
}
.header__nav ul li a::before {
  position: absolute;
  display: none;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 23px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .header__nav ul li a::before {
    display: block;
  }
}
.header__nav ul li a:hover {
  opacity: 1;
}
.header__nav ul li a:hover::after {
  opacity: 1;
}
.header__nav ul li:first-of-type a {
  border-left: 1px solid #075607;
}
@media screen and (max-width: 768px) {
  .header__nav ul li:first-of-type a {
    border-left: none;
  }
}
.header__nav--contact {
  padding: 1% 5%;
  border-radius: 1px;
  background-color: #075607;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  padding: 0.45rem 1.5rem;
  font-size: 0.75rem;
}
@media screen and (max-width: 1240px) {
  .header__nav--contact {
    font-size: clamp(0.5125rem, 1.45vw, 0.75rem);
    padding: 0.35rem 2.25vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav--contact {
    padding: 0.35rem 10vw;
    font-size: clamp(0.75rem, 4.7vw, 1.125rem);
  }
}
.header__nav--contact:active, .header__nav--contact:visited {
  color: #fff;
}
.header__toggleBtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__toggleBtn {
    display: block;
    cursor: pointer;
  }
  .header__toggleBtn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #075607;
    margin-bottom: 7px;
    transition: all 0.3s ease;
  }
  .header__toggleBtn span:last-of-type {
    margin-bottom: 0;
  }
}
.header__toggleBtn.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(7px, 8px);
}
.header__toggleBtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header__toggleBtn.active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(7px, -7.5px);
}

.footer {
  position: relative;
  background-color: #fff;
  z-index: 1;
  padding-block: 8% 1%;
}
@media screen and (max-width: 550px) {
  .footer {
    padding-block: 15% 5%;
  }
}
.footer__upper {
  text-align: center;
  margin-bottom: 1.5rem;
}
.footer__upper--logo {
  max-width: 500px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__upper--logo {
    max-width: 52vw;
    margin-bottom: 8%;
  }
}
.footer__upper--add {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer__upper--add img {
  width: 40px;
}
@media screen and (max-width: 550px) {
  .footer__upper--add img {
    width: 30px;
  }
}
.footer__upper--add p {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  line-height: 1.25;
}
@media screen and (max-width: 550px) {
  .footer__upper--add p {
    font-size: 0.5rem;
  }
}
.footer__upper--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 550px) {
  .footer__upper--btn {
    flex-direction: column;
    gap: 0.5rem 0;
  }
}
.footer__upper--btn a {
  position: relative;
  display: block;
  text-align: center;
  background-color: #075607;
  color: #fff;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding: 0.75rem 2rem 0.75rem 3.5rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .footer__upper--btn a {
    font-size: clamp(0.55rem, 1.5vw, 0.65rem);
  }
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a {
    width: 80%;
  }
}
.footer__upper--btn a::before {
  position: absolute;
  top: 0.125rem;
  bottom: 0;
  left: 2rem;
  margin: auto;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a::before {
    left: 0;
    right: 4rem;
  }
}
.footer__upper--btn a.mail::before {
  width: 27.3px;
  height: 20px;
  background-image: url(../img/mail_icon.png);
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a.mail::before {
    width: 22px;
    height: 17px;
  }
}
.footer__upper--btn a.tel::before {
  width: 25px;
  height: 32px;
  background-image: url(../img/phone_icon.png);
}
@media screen and (max-width: 550px) {
  .footer__upper--btn a.tel::before {
    width: 19px;
    height: 28px;
  }
}
.footer__nav {
  margin-bottom: 2.5rem;
}
.footer__nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer__nav ul {
    padding-inline: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav ul {
    gap: 0.5rem 0;
    flex-wrap: wrap;
    justify-content: left;
  }
}
.footer__nav ul li {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: 0.125rem;
}
@media screen and (max-width: 768px) {
  .footer__nav ul li {
    margin-inline: 5%;
  }
}
.footer__nav ul li a {
  display: block;
  font-size: 0.75rem;
}
@media screen and (max-width: 1024px) {
  .footer__nav ul li a {
    font-size: clamp(0.5rem, 1.75vw, 0.75rem);
  }
}
@media screen and (max-width: 768px) {
  .footer__nav ul li a {
    font-size: clamp(0.5rem, 2.25vw, 0.75rem);
  }
}
.footer__copy {
  text-align: center;
  font-size: 0.65rem;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 550px) {
  .footer__copy {
    font-size: 0.5rem;
  }
}

.works {
  /* 一覧ページ */
  /* 詳細ページ */
}
.works__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 20px;
}
.works__flex--item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .works__flex--item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 550px) {
  .works__flex--item {
    width: 100%;
  }
}
.works__flex--item .thumb {
  display: block;
  margin-bottom: 2.5%;
}
.works__flex--item .cate {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2%;
  margin-bottom: 1%;
}
.works__flex--item .cate span {
  color: #fff;
  background-color: #075607;
  font-size: clamp(0.45rem, 1.75vw, 0.75rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding: 2px 10px;
  border-radius: 2px;
}
.works__flex--item .date {
  font-size: clamp(0.45rem, 1.75vw, 0.75rem);
  margin-bottom: 1%;
}
.works__flex--item h3 a {
  display: block;
  font-size: clamp(0.75rem, 2vw, 1.125rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .works__flex--item h3 a {
    font-size: clamp(0.75rem, 3.75vw, 1.125rem);
  }
}
.works__content {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 550px) {
  .works__content {
    margin-bottom: 1.5rem;
  }
}
.works__content h1 {
  font-size: clamp(1rem, 3.25vw, 1.875rem);
  padding-left: 1rem;
  border-left: solid 7px #075607;
  margin-bottom: 1rem;
}
@media screen and (max-width: 550px) {
  .works__content h1 {
    padding-left: 0.5rem;
    border-left: solid 5px #075607;
    margin-bottom: 0.5rem;
  }
}
.works__content--date {
  padding-left: 1.5rem;
  font-size: clamp(0.75rem, 1.725vw, 1rem);
  margin-bottom: 2rem;
}
@media screen and (max-width: 550px) {
  .works__content--date {
    padding-left: 0.75rem;
    margin-bottom: 1rem;
  }
}
.works__content figure {
  margin: 0 auto;
  width: min(900px + 1rem, 100%);
}
.works__desc--text {
  font-size: clamp(0.65rem, 3vw, 1rem);
  margin-bottom: 2rem;
}
.works__desc .back__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto 0;
  background-color: #075607;
  color: #fff;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 550px) {
  .works__desc .back__btn {
    font-size: 0.65rem;
  }
}
.works__desc .back__btn:active, .works__desc .back__btn:visited {
  color: #fff;
}/*# sourceMappingURL=works.css.map */