body {
  color: #373737;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  padding-top: 65px;
}

@media screen and (max-width: 768px) {
  body {
    text-align: center;
  }
}

body .en {
  font-family: futura-pt, sans-serif;
}

body .logo {
  font-size: 22px;
  font-weight: 800;
  color: #86ab31;
}

body .logo a {
  color: inherit;
}

body h2 {
  font-size: 46px;
  font-weight: 300;
  border-bottom: #86ab31 solid 3px;
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  body h2 {
    margin-bottom: 40px;
  }
}

body header {
  top: 0;
  width: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 5;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0;
  -webkit-box-shadow: 0 4px 8px 0 rgba(40, 107, 76, 0.15);
          box-shadow: 0 4px 8px 0 rgba(40, 107, 76, 0.15);
}

body header .header-wrap {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  body header .header-wrap {
    width: 90%;
  }
}

body header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body header ul li {
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  body header ul li {
    font-size: 18px;
  }
}

body header ul li a {
  color: #373737;
}

body header ul li .border {
  border-bottom: #86ab31 solid 3px;
}

body header ul li:first-child {
  margin-right: 50px;
}

body footer {
  width: 100%;
  height: 200px;
  background-color: #eef3f0;
  padding: 40px 0;
}

body footer .footer-wrap {
  width: 85%;
  margin: 0 auto;
}

body footer .footer-wrap h4 {
  font-size: 24px;
  font-weight: 400;
  border-bottom: #86ab31 solid 2px;
  margin-bottom: 20px;
  padding-bottom: 4px;
}

body footer .footer-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  body footer .footer-wrap ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

body footer .footer-wrap ul li {
  color: #373737;
  font-size: 20px;
  padding-left: 100px;
}

@media screen and (max-width: 768px) {
  body footer .footer-wrap ul li:first-child {
    padding-left: 0;
  }
}

body footer .footer-wrap ul li a {
  color: inherit;
}

body footer .footer-wrap h1 {
  text-align: right;
}

body .tab {
  border-bottom: 1px solid #afafaf;
  margin-bottom: 75px;
}

body .tab .tab-item {
  display: inline-block;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 2px 2px 0 0;
  margin: 0 0 -1px;
}

body .tab .tab-item:hover {
  border-color: #afafaf;
}

body .tab .tab-item a {
  display: block;
  width: 150px;
  padding: 15px 10px;
  text-align: center;
  font-weight: 300;
  color: #a0a0a0;
}

@media screen and (max-width: 768px) {
  body .tab .tab-item a {
    width: 90px;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.4;
  }
}

body .tab .tab-item.active {
  border-color: #afafaf;
  background-color: #fff;
}

body .tab .tab-item.active a {
  color: #373737;
}

body .modal-enter-from,
body .modal-leave-to {
  opacity: 0;
}

body .modal-enter-active,
body .modal-leave-active {
  -webkit-transition: opacity 1000ms ease;
  transition: opacity 1000ms ease;
}

body .modal-enter-to,
body .modal-leave-from {
  opacity: 1;
}

body #overlay {
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

body #overlay.loaded {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body #overlay .modal-window {
  z-index: 7;
  width: 90%;
  height: 95vh;
  padding: 25px;
  background-color: #ffffff;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body #overlay .modal-window {
    overflow-y: auto;
    overflow-y: scroll;
  }
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window {
    overflow-y: auto;
    overflow-y: scroll;
  }
}

body #overlay .modal-window #close {
  position: absolute;
  font-size: 30px;
  top: 25px;
  right: 25px;
  cursor: pointer;
}

body #overlay .modal-window .web {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body #overlay .modal-window .web {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window .web {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
  }
}

body #overlay .modal-window .web a {
  display: block;
  width: 240px;
  height: auto;
  padding: 15px 40px;
  margin: 0 auto;
  border: 3px solid #86ab31;
  border-radius: 100vh;
  color: #5d8502;
  font-weight: 500;
}

body #overlay .modal-window .web a:hover {
  border: 3px solid transparent;
  background-color: #86ab31;
  color: #fff;
  -webkit-transition: 350ms;
  transition: 350ms;
}

body #overlay .modal-window .web a i {
  display: inline-block;
  margin-left: 20px;
  font-size: 24px;
}

body #overlay .modal-window .carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 95%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body #overlay .modal-window .carousel {
    height: 90%;
  }
}

body #overlay .modal-window .carousel button {
  border: none;
  background-color: rgba(0, 0, 0, 0);
}

body #overlay .modal-window .carousel .btn-left,
body #overlay .modal-window .carousel .btn-right {
  z-index: 10;
  opacity: 0.7;
}

body #overlay .modal-window .carousel .btn-left i,
body #overlay .modal-window .carousel .btn-right i {
  display: inline-block;
  width: 40px;
  font-size: 36px;
  color: #666;
}

body #overlay .modal-window .carousel .slider {
  margin: 0 auto;
  height: 100%;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body #overlay .modal-window .carousel .slider {
    height: 90%;
  }
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window .carousel .slider {
    height: 90%;
  }
}

body #overlay .modal-window .carousel .slider img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

body #overlay .modal-window #modal-contents {
  height: 90%;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body #overlay .modal-window #modal-contents {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window #modal-contents {
    height: auto;
  }
}

body #overlay .modal-window #modal-contents .modal-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  white-space: pre-wrap;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window #modal-contents .modal-title {
    font-size: 34px;
    text-align: left;
  }
}

body #overlay .modal-window #modal-contents .modal-subtitle {
  font-size: 16px;
  color: #424242;
  font-weight: 300;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window #modal-contents .modal-subtitle {
    text-align: left;
  }
}

body #overlay .modal-window #modal-contents .tab {
  margin-bottom: 40px;
}

body #overlay .modal-window #modal-contents .tab li {
  width: 50%;
}

body #overlay .modal-window #modal-contents .tab li a {
  margin: 0 auto;
}

body #overlay .modal-window #modal-contents .tab-contents {
  height: 100%;
}

body #overlay .modal-window #modal-contents .tab-contents .tab-panel {
  width: 100%;
  height: 60%;
  padding: 0 15px;
}

@media screen and (min-width: 1024px) {
  body #overlay .modal-window #modal-contents .tab-contents .tab-panel {
    overflow-y: auto;
    overflow-y: scroll;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body #overlay .modal-window #modal-contents .tab-contents .tab-panel {
    padding-left: 0;
    margin: 0 auto;
  }
}

body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item {
  margin-bottom: 40px;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item {
    width: 100%;
    text-align: center;
    display: block;
  }
}

body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item h4 {
  display: inline-block;
  font-size: 22px;
  font-weight: 300;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item h4 {
    width: 100%;
  }
}

body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item h4 i {
  display: inline-block;
  padding-right: 10px;
  color: #86ab31;
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item ul {
    display: inline-block;
  }
  body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item ul li {
    list-style: none;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item p {
    display: inline-block;
  }
}

body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item li,
body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item p {
  font-size: 18px;
  font-weight: 400;
  color: #505050;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item li,
  body #overlay .modal-window #modal-contents .tab-contents .tab-panel .information-item p {
    width: auto;
    text-align: left;
    padding-left: 0px;
  }
}

body #overlay .modal-window #modal-contents .tab-contents .tab-panel .comment {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  white-space: pre-wrap;
  text-align: left;
}

body .contents-wrapper {
  width: 1024px;
  padding: 100px 0;
  margin: 0 auto;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body .contents-wrapper {
    width: 769px;
  }
}

@media screen and (max-width: 768px) {
  body .contents-wrapper {
    width: 375px;
  }
}

body .contents-wrapper .works .work-card {
  cursor: pointer;
  margin-bottom: 75px;
}

body .contents-wrapper .works .work-card:hover {
  -webkit-transform: scale(1.04, 1.04);
          transform: scale(1.04, 1.04);
  -webkit-box-shadow: 0px 0px 10px 4px rgba(40, 107, 76, 0.15);
          box-shadow: 0px 0px 10px 4px rgba(40, 107, 76, 0.15);
  -webkit-transition: 1s all;
  transition: 1s all;
}

body .contents-wrapper .works .work-card .thumbnail {
  margin-bottom: 15px;
  text-align: center;
  border: 1px solid #bcdac8;
  border-radius: 4px;
  padding: 15px 0;
}

body .contents-wrapper .works .work-card .thumbnail img {
  height: 500px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body .contents-wrapper .works .work-card .thumbnail img {
    height: 400px;
  }
}

body .contents-wrapper .works .work-card .category {
  color: #666;
  margin-bottom: 5px;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body .contents-wrapper .works .work-card .category {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  body .contents-wrapper .works .work-card .category {
    font-size: 14px;
  }
}

body .contents-wrapper .works .work-card .work-title {
  font-size: 22px;
  font-weight: 500;
  color: #434343;
  margin-bottom: 5px;
  line-height: 1.4;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body .contents-wrapper .works .work-card .work-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  body .contents-wrapper .works .work-card .work-title {
    font-size: 20px;
  }
}

body .contents-wrapper .works .work-card .subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body .contents-wrapper .works .work-card .subtitle {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  body .contents-wrapper .works .work-card .subtitle {
    font-size: 14px;
  }
}
/*# sourceMappingURL=works.css.map */