@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans",
    sans-serif;
  background-color: rgba(249, 249, 249, 1);
}
h1 {
  margin: 0;
}
a {
  text-decoration: none;
  color: rgba(96, 96, 96, 1);
}
li {
  list-style: none;
}
img {
  width: 100%;
}
/* header */
header {
  width: 100%;
  height: 80px;
  background-color: rgba(243, 243, 243, 1);
  position: fixed;
}
.logo {
  width: 50px;
  position: relative;
  top: 10px;
  left: 10px;
}
.sp-only-header {
  display: flex;
  justify-content: space-between;
}
/*hamburger-menu*/
.menu-btn {
  position: relative;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background-color: rgba(79, 109, 88, 1);
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  transition: 0.3s;
}
.menu-btn span::before {
  bottom: 8px;
}
.menu-btn span::after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.menu-content ul {
  padding: 90px 10px 70px;
}
.menu-content ul li {
  border-bottom: solid 3px rgba(255, 255, 255, 0.8);
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 24px;
  color: #fff;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 18px;
}
.menu-content {
  width: 100%;
  height: 350px;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: rgba(79, 109, 88, 0.7);
  transition: all 0.5s;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;
}
#menu-btn-check {
  display: none;
}

/*******************************************************/
.box {
  width: 100%;
  height: 200px;
}
main {
  width: 90%;
  margin: 0 auto;
}
.tag {
  display: flex;
  column-gap: 10px;
  padding-left: 5%;
}
.type {
  font-size: 14px;
  width: fit-content;
  background-color: #04dd08;
  color: #ffffff;
  padding: 0.5em 1em;
  border-radius: 10px;
  margin-bottom: 20px;
}
.tag p:nth-of-type(2) {
  background-color: #05a207;
}
.works-item-img {
  margin: 0 auto 20px;
  width: 80%;
}
.works-discription-sec {
  max-width: 1000px;
  margin: 0 auto;
}
.works-discription-sec h2 {
  color: #6b6b6b;
  text-align: center;
  margin-bottom: 0.5em;
}
.work-type {
  font-size: 14px;
  text-align: center;
  color: #a09f9f;
  margin-bottom: 80px;
}
.works-discription-inner-wrap {
  width: 80%;
  margin: 0 auto;
}
.time-tool {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  margin-bottom: 60px;
  background-color: #f5f5f5;
  padding: 1em;
}
.time-tool p {
  color: #222;
}
.time-tool span {
  font-weight: bold;
  color: #222222;
}
.works-discription {
  margin-bottom: 100px;
}
.works-discription dt {
  font-size: 20px;
  font-weight: bold;
  padding-left: 10px;
  border-left: 7px solid rgba(79, 109, 88, 1);
  margin-bottom: 10px;
}
.works-discription dd {
  padding-left: 17px;
  margin-bottom: 30px;
  line-height: 1.7em;
}
.page-button {
  display: flex;
  justify-content: center;
  column-gap: 20%;
  margin-bottom: 100px;
}
.page-button span {
  display: inline-block;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  dd {
    font-size: 14px;
  }
}
/*footer*/
.footer-innerWrap {
  width: 90%;
  margin: 0 auto;
}
footer {
  background-color: rgba(79, 109, 88, 1);
  color: #fff;
}
footer a {
  color: #fff;
}

footer h2 {
  font-size: 32px;
  text-align: center;
  padding: 30px 0;
}
.footer-innerWrap p span {
  display: none;
}
.email {
  font-size: 20px;
  text-align: center;
  margin: 0 0 200px;
}
.localNav {
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3px;
  margin: 0 0 70px;
}
.copy {
  text-align: center;
  padding: 0 0 10px;
}
@media screen and (min-width: 768px) {
  footer a {
    font-size: 30px;
  }
  footer h2 {
    font-size: 70px;
    text-align: left;
  }
  .footer-innerWrap p span {
    display: inline-block;
  }
  .sp-only {
    display: none;
  }
  .email {
    font-size: 30px;
    text-align: left;
    margin: 0 0 200px;
  }

  .localNav {
    align-items: flex-start;
  }
  .copy {
    font-size: 24px;
    text-align: right;
  }
}
