@charset "UTF-8";
html {
  font-size: 100%;
}

a {
  display: inline-block;
  text-decoration: none;
  color: black;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

.wrapper {
  max-width: 1000px;
  padding-inline: 20px;
  text-align: center;
  margin-inline: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 760px) {
  .section-title {
    margin-bottom: 40px;
  }
}
.section-title .en {
  font-size: 36px;
  font-weight: 600;
  color: #448f38;
  letter-spacing: 5px;
  padding-bottom: 3px;
  border-bottom: 1px solid #448f38;
}
@media screen and (max-width: 760px) {
  .section-title .en {
    font-size: 18px;
    letter-spacing: 2px;
    padding-bottom: 1px;
  }
}
.section-title .jp {
  font-size: 18px;
  letter-spacing: 8px;
  padding-top: 2px;
}
@media screen and (max-width: 760px) {
  .section-title .jp {
    font-size: 12px;
    letter-spacing: 3px;
  }
}

.btn {
  display: inline-block;
  border: 1px solid #222;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 60px 10px 40px;
  margin-top: 60px;
}
@media screen and (max-width: 760px) {
  .btn {
    font-size: 14px;
    padding: 8px 40px 8px 20px;
    margin-top: 40px;
  }
}
.btn::after {
  content: "＞";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.btn:hover {
  background-color: #333;
  color: white;
  text-decoration: none;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.pagination li {
  border: 1px solid #222;
  margin-left: 10px;
}
.pagination li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
}
@media screen and (max-width: 760px) {
  .pagination li a {
    font-size: 12px;
    padding: 0px 6px;
  }
}
.pagination li a:hover {
  background-color: #333;
  color: white;
  text-decoration: none;
}
.pagination-1 {
  padding: 5px 10px;
  color: white;
  background-color: #777;
}
@media screen and (max-width: 760px) {
  .pagination-1 {
    font-size: 12px;
    padding: 0px 6px;
  }
}

.pages {
  display: none;
}

.title-img {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 760px) {
  .title-img {
    height: 200px;
  }
}
.title-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}
.title-img h2 {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .title-img h2 {
    top: 100px;
  }
}

header {
  background-color: #f5f5f5;
  width: 100%;
  height: 80px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  padding: 20px 30px;
}
@media screen and (max-width: 760px) {
  header {
    height: 60px;
    padding: 20px;
  }
}
header h1 {
  width: 80px;
}
@media screen and (max-width: 760px) {
  header h1 {
    width: 60px;
  }
}
header .sp-nav {
  width: 100%;
  height: 100vh;
  background-color: #fff8eb;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
}
header .sp-nav .header-logo {
  width: 60px;
  position: relative;
  top: 20px;
  left: 20px;
}
header .pc-nav ul {
  display: flex;
}
header .pc-nav ul li {
  margin-left: 20px;
}
header .pc-nav ul li a {
  color: #222;
  transition: all 0.3s ease;
}
header .pc-nav ul li a:hover {
  color: darkgreen;
  font-weight: 520;
}
@media screen and (max-width: 760px) {
  header .pc-nav {
    display: none;
  }
}
header .toggle-btn {
  display: none;
  width: 25px;
  height: 25px;
  background-color: #f5f5f5;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  z-index: 25;
}
@media screen and (max-width: 760px) {
  header .toggle-btn {
    display: block;
  }
}
header .toggle-btn span {
  width: 100%;
  height: 2px;
  background-color: #222;
  transition: all 0.5s;
  position: absolute;
}
header .toggle-btn span:nth-child(1) {
  top: 20%;
}
header .toggle-btn span:nth-child(2) {
  top: 50%;
}
header .toggle-btn span:nth-child(3) {
  top: 80%;
}
header .toggle-btn:hover {
  opacity: 0.7;
}

.open .sp-nav {
  opacity: 1;
  visibility: visible;
}
.open .fade {
  margin-top: 80px;
}
.open .fade li {
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #888;
  padding: 15px 0px 15px 40px;
}
.open .fade li a:hover {
  font-weight: 600;
}
.open .toggle-btn {
  color: #222;
  background-color: #fff8eb;
  top: 20;
  right: 20;
}
.open .toggle-btn span:nth-child(1) {
  transform: rotate(-45deg);
  top: 50%;
}
.open .toggle-btn span:nth-child(2) {
  transform: rotate(45deg);
}
.open .toggle-btn span:nth-child(3) {
  transform: rotate(45deg);
  top: 50%;
}

.mainvisual {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 760px) {
  .mainvisual {
    height: auto;
  }
}
.mainvisual img {
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (max-width: 760px) {
  .mainvisual img {
    margin-top: 60px;
  }
}
.mainvisual .text {
  width: 42%;
  aspect-ratio: 8：5;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 28%;
  left: 5%;
  text-align: left;
  padding: 4% 0px 4% 8%;
}
@media screen and (max-width: 760px) {
  .mainvisual .text {
    width: 100%;
    height: 40px;
    background-color: transparent;
    position: static;
    display: flex;
    justify-content: center;
    padding: 0;
  }
}
.mainvisual .text p {
  font-size: 2vw;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 760px) {
  .mainvisual .text p {
    font-size: 16px;
  }
}
.mainvisual .text p span {
  color: #448f38;
  font-size: 4vw;
  font-weight: 1000;
}
@media screen and (max-width: 760px) {
  .mainvisual .text p span {
    font-size: 18px;
  }
}
.mainvisual .text-1 {
  margin-left: 35%;
}
@media screen and (max-width: 760px) {
  .mainvisual .text-1 {
    margin-left: 0;
  }
}

#works {
  padding-block: 120px;
}
@media screen and (max-width: 760px) {
  #works {
    padding-block: 60px;
  }
}
#works .slick-area {
  width: calc(100% - 45px);
  margin-block: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 760px) {
  #works .slick-area {
    margin-block: 20px;
  }
}
#works .slick-area a:hover {
  opacity: 0.7;
}
#works .slick-area .slick-slide {
  padding-inline: 10px;
}
#works .slick-area .slick-slide a {
  width: 100% !important;
  height: auto !important;
}

.form-row {
  display: flex;
  width: 420px;
  margin-inline: auto;
}
@media screen and (max-width: 760px) {
  .form-row {
    width: 240px;
    margin-inline: auto;
  }
}
.form-row legend {
  width: 20%;
  text-align: left;
  /* margin-left: 20%; */
}
@media screen and (max-width: 760px) {
  .form-row legend {
    /* width: 50%; */
    text-align: left;
    font-size: 12px;
    /*  margin-inline: auto; */
    margin-bottom: 10px;
  }
}
.form-row ul {
  display: flex;
}
@media screen and (max-width: 760px) {
  .form-row ul {
    /*  width: 50%; */
    text-align: left;
    font-size: 12px;
    /* margin-inline: auto; */
  }
}
.form-row ul a {
  display: block;
  position: relative;
  text-align: left;
  color: darkgreen;
  background-color: white;
  border: 1px solid darkgreen;
  border-radius: 3px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 2px 5px;
  margin-right: 20px;
}
@media screen and (max-width: 760px) {
  .form-row ul a {
    margin-right: 10px;
  }
}

.performance {
  background-color: #fff8eb;
  padding-block: 120px;
}
@media screen and (max-width: 760px) {
  .performance {
    padding-block: 60px;
  }
}
.performance p {
  margin-bottom: 64px;
}
@media screen and (max-width: 760px) {
  .performance p {
    font-size: 14px;
    text-align: left;
    margin-bottom: 20px;
  }
  .performance p .br-1 {
    display: none;
  }
}
.performance-items {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .performance-items {
    flex-direction: column;
    align-items: center;
  }
}
.performance-items-left {
  width: 50%;
}
@media screen and (max-width: 760px) {
  .performance-items-left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.performance-items-right {
  width: 40%;
}
@media screen and (max-width: 760px) {
  .performance-items-right {
    width: 100%;
  }
}
.performance-items-right h3 {
  text-align: left;
  line-height: 32px;
  display: block;
  border-bottom: 1px solid black;
  margin-bottom: 48px;
}
@media screen and (max-width: 760px) {
  .performance-items-right h3 {
    display: inline-block;
    text-align: center;
    margin-bottom: 24px;
  }
}
.performance-items-right h3 .bg {
  color: #cc622a;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .performance-items-right h3 .bg {
    font-size: 24px;
    font-weight: 600;
  }
}
.performance-items-right h3 .sm {
  color: #cc622a;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .performance-items-right h3 .sm {
    font-size: 18px;
    font-weight: 600;
  }
}
.performance-items-right dl {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .performance-items-right dl {
    justify-content: space-between;
  }
}
.performance-items-right dl dt {
  width: 33%;
  font-size: 18px;
  font-weight: 600;
  color: #cc622a;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .performance-items-right dl dt {
    width: 40%;
    text-align: right;
    font-size: 14px;
  }
}
.performance-items-right dl dd {
  width: 67%;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .performance-items-right dl dd {
    font-size: 16px;
    width: 55%;
    text-align: left;
  }
}
.performance-items-right dl dd a {
  position: absolute;
  bottom: 0;
}
.performance-items-right dl dd a:hover {
  color: #448f38;
  font-size: 22px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 760px) {
  .performance-items-right {
    width: 100%;
  }
}

.news {
  padding-block: 120px;
}
@media screen and (max-width: 760px) {
  .news {
    padding-block: 60px;
  }
}
@media screen and (max-width: 760px) {
  .news h2 {
    padding-top: 40px;
  }
}
.news dl {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 760px) {
  .news dl {
    flex-direction: column;
  }
}
.news dl dt {
  width: 30%;
  padding-block: 20px;
  border-top: 1px solid #222;
}
@media screen and (max-width: 760px) {
  .news dl dt {
    width: 100%;
    text-align: left;
    font-size: 14px;
    padding: 20px 0px 5px 5px;
  }
}
.news dl dt:last-of-type {
  border-bottom: 1px solid #222;
}
@media screen and (max-width: 760px) {
  .news dl dt:last-of-type {
    border-bottom: none;
  }
}
.news dl dd {
  width: 70%;
  text-align: left;
  padding-block: 20px;
  border-top: 1px solid #222;
}
@media screen and (max-width: 760px) {
  .news dl dd {
    width: 100%;
    text-align: left;
    font-size: 14px;
    border-top: none;
    padding: 0px 0px 20px 5px;
  }
}
.news dl dd:last-child {
  border-bottom: 1px solid #222;
}
.news dl dd a:hover {
  color: #444;
}

footer {
  background-color: #fff8eb;
  padding-block: 120px 24px;
}
@media screen and (max-width: 760px) {
  footer {
    padding-block: 60px 12px;
  }
}
footer .footer-items {
  display: flex;
  justify-content: space-between;
  padding-bottom: 120px;
}
@media screen and (max-width: 760px) {
  footer .footer-items {
    flex-direction: column;
    padding-bottom: 60px;
  }
}
footer .footer-items .footer-item {
  width: 30%;
  text-align: left;
}
@media screen and (max-width: 760px) {
  footer .footer-items .footer-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer .left .footer-logo {
  width: 100px;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  footer .left .footer-logo {
    width: 60px;
  }
}
footer .left ul li {
  margin-bottom: 16px;
}
@media screen and (max-width: 760px) {
  footer .left ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
footer .center ul {
  padding-top: 90px;
}
@media screen and (max-width: 760px) {
  footer .center ul {
    padding-top: 0px;
  }
}
footer .center ul li {
  margin-bottom: 8px;
}
@media screen and (max-width: 760px) {
  footer .center ul li a {
    font-size: 14px;
    display: block;
    border-bottom: 1px solid #222;
  }
}
footer .center ul li a:hover {
  color: #444;
}
footer .center .btn {
  padding: 10px 40px 10px 20px;
  margin-top: 16px;
}
@media screen and (max-width: 760px) {
  footer .center .btn {
    width: 100%;
    text-align: center;
  }
}
footer .copyright {
  font-size: 14px;
  color: #666;
  text-align: center;
}
@media screen and (max-width: 760px) {
  footer .copyright {
    font-size: 10px;
  }
}

.news-page {
  margin-bottom: 120px;
}

article {
  text-align: left;
  margin-block: 120px;
}
@media screen and (max-width: 760px) {
  article {
    margin-block: 80px;
  }
}
article h2 {
  font-size: 32px;
  color: darkgreen;
  border-bottom: 1px solid darkgreen;
}
@media screen and (max-width: 760px) {
  article h2 {
    font-size: 16px;
  }
}
article img {
  width: 100%;
  height: auto;
  margin-block: 20px;
}
article h3 {
  font-size: 24px;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  article h3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 760px) {
  article .news-page-text {
    font-size: 12px;
  }
}
article dl {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin-top: 40px;
}
article dl dt {
  width: 20%;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  article dl dt {
    width: 100%;
    font-size: 12px;
    margin-bottom: 5px;
  }
}
article dl dd {
  width: 80%;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  article dl dd {
    width: 100%;
    font-size: 12px;
  }
}
article .btn {
  margin-top: 40px;
}
@media screen and (max-width: 760px) {
  article .btn {
    width: 100%;
    text-align: center;
  }
}

.wp-block-post-date {
  display: none;
}

.title-img img {
  -o-object-position: 0px -50px;
     object-position: 0px -50px;
}
@media screen and (max-width: 760px) {
  .title-img img {
    -o-object-position: 0px 50px;
       object-position: 0px 50px;
  }
}

.company {
  padding-bottom: 60px;
}
.company dl {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin-block: 80px;
}
@media screen and (max-width: 760px) {
  .company dl {
    margin-block: 40px;
  }
}
.company dl dt {
  width: 35%;
  border-top: 1px solid #222;
  padding: 20px 0px 20px 80px;
}
@media screen and (max-width: 760px) {
  .company dl dt {
    font-size: 14px;
    padding: 10px 0px;
  }
}
.company dl dt:last-of-type {
  border-bottom: 1px solid #222;
}
.company dl dd {
  width: 65%;
  border-top: 1px solid #222;
  padding-block: 20px;
}
@media screen and (max-width: 760px) {
  .company dl dd {
    font-size: 14px;
    padding: 10px 0px;
  }
}
.company dl dd:last-child {
  border-bottom: 1px solid #222;
}

.title-img img {
  -o-object-position: 0px -100px;
     object-position: 0px -100px;
}
@media screen and (max-width: 760px) {
  .title-img img {
    -o-object-position: 0px 50px;
       object-position: 0px 50px;
  }
}

.catchcopy {
  font-size: 20px;
  margin-top: 120px;
}
@media screen and (max-width: 760px) {
  .catchcopy {
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
  }
}
.catchcopy span {
  color: #448f38;
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .catchcopy span {
    font-size: 16px;
    font-weight: 600;
  }
}

.performance-1 {
  padding-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .performance-1 {
    padding-bottom: 50px;
  }
}
.performance-1 h3 {
  text-align: center;
  line-height: 32px;
  margin-block: 80px 48px;
}
@media screen and (max-width: 760px) {
  .performance-1 h3 {
    display: inline-block;
    text-align: center;
    margin-block: 40px 24px;
  }
}
.performance-1 h3 .bg {
  color: #cc622a;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .performance-1 h3 .bg {
    font-size: 24px;
    font-weight: 600;
  }
}
.performance-1 h3 .sm {
  color: #cc622a;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .performance-1 h3 .sm {
    font-size: 18px;
    font-weight: 600;
  }
}
.performance-1 .performance-text {
  text-align: left;
  margin-bottom: 80px;
}
@media screen and (max-width: 760px) {
  .performance-1 .performance-text {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.performance-1 .points {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media screen and (max-width: 760px) {
  .performance-1 .points {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
.performance-1 .points:last-child {
  margin-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .performance-1 .reverse {
    flex-direction: column-reverse;
  }
}
.performance-1 .point-text {
  width: 48%;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .performance-1 .point-text {
    width: 100%;
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.performance-1 .point-text-title {
  font-size: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .performance-1 .point-text-title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 16px;
  }
}
.performance-1 .point-text-title span {
  color: #cc622a;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 760px) {
  .performance-1 .point-text-title span {
    font-size: 16px;
  }
}
.performance-1 .point-img {
  width: 48%;
}
@media screen and (max-width: 760px) {
  .performance-1 .point-img {
    width: 100%;
  }
}
.performance-1 .point-img img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 760px) {
  .performance-1 .point-img img {
    height: 200px;
  }
}

#point1,
#point2,
#point3,
#point4,
#point5 {
  scroll-margin-top: 120px;
  opacity: 0;
  transition: all 2s;
}

.item {
  padding-block: 120px;
}
@media screen and (max-width: 760px) {
  .item {
    padding-top: 80px;
  }
}
.item h2 {
  border-bottom: 1px solid #222;
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 60px;
}
@media screen and (max-width: 760px) {
  .item h2 {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.item img {
  width: 100%;
  height: auto;
}
.item h3 {
  font-size: 24px;
  text-align: left;
  margin-top: 40px;
}
@media screen and (max-width: 760px) {
  .item h3 {
    font-size: 16px;
    margin-top: 20px;
  }
}
.item .category {
  text-align: left;
  margin-block: 20px;
}
@media screen and (max-width: 760px) {
  .item .category {
    margin-block: 10px;
  }
}
.item .category .tag {
  color: white;
  background-color: #448f38;
  border-radius: 3px;
  padding: 2px 10px;
  margin-right: 20px;
}
@media screen and (max-width: 760px) {
  .item .category .tag {
    font-size: 12px;
    margin-right: 10px;
  }
}
.item .text {
  text-align: left;
}
@media screen and (max-width: 760px) {
  .item .text {
    font-size: 12px;
  }
}
.item p {
  text-align: left;
}
@media screen and (max-width: 760px) {
  .item p {
    font-size: 12px;
  }
}
.item .item-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-inline: 20px;
  margin-block: 24px;
}
@media screen and (max-width: 760px) {
  .item .item-area {
    gap: 10px;
    padding-inline: 10px;
  }
}
.item .item-area li {
  width: 48%;
}

.works {
  margin-bottom: 120px;
}
@media screen and (max-width: 760px) {
  .works {
    margin-bottom: 60px;
  }
}
.works .search {
  margin-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .works .search {
    margin-bottom: 24px;
  }
}
.works .search h3 {
  font-size: 20px;
  margin-block: 40px;
}
@media screen and (max-width: 760px) {
  .works .search h3 {
    font-size: 16px;
    margin-block: 24px;
  }
}
.works .search fieldset {
  border: none;
  margin-bottom: 20px;
  /* .form-row {
                 display: flex;
                 flex-wrap: wrap;

                 @include m.tab {
                     justify-content: center;
                 }

                 legend {
                     width: 40%;
                     font-size: 16px;
                     font-weight: 600;

                     @include m.tab {
                         width: 100%;
                         text-align: center;
                         font-size: 14px;
                         margin-bottom: 20px;
                     }
                 }

                 input {
                     position: absolute;
                     left: -9999px;
                 }

                 label {
                     display: block;
                     position: relative;
                     text-align: left;
                     color: darkgreen;
                     background-color: white;
                     border: 1px solid darkgreen;
                     border-radius: 3px;
                     white-space: nowrap;
                     cursor: pointer;
                     user-select: none;
                     padding: 2px 5px;
                     margin-right: 20px;

                     @include m.tab {
                         margin-right: 10px;
                     }
                 }

                 input:checked+label {
                     color: white;
                     background-color: #448f38;

                 }
             }
  */
}

.works-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media screen and (max-width: 760px) {
  .works-items {
    grid-template-columns: 1fr;
  }
}
.works-items li {
  width: 100%;
  border: 1px solid #666;
  border-radius: 3px;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .works-items li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.works-items li a {
  width: 100%;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 10px;
}
.works-items li a img {
  width: 100%;
  height: auto;
}
.works-items li a:hover {
  opacity: 0.8;
}
.works-items li a .title {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-block: 5px 10px;
}
.works-items li a .tag {
  color: white;
  background-color: #448f38;
  border-radius: 3px;
  display: inline-block;
  white-space: nowrap;
  padding: 2px 5px;
  margin-right: 5px;
}
@media screen and (max-width: 760px) {
  .works-items li a .tag {
    font-size: 12px;
    margin-right: 2px;
  }
}

.contacts {
  margin-bottom: 120px;
}
.contacts .section-title {
  padding-top: 120px;
}
@media screen and (max-width: 760px) {
  .contacts .section-title {
    padding-top: 60px;
  }
}
.contacts .contact {
  max-width: 800px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 760px) {
  .contacts .contact {
    margin: 0 auto 40px;
  }
}
.contacts .contact-table {
  width: 100%;
  text-align: left;
  border: 1px solid #222;
  border-spacing: 0px;
}
.contacts .contact-table .last {
  border-bottom: none;
}
.contacts-submit {
  width: 200px;
  display: block;
  background-color: #eee;
  color: #222;
  border: 1px solid #222;
  border-radius: 100vh;
  padding-block: 10px;
  margin-inline: auto;
}
@media screen and (max-width: 760px) {
  .contacts-submit {
    font-size: 14px;
  }
}
.contacts-submit:hover {
  color: white;
  background-color: #222;
}

.contact-item {
  width: 30%;
  border-bottom: 1px solid #222;
  background-color: #eee;
  padding: 20px;
}
@media screen and (max-width: 760px) {
  .contact-item {
    width: 100%;
    display: block;
    font-size: 14px;
  }
}

.contact-body {
  width: 70%;
  border-bottom: 1px solid #222;
  padding: 20px;
}
@media screen and (max-width: 760px) {
  .contact-body {
    width: 100%;
    display: block;
    font-size: 14px;
  }
}
.contact-body .contact-kind {
  display: block;
  margin-bottom: 5px;
}
.contact-body .form-text {
  width: 100%;
  border: 1px solid #222;
  border-radius: 2px;
  padding: 5px;
}
.contact-body .form-textarea {
  width: 100%;
  border: 1px solid #222;
  border-radius: 2px;
  padding: 5px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  display: block;
  margin: 0 0 5px 0;
}

.wpcf7-form-control-wrap {
  width: 100%;
  display: inline-block;
  border: 1px solid #222;
  padding: 5px;
}

.contact-checks .wpcf7-form-control-wrap {
  border: none;
}

/* .wpcf7-form-control-wrap {
  border: none;
} */
.contact-kind {
  border: none;
}

.wpcf7-form-control {
  width: 100%;
}

.submit {
  width: 200px;
  display: inline-block;
  border: 1px solid #222;
  background-color: #eee;
  border-radius: 100vh;
  transition: all 0.3s ease;
  margin-inline: auto;
  padding-block: 10px;
}
.submit:hover {
  color: white;
  background-color: #333;
}/*# sourceMappingURL=main.css.map */