@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
  overflow-y: scroll;
}

@media screen and (max-width: 576px) {
  html {
    scroll-padding-top: 100px;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #333;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

@media screen and (max-width: 576px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
/***********
header
************/
header {
  padding: 30px 0 20px 0;
  z-index: 99;
  position: fixed;
  background-color: #fff;
  width: 100%;
  box-shadow: 1px 1px 4px rgba(119, 119, 119, 0.3019607843);
}
header .hamburger {
  display: none;
}
header .hamburger .hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  background-color: #000;
  transition: 0.4s;
}
header .hamburger .hamburger__line:before,
header .hamburger .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #000;
  transition: inherit;
}
header .hamburger .hamburger__line:before {
  top: -6px;
}
header .hamburger .hamburger__line:after {
  top: 6px;
}
header .hamburger .hamburger__text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
header .hamburger .hamburger__text::before {
  content: "メニュー";
  text-align: center;
  color: #000;
  font-size: 10px;
  font-weight: 900;
}
header .hamburger.active .hamburger__line {
  background-color: transparent;
}
header .hamburger.active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
header .hamburger.active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}
header .hamburger.active .hamburger__text::before {
  content: "閉じる";
}
header .header__nav-area.active {
  left: 0;
  visibility: visible;
}
header .header-logo {
  width: 100px;
  height: auto;
  margin: 0 auto 10px auto;
}
header .header-logo img {
  width: 100%;
}
header .header-logo.hidden {
  display: none;
}
header ul {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
}
header ul li {
  position: relative;
  display: inline-block;
}
header ul li:hover .dropdown {
  display: flex;
}
header ul a {
  padding-bottom: 6px;
  position: relative;
  font-weight: 500;
}
header ul a::before {
  background: #015f30;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header ul a:hover {
  color: #015f30;
}
header ul a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
header .pc-nav ul.dropdown {
  display: none;
  position: absolute;
  top: 27px;
  left: -12px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 10px 16px 20px;
  flex-direction: column;
  text-wrap: nowrap;
  gap: 18px;
}
header .pc-nav ul.dropdown li {
  display: block;
}
header .sp-nav {
  display: none;
}

@media screen and (max-width: 576px) {
  header {
    position: fixed;
    right: 0;
    padding: 0;
    top: 0;
  }
  header .hamburger {
    display: block;
    height: 60px;
    margin-left: auto;
    position: relative;
    z-index: 10;
    width: 60px;
    border: none;
    background-color: transparent;
  }
  header .header__nav-area {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    height: 100vh;
    visibility: hidden;
    padding-top: 60px;
    background-color: #fff;
    transition: 0.4s;
    width: 100%;
  }
  header .header-logo {
    margin-bottom: 20px;
  }
  header ul {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  header .pc-nav {
    display: none;
  }
  header .sp-nav {
    display: inline-block;
  }
}
/***********
top
************/
main.top {
  padding-top: 200px;
  max-width: 840px;
  margin: 0 auto;
}
main.top .top__ttl {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
main.top .top__ttl h2 {
  border-bottom: 2px solid #e3e3e3;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 6px;
}
main.top .top__ttl p {
  font-size: 30px;
  font-weight: bold;
  word-break: keep-all;
  line-height: 1.8;
}

@media screen and (max-width: 576px) {
  main.top {
    padding: 90px 30px 0 30px;
  }
}
#visual {
  position: relative;
  top: 0;
  left: 0;
}
#visual img {
  width: 100%;
  height: auto;
}
#visual .ttl__wrap {
  color: whitesmoke;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#visual .ttl__wrap h1 {
  font-size: 100px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
#visual .ttl__wrap p {
  font-size: 25px;
  letter-spacing: 0.01em;
  font-style: italic;
  margin-top: 20px;
}

@media screen and (max-width: 576px) {
  #visual img {
    width: 100%;
    height: auto;
  }
  #visual .ttl__wrap h1 {
    font-size: 44px;
  }
  #visual .ttl__wrap p {
    font-size: 16px;
  }
}
#message {
  margin-top: 100px;
}
#message .content {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#message .content p {
  padding-bottom: 30px;
  line-height: 1.8;
}
#message .content img {
  width: 100%;
}

#works {
  margin-top: 100px;
}
#works h3.ttl {
  font-size: 30px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  padding: 15px 0 15px 100px;
  margin-bottom: 30px;
}
#works h3.ttl::before {
  position: absolute;
  top: 30%;
  left: 64px;
  width: 1px;
  height: 56%;
  content: "";
  transform: rotate(25deg);
  border: 1px solid #000;
}
#works h3.ttl span {
  font-size: 28px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  padding-top: 3px;
  padding-left: 16px;
  color: #000;
}
#works .content {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
#works .content .item {
  margin-top: 50px;
}
#works .content .item p {
  margin-bottom: 30px;
  padding: 0 10px;
}
#works .content .item:first-child {
  margin-top: 0;
}
#works .content__img {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
}
#works .content__img .img-wrap {
  flex: 1 1 100%;
}
#works .content__img .img-wrap img {
  width: 100%;
  height: auto;
  max-height: 200px;
}

@media screen and (max-width: 576px) {
  #works h3.ttl {
    font-size: 20px;
    padding: 15px 0 15px 66px;
    margin-bottom: 16px;
  }
  #works h3.ttl::before {
    top: 33%;
    left: 40px;
    height: 40%;
  }
  #works h3.ttl span {
    font-size: 20px;
    top: 50%;
    left: 0;
    padding-left: 6px;
  }
}
#news {
  margin-top: 100px;
}
#news .content {
  margin-top: 20px;
  padding: 0 10px;
}
#news .news-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#news .news-wrap .item a {
  display: flex;
  flex-direction: column;
}
#news .news-wrap .item a .date {
  font-size: 16px;
}
#news .news-wrap .item a .ttl {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
}
#news .news-wrap .item a .txt {
  margin-top: 10px;
  font-size: 14px;
}
#news .news-wrap .item a:hover {
  color: #015f30;
}

#company {
  margin-top: 100px;
}
#company .content {
  padding-top: 30px;
}
#company table {
  margin: 20px auto 0 auto;
  width: calc(100% - 20px);
}
#company table tr {
  border-bottom: 1px solid #e3e3e3;
  padding: 0 5px 10px 5px;
}
#company table tr td {
  border: 0;
  padding: 1em;
}
#company table tr td:first-child {
  width: 30%;
  font-weight: 500;
}

@media screen and (max-width: 576px) {
  #company .item-wrap {
    flex-direction: column;
    row-gap: 30px;
  }
  #company .item {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
  #company .item .ttl {
    width: 30%;
    width: -moz-fit-content;
    width: fit-content;
  }
  #company .item .txt {
    width: -moz-fit-content;
    width: fit-content;
  }
}
#contact {
  margin-top: 100px;
  background-color: rgb(248, 248, 248);
  padding: 100px 50px;
}
#contact .content {
  padding-top: 30px;
}
#contact .content p {
  text-align: center;
  line-height: 1.8;
}
#contact .content .attention {
  margin-top: 10px;
  font-size: 0.8em;
}
#contact .content .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 60%;
  margin: 30px auto 0 auto;
}
#contact .content .form .item p {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
#contact .content .form .item label {
  font-weight: 500;
  text-align: start;
}
#contact .content .form .item label .required {
  background-color: #00803a;
  padding: 2px 4px;
  color: white;
  font-size: 14px;
  border-radius: 4px;
  margin-left: 6px;
}
#contact .content .form .item .wpcf7-form-control-wrap {
  width: 100%;
}
#contact .content .form .item input,
#contact .content .form .item textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid #a9a9a9;
  padding: 8px;
  text-align: start;
  border-radius: 4px;
}
#contact .content .form .privacy-policy__link {
  padding-bottom: 2px;
  font-size: 16px;
}
#contact .content .form .privacy-policy__link a {
  border-bottom: 1px solid #a9a9a9;
}
#contact .content .form .privacy-policy__link a:hover {
  color: #015f30;
}
#contact .content .form .wpcf7-list-item {
  margin: 0;
}
#contact .content .form .btn__submit {
  margin-top: 30px;
}
#contact .content .form .btn__submit p {
  display: flex;
  flex-direction: column;
}
#contact .content .form .btn__submit input {
  background: green;
  color: #fff;
  padding: 20px;
}
#contact .content .form .btn__submit .wpcf7-spinner {
  margin: 10px auto 0 auto;
}
#contact .content .form .btn__submit:hover {
  opacity: 0.8;
}

@media screen and (max-width: 576px) {
  #contact {
    padding: 100px 10px;
  }
  #contact .content .note p {
    text-align: left;
  }
  #contact .content .form {
    width: 90%;
  }
}
/***********
recruit
************/
main.recruit {
  padding-top: 200px;
  max-width: 840px;
  margin: 0 auto;
}
main.recruit .container {
  background-color: rgb(248, 248, 248);
  padding: 100px 50px;
}
main.recruit .container h2 {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 6px;
  font-weight: 500;
}
main.recruit .container table {
  margin-top: 40px;
}
main.recruit .container table th,
main.recruit .container table td {
  border: none;
  border-bottom: 1px solid #b3b3b3;
  padding: 16px 8px;
}
main.recruit .container .contact_wrap {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main.recruit .container .contact_wrap a {
  margin-top: 30px;
  background-color: green;
  color: #fff;
  padding: 12px 20px;
}
main.recruit .container .contact_wrap a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 576px) {
  main.recruit {
    padding-top: 0;
    max-width: 100%;
  }
}
/***********
single
************/
main.single {
  padding-top: 200px;
  max-width: 840px;
  margin: 0 auto;
}
main.single .container {
  background-color: rgb(248, 248, 248);
  padding: 100px 50px;
}
main.single .container h2 {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 6px;
  font-weight: 500;
}
main.single .container .date {
  text-align: center;
  color: #888888;
  margin-top: 30px;
}
main.single .container figure {
  text-align: center;
  width: 50%;
  margin: 50px auto 0 auto;
}
main.single .container figure img {
  width: 100%;
  height: auto;
}
main.single .container .ttl-wrap {
  margin: 60px 0;
  padding: 44px 0 30px 0px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  position: relative;
  top: 0;
  left: 0;
}
main.single .container .ttl-wrap span {
  background-color: #333;
  color: #fff;
  padding: 6px;
  position: absolute;
  top: -12px;
  border-radius: 4px;
}
main.single .container .ttl-wrap .ttl {
  font-size: 30px;
  font-weight: 500;
}
main.single .container .txt p {
  line-height: 1.5;
}
main.single .container .btn__home {
  margin-top: 100px;
  text-align: center;
}
main.single .container .btn__home a {
  background: green;
  color: #fff;
  padding: 12px 20px;
}
main.single .container .btn__home a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 576px) {
  main.single {
    padding-top: 0;
    max-width: 100%;
  }
}
/***********
privacypolicy
************/
main.privacypolicy {
  padding-top: 200px;
  max-width: 840px;
  margin: 0 auto;
}
main.privacypolicy .container {
  background-color: rgb(248, 248, 248);
  padding: 100px 50px;
}
main.privacypolicy .container h2 {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 6px;
  font-weight: 500;
}
main.privacypolicy .container section.item__wrap {
  margin-top: 50px;
}
main.privacypolicy .container section.item__wrap .item {
  margin-top: 30px;
}
main.privacypolicy .container section.item__wrap .item h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
main.privacypolicy .container section.item__wrap .item p {
  line-height: 1.5;
}
main.privacypolicy .container section.item__wrap .item table {
  margin: 10px 0;
}
main.privacypolicy .container section.item__wrap .item table th,
main.privacypolicy .container section.item__wrap .item table td {
  border: 1px solid #000;
  padding: 6px;
  vertical-align: middle;
}

/***********
footer
************/
footer {
  margin-top: 100px;
  background-color: #323232;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}
footer ul {
  margin-bottom: 12px;
}
footer ul li {
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */